Displaying 2 results from an estimated 2 matches for "prefixdata".
Did you mean:
prefix_data
2015 Oct 10
2
[RFC] Clean up the way we store optional Function data
...vm::Function
cleaner, more consistent, and a little smaller.
What do we do currently?
========================
Prefix and prologue data are attached to Functions via DenseMaps in
LLVMContextImpl:
typedef DenseMap<const Function *, ReturnInst *> FunctionDataMapTy;
FunctionDataMapTy PrefixDataMap;
FunctionDataMapTy PrologueDataMap;
To attach prefix data to a Function, we create an orphan ReturnInst:
RI = ReturnInst::Create(F->getContext(), PrefixData);
PrefixDataMap[F] = RI;
Personalities are stored as ``optional`` Function operands. We actually always
allocate the spac...
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:
>>