llvm-6502/lib/Bytecode/Writer
Chris Lattner 186a1f71e6 Changes to the V2 bytecode format:
- Null values are implicitly encoded instead of explicitly, this makes
    things more compact!
  - More compactly represent ConstantPointerRefs
  - Bytecode files are represented as:
      Header|GlobalTypes|GlobalVars/Function Protos|Constants|Functions|SymTab
    instead of
      Header|GlobalTypes|Constants|GlobalVars/Function Protos|Functions|SymTab
    which makes a lot of things simpler.

Writer changes:
  - We now explictly encode versioning information in the bytecode files.
  - This allows new code to read bytecode files produced by old code, but
    new bytecode files can have enhancements such as the above.  Although this
    makes the reader a bit more complex (having to deal with old formats), the
    writer only needs to be able to produce the most recent version.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5749 91177308-0d34-0410-b5e6-96231b3b80d8
2003-03-19 20:56:46 +00:00
..
ConstantWriter.cpp Changes to the V2 bytecode format: 2003-03-19 20:56:46 +00:00
InstructionWriter.cpp Don't keep track of # big vs #small instructions seperately 2003-01-21 20:13:49 +00:00
Makefile *** empty log message *** 2002-07-23 17:52:38 +00:00
SlotCalculator.cpp - Eliminated the deferred symbol table stuff in Module & Function, it really 2002-11-20 18:36:02 +00:00
SlotCalculator.h Use opaque decl instead of #include 2002-04-09 18:35:38 +00:00
Writer.cpp Changes to the V2 bytecode format: 2003-03-19 20:56:46 +00:00
WriterInternals.h Changes to the V2 bytecode format: 2003-03-19 20:56:46 +00:00