search for: callbackcvh

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

2012 Feb 03
2
[LLVMdev] Linking Modules
...y the linker's ValueMap is updated. I used to hack this by sending down my own ValueMap and using the resulting mapping to update the data structure. But that requires changing the interface to LinkModules and some of its guts. How do I do this the "right" way? Do I need a custome CallbackcVH or does something already exist to do this? Thanks! -Dave
2012 Feb 05
0
[LLVMdev] Linking Modules
...updated. > > I used to hack this by sending down my own ValueMap and using the > resulting mapping to update the data structure. But that requires > changing the interface to LinkModules and some of its guts. > > How do I do this the "right" way? Do I need a custome CallbackcVH or > does something already exist to do this? One option is to make a named metadata node in the module with a list of everything you care about. After linking is done, zip down the list to see what got updated. -Chris