Displaying 9 results from an estimated 9 matches for "rajwinder".
2010 Jun 23
4
[LLVMdev] LLVM:help
Sir ,how can I get the variable %2 in instruction
%2 = sub nsw i32 1, %y
If I am using getName() function then it outputs the null string.
How can I get the original name?
Regards,
Rajwinder Singh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100623/37038c90/attachment.html>
2010 Jun 25
3
[LLVMdev] LLVM:help
How can I get list of its predecessor basic blocks from a basic block?
--Rajwinder Singh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100625/21c52063/attachment.html>
2010 Jun 24
0
[LLVMdev] LLVM:help
RAJWINDER SINGH wrote:
> I am making a CDFG graph out of the instruction.
What is a CDFG? Do you mean a control dependence graph?
Control-dependence can be computed utilizing the PostDominatorTree pass.
> for that purpose I require the name because
> if I am using its ID then ID may be same for...
2010 Jun 28
2
[LLVMdev] help
%0 = icmp eq i32 %y, 0
In the above instruction how can i know that the comparison is equality
comparison??
--Rajwinder Singh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100628/8d8e5cb1/attachment.html>
2010 Jun 25
0
[LLVMdev] LLVM:help
On 25/06/10 06:05, RAJWINDER SINGH wrote:
> How can I get list of its predecessor basic blocks from a basic block?
If BB is a BasicBlock*, you can get begin and end iterators using
pred_begin(BB) and pred_end(BB).
Ciao,
Duncan.
2010 Jul 18
2
[LLVMdev] help
Can anyone tell me, In the following instruction
%"struct.std::locale::facet" = type { i32 (...)**, i32 }
what does i32 (...)** means?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100718/3f9fe5fe/attachment.html>
2010 Jul 22
2
[LLVMdev] help
Let us say there is an Instruction I in an IR.
Is there any function using which I can know that in which line number this
Instruction I lies in the original c++ file??
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100722/e43be8d3/attachment.html>
2010 Jul 16
3
[LLVMdev] help
In the insrtuction
%1 = load i32** %y_addr, align 4
what is the meaning of align 4??
Can anyone explain?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100716/ef433d43/attachment.html>
2010 Jul 23
1
[LLVMdev] help
store i32 (...)** inttoptr (i32 add (i32 ptrtoint ([14 x i32 (...)*]*
@_ZTCN7sc_core9sc_signalIiEE0_NS_15sc_signal_in_ifIiEE to i32), i32 24) to
i32 (...)**), i32 (...)*** %1, align 4
In the above Instruction how can I get axis to the intnal instructions
(inttoptr, add etc)??
-------------- next part --------------
An HTML attachment was scrubbed...
URL: