Skip to content
  1. Aug 04, 2015
  2. Jun 23, 2015
  3. Jun 19, 2015
  4. Mar 23, 2015
  5. Dec 12, 2014
  6. Dec 11, 2014
  7. Dec 04, 2014
  8. Oct 08, 2014
    • Nick Kledzik's avatar
      [Support] Add MemoryBuffer::getFileSlice() · 7c3f6ac5
      Nick Kledzik authored
      mach-o supports "fat" files which are a header/table-of-contents followed by a
      concatenation of mach-o files built for different architectures. Currently, 
      MemoryBuffer has no easy way to map a subrange (slice) of a file which lld
      will need to select a mach-o slice of a fat file. The new function provides 
      an easy way to map a slice of a file into a MemoryBuffer. Test case included.
      
      llvm-svn: 219260
      7c3f6ac5
  9. Oct 07, 2014
  10. Aug 27, 2014
  11. Aug 26, 2014
    • Rafael Espindola's avatar
      Pass a MemoryBufferRef when we can avoid taking ownership. · d96d553d
      Rafael Espindola authored
      The attached patch simplifies a few interfaces that don't need to take
      ownership of a buffer.
      
      For example, both parseAssembly and parseBitcodeFile will parse the
      entire buffer before returning. There is no need to take ownership.
      
      Using a MemoryBufferRef makes it obvious in the type signature that
      there is no ownership transfer.
      
      llvm-svn: 216488
      d96d553d
  12. Aug 19, 2014
    • Rafael Espindola's avatar
      Don't own the buffer in object::Binary. · 48af1c2a
      Rafael Espindola authored
      Owning the buffer is somewhat inflexible. Some Binaries have sub Binaries
      (like Archive) and we had to create dummy buffers just to handle that. It is
      also a bad fit for IRObjectFile where the Module wants to own the buffer too.
      
      Keeping this ownership would make supporting IR inside native objects
      particularly painful.
      
      This patch focuses in lib/Object. If something elsewhere used to own an Binary,
      now it also owns a MemoryBuffer.
      
      This patch introduces a few new types.
      
      * MemoryBufferRef. This is just a pair of StringRefs for the data and name.
        This is to MemoryBuffer as StringRef is to std::string.
      * OwningBinary. A combination of Binary and a MemoryBuffer. This is needed
        for convenience functions that take a filename and return both the
        buffer and the Binary using that buffer.
      
      The C api now uses OwningBinary to avoid any change in semantics. I will start
      a new thread to see if we want to change it and how.
      
      llvm-svn: 216002
      48af1c2a
  13. Aug 09, 2014
  14. Aug 06, 2014
  15. Aug 04, 2014
  16. Jul 06, 2014
  17. Jun 13, 2014
  18. Jun 12, 2014
  19. Jun 11, 2014
    • Rafael Espindola's avatar
      Use std::error_code instead of llvm::error_code. · 5c4f8294
      Rafael Espindola authored
      The idea of this patch is to turn llvm/Support/system_error.h into a
      transitional header that just brings in the erorr_code api to the llvm
      namespace. I will remove it shortly afterwards.
      
      The cases where the general idea needed some tweaking:
      
      * std::errc is a namespace in msvc, so we cannot use "using std::errc". I could
      add an #ifdef, but there were not that many uses, so I just added std:: to
      them in this patch.
      
      * Template specialization had to be moved to the std namespace in this
      patch set already.
      
      * The msvc implementation of default_error_condition doesn't seem to
      provide the same transformations as we need. Not too surprising since
      the standard doesn't actually say what "equivalent" means. I fixed the
      problem by keeping our old mapping and using it at error_code
      construction time.
      
      Despite these shortcomings I think this is still a good thing. Some reasons:
      
      * The different implementations of system_error might improve over time.
      * It removes 925 lines of code from llvm already.
      * It removes 6313 bytes from the text segment of the clang binary when
      it is built with gcc and 2816 bytes when building with clang and
      libstdc++.
      
      llvm-svn: 210687
      5c4f8294
    • Rafael Espindola's avatar
      There is no posix_category in std, use generic_category. · 6a9aae77
      Rafael Espindola authored
      llvm-svn: 210630
      6a9aae77
  20. May 31, 2014
  21. May 19, 2014
  22. May 18, 2014
  23. May 09, 2014
  24. May 07, 2014
  25. May 06, 2014
  26. May 05, 2014
  27. Apr 07, 2014
  28. Mar 10, 2014
  29. Mar 05, 2014
  30. Mar 02, 2014
Loading