Displaying 5 results from an estimated 5 matches for "instruction1".
Did you mean:
instruction
2016 Jan 21
3
a bundle with one instruction
> No. Bundles with single instructions are not allowed, but bundles can be
> mixed with instructions that are not bundled.
>
> -Krzysztof
>
> --
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted
> by The Linux Foundation
> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
>
2012 May 09
2
[LLVMdev] How can I get the destination operand of an instruction?
...ce.
In this case, now finding dependence turns to be a preliminary issue ).
--------------------------------------------------------------------
I think people may get confused about what I am talking. Just make it
short and clear.
For example, I have a few instructions in the same basic block.
instruction1: add %a %b %c
...
instruction10: add %e %d %a
Now I use this code to identify the source operands.
for(int k=0; k<OpNum; k++){
errs()<<it->getOperand(k)<<" ";
}
I find that
%b->0x90
%c->0x91
%d->0x92
%a->0x93
but I do not know
%a->?
%e->?
Actuall...
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
2016 Jan 21
2
a bundle with one instruction
You can have
>
> BUNDLE // 2 instructions in a bundle
> instruction1 //
> instruction2 //
> instruction3 // single, non-bundled instruction
> BUNDLE // another bundle with 2 instructions
> instruction4 //
> instruction5 //
>
> instruction3 is not bundled with anything, and it's between two other
> bundles---that'...