Displaying 2 results from an estimated 2 matches for "bb_label".
2018 Apr 16
2
Question concerning llvm::BlockAddress class
...orking on a project where I need to obtain and manipulate basic block
virtual addresses. I was searching the web and found the llvm::BlockAddress
class (http://llvm.org/doxygen/classllvm_1_1BlockAddress.html). With this
class I was able to obtain a printout like this:
i8* blockaddress(@func_name, %bb_label)
How do I obtain the virtual memory address from the Block address class?
Can I even do so?
Moreover, I thought that one can only obtain the virtual memory address
after linking the object files together. So how would the BlockAddress
class help me when it's working on the IR level? If BlockA...
2018 Apr 16
0
Question concerning llvm::BlockAddress class
...I need to obtain and manipulate basic block virtual
> addresses. I was searching the web and found the llvm::BlockAddress class (
> http://llvm.org/doxygen/classllvm_1_1BlockAddress.html). With this class I was
> able to obtain a printout like this:
>
> i8* blockaddress(@func_name, %bb_label)
>
> How do I obtain the virtual memory address from the Block address class? Can I
> even do so?
>
> Moreover, I thought that one can only obtain the virtual memory address after
> linking the object files together. So how would the BlockAddress class help me
> when it'...