Displaying 2 results from an estimated 2 matches for "seenvaluesymboltable".
2014 Dec 19
2
[LLVMdev] [Patches][RFC] What to do about bitcode streaming.
.../BitcodeReader.cpp
> @@ -33,6 +32,26 @@ enum {
> SWITCH_INST_MAGIC = 0x4B5 // May 2012 => 1205 => Hex
> };
>
> +BitcodeReader::BitcodeReader(MemoryBuffer * Buffer, LLVMContext & C)
clang-format?
> + : Context(C), TheModule(nullptr), Buffer(Buffer),
> + SeenValueSymbolTable(false), ValueList(C), MDValueList(C),
> + SeenFirstFunctionBody(false), UseRelativeIDs(false),
> + WillMaterializeAllForwardRefs(false) {
> diff --git a/tools/llvm-dis/llvm-dis.cpp b/tools/llvm-dis/llvm-dis.cpp
> index 072f636..3e21164 100644
> --- a/tools/llvm-dis/llvm-dis...
2017 Apr 04
3
RFC: Adding a string table to the bitcode format
On Tue, Apr 4, 2017 at 12:36 PM, Duncan P. N. Exon Smith <
dexonsmith at apple.com> wrote:
>
> On 2017-Apr-04, at 12:12, Peter Collingbourne <peter at pcc.me.uk> wrote:
>
> On Mon, Apr 3, 2017 at 8:13 PM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
>>
>> On Apr 3, 2017, at 7:08 PM, Peter Collingbourne <peter at pcc.me.uk> wrote:
>>