index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
llvm
/
Bitcode
/
ReaderWriter.h
Age
Commit message (
Expand
)
Author
2013-01-10
Fix include guards so they exactly match file names.
Jakub Staszak
2012-06-20
Remove 'static' from inline functions defined in header files.
Chandler Carruth
2012-02-29
Bitcode: Don't expose WriteBitcodeToStream to clients.
Daniel Dunbar
2012-02-06
Enable streaming of bitcode
Derek Schuff
2011-12-14
Per discussion on the list, remove BitcodeVerify pass to reimplement as a fre...
Chad Rosier
2011-12-12
Begin sketching out a bitcode verifier pass. Idea is to emit a .bc file and
Chad Rosier
2010-10-06
Remove tabs.
Bill Wendling
2010-10-06
Provide a fast "get me the target triple from the module" API. This can
Bill Wendling
2010-05-27
Don't special-case stdout in llvm::WriteBitcodeToFile; just consider
Dan Gohman
2010-01-27
Kill ModuleProvider and ghost linkage by inverting the relationship between
Jeffrey Yasskin
2009-09-02
Add const qualifiers for isBitcodeWrapper, and add new functions
Dan Gohman
2009-08-23
eliminate the std::ostream forms of the bitcode writing APIs.
Chris Lattner
2009-08-11
Make LLVMContext and LLVMContextImpl classes instead of structs.
Benjamin Kramer
2009-08-04
Factor some of the constants+context related code out into a separate header,...
Owen Anderson
2009-07-01
Make the use of const with respect to LLVMContext sane. Hopefully this is th...
Owen Anderson
2009-07-01
Hold the LLVMContext by reference rather than by pointer.
Owen Anderson
2009-07-01
Add a pointer to the owning LLVMContext to Module. This requires threading L...
Owen Anderson
2009-04-06
Teach llvm-bcanalyzer to skip over the header we use on LLVM IR files.
Chris Lattner
2009-02-20
Removed trailing whitespace.
Misha Brukman
2008-12-19
Add support for writing LLVM IR to a specified BitstreamWriter.
Chris Lattner
2008-10-22
Add raw_ostream versions of WriteBitcodeToFile and BitcodeWriterPass.
Daniel Dunbar
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-05-06
add a new CreateBitcodeWriterPass method, which creates a bitcode writer as
Chris Lattner
2007-04-29
Switch the bitcode reader interface to take a MemoryBuffer instead of knowing
Chris Lattner
2007-04-22
Define the content-independent interfaces to read/write bitcode files and
Chris Lattner