├── .arcconfig ├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── COFF ├── CMakeLists.txt ├── Chunks.cpp ├── Chunks.h ├── Config.h ├── Driver.cpp ├── Driver.h ├── InputFiles.cpp ├── InputFiles.h ├── Memory.h ├── Options.td ├── README.md ├── SymbolTable.cpp ├── SymbolTable.h ├── Symbols.cpp ├── Symbols.h ├── Writer.cpp └── Writer.h ├── LICENSE.TXT ├── README.md ├── cmake └── modules │ └── FindVTune.cmake ├── docs ├── C++11.rst ├── CMakeLists.txt ├── Driver.rst ├── README.txt ├── Readers.rst ├── _static │ └── favicon.ico ├── _templates │ ├── indexsidebar.html │ └── layout.html ├── conf.py ├── design.rst ├── development.rst ├── getting_started.rst ├── hello.png ├── index.rst ├── llvm-theme │ ├── layout.html │ ├── static │ │ ├── contents.png │ │ ├── llvm.css │ │ ├── logo.png │ │ └── navigation.png │ └── theme.conf ├── make.bat ├── open_projects.rst ├── sphinx_intro.rst └── windows_support.rst ├── include └── lld │ ├── Config │ ├── Version.h │ └── Version.inc.in │ ├── Core │ ├── AbsoluteAtom.h │ ├── Alias.h │ ├── ArchiveLibraryFile.h │ ├── Atom.h │ ├── DefinedAtom.h │ ├── Error.h │ ├── File.h │ ├── Instrumentation.h │ ├── LLVM.h │ ├── LinkingContext.h │ ├── Node.h │ ├── Parallel.h │ ├── Pass.h │ ├── PassManager.h │ ├── Reader.h │ ├── Reference.h │ ├── Resolver.h │ ├── STDExtras.h │ ├── SharedLibraryAtom.h │ ├── SharedLibraryFile.h │ ├── Simple.h │ ├── SymbolTable.h │ ├── TODO.txt │ ├── UndefinedAtom.h │ ├── Writer.h │ └── range.h │ ├── Driver │ ├── Driver.h │ └── WinLinkModuleDef.h │ └── ReaderWriter │ ├── AtomLayout.h │ ├── CoreLinkingContext.h │ ├── ELFLinkingContext.h │ ├── LinkerScript.h │ ├── MachOLinkingContext.h │ ├── PECOFFLinkingContext.h │ └── YamlContext.h ├── lib ├── CMakeLists.txt ├── Config │ ├── CMakeLists.txt │ └── Version.cpp ├── Core │ ├── CMakeLists.txt │ ├── DefinedAtom.cpp │ ├── Error.cpp │ ├── File.cpp │ ├── LinkingContext.cpp │ ├── Reader.cpp │ ├── Resolver.cpp │ ├── SymbolTable.cpp │ └── Writer.cpp ├── Driver │ ├── CMakeLists.txt │ ├── CoreDriver.cpp │ ├── CoreOptions.td │ ├── DarwinLdDriver.cpp │ ├── DarwinLdOptions.td │ ├── Driver.cpp │ ├── GnuLdDriver.cpp │ ├── GnuLdOptions.td │ ├── TODO.rst │ ├── UniversalDriver.cpp │ ├── UniversalDriverOptions.td │ ├── WinLinkDriver.cpp │ ├── WinLinkModuleDef.cpp │ └── WinLinkOptions.td └── ReaderWriter │ ├── CMakeLists.txt │ ├── CoreLinkingContext.cpp │ ├── ELF │ ├── AArch64 │ │ ├── AArch64DynamicLibraryWriter.h │ │ ├── AArch64ExecutableWriter.h │ │ ├── AArch64LinkingContext.cpp │ │ ├── AArch64LinkingContext.h │ │ ├── AArch64RelocationHandler.cpp │ │ ├── AArch64RelocationHandler.h │ │ ├── AArch64RelocationPass.cpp │ │ ├── AArch64RelocationPass.h │ │ ├── AArch64TargetHandler.cpp │ │ ├── AArch64TargetHandler.h │ │ ├── CMakeLists.txt │ │ └── TODO.rst │ ├── ARM │ │ ├── ARMDynamicLibraryWriter.h │ │ ├── ARMELFFile.h │ │ ├── ARMELFWriters.h │ │ ├── ARMExecutableWriter.h │ │ ├── ARMLinkingContext.cpp │ │ ├── ARMLinkingContext.h │ │ ├── ARMRelocationHandler.cpp │ │ ├── ARMRelocationHandler.h │ │ ├── ARMRelocationPass.cpp │ │ ├── ARMRelocationPass.h │ │ ├── ARMSymbolTable.h │ │ ├── ARMTargetHandler.cpp │ │ ├── ARMTargetHandler.h │ │ ├── CMakeLists.txt │ │ └── TODO.rst │ ├── Atoms.cpp │ ├── Atoms.h │ ├── CMakeLists.txt │ ├── Chunk.h │ ├── DynamicFile.cpp │ ├── DynamicFile.h │ ├── DynamicLibraryWriter.h │ ├── ELFFile.cpp │ ├── ELFFile.h │ ├── ELFLinkingContext.cpp │ ├── ELFReader.h │ ├── ExecutableWriter.h │ ├── FileCommon.cpp │ ├── FileCommon.h │ ├── HeaderChunks.cpp │ ├── HeaderChunks.h │ ├── Hexagon │ │ ├── CMakeLists.txt │ │ ├── HexagonDynamicLibraryWriter.h │ │ ├── HexagonELFFile.h │ │ ├── HexagonEncodings.h │ │ ├── HexagonExecutableWriter.h │ │ ├── HexagonLinkingContext.cpp │ │ ├── HexagonLinkingContext.h │ │ ├── HexagonRelocationHandler.cpp │ │ ├── HexagonRelocationHandler.h │ │ ├── HexagonTargetHandler.cpp │ │ └── HexagonTargetHandler.h │ ├── Mips │ │ ├── CMakeLists.txt │ │ ├── MipsCtorsOrderPass.cpp │ │ ├── MipsCtorsOrderPass.h │ │ ├── MipsDynamicLibraryWriter.h │ │ ├── MipsDynamicTable.h │ │ ├── MipsELFFile.h │ │ ├── MipsELFFlagsMerger.cpp │ │ ├── MipsELFFlagsMerger.h │ │ ├── MipsELFWriters.h │ │ ├── MipsExecutableWriter.h │ │ ├── MipsLinkingContext.cpp │ │ ├── MipsLinkingContext.h │ │ ├── MipsReginfo.h │ │ ├── MipsRelocationHandler.cpp │ │ ├── MipsRelocationHandler.h │ │ ├── MipsRelocationPass.cpp │ │ ├── MipsRelocationPass.h │ │ ├── MipsSectionChunks.h │ │ ├── MipsTargetHandler.h │ │ ├── MipsTargetHandler32EL.cpp │ │ ├── MipsTargetHandler64EL.cpp │ │ └── MipsTargetLayout.h │ ├── OrderPass.h │ ├── OutputELFWriter.cpp │ ├── OutputELFWriter.h │ ├── Reader.cpp │ ├── SectionChunks.cpp │ ├── SectionChunks.h │ ├── SegmentChunks.cpp │ ├── SegmentChunks.h │ ├── TODO.txt │ ├── TargetHandler.h │ ├── TargetLayout.cpp │ ├── TargetLayout.h │ ├── Writer.cpp │ ├── Writer.h │ ├── X86 │ │ ├── CMakeLists.txt │ │ ├── X86DynamicLibraryWriter.h │ │ ├── X86ExecutableWriter.h │ │ ├── X86LinkingContext.cpp │ │ ├── X86LinkingContext.h │ │ ├── X86RelocationHandler.cpp │ │ ├── X86RelocationHandler.h │ │ ├── X86TargetHandler.cpp │ │ └── X86TargetHandler.h │ └── X86_64 │ │ ├── CMakeLists.txt │ │ ├── ExampleSubTarget │ │ ├── CMakeLists.txt │ │ ├── ExampleLinkingContext.cpp │ │ ├── ExampleLinkingContext.h │ │ ├── ExampleTargetHandler.cpp │ │ └── ExampleTargetHandler.h │ │ ├── TODO.rst │ │ ├── X86_64DynamicLibraryWriter.h │ │ ├── X86_64ExecutableWriter.h │ │ ├── X86_64LinkingContext.cpp │ │ ├── X86_64LinkingContext.h │ │ ├── X86_64RelocationHandler.cpp │ │ ├── X86_64RelocationHandler.h │ │ ├── X86_64RelocationPass.cpp │ │ ├── X86_64RelocationPass.h │ │ ├── X86_64TargetHandler.cpp │ │ └── X86_64TargetHandler.h │ ├── FileArchive.cpp │ ├── LinkerScript.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 │ ├── ExecutableAtoms.h │ ├── File.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 │ ├── ShimPass.cpp │ ├── StubsPass.cpp │ └── WriterMachO.cpp │ ├── PECOFF │ ├── Atoms.h │ ├── CMakeLists.txt │ ├── EdataPass.cpp │ ├── EdataPass.h │ ├── IdataPass.cpp │ ├── IdataPass.h │ ├── InferSubsystemPass.h │ ├── LinkerGeneratedSymbolFile.cpp │ ├── LinkerGeneratedSymbolFile.h │ ├── LoadConfigPass.cpp │ ├── LoadConfigPass.h │ ├── OrderPass.h │ ├── PDBPass.h │ ├── PECOFFLinkingContext.cpp │ ├── Pass.cpp │ ├── Pass.h │ ├── ReaderCOFF.cpp │ ├── ReaderImportHeader.cpp │ ├── WriterImportLibrary.cpp │ ├── WriterImportLibrary.h │ └── WriterPECOFF.cpp │ └── YAML │ ├── CMakeLists.txt │ └── ReaderWriterYAML.cpp ├── test ├── CMakeLists.txt ├── COFF │ ├── Inputs │ │ ├── hello64.asm │ │ ├── hello64.obj │ │ ├── ret42.obj │ │ └── std64.lib │ ├── driver.test │ └── imports.test ├── Driver │ ├── Inputs │ │ ├── libtest.a │ │ └── usr │ │ │ └── lib │ │ │ ├── i386 │ │ │ └── libtest.a │ │ │ └── libtest.a │ ├── def-lib-search.test │ ├── flavor-option.test │ ├── lib-search.test │ ├── so-whole-archive.test │ ├── trivial-driver.test │ └── undef-basic.objtxt ├── LinkerScript │ ├── expr-precedence.test │ ├── extern-bad-symbol.test │ ├── extern-empty.test │ ├── extern-valid.test │ ├── incomplete-ternary.test │ ├── libname-err-1.test │ ├── libname-err-2.test │ ├── linker-script-outputformat.test │ ├── linker-script.test │ ├── memory-empty.test │ ├── memory-missing-attrs.test │ ├── memory-missing-length.test │ ├── memory-missing-name.test │ ├── memory-missing-origin.test │ ├── memory-valid.test │ ├── missing-entry-symbol.test │ ├── missing-input-file-name.test │ ├── missing-input-sections.test │ ├── missing-operand.test │ ├── missing-output-section-name.test │ ├── missing-symbol.test │ └── sections.test ├── Unit │ ├── lit.cfg │ └── lit.site.cfg.in ├── core │ ├── Inputs │ │ ├── archive-basic.objtxt │ │ ├── archive-chain.objtxt │ │ ├── archive-chain2.objtxt │ │ ├── archive-tentdef-search.objtxt │ │ ├── associates.objtxt │ │ ├── auto-hide-coalesce.objtxt │ │ ├── code-model-attributes.objtxt │ │ ├── code-model-attributes2.objtxt │ │ ├── code-model-attributes3.objtxt │ │ ├── code-model-attributes4.objtxt │ │ ├── code-model-attributes5.objtxt │ │ ├── constants-coalesce.objtxt │ │ ├── constants-coalesce2.objtxt │ │ ├── cstring-coalesce.objtxt │ │ ├── cstring-coalesce2.objtxt │ │ ├── custom-section-coalesce.objtxt │ │ ├── custom-section-coalesce2.objtxt │ │ ├── dead-strip-attributes.objtxt │ │ ├── dead-strip-attributes2.objtxt │ │ ├── dead-strip-basic.objtxt │ │ ├── dead-strip-basic2.objtxt │ │ ├── dead-strip-globals.objtxt │ │ ├── dead-strip-globals2.objtxt │ │ ├── error-duplicate-absolutes.objtxt │ │ ├── gnulinkonce-rearrange-resolve.objtxt │ │ ├── gnulinkonce-remaining-undef.objtxt │ │ ├── gnulinkonce-remaining-undef2.objtxt │ │ ├── gnulinkonce-resolve.objtxt │ │ ├── gnulinkonce-simple.objtxt │ │ ├── inline-coalesce.objtxt │ │ ├── inline-coalesce2.objtxt │ │ ├── multiple-def-error.objtxt │ │ ├── sectiongroup-deadstrip.objtxt │ │ ├── sectiongroup-gnulinkonce-error.objtxt │ │ ├── sectiongroup-rearrange-resolve.objtxt │ │ ├── sectiongroup-remaining-undef.objtxt │ │ ├── sectiongroup-remaining-undef2.objtxt │ │ ├── sectiongroup-resolve.objtxt │ │ ├── sectiongroup-simple.objtxt │ │ ├── shared-library-coalesce.objtxt │ │ ├── tent-merge.objtxt │ │ ├── undef-coalesce-error.objtxt │ │ ├── undef-coalesce-error2.objtxt │ │ ├── undef-coalesce.objtxt │ │ ├── undef-coalesce2.objtxt │ │ ├── undef-fallback.objtxt │ │ ├── undef-weak-coalesce.objtxt │ │ ├── weak-coalesce.objtxt │ │ └── weak-coalesce2.objtxt │ ├── absolute-basic.objtxt │ ├── absolute-local.objtxt │ ├── archive-basic.objtxt │ ├── archive-chain.objtxt │ ├── archive-tentdef-search.objtxt │ ├── associates.objtxt │ ├── auto-hide-coalesce.objtxt │ ├── code-model-attributes.objtxt │ ├── constants-coalesce.objtxt │ ├── cstring-coalesce.objtxt │ ├── custom-section-coalesce.objtxt │ ├── custom-section.objtxt │ ├── dead-strip-attributes.objtxt │ ├── dead-strip-basic.objtxt │ ├── dead-strip-globals.objtxt │ ├── dead-strip-reverse.objtxt │ ├── error-atom-attribute.objtxt │ ├── error-atom-content-byte-value.objtxt │ ├── error-atom-content-bytes.objtxt │ ├── error-atom-type.objtxt │ ├── error-atom-undefined-wrong-attribue.objtxt │ ├── error-duplicate-absolutes.objtxt │ ├── error-file-attribute.objtxt │ ├── error-fixup-attribute.objtxt │ ├── error-fixup-target.objtxt │ ├── fixups-addend.objtxt │ ├── fixups-dup-named.objtxt │ ├── fixups-named.objtxt │ ├── fixups-unnamed.objtxt │ ├── gnulinkonce-rearrange-resolve.objtxt │ ├── gnulinkonce-remaining-undef.objtxt │ ├── gnulinkonce-resolve.objtxt │ ├── gnulinkonce-simple.objtxt │ ├── inline-coalesce.objtxt │ ├── multiple-def-error.objtxt │ ├── permissions.objtxt │ ├── sectiongroup-deadstrip.objtxt │ ├── sectiongroup-gnulinkonce-error.objtxt │ ├── sectiongroup-rearrange-resolve.objtxt │ ├── sectiongroup-remaining-undef.objtxt │ ├── sectiongroup-resolve.objtxt │ ├── sectiongroup-simple.objtxt │ ├── shared-library-basic.objtxt │ ├── shared-library-coalesce.objtxt │ ├── tent-merge.objtxt │ ├── undef-coalesce-error.objtxt │ ├── undef-coalesce.objtxt │ ├── undef-fallback.objtxt │ ├── undef-weak-coalesce.objtxt │ └── weak-coalesce.objtxt ├── darwin │ ├── Inputs │ │ ├── native-and-mach-o.objtxt │ │ └── native-and-mach-o2.objtxt │ └── native-and-mach-o.objtxt ├── elf │ ├── AArch64 │ │ ├── Inputs │ │ │ ├── fn.c │ │ │ ├── fn.o │ │ │ ├── initfini-option.c │ │ │ ├── initfini-option.o │ │ │ ├── initfini.c │ │ │ ├── initfini.o │ │ │ ├── main.c │ │ │ ├── main.o │ │ │ ├── no-interp-section.c │ │ │ ├── no-interp-section.o │ │ │ ├── zerosizedsection.o │ │ │ └── zerosizedsection.s │ │ ├── defsym.test │ │ ├── dontignorezerosize-sections.test │ │ ├── dynamicvars.test │ │ ├── dynlib-nointerp-section.test │ │ ├── initfini.test │ │ ├── rel-abs16-overflow.test │ │ ├── rel-abs16.test │ │ ├── rel-abs32-overflow.test │ │ ├── rel-abs32.test │ │ ├── rel-abs64.test │ │ ├── rel-adr_prel_lo21-overflow.test │ │ ├── rel-adr_prel_lo21.test │ │ ├── rel-adr_prel_pg_hi21-overflow.test │ │ ├── rel-adr_prel_pg_hi21.test │ │ ├── rel-bad.test │ │ ├── rel-prel16-overflow.test │ │ ├── rel-prel16.test │ │ ├── rel-prel32-overflow.test │ │ ├── rel-prel32.test │ │ └── rel-prel64.test │ ├── ARM │ │ ├── Inputs │ │ │ ├── fn.c │ │ │ ├── libfn.so │ │ │ ├── libobj.so │ │ │ └── obj.c │ │ ├── arm-symbols.test │ │ ├── defsym.test │ │ ├── dynamic-symbols.test │ │ ├── entry-point.test │ │ ├── exidx.test │ │ ├── header-flags.test │ │ ├── mapping-code-model.test │ │ ├── mapping-symbols.test │ │ ├── missing-symbol.test │ │ ├── plt-dynamic.test │ │ ├── plt-ifunc-interwork.test │ │ ├── plt-ifunc-mapping.test │ │ ├── rel-abs32.test │ │ ├── rel-arm-call.test │ │ ├── rel-arm-jump24-veneer-b.test │ │ ├── rel-arm-jump24-veneer-bl.test │ │ ├── rel-arm-jump24.test │ │ ├── rel-arm-mov.test │ │ ├── rel-arm-prel31.test │ │ ├── rel-arm-target1.test │ │ ├── rel-arm-thm-interwork.test │ │ ├── rel-base-prel.test │ │ ├── rel-copy.test │ │ ├── rel-glob-dat.test │ │ ├── rel-got-brel.test │ │ ├── rel-group-relocs.test │ │ ├── rel-ifunc.test │ │ ├── rel-jump-slot.test │ │ ├── rel-rel32.test │ │ ├── rel-thm-call.test │ │ ├── rel-thm-jump11.test │ │ ├── rel-thm-jump24-veneer.test │ │ ├── rel-thm-jump24.test │ │ ├── rel-thm-mov.test │ │ ├── rel-tls-ie32.test │ │ ├── rel-tls-le32.test │ │ ├── rel-v4bx.test │ │ ├── thm-symbols.test │ │ ├── two-got-for-symbol.test │ │ ├── undef-lazy-symbol.test │ │ ├── veneer-mapping.test │ │ └── weak-branch.test │ ├── Hexagon │ │ ├── Inputs │ │ │ ├── dynobj-data.c │ │ │ ├── dynobj-data.o │ │ │ ├── dynobj.c │ │ │ ├── dynobj.o │ │ │ ├── got-plt-order.c │ │ │ ├── got-plt-order.o │ │ │ ├── libMaxAlignment.a │ │ │ ├── sda-base.o │ │ │ ├── sdata1.c │ │ │ ├── sdata1.o │ │ │ ├── sdata2.c │ │ │ ├── sdata2.o │ │ │ └── use-shared.hexagon │ │ ├── dynlib-data.test │ │ ├── dynlib-gotoff.test │ │ ├── dynlib-hash.test │ │ ├── dynlib-rela.test │ │ ├── dynlib-syms.test │ │ ├── dynlib.test │ │ ├── hexagon-got-plt-order.test │ │ ├── hexagon-plt-setup.test │ │ ├── maxalignment.test │ │ ├── rela-order.test │ │ ├── sda-base.test │ │ └── zerofillquick-sdata.test │ ├── Inputs │ │ ├── abs-test.i386 │ │ ├── allowduplicates.objtxt │ │ ├── bar.o.x86-64 │ │ ├── branch-test.hexagon │ │ ├── branch-test.ppc │ │ ├── consecutive-weak-defs.o.yaml │ │ ├── constants-merge.x86-64 │ │ ├── constdata.x86-64 │ │ ├── foo.o.x86-64 │ │ ├── globalconst.c │ │ ├── globalconst.o.x86-64 │ │ ├── gotpcrel.S │ │ ├── gotpcrel.x86-64 │ │ ├── group-cmd-search-1.ls │ │ ├── group-cmd-search-2.ls │ │ ├── group-cmd-search-3.ls │ │ ├── ifunc.S │ │ ├── ifunc.cpp │ │ ├── ifunc.cpp.x86-64 │ │ ├── ifunc.x86-64 │ │ ├── libfnarchive.a │ │ ├── libifunc.x86-64.so │ │ ├── libundef.so │ │ ├── libweaksym.so │ │ ├── main-with-global-def.o.yaml │ │ ├── mainobj.x86_64 │ │ ├── no-unique-section-names.x86-64 │ │ ├── object-test.elf-hexagon │ │ ├── object-test.elf-i386 │ │ ├── phdr.i386 │ │ ├── quickdata-sort-test.o.elf-hexagon │ │ ├── quickdata-sortcommon-test.o.elf-hexagon │ │ ├── quickdata-test.elf-hexagon │ │ ├── reloc-test.elf-i386 │ │ ├── reloc-xb.x86 │ │ ├── reloc-xt.x86 │ │ ├── relocs-dynamic.x86-64 │ │ ├── relocs.x86-64 │ │ ├── responsefile │ │ ├── rodata-test.hexagon │ │ ├── rodata-test.i386 │ │ ├── rodata.c │ │ ├── rodata.o │ │ ├── section-test.i386 │ │ ├── shared.c │ │ ├── shared.so-x86-64 │ │ ├── stripped-empty.x86_64 │ │ ├── target-test.hexagon │ │ ├── target-test.ppc │ │ ├── tls.S │ │ ├── tls.c │ │ ├── tls.x86-64 │ │ ├── tlsAddr.x86-64 │ │ ├── tlsaddr.c │ │ ├── undef-from-main-so.c │ │ ├── undef-from-main.c │ │ ├── undef-pc32.o │ │ ├── undef.o │ │ ├── undef2-so.o.yaml │ │ ├── use-shared-32s.c │ │ ├── use-shared-32s.x86-64 │ │ ├── use-shared.c │ │ ├── use-shared.x86-64 │ │ ├── weaksym.o │ │ ├── writersyms.o │ │ └── x86-64-relocs.S │ ├── Mips │ │ ├── base-address-64.test │ │ ├── base-address.test │ │ ├── ctors-order.test │ │ ├── dt-textrel-64.test │ │ ├── dt-textrel.test │ │ ├── dynamic-sym.test │ │ ├── dynlib-dynamic.test │ │ ├── dynlib-dynsym-micro.test │ │ ├── dynlib-dynsym.test │ │ ├── dynlib-fileheader-64.test │ │ ├── dynlib-fileheader-micro-64.test │ │ ├── dynlib-fileheader-micro.test │ │ ├── dynlib-fileheader.test │ │ ├── dynsym-table-1.test │ │ ├── dynsym-table-2.test │ │ ├── e-flags-merge-1-64.test │ │ ├── e-flags-merge-1.test │ │ ├── e-flags-merge-10.test │ │ ├── e-flags-merge-11.test │ │ ├── e-flags-merge-2-64.test │ │ ├── e-flags-merge-2.test │ │ ├── e-flags-merge-3-64.test │ │ ├── e-flags-merge-3.test │ │ ├── e-flags-merge-4-64.test │ │ ├── e-flags-merge-4.test │ │ ├── e-flags-merge-5-64.test │ │ ├── e-flags-merge-5.test │ │ ├── e-flags-merge-6-64.test │ │ ├── e-flags-merge-6.test │ │ ├── e-flags-merge-7-64.test │ │ ├── e-flags-merge-7.test │ │ ├── e-flags-merge-8.test │ │ ├── e-flags-merge-9.test │ │ ├── entry-name.test │ │ ├── exe-dynamic.test │ │ ├── exe-dynsym-micro.test │ │ ├── exe-dynsym.test │ │ ├── exe-fileheader-64.test │ │ ├── exe-fileheader-micro-64.test │ │ ├── exe-fileheader-micro.test │ │ ├── exe-fileheader.test │ │ ├── exe-got-micro.test │ │ ├── exe-got.test │ │ ├── got-page-32-micro.test │ │ ├── got-page-32.test │ │ ├── got-page-64-micro.test │ │ ├── got-page-64.test │ │ ├── got16-2.test │ │ ├── got16-micro.test │ │ ├── got16.test │ │ ├── gotsym.test │ │ ├── gp-sym-1-micro.test │ │ ├── gp-sym-1.test │ │ ├── gp-sym-2.test │ │ ├── hilo16-1.test │ │ ├── hilo16-2.test │ │ ├── hilo16-3.test │ │ ├── hilo16-4.test │ │ ├── hilo16-5.test │ │ ├── hilo16-8-micro.test │ │ ├── hilo16-9-micro.test │ │ ├── initfini-micro.test │ │ ├── interpreter-64.test │ │ ├── interpreter.test │ │ ├── invalid-reginfo.test │ │ ├── jalx-align-err.test │ │ ├── jump-fix-err.test │ │ ├── la25-stub-micro.test │ │ ├── la25-stub.test │ │ ├── mips-options-01.test │ │ ├── mips-options-02.test │ │ ├── mips-options-03.test │ │ ├── mips-options-04.test │ │ ├── mips-options-05.test │ │ ├── mips-options-gp0.test │ │ ├── n64-rel-chain.test │ │ ├── opt-emulation.test │ │ ├── pc23-range.test │ │ ├── plt-entry-mixed-1.test │ │ ├── plt-entry-mixed-2.test │ │ ├── plt-entry-mixed-3.test │ │ ├── plt-entry-mixed-4.test │ │ ├── plt-entry-r6.test │ │ ├── plt-header-micro.test │ │ ├── plt-header-mixed.test │ │ ├── plt-header.test │ │ ├── r26-1-micro.test │ │ ├── r26-1.test │ │ ├── r26-2-micro.test │ │ ├── r26-2.test │ │ ├── reginfo-01.test │ │ ├── reginfo-02.test │ │ ├── reginfo-03.test │ │ ├── reginfo-04.test │ │ ├── reginfo-05.test │ │ ├── rel-32.test │ │ ├── rel-64.test │ │ ├── rel-call-hilo-01.test │ │ ├── rel-call-hilo-micro.test │ │ ├── rel-copy-micro.test │ │ ├── rel-copy-pc.test │ │ ├── rel-copy.test │ │ ├── rel-dynamic-01-micro.test │ │ ├── rel-dynamic-01.test │ │ ├── rel-dynamic-02.test │ │ ├── rel-dynamic-03-micro.test │ │ ├── rel-dynamic-03.test │ │ ├── rel-dynamic-04-micro.test │ │ ├── rel-dynamic-04.test │ │ ├── rel-dynamic-05-micro.test │ │ ├── rel-dynamic-05.test │ │ ├── rel-dynamic-06-64.test │ │ ├── rel-dynamic-06.test │ │ ├── rel-dynamic-07-64.test │ │ ├── rel-dynamic-07.test │ │ ├── rel-dynamic-08-64.test │ │ ├── rel-dynamic-08-micro.test │ │ ├── rel-dynamic-08.test │ │ ├── rel-dynamic-09-micro.test │ │ ├── rel-dynamic-09.test │ │ ├── rel-dynamic-10-micro.test │ │ ├── rel-dynamic-10.test │ │ ├── rel-dynamic-11.test │ │ ├── rel-dynamic-12.test │ │ ├── rel-dynamic-13.test │ │ ├── rel-dynamic-14.test │ │ ├── rel-eh-01.test │ │ ├── rel-eh-02.test │ │ ├── rel-eh-03.test │ │ ├── rel-got-hilo-01.test │ │ ├── rel-got-hilo-micro.test │ │ ├── rel-gprel16.test │ │ ├── rel-gprel32-64.test │ │ ├── rel-gprel32.test │ │ ├── rel-pc-hilo.test │ │ ├── rel-pc18-s3-micro.test │ │ ├── rel-pc18-s3.test │ │ ├── rel-pc19-s2-micro.test │ │ ├── rel-pc19-s2.test │ │ ├── rel-pc21-s2-micro.test │ │ ├── rel-pc21-s2.test │ │ ├── rel-pc26-s2-micro.test │ │ ├── rel-pc26-s2.test │ │ ├── rel-pc32.test │ │ ├── rel-pc7-10-16-23.test │ │ ├── rel-sub.test │ │ ├── st-other.test │ │ ├── tls-1-micro.test │ │ ├── tls-1.test │ │ ├── tls-2-64.test │ │ ├── tls-2-micro.test │ │ ├── tls-2.test │ │ ├── tls-3-micro.test │ │ ├── tls-3.test │ │ ├── tls-4-micro.test │ │ ├── tls-4.test │ │ ├── tls-5-64.test │ │ ├── tls-5-micro.test │ │ └── tls-5.test │ ├── X86_64 │ │ ├── ExampleTarget │ │ │ └── triple.test │ │ ├── Inputs │ │ │ ├── constint.c │ │ │ ├── constint.o │ │ │ ├── debug0.c │ │ │ ├── debug0.x86-64 │ │ │ ├── debug1.c │ │ │ ├── debug1.x86-64 │ │ │ ├── externtls.c │ │ │ ├── externtls.x86-64 │ │ │ ├── fn.c │ │ │ ├── fn.o │ │ │ ├── generaltls-so.o.yaml │ │ │ ├── group │ │ │ │ ├── 1.c │ │ │ │ ├── 1.o │ │ │ │ ├── fn.c │ │ │ │ ├── fn.o │ │ │ │ ├── fn1.c │ │ │ │ ├── fn1.o │ │ │ │ ├── fn2.c │ │ │ │ ├── fn2.o │ │ │ │ ├── group.sh │ │ │ │ ├── libfn.a │ │ │ │ ├── libfn.so │ │ │ │ ├── libfn1.a │ │ │ │ └── libfn2.so │ │ │ ├── initfini-option.c │ │ │ ├── initfini-option.o │ │ │ ├── initfini.c │ │ │ ├── initfini.o │ │ │ ├── largebss.c │ │ │ ├── largebss.o │ │ │ ├── layoutpass │ │ │ │ ├── 1.c │ │ │ │ ├── 1.o │ │ │ │ ├── 2.c │ │ │ │ ├── 2.o │ │ │ │ ├── 3.c │ │ │ │ ├── 3.o │ │ │ │ └── lib2.a │ │ │ ├── libfn.a │ │ │ ├── libfn.so │ │ │ ├── main.c │ │ │ ├── main.o │ │ │ ├── multi-ovrd.c │ │ │ ├── multi-ovrd.o │ │ │ ├── multi-weak.c │ │ │ ├── multi-weak.o │ │ │ ├── multiweaksyms.o │ │ │ ├── nmagic.c │ │ │ ├── nmagic.o │ │ │ ├── no-interp-section.c │ │ │ ├── no-interp-section.o │ │ │ ├── note.o │ │ │ ├── note.s │ │ │ ├── note_ro_rw.o │ │ │ ├── note_ro_rw.s │ │ │ ├── ovrd.c │ │ │ ├── ovrd.o │ │ │ ├── rodata.c │ │ │ ├── rodata.o │ │ │ ├── rodata.s │ │ │ ├── rwint.c │ │ │ ├── rwint.o │ │ │ ├── sectionmap.c │ │ │ ├── sectionmap.o │ │ │ ├── undefcpp.c │ │ │ ├── undefcpp.o │ │ │ ├── weak-zero-sized.o │ │ │ ├── weak.c │ │ │ ├── weak.o │ │ │ ├── weak.s │ │ │ ├── zerosizedsection.o │ │ │ └── zerosizedsection.s │ │ ├── alignoffset.test │ │ ├── debug.test │ │ ├── defsym.test │ │ ├── demangle.test │ │ ├── dontignorezerosize-sections.test │ │ ├── dynamicvars.test │ │ ├── dynlib-nointerp-section.test │ │ ├── dynlib-search.test │ │ ├── dynsym-weak.test │ │ ├── extern-tls.test │ │ ├── general-dynamic-tls.test │ │ ├── imagebase.test │ │ ├── initfini-order.test │ │ ├── initfini.test │ │ ├── largebss.test │ │ ├── layoutpass-order.test │ │ ├── maxpagesize.test │ │ ├── mergesimilarstrings.test │ │ ├── multi-weak-layout.test │ │ ├── multi-weak-override.test │ │ ├── multi-weak-syms-order.test │ │ ├── nmagic.test │ │ ├── noalignsegments.test │ │ ├── note-sections-ro_plus_rw.test │ │ ├── note-sections.test │ │ ├── omagic.test │ │ ├── outputsegments.test │ │ ├── reloc_r_x86_64_16.test │ │ ├── reloc_r_x86_64_pc16.test │ │ ├── reloc_r_x86_64_pc64.test │ │ ├── rodata.test │ │ ├── sectionchoice.test │ │ ├── sectionmap.test │ │ ├── startGroupEndGroup.test │ │ ├── startGroupEndGroupWithDynlib.test │ │ ├── staticlib-search.test │ │ ├── undef.test │ │ ├── underscore-end.test │ │ ├── weak-override.test │ │ ├── weak-zero-sized.test │ │ ├── weaksym.test │ │ └── yamlinput.test │ ├── abs-dup.objtxt │ ├── abs.test │ ├── allowduplicates.objtxt │ ├── archive-elf-forceload.test │ ├── archive-elf.test │ ├── as-needed.test │ ├── branch.test │ ├── check.test │ ├── checkrodata.test │ ├── common.test │ ├── consecutive-weak-sym-defs.test │ ├── defsym.objtxt │ ├── discard-all.test │ ├── discard-locals.test │ ├── dynamic-segorder.test │ ├── dynamic-undef.test │ ├── dynamic.test │ ├── eh_frame_hdr.test │ ├── entry.objtxt │ ├── export-dynamic.test │ ├── filenotfound.test │ ├── gnulinkonce │ │ ├── gnulinkonce-report-discarded-reference.test │ │ ├── gnulinkonce-report-undef.test │ │ └── gnulinkonce.test │ ├── gotpcrel.test │ ├── gottpoff.test │ ├── group-cmd-search.test │ ├── hexagon-quickdata-sort.test │ ├── hexagon-quickdata-sortcommon.test │ ├── ifunc.test │ ├── ignore-unknownoption.test │ ├── init_array-order.test │ ├── init_array.test │ ├── initfini-options.test-1.test │ ├── initfini-options.test-2.test │ ├── initfini-options.test-3.test │ ├── librarynotfound.test │ ├── linker-as-ld.test │ ├── linkerscript │ │ ├── Inputs │ │ │ ├── externs.ls │ │ │ ├── invalid.ls │ │ │ ├── prog1.o.yaml │ │ │ ├── prog2.o.yaml │ │ │ ├── prog3.o.yaml │ │ │ ├── simple-pic.o.yaml │ │ │ ├── simple.o.yaml │ │ │ └── valid.ls │ │ ├── externs.objtxt │ │ ├── invalid-script-cli-1.test │ │ ├── invalid-script-cli-2.test │ │ ├── invalid.test │ │ ├── sections-order.test │ │ ├── sections-with-wildcards.test │ │ ├── symbol-definition-so.test │ │ ├── symbol-definition.test │ │ └── valid-script-cli.objtxt │ ├── loginputfiles.test │ ├── mergeatoms.test │ ├── mergeconstants.test │ ├── mergeglobalatoms.test │ ├── no-unique-section-names.test │ ├── note.test │ ├── options │ │ ├── dynamic-linker.test │ │ └── target-specific-args.test │ ├── phdr.test │ ├── quickdata.test │ ├── reloc.test │ ├── responsefile.test │ ├── rodata.test │ ├── rosegment.test │ ├── sectionGroups │ │ ├── sectiongroup-new-members.test │ │ ├── sectiongroup-simple.test │ │ ├── sectiongroup-undef-member-other.test │ │ ├── sectiongroup-undef-member.test │ │ ├── sectiongroup-with-globalsymbols.test │ │ ├── sectiongroup-with-undef-external-reference.test │ │ └── sectiongroup-with-undef-signature.test │ ├── sections.test │ ├── sh_addralign.test │ ├── soname.test │ ├── strip-all.test │ ├── stripped-empty.test │ ├── symbols.test │ ├── tls.test │ ├── tlsAddr.test │ ├── undef-from-dso-to-main.test │ ├── undef-from-main-dso.test │ ├── weaksym.test │ ├── wrap.test │ ├── x86-64-dynamic-relocs.test │ ├── x86-64-dynamic.test │ ├── x86.test │ ├── x86_64-kinds.test │ └── zoption_dtflags.test ├── lit.cfg ├── lit.site.cfg.in ├── mach-o │ ├── Inputs │ │ ├── DependencyDump.py │ │ ├── PIE.yaml │ │ ├── arm-interworking.yaml │ │ ├── arm-shims.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 │ │ ├── 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 │ │ ├── libSystem.yaml │ │ ├── libbar.a │ │ ├── libfoo.a │ │ ├── linker-as-ld.yaml │ │ ├── order_file-basic.order │ │ ├── partial.filelist │ │ ├── re-exported-dylib-ordinal.yaml │ │ ├── re-exported-dylib-ordinal2.yaml │ │ ├── re-exported-dylib-ordinal3.yaml │ │ ├── unwind-info-simple-arm64.yaml │ │ ├── use-dylib-install-names.yaml │ │ ├── use-simple-dylib.yaml │ │ ├── write-final-sections.yaml │ │ └── wrong-arch-error.yaml │ ├── PIE.yaml │ ├── align_text.yaml │ ├── arm-interworking-movw.yaml │ ├── arm-interworking.yaml │ ├── arm-shims.yaml │ ├── arm-subsections-via-symbols.yaml │ ├── cstring-sections.yaml │ ├── data-only-dylib.yaml │ ├── demangle.yaml │ ├── dependency_info.yaml │ ├── dso_handle.yaml │ ├── dylib-exports.yaml │ ├── dylib-install-names.yaml │ ├── exe-offsets.yaml │ ├── exe-segment-overlap.yaml │ ├── exported_symbols_list-dylib.yaml │ ├── exported_symbols_list-obj.yaml │ ├── exported_symbols_list-undef.yaml │ ├── fat-archive.yaml │ ├── filelist.yaml │ ├── force_load-dylib.yaml │ ├── force_load-x86_64.yaml │ ├── framework-user-paths.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 │ ├── 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 │ ├── mh_bundle_header.yaml │ ├── mh_dylib_header.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 │ ├── re-exported-dylib-ordinal.yaml │ ├── rpath.yaml │ ├── sectalign.yaml │ ├── stack-size.yaml │ ├── unwind-info-simple-arm64.yaml │ ├── unwind-info-simple-x86_64.yaml │ ├── upward-dylib-load-command.yaml │ ├── upward-dylib-paths.yaml │ ├── usage.yaml │ ├── use-simple-dylib.yaml │ ├── write-final-sections.yaml │ └── wrong-arch-error.yaml └── pecoff │ ├── Inputs │ ├── abs.obj.yaml │ ├── alignment.obj.yaml │ ├── alternatename1.obj.yaml │ ├── alternatename2.obj.yaml │ ├── alternatename3.obj.yaml │ ├── armnt-ImageBase.obj.yaml │ ├── armnt-ImageBase.s │ ├── armnt-addr32-exec.obj.yaml │ ├── armnt-addr32-exec.s │ ├── armnt-addr32.obj.yaml │ ├── armnt-addr32.s │ ├── armnt-blx23t.obj.yaml │ ├── armnt-blx23t.s │ ├── armnt-branch24t.obj.yaml │ ├── armnt-branch24t.s │ ├── armnt-exports.def │ ├── armnt-exports.obj.yaml │ ├── armnt-import.obj.yaml │ ├── armnt-import.s │ ├── armnt-mov32t-exec.obj.yaml │ ├── armnt-mov32t-exec.s │ ├── armnt-mov32t.obj.yaml │ ├── armnt-mov32t.s │ ├── armnt-obj.s │ ├── armnt-obj.yaml │ ├── associative1.obj.yaml │ ├── associative3.obj.yaml │ ├── basereloc.obj.yaml │ ├── bss.asm │ ├── bss.obj │ ├── comdat.obj.yaml │ ├── common-symbol.obj.yaml │ ├── drectve.obj.yaml │ ├── drectve2.obj.yaml │ ├── drectve3.lib │ ├── entry.obj.yaml │ ├── executable.obj.yaml │ ├── executable.s │ ├── export.obj.yaml │ ├── exports.def │ ├── exports2.def │ ├── grouped-sections.asm │ ├── grouped-sections.obj.yaml │ ├── hello.asm │ ├── hello.obj.yaml │ ├── hello64.asm │ ├── hello64.obj.yaml │ ├── hello64lib.asm │ ├── hello64lib.lib │ ├── imagebase.obj.yaml │ ├── library.lib │ ├── machine-type-unknown.obj.yaml │ ├── main.obj.yaml │ ├── merge-largest1.obj.yaml │ ├── merge-largest2.obj.yaml │ ├── merge-same-size1.obj.yaml │ ├── merge-same-size2.obj.yaml │ ├── merge-same-size3.obj.yaml │ ├── nonstandard-sections.obj.yaml │ ├── nop.asm │ ├── nop.obj.yaml │ ├── nop64.obj.yaml │ ├── reloc.obj.yaml │ ├── reloc64.obj.yaml │ ├── resource.rc │ ├── resource.res │ ├── responsefile.txt │ ├── secrel1.obj.yaml │ ├── secrel2.obj.yaml │ ├── seh.c │ ├── seh.obj.yaml │ ├── static-data1.obj.yaml │ ├── static-data2.obj.yaml │ ├── static.lib │ ├── subsystem.main.yaml │ ├── subsystem.winmain.yaml │ ├── tlsused.obj.yaml │ ├── unknown-drectve.obj.yaml │ ├── unwind.obj.yaml │ ├── vars-main-x64.obj.yaml │ ├── vars-main-x86.obj.yaml │ ├── vars-main.c │ ├── vars.c │ ├── vars.dll.yaml │ ├── vars.lib │ ├── vars64.lib │ ├── weak-externals.asm │ └── weak-externals.obj.yaml │ ├── alignment.test │ ├── alternatename.test │ ├── armnt-ImageBase.test │ ├── armnt-addr32-exec.test │ ├── armnt-addr32.test │ ├── armnt-address-of-entry-point.test │ ├── armnt-blx23t.test │ ├── armnt-branch24t.test │ ├── armnt-exports.s │ ├── armnt-exports.test │ ├── armnt-imports.test │ ├── armnt-mov32t-exec.test │ ├── armnt-movt32t.test │ ├── armnt.test │ ├── associative.test │ ├── base-reloc.test │ ├── baseaddr.test │ ├── bss-section.test │ ├── comdat.test │ ├── common-symbol.test │ ├── conflicting-machine.test │ ├── delayimport.test │ ├── dll.test │ ├── dosstub.test │ ├── drectve.test │ ├── dynamic.test │ ├── dynamicbase.test │ ├── entry.test │ ├── export-warning.test │ ├── export.test │ ├── exportlib.test │ ├── exportlib2.test │ ├── grouped-sections.test │ ├── hello.test │ ├── hello64.test │ ├── help.test │ ├── imagebase.test │ ├── importlib.test │ ├── include.test │ ├── lib.test │ ├── libarg.test │ ├── localyimported.test │ ├── long-section-name.test │ ├── machinetype.test │ ├── manifest.test │ ├── merge-largest.test │ ├── merge-same-size.test │ ├── multi.test │ ├── noentry.test │ ├── nonstandard-sections.test │ ├── options.test │ ├── pe32plus.test │ ├── reloc.test │ ├── reloc64.test │ ├── resource.test │ ├── responsefile.test │ ├── safeseh.test │ ├── secrel.test │ ├── section-attribute.test │ ├── section-renaming.test │ ├── seh.test │ ├── seh64.test │ ├── subsystem.test │ ├── tls.test │ ├── trivial.test │ ├── unknown-drectve.test │ └── weak-external.test ├── tools ├── CMakeLists.txt ├── linker-script-test │ ├── CMakeLists.txt │ └── linker-script-test.cpp └── lld │ ├── CMakeLists.txt │ ├── TODO.txt │ └── lld.cpp ├── unittests ├── CMakeLists.txt ├── CoreTests │ ├── CMakeLists.txt │ ├── ParallelTest.cpp │ └── RangeTest.cpp ├── DriverTests │ ├── CMakeLists.txt │ ├── DarwinLdDriverTest.cpp │ ├── DriverTest.h │ ├── GnuLdDriverTest.cpp │ ├── UniversalDriverTest.cpp │ ├── WinLinkDriverTest.cpp │ └── WinLinkModuleDefTest.cpp └── MachOTests │ ├── CMakeLists.txt │ ├── MachONormalizedFileBinaryReaderTests.cpp │ ├── MachONormalizedFileBinaryWriterTests.cpp │ ├── MachONormalizedFileToAtomsTests.cpp │ ├── MachONormalizedFileYAMLTests.cpp │ └── empty_obj_x86_armv7.txt └── utils └── astyle-options /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/.arcconfig -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COFF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/CMakeLists.txt -------------------------------------------------------------------------------- /COFF/Chunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Chunks.cpp -------------------------------------------------------------------------------- /COFF/Chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Chunks.h -------------------------------------------------------------------------------- /COFF/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Config.h -------------------------------------------------------------------------------- /COFF/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Driver.cpp -------------------------------------------------------------------------------- /COFF/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Driver.h -------------------------------------------------------------------------------- /COFF/InputFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/InputFiles.cpp -------------------------------------------------------------------------------- /COFF/InputFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/InputFiles.h -------------------------------------------------------------------------------- /COFF/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Memory.h -------------------------------------------------------------------------------- /COFF/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Options.td -------------------------------------------------------------------------------- /COFF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/README.md -------------------------------------------------------------------------------- /COFF/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/SymbolTable.cpp -------------------------------------------------------------------------------- /COFF/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/SymbolTable.h -------------------------------------------------------------------------------- /COFF/Symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Symbols.cpp -------------------------------------------------------------------------------- /COFF/Symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Symbols.h -------------------------------------------------------------------------------- /COFF/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Writer.cpp -------------------------------------------------------------------------------- /COFF/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/COFF/Writer.h -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/FindVTune.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/cmake/modules/FindVTune.cmake -------------------------------------------------------------------------------- /docs/C++11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/C++11.rst -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/Driver.rst -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/Readers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/Readers.rst -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_templates/indexsidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/_templates/indexsidebar.html -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/design.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/hello.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/llvm-theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/llvm-theme/layout.html -------------------------------------------------------------------------------- /docs/llvm-theme/static/contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/llvm-theme/static/contents.png -------------------------------------------------------------------------------- /docs/llvm-theme/static/llvm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/llvm-theme/static/llvm.css -------------------------------------------------------------------------------- /docs/llvm-theme/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/llvm-theme/static/logo.png -------------------------------------------------------------------------------- /docs/llvm-theme/static/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/llvm-theme/static/navigation.png -------------------------------------------------------------------------------- /docs/llvm-theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/llvm-theme/theme.conf -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/open_projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/open_projects.rst -------------------------------------------------------------------------------- /docs/sphinx_intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/sphinx_intro.rst -------------------------------------------------------------------------------- /docs/windows_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/docs/windows_support.rst -------------------------------------------------------------------------------- /include/lld/Config/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Config/Version.h -------------------------------------------------------------------------------- /include/lld/Config/Version.inc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Config/Version.inc.in -------------------------------------------------------------------------------- /include/lld/Core/AbsoluteAtom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/AbsoluteAtom.h -------------------------------------------------------------------------------- /include/lld/Core/Alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Alias.h -------------------------------------------------------------------------------- /include/lld/Core/ArchiveLibraryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/ArchiveLibraryFile.h -------------------------------------------------------------------------------- /include/lld/Core/Atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Atom.h -------------------------------------------------------------------------------- /include/lld/Core/DefinedAtom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/DefinedAtom.h -------------------------------------------------------------------------------- /include/lld/Core/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Error.h -------------------------------------------------------------------------------- /include/lld/Core/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/File.h -------------------------------------------------------------------------------- /include/lld/Core/Instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Instrumentation.h -------------------------------------------------------------------------------- /include/lld/Core/LLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/LLVM.h -------------------------------------------------------------------------------- /include/lld/Core/LinkingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/LinkingContext.h -------------------------------------------------------------------------------- /include/lld/Core/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Node.h -------------------------------------------------------------------------------- /include/lld/Core/Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Parallel.h -------------------------------------------------------------------------------- /include/lld/Core/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Pass.h -------------------------------------------------------------------------------- /include/lld/Core/PassManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/PassManager.h -------------------------------------------------------------------------------- /include/lld/Core/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Reader.h -------------------------------------------------------------------------------- /include/lld/Core/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Reference.h -------------------------------------------------------------------------------- /include/lld/Core/Resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Resolver.h -------------------------------------------------------------------------------- /include/lld/Core/STDExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/STDExtras.h -------------------------------------------------------------------------------- /include/lld/Core/SharedLibraryAtom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/SharedLibraryAtom.h -------------------------------------------------------------------------------- /include/lld/Core/SharedLibraryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/SharedLibraryFile.h -------------------------------------------------------------------------------- /include/lld/Core/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Simple.h -------------------------------------------------------------------------------- /include/lld/Core/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/SymbolTable.h -------------------------------------------------------------------------------- /include/lld/Core/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/TODO.txt -------------------------------------------------------------------------------- /include/lld/Core/UndefinedAtom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/UndefinedAtom.h -------------------------------------------------------------------------------- /include/lld/Core/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/Writer.h -------------------------------------------------------------------------------- /include/lld/Core/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Core/range.h -------------------------------------------------------------------------------- /include/lld/Driver/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Driver/Driver.h -------------------------------------------------------------------------------- /include/lld/Driver/WinLinkModuleDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/Driver/WinLinkModuleDef.h -------------------------------------------------------------------------------- /include/lld/ReaderWriter/AtomLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/ReaderWriter/AtomLayout.h -------------------------------------------------------------------------------- /include/lld/ReaderWriter/YamlContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/include/lld/ReaderWriter/YamlContext.h -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Config/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Config/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Config/Version.cpp -------------------------------------------------------------------------------- /lib/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Core/DefinedAtom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/DefinedAtom.cpp -------------------------------------------------------------------------------- /lib/Core/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/Error.cpp -------------------------------------------------------------------------------- /lib/Core/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/File.cpp -------------------------------------------------------------------------------- /lib/Core/LinkingContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/LinkingContext.cpp -------------------------------------------------------------------------------- /lib/Core/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/Reader.cpp -------------------------------------------------------------------------------- /lib/Core/Resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/Resolver.cpp -------------------------------------------------------------------------------- /lib/Core/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/SymbolTable.cpp -------------------------------------------------------------------------------- /lib/Core/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Core/Writer.cpp -------------------------------------------------------------------------------- /lib/Driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Driver/CoreDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/CoreDriver.cpp -------------------------------------------------------------------------------- /lib/Driver/CoreOptions.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/CoreOptions.td -------------------------------------------------------------------------------- /lib/Driver/DarwinLdDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/DarwinLdDriver.cpp -------------------------------------------------------------------------------- /lib/Driver/DarwinLdOptions.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/DarwinLdOptions.td -------------------------------------------------------------------------------- /lib/Driver/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/Driver.cpp -------------------------------------------------------------------------------- /lib/Driver/GnuLdDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/GnuLdDriver.cpp -------------------------------------------------------------------------------- /lib/Driver/GnuLdOptions.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/GnuLdOptions.td -------------------------------------------------------------------------------- /lib/Driver/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/TODO.rst -------------------------------------------------------------------------------- /lib/Driver/UniversalDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/UniversalDriver.cpp -------------------------------------------------------------------------------- /lib/Driver/UniversalDriverOptions.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/UniversalDriverOptions.td -------------------------------------------------------------------------------- /lib/Driver/WinLinkDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/WinLinkDriver.cpp -------------------------------------------------------------------------------- /lib/Driver/WinLinkModuleDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/WinLinkModuleDef.cpp -------------------------------------------------------------------------------- /lib/Driver/WinLinkOptions.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/Driver/WinLinkOptions.td -------------------------------------------------------------------------------- /lib/ReaderWriter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/AArch64/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/AArch64/TODO.rst -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/ARM/ARMELFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/ARM/ARMELFFile.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/ARM/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/ARM/TODO.rst -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/Atoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/Atoms.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/Atoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/Atoms.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/Chunk.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/DynamicFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/DynamicFile.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/DynamicFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/DynamicFile.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/ELFFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/ELFFile.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/ELFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/ELFFile.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/ELFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/ELFReader.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/FileCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/FileCommon.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/FileCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/FileCommon.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/HeaderChunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/HeaderChunks.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/HeaderChunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/HeaderChunks.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/OrderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/OrderPass.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/OutputELFWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/OutputELFWriter.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/Reader.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/SectionChunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/SectionChunks.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/SectionChunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/SectionChunks.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/SegmentChunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/SegmentChunks.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/SegmentChunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/SegmentChunks.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/TODO.txt -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/TargetHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/TargetHandler.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/TargetLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/TargetLayout.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/TargetLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/TargetLayout.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/Writer.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/Writer.h -------------------------------------------------------------------------------- /lib/ReaderWriter/ELF/X86_64/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/ELF/X86_64/TODO.rst -------------------------------------------------------------------------------- /lib/ReaderWriter/FileArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/FileArchive.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/LinkerScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/LinkerScript.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/ArchHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/ArchHandler.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/ArchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/ArchHandler.h -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/Atoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/Atoms.h -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/File.h -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/GOTPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/GOTPass.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/LayoutPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/LayoutPass.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/LayoutPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/LayoutPass.h -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/MachOPasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/MachOPasses.h -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/ShimPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/ShimPass.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/StubsPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/StubsPass.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/MachO/WriterMachO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/MachO/WriterMachO.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/Atoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/Atoms.h -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/EdataPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/EdataPass.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/EdataPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/EdataPass.h -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/IdataPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/IdataPass.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/IdataPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/IdataPass.h -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/OrderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/OrderPass.h -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/PDBPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/PDBPass.h -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/Pass.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/Pass.h -------------------------------------------------------------------------------- /lib/ReaderWriter/PECOFF/ReaderCOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/PECOFF/ReaderCOFF.cpp -------------------------------------------------------------------------------- /lib/ReaderWriter/YAML/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/lib/ReaderWriter/YAML/CMakeLists.txt -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/COFF/Inputs/hello64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/COFF/Inputs/hello64.asm -------------------------------------------------------------------------------- /test/COFF/Inputs/hello64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/COFF/Inputs/hello64.obj -------------------------------------------------------------------------------- /test/COFF/Inputs/ret42.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/COFF/Inputs/ret42.obj -------------------------------------------------------------------------------- /test/COFF/Inputs/std64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/COFF/Inputs/std64.lib -------------------------------------------------------------------------------- /test/COFF/driver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/COFF/driver.test -------------------------------------------------------------------------------- /test/COFF/imports.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/COFF/imports.test -------------------------------------------------------------------------------- /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/Driver/def-lib-search.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Driver/def-lib-search.test -------------------------------------------------------------------------------- /test/Driver/flavor-option.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Driver/flavor-option.test -------------------------------------------------------------------------------- /test/Driver/lib-search.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Driver/lib-search.test -------------------------------------------------------------------------------- /test/Driver/so-whole-archive.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Driver/so-whole-archive.test -------------------------------------------------------------------------------- /test/Driver/trivial-driver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Driver/trivial-driver.test -------------------------------------------------------------------------------- /test/Driver/undef-basic.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Driver/undef-basic.objtxt -------------------------------------------------------------------------------- /test/LinkerScript/expr-precedence.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/expr-precedence.test -------------------------------------------------------------------------------- /test/LinkerScript/extern-empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/extern-empty.test -------------------------------------------------------------------------------- /test/LinkerScript/extern-valid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/extern-valid.test -------------------------------------------------------------------------------- /test/LinkerScript/libname-err-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/libname-err-1.test -------------------------------------------------------------------------------- /test/LinkerScript/libname-err-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/libname-err-2.test -------------------------------------------------------------------------------- /test/LinkerScript/linker-script.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/linker-script.test -------------------------------------------------------------------------------- /test/LinkerScript/memory-empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/memory-empty.test -------------------------------------------------------------------------------- /test/LinkerScript/memory-valid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/memory-valid.test -------------------------------------------------------------------------------- /test/LinkerScript/missing-operand.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/missing-operand.test -------------------------------------------------------------------------------- /test/LinkerScript/missing-symbol.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/missing-symbol.test -------------------------------------------------------------------------------- /test/LinkerScript/sections.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/LinkerScript/sections.test -------------------------------------------------------------------------------- /test/Unit/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Unit/lit.cfg -------------------------------------------------------------------------------- /test/Unit/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/Unit/lit.site.cfg.in -------------------------------------------------------------------------------- /test/core/Inputs/archive-basic.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/archive-basic.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/archive-chain.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/archive-chain.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/archive-chain2.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/archive-chain2.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/associates.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/associates.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/tent-merge.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/tent-merge.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/undef-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/undef-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/undef-fallback.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/undef-fallback.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/weak-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/weak-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/Inputs/weak-coalesce2.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/Inputs/weak-coalesce2.objtxt -------------------------------------------------------------------------------- /test/core/absolute-basic.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/absolute-basic.objtxt -------------------------------------------------------------------------------- /test/core/absolute-local.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/absolute-local.objtxt -------------------------------------------------------------------------------- /test/core/archive-basic.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/archive-basic.objtxt -------------------------------------------------------------------------------- /test/core/archive-chain.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/archive-chain.objtxt -------------------------------------------------------------------------------- /test/core/associates.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/associates.objtxt -------------------------------------------------------------------------------- /test/core/auto-hide-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/auto-hide-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/code-model-attributes.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/code-model-attributes.objtxt -------------------------------------------------------------------------------- /test/core/constants-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/constants-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/cstring-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/cstring-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/custom-section.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/custom-section.objtxt -------------------------------------------------------------------------------- /test/core/dead-strip-attributes.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/dead-strip-attributes.objtxt -------------------------------------------------------------------------------- /test/core/dead-strip-basic.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/dead-strip-basic.objtxt -------------------------------------------------------------------------------- /test/core/dead-strip-globals.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/dead-strip-globals.objtxt -------------------------------------------------------------------------------- /test/core/dead-strip-reverse.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/dead-strip-reverse.objtxt -------------------------------------------------------------------------------- /test/core/error-atom-attribute.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/error-atom-attribute.objtxt -------------------------------------------------------------------------------- /test/core/error-atom-type.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/error-atom-type.objtxt -------------------------------------------------------------------------------- /test/core/error-file-attribute.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/error-file-attribute.objtxt -------------------------------------------------------------------------------- /test/core/error-fixup-attribute.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/error-fixup-attribute.objtxt -------------------------------------------------------------------------------- /test/core/error-fixup-target.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/error-fixup-target.objtxt -------------------------------------------------------------------------------- /test/core/fixups-addend.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/fixups-addend.objtxt -------------------------------------------------------------------------------- /test/core/fixups-dup-named.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/fixups-dup-named.objtxt -------------------------------------------------------------------------------- /test/core/fixups-named.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/fixups-named.objtxt -------------------------------------------------------------------------------- /test/core/fixups-unnamed.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/fixups-unnamed.objtxt -------------------------------------------------------------------------------- /test/core/gnulinkonce-resolve.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/gnulinkonce-resolve.objtxt -------------------------------------------------------------------------------- /test/core/gnulinkonce-simple.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/gnulinkonce-simple.objtxt -------------------------------------------------------------------------------- /test/core/inline-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/inline-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/multiple-def-error.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/multiple-def-error.objtxt -------------------------------------------------------------------------------- /test/core/permissions.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/permissions.objtxt -------------------------------------------------------------------------------- /test/core/sectiongroup-resolve.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/sectiongroup-resolve.objtxt -------------------------------------------------------------------------------- /test/core/sectiongroup-simple.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/sectiongroup-simple.objtxt -------------------------------------------------------------------------------- /test/core/shared-library-basic.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/shared-library-basic.objtxt -------------------------------------------------------------------------------- /test/core/tent-merge.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/tent-merge.objtxt -------------------------------------------------------------------------------- /test/core/undef-coalesce-error.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/undef-coalesce-error.objtxt -------------------------------------------------------------------------------- /test/core/undef-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/undef-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/undef-fallback.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/undef-fallback.objtxt -------------------------------------------------------------------------------- /test/core/undef-weak-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/undef-weak-coalesce.objtxt -------------------------------------------------------------------------------- /test/core/weak-coalesce.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/core/weak-coalesce.objtxt -------------------------------------------------------------------------------- /test/darwin/native-and-mach-o.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/darwin/native-and-mach-o.objtxt -------------------------------------------------------------------------------- /test/elf/AArch64/Inputs/fn.c: -------------------------------------------------------------------------------- 1 | int fn() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /test/elf/AArch64/Inputs/fn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/Inputs/fn.o -------------------------------------------------------------------------------- /test/elf/AArch64/Inputs/initfini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/Inputs/initfini.c -------------------------------------------------------------------------------- /test/elf/AArch64/Inputs/initfini.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/Inputs/initfini.o -------------------------------------------------------------------------------- /test/elf/AArch64/Inputs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/Inputs/main.c -------------------------------------------------------------------------------- /test/elf/AArch64/Inputs/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/Inputs/main.o -------------------------------------------------------------------------------- /test/elf/AArch64/Inputs/no-interp-section.c: -------------------------------------------------------------------------------- 1 | int c = 10; 2 | -------------------------------------------------------------------------------- /test/elf/AArch64/defsym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/defsym.test -------------------------------------------------------------------------------- /test/elf/AArch64/dynamicvars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/dynamicvars.test -------------------------------------------------------------------------------- /test/elf/AArch64/initfini.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/initfini.test -------------------------------------------------------------------------------- /test/elf/AArch64/rel-abs16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/rel-abs16.test -------------------------------------------------------------------------------- /test/elf/AArch64/rel-abs32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/rel-abs32.test -------------------------------------------------------------------------------- /test/elf/AArch64/rel-abs64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/rel-abs64.test -------------------------------------------------------------------------------- /test/elf/AArch64/rel-bad.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/rel-bad.test -------------------------------------------------------------------------------- /test/elf/AArch64/rel-prel16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/rel-prel16.test -------------------------------------------------------------------------------- /test/elf/AArch64/rel-prel32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/rel-prel32.test -------------------------------------------------------------------------------- /test/elf/AArch64/rel-prel64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/AArch64/rel-prel64.test -------------------------------------------------------------------------------- /test/elf/ARM/Inputs/fn.c: -------------------------------------------------------------------------------- 1 | int fn() { return 1; } 2 | -------------------------------------------------------------------------------- /test/elf/ARM/Inputs/libfn.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/Inputs/libfn.so -------------------------------------------------------------------------------- /test/elf/ARM/Inputs/libobj.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/Inputs/libobj.so -------------------------------------------------------------------------------- /test/elf/ARM/Inputs/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/Inputs/obj.c -------------------------------------------------------------------------------- /test/elf/ARM/arm-symbols.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/arm-symbols.test -------------------------------------------------------------------------------- /test/elf/ARM/defsym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/defsym.test -------------------------------------------------------------------------------- /test/elf/ARM/dynamic-symbols.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/dynamic-symbols.test -------------------------------------------------------------------------------- /test/elf/ARM/entry-point.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/entry-point.test -------------------------------------------------------------------------------- /test/elf/ARM/exidx.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/exidx.test -------------------------------------------------------------------------------- /test/elf/ARM/header-flags.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/header-flags.test -------------------------------------------------------------------------------- /test/elf/ARM/mapping-code-model.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/mapping-code-model.test -------------------------------------------------------------------------------- /test/elf/ARM/mapping-symbols.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/mapping-symbols.test -------------------------------------------------------------------------------- /test/elf/ARM/missing-symbol.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/missing-symbol.test -------------------------------------------------------------------------------- /test/elf/ARM/plt-dynamic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/plt-dynamic.test -------------------------------------------------------------------------------- /test/elf/ARM/plt-ifunc-interwork.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/plt-ifunc-interwork.test -------------------------------------------------------------------------------- /test/elf/ARM/plt-ifunc-mapping.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/plt-ifunc-mapping.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-abs32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-abs32.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-arm-call.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-arm-call.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-arm-jump24.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-arm-jump24.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-arm-mov.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-arm-mov.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-arm-prel31.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-arm-prel31.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-arm-target1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-arm-target1.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-base-prel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-base-prel.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-copy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-copy.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-glob-dat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-glob-dat.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-got-brel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-got-brel.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-group-relocs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-group-relocs.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-ifunc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-ifunc.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-jump-slot.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-jump-slot.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-rel32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-rel32.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-thm-call.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-thm-call.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-thm-jump11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-thm-jump11.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-thm-jump24.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-thm-jump24.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-thm-mov.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-thm-mov.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-tls-ie32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-tls-ie32.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-tls-le32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-tls-le32.test -------------------------------------------------------------------------------- /test/elf/ARM/rel-v4bx.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/rel-v4bx.test -------------------------------------------------------------------------------- /test/elf/ARM/thm-symbols.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/thm-symbols.test -------------------------------------------------------------------------------- /test/elf/ARM/two-got-for-symbol.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/two-got-for-symbol.test -------------------------------------------------------------------------------- /test/elf/ARM/undef-lazy-symbol.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/undef-lazy-symbol.test -------------------------------------------------------------------------------- /test/elf/ARM/veneer-mapping.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/veneer-mapping.test -------------------------------------------------------------------------------- /test/elf/ARM/weak-branch.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ARM/weak-branch.test -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/dynobj-data.c: -------------------------------------------------------------------------------- 1 | int d = 10; 2 | 3 | int fn() { return d; } 4 | -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/dynobj-data.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/dynobj-data.o -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/dynobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/dynobj.c -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/dynobj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/dynobj.o -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/sda-base.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/sda-base.o -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/sdata1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/sdata1.c -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/sdata1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/sdata1.o -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/sdata2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/sdata2.c -------------------------------------------------------------------------------- /test/elf/Hexagon/Inputs/sdata2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/Inputs/sdata2.o -------------------------------------------------------------------------------- /test/elf/Hexagon/dynlib-data.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/dynlib-data.test -------------------------------------------------------------------------------- /test/elf/Hexagon/dynlib-gotoff.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/dynlib-gotoff.test -------------------------------------------------------------------------------- /test/elf/Hexagon/dynlib-hash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/dynlib-hash.test -------------------------------------------------------------------------------- /test/elf/Hexagon/dynlib-rela.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/dynlib-rela.test -------------------------------------------------------------------------------- /test/elf/Hexagon/dynlib-syms.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/dynlib-syms.test -------------------------------------------------------------------------------- /test/elf/Hexagon/dynlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/dynlib.test -------------------------------------------------------------------------------- /test/elf/Hexagon/maxalignment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/maxalignment.test -------------------------------------------------------------------------------- /test/elf/Hexagon/rela-order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/rela-order.test -------------------------------------------------------------------------------- /test/elf/Hexagon/sda-base.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Hexagon/sda-base.test -------------------------------------------------------------------------------- /test/elf/Inputs/abs-test.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/abs-test.i386 -------------------------------------------------------------------------------- /test/elf/Inputs/allowduplicates.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/allowduplicates.objtxt -------------------------------------------------------------------------------- /test/elf/Inputs/bar.o.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/bar.o.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/branch-test.hexagon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/branch-test.hexagon -------------------------------------------------------------------------------- /test/elf/Inputs/branch-test.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/branch-test.ppc -------------------------------------------------------------------------------- /test/elf/Inputs/constants-merge.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/constants-merge.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/constdata.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/constdata.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/foo.o.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/foo.o.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/globalconst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/globalconst.c -------------------------------------------------------------------------------- /test/elf/Inputs/globalconst.o.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/globalconst.o.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/gotpcrel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/gotpcrel.S -------------------------------------------------------------------------------- /test/elf/Inputs/gotpcrel.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/gotpcrel.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/group-cmd-search-1.ls: -------------------------------------------------------------------------------- 1 | GROUP ( shared.so-x86-64 ) 2 | -------------------------------------------------------------------------------- /test/elf/Inputs/group-cmd-search-2.ls: -------------------------------------------------------------------------------- 1 | GROUP ( /shared.so-x86-64 ) 2 | -------------------------------------------------------------------------------- /test/elf/Inputs/group-cmd-search-3.ls: -------------------------------------------------------------------------------- 1 | GROUP ( -l:shared.so-x86-64 -lfnarchive ) 2 | -------------------------------------------------------------------------------- /test/elf/Inputs/ifunc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/ifunc.S -------------------------------------------------------------------------------- /test/elf/Inputs/ifunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/ifunc.cpp -------------------------------------------------------------------------------- /test/elf/Inputs/ifunc.cpp.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/ifunc.cpp.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/ifunc.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/ifunc.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/libfnarchive.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/libfnarchive.a -------------------------------------------------------------------------------- /test/elf/Inputs/libifunc.x86-64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/libifunc.x86-64.so -------------------------------------------------------------------------------- /test/elf/Inputs/libundef.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/libundef.so -------------------------------------------------------------------------------- /test/elf/Inputs/libweaksym.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/libweaksym.so -------------------------------------------------------------------------------- /test/elf/Inputs/mainobj.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/mainobj.x86_64 -------------------------------------------------------------------------------- /test/elf/Inputs/object-test.elf-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/object-test.elf-i386 -------------------------------------------------------------------------------- /test/elf/Inputs/phdr.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/phdr.i386 -------------------------------------------------------------------------------- /test/elf/Inputs/reloc-test.elf-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/reloc-test.elf-i386 -------------------------------------------------------------------------------- /test/elf/Inputs/reloc-xb.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/reloc-xb.x86 -------------------------------------------------------------------------------- /test/elf/Inputs/reloc-xt.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/reloc-xt.x86 -------------------------------------------------------------------------------- /test/elf/Inputs/relocs-dynamic.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/relocs-dynamic.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/relocs.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/relocs.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/responsefile: -------------------------------------------------------------------------------- 1 | --inresponsefile 2 | -------------------------------------------------------------------------------- /test/elf/Inputs/rodata-test.hexagon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/rodata-test.hexagon -------------------------------------------------------------------------------- /test/elf/Inputs/rodata-test.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/rodata-test.i386 -------------------------------------------------------------------------------- /test/elf/Inputs/rodata.c: -------------------------------------------------------------------------------- 1 | const unsigned char *str = "llvm"; 2 | int foo() { 3 | return str[0]; 4 | } 5 | -------------------------------------------------------------------------------- /test/elf/Inputs/rodata.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/rodata.o -------------------------------------------------------------------------------- /test/elf/Inputs/section-test.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/section-test.i386 -------------------------------------------------------------------------------- /test/elf/Inputs/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/shared.c -------------------------------------------------------------------------------- /test/elf/Inputs/shared.so-x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/shared.so-x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/stripped-empty.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/stripped-empty.x86_64 -------------------------------------------------------------------------------- /test/elf/Inputs/target-test.hexagon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/target-test.hexagon -------------------------------------------------------------------------------- /test/elf/Inputs/target-test.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/target-test.ppc -------------------------------------------------------------------------------- /test/elf/Inputs/tls.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/tls.S -------------------------------------------------------------------------------- /test/elf/Inputs/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/tls.c -------------------------------------------------------------------------------- /test/elf/Inputs/tls.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/tls.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/tlsAddr.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/tlsAddr.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/tlsaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/tlsaddr.c -------------------------------------------------------------------------------- /test/elf/Inputs/undef-from-main-so.c: -------------------------------------------------------------------------------- 1 | int x[2] = {1, 2}; 2 | -------------------------------------------------------------------------------- /test/elf/Inputs/undef-from-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/undef-from-main.c -------------------------------------------------------------------------------- /test/elf/Inputs/undef-pc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/undef-pc32.o -------------------------------------------------------------------------------- /test/elf/Inputs/undef.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/undef.o -------------------------------------------------------------------------------- /test/elf/Inputs/undef2-so.o.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/undef2-so.o.yaml -------------------------------------------------------------------------------- /test/elf/Inputs/use-shared-32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/use-shared-32s.c -------------------------------------------------------------------------------- /test/elf/Inputs/use-shared-32s.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/use-shared-32s.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/use-shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/use-shared.c -------------------------------------------------------------------------------- /test/elf/Inputs/use-shared.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/use-shared.x86-64 -------------------------------------------------------------------------------- /test/elf/Inputs/weaksym.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/weaksym.o -------------------------------------------------------------------------------- /test/elf/Inputs/writersyms.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/writersyms.o -------------------------------------------------------------------------------- /test/elf/Inputs/x86-64-relocs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Inputs/x86-64-relocs.S -------------------------------------------------------------------------------- /test/elf/Mips/base-address-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/base-address-64.test -------------------------------------------------------------------------------- /test/elf/Mips/base-address.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/base-address.test -------------------------------------------------------------------------------- /test/elf/Mips/ctors-order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/ctors-order.test -------------------------------------------------------------------------------- /test/elf/Mips/dt-textrel-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dt-textrel-64.test -------------------------------------------------------------------------------- /test/elf/Mips/dt-textrel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dt-textrel.test -------------------------------------------------------------------------------- /test/elf/Mips/dynamic-sym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dynamic-sym.test -------------------------------------------------------------------------------- /test/elf/Mips/dynlib-dynamic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dynlib-dynamic.test -------------------------------------------------------------------------------- /test/elf/Mips/dynlib-dynsym-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dynlib-dynsym-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/dynlib-dynsym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dynlib-dynsym.test -------------------------------------------------------------------------------- /test/elf/Mips/dynlib-fileheader.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dynlib-fileheader.test -------------------------------------------------------------------------------- /test/elf/Mips/dynsym-table-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dynsym-table-1.test -------------------------------------------------------------------------------- /test/elf/Mips/dynsym-table-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/dynsym-table-2.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-1-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-1-64.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-1.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-10.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-11.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-2-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-2-64.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-2.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-3-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-3-64.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-3.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-4-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-4-64.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-4.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-5-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-5-64.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-5.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-6-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-6-64.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-6.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-7-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-7-64.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-7.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-7.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-8.test -------------------------------------------------------------------------------- /test/elf/Mips/e-flags-merge-9.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/e-flags-merge-9.test -------------------------------------------------------------------------------- /test/elf/Mips/entry-name.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/entry-name.test -------------------------------------------------------------------------------- /test/elf/Mips/exe-dynamic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/exe-dynamic.test -------------------------------------------------------------------------------- /test/elf/Mips/exe-dynsym-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/exe-dynsym-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/exe-dynsym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/exe-dynsym.test -------------------------------------------------------------------------------- /test/elf/Mips/exe-fileheader-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/exe-fileheader-64.test -------------------------------------------------------------------------------- /test/elf/Mips/exe-fileheader.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/exe-fileheader.test -------------------------------------------------------------------------------- /test/elf/Mips/exe-got-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/exe-got-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/exe-got.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/exe-got.test -------------------------------------------------------------------------------- /test/elf/Mips/got-page-32-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/got-page-32-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/got-page-32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/got-page-32.test -------------------------------------------------------------------------------- /test/elf/Mips/got-page-64-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/got-page-64-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/got-page-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/got-page-64.test -------------------------------------------------------------------------------- /test/elf/Mips/got16-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/got16-2.test -------------------------------------------------------------------------------- /test/elf/Mips/got16-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/got16-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/got16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/got16.test -------------------------------------------------------------------------------- /test/elf/Mips/gotsym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/gotsym.test -------------------------------------------------------------------------------- /test/elf/Mips/gp-sym-1-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/gp-sym-1-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/gp-sym-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/gp-sym-1.test -------------------------------------------------------------------------------- /test/elf/Mips/gp-sym-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/gp-sym-2.test -------------------------------------------------------------------------------- /test/elf/Mips/hilo16-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/hilo16-1.test -------------------------------------------------------------------------------- /test/elf/Mips/hilo16-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/hilo16-2.test -------------------------------------------------------------------------------- /test/elf/Mips/hilo16-3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/hilo16-3.test -------------------------------------------------------------------------------- /test/elf/Mips/hilo16-4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/hilo16-4.test -------------------------------------------------------------------------------- /test/elf/Mips/hilo16-5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/hilo16-5.test -------------------------------------------------------------------------------- /test/elf/Mips/hilo16-8-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/hilo16-8-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/hilo16-9-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/hilo16-9-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/initfini-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/initfini-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/interpreter-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/interpreter-64.test -------------------------------------------------------------------------------- /test/elf/Mips/interpreter.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/interpreter.test -------------------------------------------------------------------------------- /test/elf/Mips/invalid-reginfo.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/invalid-reginfo.test -------------------------------------------------------------------------------- /test/elf/Mips/jalx-align-err.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/jalx-align-err.test -------------------------------------------------------------------------------- /test/elf/Mips/jump-fix-err.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/jump-fix-err.test -------------------------------------------------------------------------------- /test/elf/Mips/la25-stub-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/la25-stub-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/la25-stub.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/la25-stub.test -------------------------------------------------------------------------------- /test/elf/Mips/mips-options-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/mips-options-01.test -------------------------------------------------------------------------------- /test/elf/Mips/mips-options-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/mips-options-02.test -------------------------------------------------------------------------------- /test/elf/Mips/mips-options-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/mips-options-03.test -------------------------------------------------------------------------------- /test/elf/Mips/mips-options-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/mips-options-04.test -------------------------------------------------------------------------------- /test/elf/Mips/mips-options-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/mips-options-05.test -------------------------------------------------------------------------------- /test/elf/Mips/mips-options-gp0.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/mips-options-gp0.test -------------------------------------------------------------------------------- /test/elf/Mips/n64-rel-chain.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/n64-rel-chain.test -------------------------------------------------------------------------------- /test/elf/Mips/opt-emulation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/opt-emulation.test -------------------------------------------------------------------------------- /test/elf/Mips/pc23-range.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/pc23-range.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-entry-mixed-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-entry-mixed-1.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-entry-mixed-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-entry-mixed-2.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-entry-mixed-3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-entry-mixed-3.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-entry-mixed-4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-entry-mixed-4.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-entry-r6.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-entry-r6.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-header-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-header-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-header-mixed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-header-mixed.test -------------------------------------------------------------------------------- /test/elf/Mips/plt-header.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/plt-header.test -------------------------------------------------------------------------------- /test/elf/Mips/r26-1-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/r26-1-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/r26-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/r26-1.test -------------------------------------------------------------------------------- /test/elf/Mips/r26-2-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/r26-2-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/r26-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/r26-2.test -------------------------------------------------------------------------------- /test/elf/Mips/reginfo-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/reginfo-01.test -------------------------------------------------------------------------------- /test/elf/Mips/reginfo-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/reginfo-02.test -------------------------------------------------------------------------------- /test/elf/Mips/reginfo-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/reginfo-03.test -------------------------------------------------------------------------------- /test/elf/Mips/reginfo-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/reginfo-04.test -------------------------------------------------------------------------------- /test/elf/Mips/reginfo-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/reginfo-05.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-32.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-64.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-call-hilo-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-call-hilo-01.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-call-hilo-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-call-hilo-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-copy-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-copy-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-copy-pc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-copy-pc.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-copy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-copy.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-01.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-02.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-03.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-04.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-04.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-05.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-05.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-06-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-06-64.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-06.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-06.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-07-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-07-64.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-07.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-07.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-08-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-08-64.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-08.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-08.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-09.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-09.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-10.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-10.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-11.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-12.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-12.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-13.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-13.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-dynamic-14.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-dynamic-14.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-eh-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-eh-01.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-eh-02.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-eh-02.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-eh-03.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-eh-03.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-got-hilo-01.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-got-hilo-01.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-got-hilo-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-got-hilo-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-gprel16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-gprel16.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-gprel32-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-gprel32-64.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-gprel32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-gprel32.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc-hilo.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc-hilo.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc18-s3-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc18-s3-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc18-s3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc18-s3.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc19-s2-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc19-s2-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc19-s2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc19-s2.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc21-s2-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc21-s2-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc21-s2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc21-s2.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc26-s2-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc26-s2-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc26-s2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc26-s2.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc32.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-pc7-10-16-23.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-pc7-10-16-23.test -------------------------------------------------------------------------------- /test/elf/Mips/rel-sub.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/rel-sub.test -------------------------------------------------------------------------------- /test/elf/Mips/st-other.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/st-other.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-1-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-1-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-1.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-2-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-2-64.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-2-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-2-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-2.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-3-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-3-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-3.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-4-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-4-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-4.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-5-64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-5-64.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-5-micro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-5-micro.test -------------------------------------------------------------------------------- /test/elf/Mips/tls-5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/Mips/tls-5.test -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/constint.c: -------------------------------------------------------------------------------- 1 | const int b = 20; 2 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/constint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/constint.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/debug0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/debug0.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/debug0.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/debug0.x86-64 -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/debug1.c: -------------------------------------------------------------------------------- 1 | int adena() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/debug1.x86-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/debug1.x86-64 -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/externtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/externtls.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/fn.c: -------------------------------------------------------------------------------- 1 | int fn() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/fn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/fn.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/1.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/1.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/fn.c: -------------------------------------------------------------------------------- 1 | int fn() { 2 | fn1(); 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/fn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/fn.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/fn1.c: -------------------------------------------------------------------------------- 1 | int fn1() { 2 | fn2(); 3 | } 4 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/fn1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/fn1.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/fn2.c: -------------------------------------------------------------------------------- 1 | int fn2() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/fn2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/fn2.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/group.sh -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/libfn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/libfn.a -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/libfn.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/libfn.so -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/libfn1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/libfn1.a -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/group/libfn2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/group/libfn2.so -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/initfini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/initfini.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/initfini.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/initfini.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/largebss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/largebss.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/largebss.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/largebss.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/layoutpass/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/layoutpass/1.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/layoutpass/1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/layoutpass/1.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/layoutpass/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/layoutpass/2.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/layoutpass/2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/layoutpass/2.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/layoutpass/3.c: -------------------------------------------------------------------------------- 1 | int d() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/layoutpass/3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/layoutpass/3.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/libfn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/libfn.a -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/libfn.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/libfn.so -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/main.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/main.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/multi-ovrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/multi-ovrd.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/multi-ovrd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/multi-ovrd.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/multi-weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/multi-weak.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/multi-weak.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/multi-weak.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/multiweaksyms.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/multiweaksyms.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/nmagic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/nmagic.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/nmagic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/nmagic.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/no-interp-section.c: -------------------------------------------------------------------------------- 1 | int c = 10; 2 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/note.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/note.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/note.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/note.s -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/note_ro_rw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/note_ro_rw.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/note_ro_rw.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/note_ro_rw.s -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/ovrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/ovrd.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/ovrd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/ovrd.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/rodata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/rodata.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/rodata.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/rodata.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/rodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/rodata.s -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/rwint.c: -------------------------------------------------------------------------------- 1 | int a = 10; 2 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/rwint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/rwint.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/sectionmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/sectionmap.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/sectionmap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/sectionmap.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/undefcpp.c: -------------------------------------------------------------------------------- 1 | int foo() { return _Z3fooPKc(); } 2 | -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/undefcpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/undefcpp.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/weak.c -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/weak.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/weak.o -------------------------------------------------------------------------------- /test/elf/X86_64/Inputs/weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/Inputs/weak.s -------------------------------------------------------------------------------- /test/elf/X86_64/alignoffset.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/alignoffset.test -------------------------------------------------------------------------------- /test/elf/X86_64/debug.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/debug.test -------------------------------------------------------------------------------- /test/elf/X86_64/defsym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/defsym.test -------------------------------------------------------------------------------- /test/elf/X86_64/demangle.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/demangle.test -------------------------------------------------------------------------------- /test/elf/X86_64/dynamicvars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/dynamicvars.test -------------------------------------------------------------------------------- /test/elf/X86_64/dynlib-search.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/dynlib-search.test -------------------------------------------------------------------------------- /test/elf/X86_64/dynsym-weak.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/dynsym-weak.test -------------------------------------------------------------------------------- /test/elf/X86_64/extern-tls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/extern-tls.test -------------------------------------------------------------------------------- /test/elf/X86_64/imagebase.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/imagebase.test -------------------------------------------------------------------------------- /test/elf/X86_64/initfini-order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/initfini-order.test -------------------------------------------------------------------------------- /test/elf/X86_64/initfini.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/initfini.test -------------------------------------------------------------------------------- /test/elf/X86_64/largebss.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/largebss.test -------------------------------------------------------------------------------- /test/elf/X86_64/layoutpass-order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/layoutpass-order.test -------------------------------------------------------------------------------- /test/elf/X86_64/maxpagesize.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/maxpagesize.test -------------------------------------------------------------------------------- /test/elf/X86_64/multi-weak-layout.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/multi-weak-layout.test -------------------------------------------------------------------------------- /test/elf/X86_64/nmagic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/nmagic.test -------------------------------------------------------------------------------- /test/elf/X86_64/noalignsegments.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/noalignsegments.test -------------------------------------------------------------------------------- /test/elf/X86_64/note-sections.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/note-sections.test -------------------------------------------------------------------------------- /test/elf/X86_64/omagic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/omagic.test -------------------------------------------------------------------------------- /test/elf/X86_64/outputsegments.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/outputsegments.test -------------------------------------------------------------------------------- /test/elf/X86_64/reloc_r_x86_64_16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/reloc_r_x86_64_16.test -------------------------------------------------------------------------------- /test/elf/X86_64/rodata.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/rodata.test -------------------------------------------------------------------------------- /test/elf/X86_64/sectionchoice.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/sectionchoice.test -------------------------------------------------------------------------------- /test/elf/X86_64/sectionmap.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/sectionmap.test -------------------------------------------------------------------------------- /test/elf/X86_64/staticlib-search.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/staticlib-search.test -------------------------------------------------------------------------------- /test/elf/X86_64/undef.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/undef.test -------------------------------------------------------------------------------- /test/elf/X86_64/underscore-end.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/underscore-end.test -------------------------------------------------------------------------------- /test/elf/X86_64/weak-override.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/weak-override.test -------------------------------------------------------------------------------- /test/elf/X86_64/weak-zero-sized.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/weak-zero-sized.test -------------------------------------------------------------------------------- /test/elf/X86_64/weaksym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/weaksym.test -------------------------------------------------------------------------------- /test/elf/X86_64/yamlinput.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/X86_64/yamlinput.test -------------------------------------------------------------------------------- /test/elf/abs-dup.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/abs-dup.objtxt -------------------------------------------------------------------------------- /test/elf/abs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/abs.test -------------------------------------------------------------------------------- /test/elf/allowduplicates.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/allowduplicates.objtxt -------------------------------------------------------------------------------- /test/elf/archive-elf-forceload.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/archive-elf-forceload.test -------------------------------------------------------------------------------- /test/elf/archive-elf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/archive-elf.test -------------------------------------------------------------------------------- /test/elf/as-needed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/as-needed.test -------------------------------------------------------------------------------- /test/elf/branch.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/branch.test -------------------------------------------------------------------------------- /test/elf/check.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/check.test -------------------------------------------------------------------------------- /test/elf/checkrodata.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/checkrodata.test -------------------------------------------------------------------------------- /test/elf/common.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/common.test -------------------------------------------------------------------------------- /test/elf/defsym.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/defsym.objtxt -------------------------------------------------------------------------------- /test/elf/discard-all.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/discard-all.test -------------------------------------------------------------------------------- /test/elf/discard-locals.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/discard-locals.test -------------------------------------------------------------------------------- /test/elf/dynamic-segorder.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/dynamic-segorder.test -------------------------------------------------------------------------------- /test/elf/dynamic-undef.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/dynamic-undef.test -------------------------------------------------------------------------------- /test/elf/dynamic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/dynamic.test -------------------------------------------------------------------------------- /test/elf/eh_frame_hdr.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/eh_frame_hdr.test -------------------------------------------------------------------------------- /test/elf/entry.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/entry.objtxt -------------------------------------------------------------------------------- /test/elf/export-dynamic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/export-dynamic.test -------------------------------------------------------------------------------- /test/elf/filenotfound.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/filenotfound.test -------------------------------------------------------------------------------- /test/elf/gnulinkonce/gnulinkonce.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/gnulinkonce/gnulinkonce.test -------------------------------------------------------------------------------- /test/elf/gotpcrel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/gotpcrel.test -------------------------------------------------------------------------------- /test/elf/gottpoff.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/gottpoff.test -------------------------------------------------------------------------------- /test/elf/group-cmd-search.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/group-cmd-search.test -------------------------------------------------------------------------------- /test/elf/hexagon-quickdata-sort.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/hexagon-quickdata-sort.test -------------------------------------------------------------------------------- /test/elf/ifunc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ifunc.test -------------------------------------------------------------------------------- /test/elf/ignore-unknownoption.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/ignore-unknownoption.test -------------------------------------------------------------------------------- /test/elf/init_array-order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/init_array-order.test -------------------------------------------------------------------------------- /test/elf/init_array.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/init_array.test -------------------------------------------------------------------------------- /test/elf/initfini-options.test-1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/initfini-options.test-1.test -------------------------------------------------------------------------------- /test/elf/initfini-options.test-2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/initfini-options.test-2.test -------------------------------------------------------------------------------- /test/elf/initfini-options.test-3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/initfini-options.test-3.test -------------------------------------------------------------------------------- /test/elf/librarynotfound.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/librarynotfound.test -------------------------------------------------------------------------------- /test/elf/linker-as-ld.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/linker-as-ld.test -------------------------------------------------------------------------------- /test/elf/linkerscript/Inputs/invalid.ls: -------------------------------------------------------------------------------- 1 | GROUP( 2 | -------------------------------------------------------------------------------- /test/elf/linkerscript/Inputs/valid.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/linkerscript/Inputs/valid.ls -------------------------------------------------------------------------------- /test/elf/linkerscript/externs.objtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/linkerscript/externs.objtxt -------------------------------------------------------------------------------- /test/elf/linkerscript/invalid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/linkerscript/invalid.test -------------------------------------------------------------------------------- /test/elf/loginputfiles.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/loginputfiles.test -------------------------------------------------------------------------------- /test/elf/mergeatoms.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/mergeatoms.test -------------------------------------------------------------------------------- /test/elf/mergeconstants.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/mergeconstants.test -------------------------------------------------------------------------------- /test/elf/mergeglobalatoms.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/mergeglobalatoms.test -------------------------------------------------------------------------------- /test/elf/no-unique-section-names.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/no-unique-section-names.test -------------------------------------------------------------------------------- /test/elf/note.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/note.test -------------------------------------------------------------------------------- /test/elf/options/dynamic-linker.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/options/dynamic-linker.test -------------------------------------------------------------------------------- /test/elf/phdr.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/phdr.test -------------------------------------------------------------------------------- /test/elf/quickdata.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/quickdata.test -------------------------------------------------------------------------------- /test/elf/reloc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/reloc.test -------------------------------------------------------------------------------- /test/elf/responsefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/responsefile.test -------------------------------------------------------------------------------- /test/elf/rodata.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/rodata.test -------------------------------------------------------------------------------- /test/elf/rosegment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/rosegment.test -------------------------------------------------------------------------------- /test/elf/sections.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/sections.test -------------------------------------------------------------------------------- /test/elf/sh_addralign.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/sh_addralign.test -------------------------------------------------------------------------------- /test/elf/soname.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/soname.test -------------------------------------------------------------------------------- /test/elf/strip-all.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/strip-all.test -------------------------------------------------------------------------------- /test/elf/stripped-empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/stripped-empty.test -------------------------------------------------------------------------------- /test/elf/symbols.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/symbols.test -------------------------------------------------------------------------------- /test/elf/tls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/tls.test -------------------------------------------------------------------------------- /test/elf/tlsAddr.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/tlsAddr.test -------------------------------------------------------------------------------- /test/elf/undef-from-dso-to-main.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/undef-from-dso-to-main.test -------------------------------------------------------------------------------- /test/elf/undef-from-main-dso.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/undef-from-main-dso.test -------------------------------------------------------------------------------- /test/elf/weaksym.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/weaksym.test -------------------------------------------------------------------------------- /test/elf/wrap.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/wrap.test -------------------------------------------------------------------------------- /test/elf/x86-64-dynamic-relocs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/x86-64-dynamic-relocs.test -------------------------------------------------------------------------------- /test/elf/x86-64-dynamic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/x86-64-dynamic.test -------------------------------------------------------------------------------- /test/elf/x86.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/x86.test -------------------------------------------------------------------------------- /test/elf/x86_64-kinds.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/x86_64-kinds.test -------------------------------------------------------------------------------- /test/elf/zoption_dtflags.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/elf/zoption_dtflags.test -------------------------------------------------------------------------------- /test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/lit.cfg -------------------------------------------------------------------------------- /test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/lit.site.cfg.in -------------------------------------------------------------------------------- /test/mach-o/Inputs/DependencyDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/DependencyDump.py -------------------------------------------------------------------------------- /test/mach-o/Inputs/PIE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/PIE.yaml -------------------------------------------------------------------------------- /test/mach-o/Inputs/arm-shims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/arm-shims.yaml -------------------------------------------------------------------------------- /test/mach-o/Inputs/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/bar.yaml -------------------------------------------------------------------------------- /test/mach-o/Inputs/exported_symbols_list.exp: -------------------------------------------------------------------------------- 1 | # 2 | # For use with exported_symbols_list.yaml 3 | # 4 | _foo 5 | _b 6 | 7 | -------------------------------------------------------------------------------- /test/mach-o/Inputs/full.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/full.filelist -------------------------------------------------------------------------------- /test/mach-o/Inputs/got-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/got-order.yaml -------------------------------------------------------------------------------- /test/mach-o/Inputs/got-order2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/got-order2.yaml -------------------------------------------------------------------------------- /test/mach-o/Inputs/libSystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/libSystem.yaml -------------------------------------------------------------------------------- /test/mach-o/Inputs/libbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/libbar.a -------------------------------------------------------------------------------- /test/mach-o/Inputs/libfoo.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/libfoo.a -------------------------------------------------------------------------------- /test/mach-o/Inputs/linker-as-ld.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/linker-as-ld.yaml -------------------------------------------------------------------------------- /test/mach-o/Inputs/partial.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/Inputs/partial.filelist -------------------------------------------------------------------------------- /test/mach-o/PIE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/PIE.yaml -------------------------------------------------------------------------------- /test/mach-o/align_text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/align_text.yaml -------------------------------------------------------------------------------- /test/mach-o/arm-interworking-movw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/arm-interworking-movw.yaml -------------------------------------------------------------------------------- /test/mach-o/arm-interworking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/arm-interworking.yaml -------------------------------------------------------------------------------- /test/mach-o/arm-shims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/arm-shims.yaml -------------------------------------------------------------------------------- /test/mach-o/cstring-sections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/cstring-sections.yaml -------------------------------------------------------------------------------- /test/mach-o/data-only-dylib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/data-only-dylib.yaml -------------------------------------------------------------------------------- /test/mach-o/demangle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/demangle.yaml -------------------------------------------------------------------------------- /test/mach-o/dependency_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/dependency_info.yaml -------------------------------------------------------------------------------- /test/mach-o/dso_handle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/dso_handle.yaml -------------------------------------------------------------------------------- /test/mach-o/dylib-exports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/dylib-exports.yaml -------------------------------------------------------------------------------- /test/mach-o/dylib-install-names.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/dylib-install-names.yaml -------------------------------------------------------------------------------- /test/mach-o/exe-offsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/exe-offsets.yaml -------------------------------------------------------------------------------- /test/mach-o/exe-segment-overlap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/exe-segment-overlap.yaml -------------------------------------------------------------------------------- /test/mach-o/fat-archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/fat-archive.yaml -------------------------------------------------------------------------------- /test/mach-o/filelist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/filelist.yaml -------------------------------------------------------------------------------- /test/mach-o/force_load-dylib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/force_load-dylib.yaml -------------------------------------------------------------------------------- /test/mach-o/force_load-x86_64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/force_load-x86_64.yaml -------------------------------------------------------------------------------- /test/mach-o/framework-user-paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/framework-user-paths.yaml -------------------------------------------------------------------------------- /test/mach-o/got-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/got-order.yaml -------------------------------------------------------------------------------- /test/mach-o/hello-world-arm64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/hello-world-arm64.yaml -------------------------------------------------------------------------------- /test/mach-o/hello-world-armv6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/hello-world-armv6.yaml -------------------------------------------------------------------------------- /test/mach-o/hello-world-armv7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/hello-world-armv7.yaml -------------------------------------------------------------------------------- /test/mach-o/hello-world-x86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/hello-world-x86.yaml -------------------------------------------------------------------------------- /test/mach-o/hello-world-x86_64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/hello-world-x86_64.yaml -------------------------------------------------------------------------------- /test/mach-o/image-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/image-base.yaml -------------------------------------------------------------------------------- /test/mach-o/infer-arch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/infer-arch.yaml -------------------------------------------------------------------------------- /test/mach-o/interposing-section.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/interposing-section.yaml -------------------------------------------------------------------------------- /test/mach-o/keep_private_externs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/keep_private_externs.yaml -------------------------------------------------------------------------------- /test/mach-o/lazy-bind-x86_64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/lazy-bind-x86_64.yaml -------------------------------------------------------------------------------- /test/mach-o/lib-search-paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/lib-search-paths.yaml -------------------------------------------------------------------------------- /test/mach-o/library-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/library-order.yaml -------------------------------------------------------------------------------- /test/mach-o/library-rescan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/library-rescan.yaml -------------------------------------------------------------------------------- /test/mach-o/libresolve-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/libresolve-simple.yaml -------------------------------------------------------------------------------- /test/mach-o/libresolve-user-paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/libresolve-user-paths.yaml -------------------------------------------------------------------------------- /test/mach-o/libresolve-z.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/libresolve-z.yaml -------------------------------------------------------------------------------- /test/mach-o/linker-as-ld.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/linker-as-ld.yaml -------------------------------------------------------------------------------- /test/mach-o/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/lit.local.cfg -------------------------------------------------------------------------------- /test/mach-o/mh_bundle_header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/mh_bundle_header.yaml -------------------------------------------------------------------------------- /test/mach-o/mh_dylib_header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/mh_dylib_header.yaml -------------------------------------------------------------------------------- /test/mach-o/objc_export_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/objc_export_list.yaml -------------------------------------------------------------------------------- /test/mach-o/order_file-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/order_file-basic.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-aliases.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-arm-relocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-arm-relocs.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-cfstring32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-cfstring32.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-cfstring64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-cfstring64.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-data.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-eh-frame.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-eh-frame.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-function.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-function.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-initializers32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-initializers32.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-initializers64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-initializers64.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-literals-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-literals-error.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-literals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-literals.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-relocs-x86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-relocs-x86.yaml -------------------------------------------------------------------------------- /test/mach-o/parse-tentative-defs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/parse-tentative-defs.yaml -------------------------------------------------------------------------------- /test/mach-o/rpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/rpath.yaml -------------------------------------------------------------------------------- /test/mach-o/sectalign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/sectalign.yaml -------------------------------------------------------------------------------- /test/mach-o/stack-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/stack-size.yaml -------------------------------------------------------------------------------- /test/mach-o/upward-dylib-paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/upward-dylib-paths.yaml -------------------------------------------------------------------------------- /test/mach-o/usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/usage.yaml -------------------------------------------------------------------------------- /test/mach-o/use-simple-dylib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/use-simple-dylib.yaml -------------------------------------------------------------------------------- /test/mach-o/write-final-sections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/write-final-sections.yaml -------------------------------------------------------------------------------- /test/mach-o/wrong-arch-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/mach-o/wrong-arch-error.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/abs.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/abs.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/alignment.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/alignment.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-ImageBase.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-ImageBase.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-addr32-exec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-addr32-exec.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-addr32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-addr32.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-blx23t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-blx23t.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-branch24t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-branch24t.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-exports.def: -------------------------------------------------------------------------------- 1 | LIBRARY "armnt-exports" 2 | EXPORTS 3 | function 4 | 5 | -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-import.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-import.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-mov32t-exec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-mov32t-exec.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-mov32t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-mov32t.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-obj.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-obj.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/armnt-obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/armnt-obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/basereloc.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/basereloc.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/bss.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/bss.asm -------------------------------------------------------------------------------- /test/pecoff/Inputs/bss.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/bss.obj -------------------------------------------------------------------------------- /test/pecoff/Inputs/comdat.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/comdat.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/drectve.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/drectve.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/drectve2.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/drectve2.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/drectve3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/drectve3.lib -------------------------------------------------------------------------------- /test/pecoff/Inputs/entry.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/entry.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/executable.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/executable.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/executable.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/executable.s -------------------------------------------------------------------------------- /test/pecoff/Inputs/export.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/export.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/exports.def -------------------------------------------------------------------------------- /test/pecoff/Inputs/exports2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/exports2.def -------------------------------------------------------------------------------- /test/pecoff/Inputs/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/hello.asm -------------------------------------------------------------------------------- /test/pecoff/Inputs/hello.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/hello.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/hello64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/hello64.asm -------------------------------------------------------------------------------- /test/pecoff/Inputs/hello64.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/hello64.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/hello64lib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/hello64lib.asm -------------------------------------------------------------------------------- /test/pecoff/Inputs/hello64lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/hello64lib.lib -------------------------------------------------------------------------------- /test/pecoff/Inputs/imagebase.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/imagebase.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/library.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/library.lib -------------------------------------------------------------------------------- /test/pecoff/Inputs/main.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/main.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/nop.asm -------------------------------------------------------------------------------- /test/pecoff/Inputs/nop.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/nop.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/nop64.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/nop64.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/reloc.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/reloc.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/reloc64.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/reloc64.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/resource.rc: -------------------------------------------------------------------------------- 1 | STRINGTABLE 2 | { 3 | 1, "Hello" 4 | } 5 | -------------------------------------------------------------------------------- /test/pecoff/Inputs/resource.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/resource.res -------------------------------------------------------------------------------- /test/pecoff/Inputs/responsefile.txt: -------------------------------------------------------------------------------- 1 | -foo -bar\baz 2 | -------------------------------------------------------------------------------- /test/pecoff/Inputs/secrel1.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/secrel1.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/secrel2.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/secrel2.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/seh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/seh.c -------------------------------------------------------------------------------- /test/pecoff/Inputs/seh.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/seh.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/static.lib -------------------------------------------------------------------------------- /test/pecoff/Inputs/subsystem.main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/subsystem.main.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/tlsused.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/tlsused.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/unwind.obj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/unwind.obj.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/vars-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/vars-main.c -------------------------------------------------------------------------------- /test/pecoff/Inputs/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/vars.c -------------------------------------------------------------------------------- /test/pecoff/Inputs/vars.dll.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/vars.dll.yaml -------------------------------------------------------------------------------- /test/pecoff/Inputs/vars.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/vars.lib -------------------------------------------------------------------------------- /test/pecoff/Inputs/vars64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/vars64.lib -------------------------------------------------------------------------------- /test/pecoff/Inputs/weak-externals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/Inputs/weak-externals.asm -------------------------------------------------------------------------------- /test/pecoff/alignment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/alignment.test -------------------------------------------------------------------------------- /test/pecoff/alternatename.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/alternatename.test -------------------------------------------------------------------------------- /test/pecoff/armnt-ImageBase.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-ImageBase.test -------------------------------------------------------------------------------- /test/pecoff/armnt-addr32-exec.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-addr32-exec.test -------------------------------------------------------------------------------- /test/pecoff/armnt-addr32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-addr32.test -------------------------------------------------------------------------------- /test/pecoff/armnt-blx23t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-blx23t.test -------------------------------------------------------------------------------- /test/pecoff/armnt-branch24t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-branch24t.test -------------------------------------------------------------------------------- /test/pecoff/armnt-exports.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-exports.s -------------------------------------------------------------------------------- /test/pecoff/armnt-exports.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-exports.test -------------------------------------------------------------------------------- /test/pecoff/armnt-imports.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-imports.test -------------------------------------------------------------------------------- /test/pecoff/armnt-mov32t-exec.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-mov32t-exec.test -------------------------------------------------------------------------------- /test/pecoff/armnt-movt32t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt-movt32t.test -------------------------------------------------------------------------------- /test/pecoff/armnt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/armnt.test -------------------------------------------------------------------------------- /test/pecoff/associative.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/associative.test -------------------------------------------------------------------------------- /test/pecoff/base-reloc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/base-reloc.test -------------------------------------------------------------------------------- /test/pecoff/baseaddr.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/baseaddr.test -------------------------------------------------------------------------------- /test/pecoff/bss-section.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/bss-section.test -------------------------------------------------------------------------------- /test/pecoff/comdat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/comdat.test -------------------------------------------------------------------------------- /test/pecoff/common-symbol.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/common-symbol.test -------------------------------------------------------------------------------- /test/pecoff/conflicting-machine.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/conflicting-machine.test -------------------------------------------------------------------------------- /test/pecoff/delayimport.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/delayimport.test -------------------------------------------------------------------------------- /test/pecoff/dll.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/dll.test -------------------------------------------------------------------------------- /test/pecoff/dosstub.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/dosstub.test -------------------------------------------------------------------------------- /test/pecoff/drectve.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/drectve.test -------------------------------------------------------------------------------- /test/pecoff/dynamic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/dynamic.test -------------------------------------------------------------------------------- /test/pecoff/dynamicbase.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/dynamicbase.test -------------------------------------------------------------------------------- /test/pecoff/entry.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/entry.test -------------------------------------------------------------------------------- /test/pecoff/export-warning.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/export-warning.test -------------------------------------------------------------------------------- /test/pecoff/export.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/export.test -------------------------------------------------------------------------------- /test/pecoff/exportlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/exportlib.test -------------------------------------------------------------------------------- /test/pecoff/exportlib2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/exportlib2.test -------------------------------------------------------------------------------- /test/pecoff/grouped-sections.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/grouped-sections.test -------------------------------------------------------------------------------- /test/pecoff/hello.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/hello.test -------------------------------------------------------------------------------- /test/pecoff/hello64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/hello64.test -------------------------------------------------------------------------------- /test/pecoff/help.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/help.test -------------------------------------------------------------------------------- /test/pecoff/imagebase.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/imagebase.test -------------------------------------------------------------------------------- /test/pecoff/importlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/importlib.test -------------------------------------------------------------------------------- /test/pecoff/include.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/include.test -------------------------------------------------------------------------------- /test/pecoff/lib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/lib.test -------------------------------------------------------------------------------- /test/pecoff/libarg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/libarg.test -------------------------------------------------------------------------------- /test/pecoff/localyimported.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/localyimported.test -------------------------------------------------------------------------------- /test/pecoff/long-section-name.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/long-section-name.test -------------------------------------------------------------------------------- /test/pecoff/machinetype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/machinetype.test -------------------------------------------------------------------------------- /test/pecoff/manifest.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/manifest.test -------------------------------------------------------------------------------- /test/pecoff/merge-largest.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/merge-largest.test -------------------------------------------------------------------------------- /test/pecoff/merge-same-size.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/merge-same-size.test -------------------------------------------------------------------------------- /test/pecoff/multi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/multi.test -------------------------------------------------------------------------------- /test/pecoff/noentry.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/noentry.test -------------------------------------------------------------------------------- /test/pecoff/nonstandard-sections.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/nonstandard-sections.test -------------------------------------------------------------------------------- /test/pecoff/options.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/options.test -------------------------------------------------------------------------------- /test/pecoff/pe32plus.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/pe32plus.test -------------------------------------------------------------------------------- /test/pecoff/reloc.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/reloc.test -------------------------------------------------------------------------------- /test/pecoff/reloc64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/reloc64.test -------------------------------------------------------------------------------- /test/pecoff/resource.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/resource.test -------------------------------------------------------------------------------- /test/pecoff/responsefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/responsefile.test -------------------------------------------------------------------------------- /test/pecoff/safeseh.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/safeseh.test -------------------------------------------------------------------------------- /test/pecoff/secrel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/secrel.test -------------------------------------------------------------------------------- /test/pecoff/section-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/section-attribute.test -------------------------------------------------------------------------------- /test/pecoff/section-renaming.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/section-renaming.test -------------------------------------------------------------------------------- /test/pecoff/seh.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/seh.test -------------------------------------------------------------------------------- /test/pecoff/seh64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/seh64.test -------------------------------------------------------------------------------- /test/pecoff/subsystem.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/subsystem.test -------------------------------------------------------------------------------- /test/pecoff/tls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/tls.test -------------------------------------------------------------------------------- /test/pecoff/trivial.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/trivial.test -------------------------------------------------------------------------------- /test/pecoff/unknown-drectve.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/unknown-drectve.test -------------------------------------------------------------------------------- /test/pecoff/weak-external.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/test/pecoff/weak-external.test -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/tools/lld/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lld/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/tools/lld/TODO.txt -------------------------------------------------------------------------------- /tools/lld/lld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/tools/lld/lld.cpp -------------------------------------------------------------------------------- /unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/CoreTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/unittests/CoreTests/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/CoreTests/ParallelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/unittests/CoreTests/ParallelTest.cpp -------------------------------------------------------------------------------- /unittests/CoreTests/RangeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/unittests/CoreTests/RangeTest.cpp -------------------------------------------------------------------------------- /unittests/DriverTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/unittests/DriverTests/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/DriverTests/DriverTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/unittests/DriverTests/DriverTest.h -------------------------------------------------------------------------------- /unittests/MachOTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/unittests/MachOTests/CMakeLists.txt -------------------------------------------------------------------------------- /utils/astyle-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rui314/lld/HEAD/utils/astyle-options --------------------------------------------------------------------------------