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