aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Bitcode/BitstreamReader.h
AgeCommit message (Expand)Author
2013-04-01Whitespace cleanupJoe Abbey
2013-02-13use memcpy instead of dubious union to type pun two values,Chris Lattner
2013-02-10ok, ok, stop fighting type punning warnings by just using a union.Chris Lattner
2013-02-10hopefully "really" fix a type punning warning by defining the buffer asChris Lattner
2013-02-10attempt to defeat a gcc warning that is breaking a -Werror buildbot.Chris Lattner
2013-02-09This is the correct version of r174802.Chris Lattner
2013-02-09Fix a nasty off-by one error that only manifests with 64-bit word size (which isChris Lattner
2013-02-09Fix the underlying problem that was causing read(0) to be called: sometimes theChris Lattner
2013-02-09recommit r173072 (preparing bitstream reader to read a machine word at a time,Chris Lattner
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