aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode
Commit message (Expand)AuthorAgeFilesLines
* Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADA...Devang Patel2009-07-231-3/+3
* Introduce MetadataBase, a base class for MDString and MDNode.Devang Patel2009-07-221-2/+5
* Assembly and Bitcode support for unsigned/signed overflow flags andDan Gohman2009-07-201-0/+12
* Remove the vicmp and vfcmp instructions. Because we never had a release withNick Lewycky2009-07-081-1/+2
* fix some type confusion in ReadVBR64: "Piece" should be only 32 bits,Chris Lattner2009-07-071-5/+8
* Make the use of const with respect to LLVMContext sane. Hopefully this is th...Owen Anderson2009-07-012-7/+7
* Hold the LLVMContext by reference rather than by pointer.Owen Anderson2009-07-012-7/+7
* Add a pointer to the owning LLVMContext to Module. This requires threading L...Owen Anderson2009-07-012-3/+11
* Fix three MSVC 2008 warnings that completely clutter the build output.Sebastian Redl2009-06-291-2/+2
* Give embedded metadata its own type instead of relying on EmptyStructTy.Nick Lewycky2009-05-301-2/+3
* give bitstreamreader an API to ignore names for blocks/records,Chris Lattner2009-04-271-1/+16
* Add two new record types to the blockinfo block:Chris Lattner2009-04-262-6/+36
* make BitstreamCursor's copyable and assignable.Chris Lattner2009-04-261-2/+38
* Make a major API change to BitstreamReader: split all the readingChris Lattner2009-04-262-110/+141
* Allow jumping to the end of a bitstream while readingDouglas Gregor2009-04-151-1/+1
* Fix BitstreamReader's GetCurrentBitNo to return the correct bit number, and s...Douglas Gregor2009-04-081-2/+1
* Use 8 instead of CHAR_BITDouglas Gregor2009-04-081-1/+1
* Add BitstreamWriter::GetCurrentBitNo, to report where we are in the output bi...Douglas Gregor2009-04-081-0/+3
* fix comment to reflect the implementation I ended up settling on.Chris Lattner2009-04-071-1/+1
* Add an API for the bitstream reader to read blobs and returnChris Lattner2009-04-071-4/+17
* allow clients to look up abbrev id'sChris Lattner2009-04-061-3/+9
* Add a new EmitRecordWithBlob API that allows a blob to be emitted Chris Lattner2009-04-061-30/+103
* add a new Blob encoding abbreviation for bitcode files that emitsChris Lattner2009-04-063-10/+49
* split ReadAbbreviatedLiteral out of ReadAbbreviatedField.Chris Lattner2009-04-061-6/+12
* reduce indentation with early-outChris Lattner2009-04-061-14/+14
* simplify code a bit.Chris Lattner2009-04-061-9/+19
* simplify to reduce indentation.Chris Lattner2009-04-061-33/+34
* Teach llvm-bcanalyzer to skip over the header we use on LLVM IR files.Chris Lattner2009-04-061-1/+52
* Add support for embedded metadata to LLVM. This introduces two new types ofNick Lewycky2009-04-041-1/+3
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-011-1/+2
* Removed trailing whitespace.Misha Brukman2009-02-2010-314/+314
* Add suppport for ConstantExprs of shufflevectors whose result type is not equ...Nate Begeman2009-02-121-1/+2
* Add support for writing LLVM IR to a specified BitstreamWriter.Chris Lattner2008-12-192-0/+8
* Add raw_ostream versions of WriteBitcodeToFile and BitcodeWriterPass.Daniel Dunbar2008-10-221-0/+9
* Fix a calculation error in comments.Zhongxing Xu2008-10-161-1/+1
* Large mechanical patch.Devang Patel2008-09-251-1/+1
* Update the comment to reflect the new name.Dan Gohman2008-09-231-1/+1
* Re-enables the new vector select in the bitcode reader, by modifying theDan Gohman2008-09-161-2/+4
* Extend the vcmp/fcmp LLVM IR instructions to take vectors as argumentsDan Gohman2008-09-091-1/+3
* Rename some GC classes so that their roll will hopefully be clearer.Gordon Henriksen2008-08-171-1/+1
* Fold the useful features of alist and alist_node into ilist, andDan Gohman2008-07-281-14/+2
* Enable first-class aggregates support.Dan Gohman2008-07-231-0/+1
* InsertValue and ExtractValue constant expressions are alwaysDan Gohman2008-07-211-3/+1
* Add a little wrapper header that is put around bc files when emittingChris Lattner2008-07-091-4/+10
* For PR1338: rename include/llvm/ADT/ilist and friends to end with ".h"Anton Korobeynikov2008-05-291-1/+1
* Make structs and arrays first-class types, and add assemblyDan Gohman2008-05-231-2/+6
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-054-22/+38
* Initialize a local variable.Ted Kremenek2008-05-011-1/+1
* Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989Nick Lewycky2008-04-251-3/+1
* Added support for Create() calls that take an argument besides theSam Bishop2008-04-071-3/+128