Displaying 3 results from an estimated 3 matches for "basicblcok".
Did you mean:
basic_block
2012 May 09
2
[LLVMdev] How can I get the destination operand of an instruction?
...t using
'errs()<<'. I notice that all the variables with different names have
different strings like '0x9063489' and
I think I can use it to identify different variables as well as
instruction instances (I need this to extract data
dependence graph/data flow graph from each basicblcok). I guess there
may be operator<< overload
in value.h and I looked into the source code value.h, but I didn't find
it. I still do not know how to get
strings/number like '0x9063489' without using errs()<<.
As for destination operand or instruction, I need similar numbe...
2012 May 09
0
[LLVMdev] How can I get the destination operand of an instruction?
Launcher <st.liucheng at gmail.com> writes:
> I am able to access the source operands of an instruction using either
> getOperand() or op_iterator, However, I can't find any method available for
> destination operand. Someone suggests that instruction itself can represent
> the destination operand.
> http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-January/037518.html
2012 May 09
4
[LLVMdev] How can I get the destination operand of an instruction?
I am able to access the source operands of an instruction using either
getOperand() or op_iterator, However, I can't find any method available for
destination operand. Someone suggests that instruction itself can represent
the destination operand.
http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-January/037518.html
The getOperand() returns an unsigned value like 0x9063498, while I can't