Git Product home page Git Product logo

Comments (2)

CensoredUsername avatar CensoredUsername commented on June 12, 2024 1

You can query the location of a previously defined label via Assembler::labels() which returns a LabelRegistry. From that you can use LabelRegistry::resolve_static(StaticLabel::Global("yourlabel")) to get the offset of that label location into the assembling buffer. The absolute address of the label is then the base address of the assembling buffer plus the label offset.

This of course only works if the global label has already been defined in the code before calling this method. And it'll go stale if the buffer needs to be relocated.

Right now there's indeed no support for putting the absolute label address directly in the code stream, especially if such a label is only defined afterwards. Such a feature would also need to use proper relocations if the assembling buffer needed to be moved or resized. Likely the best way to handle this is some kind of directive. But even then it'd be tricky with tagged pointers. I think it could work as long as the tags are simply added to the pointer as relocating them is essentially current_value - old_base_address + new_base_address.

from dynasm-rs.

djwatson avatar djwatson commented on June 12, 2024

Thanks for the quick feedback!

Right now there's indeed no support for putting the absolute label address directly in the code stream ... Such a feature would also need to use proper relocations if the assembling buffer needed to be moved or resized

Yes, that's what I was looking for, basically the same way nasm/llvm ir etc would do it. Your relocation math would work fine. I wasn't quite sure if it was implemented or not, since I did see various relocation types like RelToAbs in the code. I'll find another way to do what I need, thanks again.

foo:
	mov rax, bar + 1
bar:
	dq $10

nasm -f elf64 test.s

0000000000000000 <foo>:
   0:	48 b8 00 00 00 00 00 	movabs $0x0,%rax
   7:	00 00 00

readelf -r test.o

Relocation section '.rela.text' at offset 0x2a0 contains 1 entry:
  Offset          Info           Type           Sym. Value    Sym. Name + Addend
000000000002  000200000001 R_X86_64_64       0000000000000000 .text + b

from dynasm-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.