summaryrefslogtreecommitdiff
path: root/include/llvm/Bitcode/BitstreamReader.h
Commit message (Expand)AuthorAge
* [C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper2014-04-15
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-06
* Remove the Copied parameter from MemoryObject::readBytes.Benjamin Kramer2013-05-24
* Whitespace cleanupJoe Abbey2013-04-01
* use memcpy instead of dubious union to type pun two values,Chris Lattner2013-02-13
* ok, ok, stop fighting type punning warnings by just using a union.Chris Lattner2013-02-10
* hopefully "really" fix a type punning warning by defining the buffer asChris Lattner2013-02-10
* attempt to defeat a gcc warning that is breaking a -Werror buildbot.Chris Lattner2013-02-10
* This is the correct version of r174802.Chris Lattner2013-02-09
* Fix a nasty off-by one error that only manifests with 64-bit word size (which isChris Lattner2013-02-09
* Fix the underlying problem that was causing read(0) to be called: sometimes theChris Lattner2013-02-09
* recommit r173072 (preparing bitstream reader to read a machine word at a time,Chris Lattner2013-02-09
* r173072 is causing some regressions on big endian hosts, I don't have time to...Chris Lattner2013-01-21
* rework the Bitstream reader to actually work a machine word at a time, instea...Chris Lattner2013-01-21
* Fix a heinous inefficiency introduced in r149918, wherein reading each byte of aChris Lattner2013-01-21
* rename "SkipToWord" to "SkipToFourByteBoundary" since a word is not always 4 ...Chris Lattner2013-01-21
* trivial micro-optimization: lazily call the virtual method instead of eagerly...Chris Lattner2013-01-20
* switch llvm-bcanalyzer onto the new cursor APIs, allowing deletion ofChris Lattner2013-01-20
* add an option to not auto-process abbreviations in advance()Chris Lattner2013-01-20
* stringref'ize readRecord and properly capitalize it. Add a compatibility met...Chris Lattner2013-01-20
* move some private methods out of line, add a skipRecord() method.Chris Lattner2013-01-20
* add some optional flags to affect the way advance works.Chris Lattner2013-01-19
* Add a new BitstreamEntry concept, and add two helper methods for walkingChris Lattner2013-01-19
* BitstreamReader hasn't aged well. It's been hacked on by various people andChris Lattner2013-01-19
* Fix include guards so they exactly match file names.Jakub Staszak2013-01-10
* Code Custodian:Joe Abbey2012-11-25
* Change encoding of instruction operands in bitcode binaries to be relativeJan Wen Voung2012-10-11
* Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper2012-09-17
* Bitcode/BitstreamReader.h: Tweak for big endian hosts.NAKAMURA Takumi2012-02-07
* System headers after llvm headers.Nick Lewycky2012-02-06
* Enable streaming of bitcodeDerek Schuff2012-02-06
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-05
* fix a really bad bug that would cause nested cursors to break,Chris Lattner2011-07-09
* Enhance the sanity check for block sizes; check that the resulting pointer isNick Lewycky2011-06-25
* Clean up the minor mess I caused with removing iterator.h. I shall take care ...Gabor Greif2009-08-27
* fix some type confusion in ReadVBR64: "Piece" should be only 32 bits,Chris Lattner2009-07-07
* Fix three MSVC 2008 warnings that completely clutter the build output.Sebastian Redl2009-06-29
* give bitstreamreader an API to ignore names for blocks/records,Chris Lattner2009-04-27
* Add two new record types to the blockinfo block:Chris Lattner2009-04-26
* make BitstreamCursor's copyable and assignable.Chris Lattner2009-04-26
* Make a major API change to BitstreamReader: split all the readingChris Lattner2009-04-26
* Allow jumping to the end of a bitstream while readingDouglas Gregor2009-04-15
* Fix BitstreamReader's GetCurrentBitNo to return the correct bit number, and s...Douglas Gregor2009-04-08
* Add an API for the bitstream reader to read blobs and returnChris Lattner2009-04-07
* allow clients to look up abbrev id'sChris Lattner2009-04-06
* add a new Blob encoding abbreviation for bitcode files that emitsChris Lattner2009-04-06
* split ReadAbbreviatedLiteral out of ReadAbbreviatedField.Chris Lattner2009-04-06
* reduce indentation with early-outChris Lattner2009-04-06
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-01
* Removed trailing whitespace.Misha Brukman2009-02-20