Function bitcode index in Value Symbol Table and lazy reading support
authorTeresa Johnson <tejohnson@google.com>
Thu, 17 Sep 2015 15:52:30 +0000 (15:52 +0000)
committerTeresa Johnson <tejohnson@google.com>
Thu, 17 Sep 2015 15:52:30 +0000 (15:52 +0000)
commitb77b1f8a0c6b14d60e640e0053a13c33b56c63da
treed0cfea1da5d9530818689deef872b96694d09124
parentfaf8f6f62eb9407aae56d3d5d5cacac773b6ea60
Function bitcode index in Value Symbol Table and lazy reading support

Summary:
Support for including the function bitcode indices in the Value Symbol
Table. This requires writing the VST after the function blocks, which in
turn requires a new VST forward declaration record encoding the offset of
the full VST (which is backpatched to contain the offset after the VST
is written).

This patch also enables the lazy function reader to use the new function
indices out of the VST. This support will be used by ThinLTO as well, which
will be in a follow on patch. Backwards compatibility with older bitcode
files is maintained.

A new test is also included.

The bitcode format (used for the lazy reader as well as the upcoming
ThinLTO patches) came out of discussions with Duncan and others and is
described here:
https://drive.google.com/file/d/0B036uwnWM6RWdnBLakxmeDdOeXc/view

Reviewers: dexonsmith, davidxl, joker.eph

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D12536

llvm-svn: 247894
llvm/include/llvm/Bitcode/LLVMBitCodes.h
llvm/lib/Bitcode/Reader/BitcodeReader.cpp
llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
llvm/test/Bitcode/vst-forward-declaration.ll [new file with mode: 0644]
llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp