Skip to content
  1. Jun 08, 2015
    • Rui Ueyama's avatar
      COFF: Read symbol names lazily. · 57fe78d3
      Rui Ueyama authored
      This change seems to make the linker about 10% faster.
      Reading symbol name is not very cheap because it needs strlen()
      on the string table. We were wasting time on reading non-external
      symbol names that would never be used by the linker.
      
      llvm-svn: 239332
      57fe78d3
    • Rui Ueyama's avatar
      COFF: Avoid callign stable_sort. · f533d3e0
      Rui Ueyama authored
      MSVC profiler reported that this stable_sort takes 7% time
      when self-linking. As a result, createSection was taking 10% time.
      Now createSection takes 3%. This small change actually makes
      the linker a bit but perceptibly faster.
      
      llvm-svn: 239292
      f533d3e0
    • Rui Ueyama's avatar
      COFF: Use the empty string as the current directory instead of ".". · 7d80640f
      Rui Ueyama authored
      This is NFC but makes log message a bit nicer because it doesn't
      append .\ (or ./ on Unix) to files in the current directory.
      
      llvm-svn: 239290
      7d80640f
    • Rui Ueyama's avatar
      COFF: Add more log messages. · eeae5ddb
      Rui Ueyama authored
      llvm-svn: 239289
      eeae5ddb
    • Rui Ueyama's avatar
      COFF: Print out log messages to stdout. · 5b2588ae
      Rui Ueyama authored
      llvm-svn: 239288
      5b2588ae
    • Rui Ueyama's avatar
      COFF: Check for auxiliary symbol's type. · 80141a4b
      Rui Ueyama authored
      We forgot to check for auxiliary symbol's type. So we sometimes read
      garbage as associative section definitions.
      
      Associative sections are considered as not live themselves by the
      garbage collector because they are live only when associaited sections
      are live.
      
      By reading more data (or garbage) as associative section definitions,
      we treated more sections as non-GC-roots, that caused the linker to
      discard too many sections by mistake. That caused another mysterious
      bug (such as some global constructors don't run at all for some reason.)
      
      llvm-svn: 239287
      80141a4b
    • Rui Ueyama's avatar
      COFF: Simplify InputFile class. · f811472b
      Rui Ueyama authored
      Now that all InputFile subclasses have MemoryBufferRefs and
      provides the same set of functions. Implement that in the base class.
      
      llvm-svn: 239281
      f811472b
    • Rui Ueyama's avatar
      COFF: Set non-1 alignment to common chunks. · 9cf1abb8
      Rui Ueyama authored
      I don't know what the right thing to do here, but at least 1 does
      not seem like a correct value. If we do not align common chunks at
      all, a small program which calls puts() from global dtors crashes
      mysteriously in a kernel32's function.
      
      I believe the crash was caused by symbols overlapping each other,
      and my guess is that alignment has something to do with that, but
      I am not 100% sure. Needs investigating.
      
      llvm-svn: 239280
      9cf1abb8
    • Rui Ueyama's avatar
      COFF: Fix memory leak. · b4f791b5
      Rui Ueyama authored
      llvm-svn: 239272
      b4f791b5
    • Rui Ueyama's avatar
      COFF: Fix typo. · a6cd6c0c
      Rui Ueyama authored
      This change doesn't change its functionality since the value
      passed here is converted to uint16_t immediately.
      
      llvm-svn: 239271
      a6cd6c0c
    • Rui Ueyama's avatar
      COFF: Simplify. NFC. · aace577e
      Rui Ueyama authored
      llvm-svn: 239270
      aace577e
    • Rui Ueyama's avatar
      COFF: Use llvm::cl::ExpandReponseFiles. · b51f67a1
      Rui Ueyama authored
      llvm-svn: 239269
      b51f67a1
    • Rui Ueyama's avatar
      COFF: Add a glossary to README. · 0c35b38f
      Rui Ueyama authored
      llvm-svn: 239268
      0c35b38f
    • Rui Ueyama's avatar
      COFF: Use named constants instead of sizeof(). · c6b87363
      Rui Ueyama authored
      llvm-svn: 239267
      c6b87363
  2. Jun 07, 2015
  3. Jun 06, 2015
  4. Jun 04, 2015
  5. Jun 03, 2015
    • Rui Ueyama's avatar
      Fix typo. · 2d762719
      Rui Ueyama authored
      llvm-svn: 238937
      2d762719
    • Rui Ueyama's avatar
      COFF: Change OutputSections' type from vector<unique_ptr<T>> to vector<T*>. · bda72a4a
      Rui Ueyama authored
      This is mainly for readability. OutputSection objects are still owned
      by the writer using SpecificBumpPtrAllocator.
      
      llvm-svn: 238936
      bda72a4a
    • Rui Ueyama's avatar
      COFF: Update README. · 652052b8
      Rui Ueyama authored
      Avoid saying this is based on sections because it's not very accurate.
      That we don't split section into smaller chunks of data does not mean
      that the linker is built on top of that.
      In reality, most part of the code do not care about underlying data,
      so they are neither based on "atoms" nor sections.
      The symbol table only cares about symbol names and their types.
      The writer handles list of chunks, which look like just blobs,
      and the writer doesn't care what those chunks are backed by.
      The only thing that interact with sections is SectionChunk, which is
      abstracted away as one type of Chunk.
      
      llvm-svn: 238902
      652052b8
    • Rui Ueyama's avatar
      COFF: SymbolTable to manage symbols using BumpPtrAllocator. · 07e661f8
      Rui Ueyama authored
      llvm-svn: 238901
      07e661f8
  6. Jun 01, 2015
    • Rui Ueyama's avatar
      Use reinterpret_cast instead of const_cast and C-style cast. · 1db1ef9a
      Rui Ueyama authored
      llvm-svn: 238786
      1db1ef9a
    • Rui Ueyama's avatar
      COFF: Remove BitcodeFile::BitcodeFile(StringRef Filename). · 81b030cb
      Rui Ueyama authored
      In r238690, I made all files have only MemoryBufferRefs. This change
      is to do the same thing for the bitcode file reader. Also updated
      a few variable names to match with other code.
      
      llvm-svn: 238782
      81b030cb
    • Rui Ueyama's avatar
      COFF: Support import-by-ordinal DLL imports. · fd99e01b
      Rui Ueyama authored
      Symbols exported by DLLs can be imported not by name but by
      small number or ordinal. Usually, symbols have both ordinals
      and names, and in that case ordinals are called "hints" and
      used by the loader as hints.
      
      However, symbols can have only ordinals. They are called
      import-by-ordinal symbols. You need to manage ordinals by hand
      so that they will never change if you choose to use the feature.
      But it's supposed to make dynamic linking faster because
      it needs no string comparison. Not sure if that claim still
      stands in year 2015, though. Anyways, the feature exists,
      and this patch implements that.
      
      llvm-svn: 238780
      fd99e01b
    • Rui Ueyama's avatar
      COFF: Use Chunk instead of its derived classes. · c2abdd91
      Rui Ueyama authored
      I'm adding ordinal-only (nameless) imports to the import table.
      The chunk for that type is going to be different from LookupChunk.
      Without this change, we cannot add objects of the new type to the
      vectors.
      
      llvm-svn: 238779
      c2abdd91
Loading