Switch the bitcode reader interface to take a MemoryBuffer instead of knowing
authorChris Lattner <sabre@nondot.org>
Sun, 29 Apr 2007 07:54:31 +0000 (07:54 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 29 Apr 2007 07:54:31 +0000 (07:54 +0000)
commitc453f76e2b4d7fd1e042b5b6d4c20556779186df
treea24882c0c4c773a77d7e16562335fe8364ffc47d
parent333ffd4abfcc3be32a945dc73c81adeafde1ba6b
Switch the bitcode reader interface to take a MemoryBuffer instead of knowing
anything about disk I/O itself.  This greatly simplifies its interface -
eliminating the need for the ReaderWrappers.cpp file.

This adds a new option to llvm-dis (-bitcode) which instructs it to read
the input file as bitcode.  Until/unless the bytecode reader is taught to
read from MemoryBuffer, there is no way to handle stdin reading without it.

I don't plan to switch the bytecode reader over, I'd rather delete it :),
so the option will stay around temporarily.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36554 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Bitcode/ReaderWriter.h
lib/Bitcode/Reader/BitcodeReader.cpp
lib/Bitcode/Reader/BitcodeReader.h
lib/Bitcode/Reader/ReaderWrappers.cpp [deleted file]
tools/llvm-dis/llvm-dis.cpp