search for: dt_mips_symtabno

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

2013 Oct 08
2
[LLVMdev] [lld] Add target-specific entries to the dynamic table
Hi, I'm going to add MIPS target linking support to LLD. One of the things I bumped into is the dynamic table. MIPS ABI declares many additional mandatory dynamic table entries like DT_MIPS_LOCAL_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 int...
2013 Oct 08
0
[LLVMdev] [lld] Add target-specific entries to the dynamic table
...Shankar Easwaran On 10/8/2013 2:42 PM, Simon Atanasyan wrote: > Hi, > > I'm going to add MIPS target linking support to LLD. One of the things > I bumped into is the dynamic table. MIPS ABI declares many additional > mandatory dynamic table entries like DT_MIPS_LOCAL_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. > > Curr...