Age | Commit message (Expand) | Author |
2013-04-01 | Whitespace cleanup | Joe Abbey |
2013-02-13 | use memcpy instead of dubious union to type pun two values, | Chris Lattner |
2013-02-10 | ok, ok, stop fighting type punning warnings by just using a union. | Chris Lattner |
2013-02-10 | hopefully "really" fix a type punning warning by defining the buffer as | Chris Lattner |
2013-02-10 | attempt to defeat a gcc warning that is breaking a -Werror buildbot. | Chris Lattner |
2013-02-09 | This is the correct version of r174802. | Chris Lattner |
2013-02-09 | Fix a nasty off-by one error that only manifests with 64-bit word size (which is | Chris Lattner |
2013-02-09 | Fix the underlying problem that was causing read(0) to be called: sometimes the | Chris Lattner |
2013-02-09 | recommit r173072 (preparing bitstream reader to read a machine word at a time, | Chris Lattner |
2013-01-21 | r173072 is causing some regressions on big endian hosts, I don't have time to... | Chris Lattner |
2013-01-21 | rework the Bitstream reader to actually work a machine word at a time, instea... | Chris Lattner |
2013-01-21 | Fix a heinous inefficiency introduced in r149918, wherein reading each byte of a | Chris Lattner |
2013-01-21 | rename "SkipToWord" to "SkipToFourByteBoundary" since a word is not always 4 ... | Chris Lattner |
2013-01-20 | trivial micro-optimization: lazily call the virtual method instead of eagerly... | Chris Lattner |
2013-01-20 | switch llvm-bcanalyzer onto the new cursor APIs, allowing deletion of | Chris Lattner |
2013-01-20 | add an option to not auto-process abbreviations in advance() | Chris Lattner |
2013-01-20 | stringref'ize readRecord and properly capitalize it. Add a compatibility met... | Chris Lattner |
2013-01-20 | move some private methods out of line, add a skipRecord() method. | Chris Lattner |
2013-01-19 | add some optional flags to affect the way advance works. | Chris Lattner |
2013-01-19 | Add a new BitstreamEntry concept, and add two helper methods for walking | Chris Lattner |
2013-01-19 | BitstreamReader hasn't aged well. It's been hacked on by various people and | Chris Lattner |
2013-01-10 | Fix include guards so they exactly match file names. | Jakub Staszak |
2012-11-25 | Code Custodian: | Joe Abbey |
2012-10-11 | Change encoding of instruction operands in bitcode binaries to be relative | Jan Wen Voung |
2012-09-17 | Mark unimplemented copy constructors and copy assignment operators as LLVM_DE... | Craig Topper |
2012-02-07 | Bitcode/BitstreamReader.h: Tweak for big endian hosts. | NAKAMURA Takumi |
2012-02-06 | System headers after llvm headers. | Nick Lewycky |
2012-02-06 | Enable streaming of bitcode | Derek Schuff |
2012-02-05 | Convert assert(0) to llvm_unreachable | Craig Topper |
2011-07-09 | fix a really bad bug that would cause nested cursors to break, | Chris Lattner |
2011-06-25 | Enhance the sanity check for block sizes; check that the resulting pointer is | Nick Lewycky |
2009-08-27 | Clean up the minor mess I caused with removing iterator.h. I shall take care ... | Gabor Greif |
2009-07-07 | fix some type confusion in ReadVBR64: "Piece" should be only 32 bits, | Chris Lattner |
2009-06-29 | Fix three MSVC 2008 warnings that completely clutter the build output. | Sebastian Redl |
2009-04-27 | give bitstreamreader an API to ignore names for blocks/records, | Chris Lattner |
2009-04-26 | Add two new record types to the blockinfo block: | Chris Lattner |
2009-04-26 | make BitstreamCursor's copyable and assignable. | Chris Lattner |
2009-04-26 | Make a major API change to BitstreamReader: split all the reading | Chris Lattner |
2009-04-15 | Allow jumping to the end of a bitstream while reading | Douglas Gregor |
2009-04-08 | Fix BitstreamReader's GetCurrentBitNo to return the correct bit number, and s... | Douglas Gregor |
2009-04-07 | Add an API for the bitstream reader to read blobs and return | Chris Lattner |
2009-04-06 | allow clients to look up abbrev id's | Chris Lattner |
2009-04-06 | add a new Blob encoding abbreviation for bitcode files that emits | Chris Lattner |
2009-04-06 | split ReadAbbreviatedLiteral out of ReadAbbreviatedField. | Chris Lattner |
2009-04-06 | reduce indentation with early-out | Chris Lattner |
2009-04-01 | Use CHAR_BIT instead of hard-coding 8 in several places where it | Dan Gohman |
2009-02-20 | Removed trailing whitespace. | Misha Brukman |
2008-05-05 | Fix more -Wshorten-64-to-32 warnings. | Evan Cheng |
2007-12-29 | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner |
2007-11-30 | Fixed potential bug where CurWord is not zeroed out in JumpToBit. | Ted Kremenek |