aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Bitcode/BitstreamReader.h
AgeCommit message (Expand)Author
2013-01-21r173072 is causing some regressions on big endian hosts, I don't have time to...Chris Lattner
2013-01-21rework the Bitstream reader to actually work a machine word at a time, instea...Chris Lattner
2013-01-21Fix a heinous inefficiency introduced in r149918, wherein reading each byte of aChris Lattner
2013-01-21rename "SkipToWord" to "SkipToFourByteBoundary" since a word is not always 4 ...Chris Lattner
2013-01-20trivial micro-optimization: lazily call the virtual method instead of eagerly...Chris Lattner
2013-01-20switch llvm-bcanalyzer onto the new cursor APIs, allowing deletion ofChris Lattner
2013-01-20add an option to not auto-process abbreviations in advance()Chris Lattner
2013-01-20stringref'ize readRecord and properly capitalize it. Add a compatibility met...Chris Lattner
2013-01-20move some private methods out of line, add a skipRecord() method.Chris Lattner
2013-01-19add some optional flags to affect the way advance works.Chris Lattner
2013-01-19Add a new BitstreamEntry concept, and add two helper methods for walkingChris Lattner
2013-01-19BitstreamReader hasn't aged well. It's been hacked on by various people andChris Lattner
2013-01-10Fix include guards so they exactly match file names.Jakub Staszak
2012-11-25Code Custodian:Joe Abbey
2012-10-11Change encoding of instruction operands in bitcode binaries to be relativeJan Wen Voung
2012-09-17Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper
2012-02-07Bitcode/BitstreamReader.h: Tweak for big endian hosts.NAKAMURA Takumi
2012-02-06System headers after llvm headers.Nick Lewycky
2012-02-06Enable streaming of bitcodeDerek Schuff
2012-02-05Convert assert(0) to llvm_unreachableCraig Topper
2011-07-09fix a really bad bug that would cause nested cursors to break,Chris Lattner
2011-06-25Enhance the sanity check for block sizes; check that the resulting pointer isNick Lewycky
2009-08-27Clean up the minor mess I caused with removing iterator.h. I shall take care ...Gabor Greif
2009-07-07fix some type confusion in ReadVBR64: "Piece" should be only 32 bits,Chris Lattner
2009-06-29Fix three MSVC 2008 warnings that completely clutter the build output.Sebastian Redl
2009-04-27give bitstreamreader an API to ignore names for blocks/records,Chris Lattner
2009-04-26Add two new record types to the blockinfo block:Chris Lattner
2009-04-26make BitstreamCursor's copyable and assignable.Chris Lattner
2009-04-26Make a major API change to BitstreamReader: split all the readingChris Lattner
2009-04-15Allow jumping to the end of a bitstream while readingDouglas Gregor
2009-04-08Fix BitstreamReader's GetCurrentBitNo to return the correct bit number, and s...Douglas Gregor
2009-04-07Add an API for the bitstream reader to read blobs and returnChris Lattner
2009-04-06allow clients to look up abbrev id'sChris Lattner
2009-04-06add a new Blob encoding abbreviation for bitcode files that emitsChris Lattner
2009-04-06split ReadAbbreviatedLiteral out of ReadAbbreviatedField.Chris Lattner
2009-04-06reduce indentation with early-outChris Lattner
2009-04-01Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman
2009-02-20Removed trailing whitespace.Misha Brukman
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-11-30Fixed potential bug where CurWord is not zeroed out in JumpToBit.Ted Kremenek
2007-11-10Made Deserializer a friend class of BitstreamReader.Ted Kremenek
2007-10-24Silenced a VC++ warning.Hartmut Kaiser
2007-05-06we aren't at the end of stream until we've consumed all the bytes AND allChris Lattner
2007-05-06Make code more 64-bit aware.Jeff Cohen
2007-05-06Unbreak VC++.Jeff Cohen
2007-05-06Fix a subtle bug that prevented round-tripping 470.lbmChris Lattner
2007-05-05minor bugfixChris Lattner
2007-05-05add a 6-bit encoding type for strings.Chris Lattner
2007-05-05Implement support for globally associating abbrevs with block IDs, whichChris Lattner