Split getOpenFile into getOpenFile and getOpenFileSlice.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 23 Jul 2013 20:25:01 +0000 (20:25 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 23 Jul 2013 20:25:01 +0000 (20:25 +0000)
commit3d2ac2e41a96f1989a4aa240b8323d09e5cdd397
tree9290fa7a4deb8af7aa0cee250e301312ac6f7a84
parent03085c71848efe4b3308d87a345852ce554237d7
Split getOpenFile into getOpenFile and getOpenFileSlice.

The main observation is that we never need both the filesize and the map size.
When mapping a slice of a file, it doesn't make sense to request a null
terminator and that would be the only case where the filesize would be used.

There are other cleanups that should be done in this area:

* A client should not have to pass the size (even an explicit -1) to say if
  it wants a null terminator or not, so we should probably swap the argument
  order.
* The default should be to not require a null terminator. Very few clients
  require this, but many end up asking for it just because it is the default.

llvm-svn: 186984
llvm/include/llvm/Support/MemoryBuffer.h
llvm/lib/Support/MemoryBuffer.cpp
llvm/tools/gold/gold-plugin.cpp
llvm/tools/llvm-ar/llvm-ar.cpp
llvm/tools/lto/LTOModule.cpp
llvm/tools/lto/LTOModule.h
llvm/tools/lto/lto.cpp
llvm/unittests/Support/MemoryBufferTest.cpp