Displaying 2 results from an estimated 2 matches for "dynamictable".
2013 Oct 08
2
[LLVMdev] [lld] Add target-specific entries to the dynamic table
...L_GOTNO,
DT_MIPS_SYMTABNO etc. Some of these entries can be allocated and
initialized at once, other entries should be allocated in the
beginning and initialized at the end. For example we need to know the
number of GOT entries related to local symbols to set the
DT_MIPS_LOCAL_GOTNO value.
Current DynamicTable external interface is rather solid and allows
only combined allocation/initialization using DynamicTable::addEntry()
method.
So my question - what is the correct/best way to improve DynamicTable
interface and allow to add target-specific entries to the dynamic
table?
My current idea is to declare...
2013 Oct 08
0
[LLVMdev] [lld] Add target-specific entries to the dynamic table
.... Some of these entries can be allocated and
> initialized at once, other entries should be allocated in the
> beginning and initialized at the end. For example we need to know the
> number of GOT entries related to local symbols to set the
> DT_MIPS_LOCAL_GOTNO value.
>
> Current DynamicTable external interface is rather solid and allows
> only combined allocation/initialization using DynamicTable::addEntry()
> method.
>
> So my question - what is the correct/best way to improve DynamicTable
> interface and allow to add target-specific entries to the dynamic
> table?
&...