Displaying 3 results from an estimated 3 matches for "adddend".
Did you mean:
addend
2015 Nov 21
2
[lld] R_MIPS_HI16 / R_MIPS_LO16 calculation
...and apply relocations.
3. At the end check orphaned (without R_MIPS_LO16 pair) R_MIPS_HI16
relocations, show warnings and apply them with zero addend.
Method B:
1. Each time we have found R_MIPS_HI16 relocation, iterate remaining
relocations list to find matching R_MIPS_LO16.
2. Calculate combined adddend and apply relocation or show warning if
the R_MIPS_LO16 is not found.
Method A requires some sort of container to keep postponed HI16
relocations. If we add the container to the `MipsTargetInfo` class we
will be able to hide all this unusual scheme inside MIPS specific code
and will not need to pe...
2015 Nov 21
2
[lld] R_MIPS_HI16 / R_MIPS_LO16 calculation
...without R_MIPS_LO16 pair) R_MIPS_HI16
>> relocations, show warnings and apply them with zero addend.
>>
>> Method B:
>> 1. Each time we have found R_MIPS_HI16 relocation, iterate remaining
>> relocations list to find matching R_MIPS_LO16.
>> 2. Calculate combined adddend and apply relocation or show warning if
>> the R_MIPS_LO16 is not found.
>>
>> Method A requires some sort of container to keep postponed HI16
>> relocations. If we add the container to the `MipsTargetInfo` class we
>> will be able to hide all this unusual scheme insid...
2015 Nov 21
2
[lld] R_MIPS_HI16 / R_MIPS_LO16 calculation
...; relocations, show warnings and apply them with zero addend.
>> >>
>> >> Method B:
>> >> 1. Each time we have found R_MIPS_HI16 relocation, iterate remaining
>> >> relocations list to find matching R_MIPS_LO16.
>> >> 2. Calculate combined adddend and apply relocation or show warning if
>> >> the R_MIPS_LO16 is not found.
>> >>
>> >> Method A requires some sort of container to keep postponed HI16
>> >> relocations. If we add the container to the `MipsTargetInfo` class we
>> >> will...