Displaying 5 results from an estimated 5 matches for "hvdieren".
2009 Oct 09
1
[LLVMdev] DS-AA reports erroneous NoModRef
...ment.obj>
-------------- next part --------------
--
-------------------------------------------------------------------------------
Hans Vandierendonck, PhD, Ghent University, Electronics &
Information Systems
E-mail: hans.vandierendonck at UGent.be http://www.elis.UGent.be/~hvdieren/
-------------------------------------------------------------------------------
2009 Sep 03
3
[LLVMdev] SCCIterator and unconnected graphs
...s
desirable to have that change there.
Many thanks,
Hans.
--
-------------------------------------------------------------------------------
Hans Vandierendonck, PhD, Ghent University, Electronics & Information Systems
E-mail: hans.vandierendonck at UGent.be http://www.elis.UGent.be/~hvdieren/
-------------------------------------------------------------------------------
2009 Sep 15
0
[LLVMdev] SCCIterator and unconnected graphs
On Sep 3, 2009, at 4:15 AM, Hans Vandierendonck wrote:
Hi,
>
> I am using the scc_iterator class in my code on a CallGraph, where
> some
> functions are not called from within the module. It seems that
> scc_iterator does not list all SCCs if the graph is not connected;
> only
> those nodes connected to the node pointed to by
> GraphTraits<...>::getEntryNode() are
2009 Sep 15
1
[LLVMdev] SCCIterator and unconnected graphs
...t node via the
GraphTraits::getEntryNode()?
Thanks,
Hans.
--
-------------------------------------------------------------------------------
Hans Vandierendonck, PhD, Ghent University, Electronics & Information Systems
E-mail: hans.vandierendonck at UGent.be http://www.elis.UGent.be/~hvdieren/
-------------------------------------------------------------------------------
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: bugpoint-reduced-simplified.ll
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090915/5c27ac13/att...
2009 Mar 10
0
[LLVMdev] Adding variants of some instructions
Hi,
I need to have special variants of some instructions, e.g. a special
MallocInst that carries some additional information. Besides having
this additional information, I want all of LLVM to recognize this
instruction as a regular MallocInst. This special MallocInst need only
exist inside LLVM; it need not be written out to bytecode. How to best
implement this?
This is what I was