search for: image_comdat_select___associ

Displaying 2 results from an estimated 2 matches for "image_comdat_select___associ".

2013 Sep 04
0
[LLVMdev] Proposal: Adding an optional association field to llvm.global_ctors
...once on program startup. Itanium solves this with guard > variables > and the emission of multiple initializers, only one of which actually > initializes the data at runtime. > > Microsoft solves this by using a COFF comdat feature called > IMAGE_COMDAT_SELECT___ASSOCIATIVE. The semantics are that the section > with this > attribute is only linked if the associated section is chosen for the > final link. > Otherwise it is discarded. > > In this way, only one initializer is linked and only one entry is >...
2013 Sep 03
2
[LLVMdev] Proposal: Adding an optional association field to llvm.global_ctors
On Mon, Sep 2, 2013 at 5:18 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Reid, > > On 26/08/13 23:43, Reid Kleckner wrote: > >> To implement http://llvm.org/PR16959 >> <http://llvm.org/bugs/show_**bug.cgi?id=16959<http://llvm.org/bugs/show_bug.cgi?id=16959>>, >> I need to add a new field to >> >> global_ctors. >> >>