aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode/BitstreamReader.h
Commit message (Expand)AuthorAgeFilesLines
* Remove the Copied parameter from MemoryObject::readBytes.Benjamin Kramer2013-05-241-3/+2
* Whitespace cleanupJoe Abbey2013-04-011-18/+18
* use memcpy instead of dubious union to type pun two values,Chris Lattner2013-02-131-8/+9
* ok, ok, stop fighting type punning warnings by just using a union.Chris Lattner2013-02-101-6/+9
* hopefully "really" fix a type punning warning by defining the buffer asChris Lattner2013-02-101-3/+4
* attempt to defeat a gcc warning that is breaking a -Werror buildbot.Chris Lattner2013-02-101-1/+1
* This is the correct version of r174802.Chris Lattner2013-02-091-2/+2
* Fix a nasty off-by one error that only manifests with 64-bit word size (which isChris Lattner2013-02-091-1/+1
* Fix the underlying problem that was causing read(0) to be called: sometimes theChris Lattner2013-02-091-2/+2
* recommit r173072 (preparing bitstream reader to read a machine word at a time,Chris Lattner2013-02-091-21/+51
* r173072 is causing some regressions on big endian hosts, I don't have time to...Chris Lattner2013-01-211-49/+21
* rework the Bitstream reader to actually work a machine word at a time, instea...Chris Lattner2013-01-211-21/+49
* Fix a heinous inefficiency introduced in r149918, wherein reading each byte of aChris Lattner2013-01-211-6/+0
* rename "SkipToWord" to "SkipToFourByteBoundary" since a word is not always 4 ...Chris Lattner2013-01-211-3/+3
* trivial micro-optimization: lazily call the virtual method instead of eagerly...Chris Lattner2013-01-201-2/+1
* switch llvm-bcanalyzer onto the new cursor APIs, allowing deletion ofChris Lattner2013-01-201-16/+1
* add an option to not auto-process abbreviations in advance()Chris Lattner2013-01-201-4/+11
* stringref'ize readRecord and properly capitalize it. Add a compatibility met...Chris Lattner2013-01-201-2/+13
* move some private methods out of line, add a skipRecord() method.Chris Lattner2013-01-201-26/+9
* add some optional flags to affect the way advance works.Chris Lattner2013-01-191-4/+9
* Add a new BitstreamEntry concept, and add two helper methods for walkingChris Lattner2013-01-191-6/+91
* BitstreamReader hasn't aged well. It's been hacked on by various people andChris Lattner2013-01-191-226/+12
* Fix include guards so they exactly match file names.Jakub Staszak2013-01-101-2/+2
* Code Custodian:Joe Abbey2012-11-251-41/+41
* Change encoding of instruction operands in bitcode binaries to be relativeJan Wen Voung2012-10-111-1/+1
* Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper2012-09-171-3/+3
* Bitcode/BitstreamReader.h: Tweak for big endian hosts.NAKAMURA Takumi2012-02-071-4/+6
* System headers after llvm headers.Nick Lewycky2012-02-061-1/+1
* Enable streaming of bitcodeDerek Schuff2012-02-061-36/+57
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-051-2/+2
* fix a really bad bug that would cause nested cursors to break,Chris Lattner2011-07-091-0/+1
* Enhance the sanity check for block sizes; check that the resulting pointer isNick Lewycky2011-06-251-2/+4
* Clean up the minor mess I caused with removing iterator.h. I shall take care ...Gabor Greif2009-08-271-0/+1
* fix some type confusion in ReadVBR64: "Piece" should be only 32 bits,Chris Lattner2009-07-071-5/+8
* Fix three MSVC 2008 warnings that completely clutter the build output.Sebastian Redl2009-06-291-2/+2
* 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-261-4/+32
* 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-261-108/+139
* 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
* 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 Blob encoding abbreviation for bitcode files that emitsChris Lattner2009-04-061-4/+25
* split ReadAbbreviatedLiteral out of ReadAbbreviatedField.Chris Lattner2009-04-061-6/+12
* reduce indentation with early-outChris Lattner2009-04-061-14/+14
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-011-1/+2
* Removed trailing whitespace.Misha Brukman2009-02-201-66/+66
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-8/+15
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2