search for: wenzhi

Displaying 10 results from an estimated 10 matches for "wenzhi".

2008 Dec 25
2
[LLVMdev] Questions on Parallelism and Data Dependence Analysis
...on basic block level directly? In other words, can I get the task graph(node: task viewed as basic block or more coarse grain, edge: real data dependence) from sequential program using llvm to explore task-level parallelism by some proposed task scheduling algorithm? thanks. 2008-12-25 Wenzhi Tao -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20081225/bc998558/attachment.html>
2009 Jun 30
2
[LLVMdev] Limitations of Alias Analysis?
...2 MayAlias: %struct.Location* %1, %struct.Location* %2 Even when I add the AA option "-ds-aa -anders-aa", the result keeps unchanged. en, I don't know if I miss some steps or the method doesn't work at all. 在 2009-06-29一的 11:48 +0300,Török Edwin写道: > On 2009-06-29 11:16, Wenzhi Tao wrote: > > Hi, all > > > > According to the document "LLVM Alias Analysis Infrastructure", I > > evaluated the AA performance by using the paramenters '-basicaa -ds-aa > > -anders-aa'. The source code 'test.c' is listed as follow: > &...
2009 Jun 30
0
[LLVMdev] Limitations of Alias Analysis?
On Mon, Jun 29, 2009 at 7:40 PM, Wenzhi Tao<linus_wind at zju.edu.cn> wrote: >   The result of -aa-eval: > >  MayAlias:     %struct.Location* %0, %struct.Location* %1 >  MayAlias:     %struct.Location* %0, %struct.Location* %2 >  MayAlias:     %struct.Location* %1, %struct.Location* %2 I'm getting NoAlias with t...
2000 Apr 23
0
SAMBA COnfiguration file
Hi Wenzhi, This question would be best answered on the samba list ( I am cc'ing a copy now ) Its not a binary dependant question, otherwise I would have answered it promptly. Sorry for brushing you off, I just dont have the time to help you. I am sure someone on the samba list will be more than happ...
2009 Jun 29
0
[LLVMdev] Limitations of Alias Analysis?
On 2009-06-29 11:16, Wenzhi Tao wrote: > Hi, all > > According to the document "LLVM Alias Analysis Infrastructure", I > evaluated the AA performance by using the paramenters '-basicaa -ds-aa > -anders-aa'. The source code 'test.c' is listed as follow: > [...] > The whole proc...
2009 Jun 29
4
[LLVMdev] Limitations of Alias Analysis?
Hi, all According to the document "LLVM Alias Analysis Infrastructure", I evaluated the AA performance by using the paramenters '-basicaa -ds-aa -anders-aa'. The source code 'test.c' is listed as follow: //------------=== Source code ===------------// #include<stdlib.h> typedef struct { int x; int y; } Location; Location* getNewLocation(int x, int y) {
2008 Dec 25
0
[LLVMdev] Questions on Parallelism and Data Dependence Analysis
...task-level parallelism by > some proposed task scheduling algorithm? Waht is the exact values you mean? If you means oridinary "values" in llvm , you can construct the task graph in a straightforward way with Use-def chains. > > thanks. > > 2008-12-25 > > > > Wenzhi Tao >
2009 Apr 13
0
[LLVMdev] Problem on running "hello world" pass on VS2008
...load LLVMHello.dll --help But, I can't find the information string for hello pass. opt -load LLVMHello.dll -hello test.bc Error Information: opt: Unkown command line argument '-hello'. Try: 'opt --help'. Could you help me to solve this problem? Thanks. 2009-04-13 Wenzhi Tao -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090413/47c2cdc2/attachment.html>
2009 Sep 14
1
[LLVMdev] How to split module?
Hi, all. My question is about how to split one module into N modules(N >= 2)? For example, given the following code: #src.c# int main() { //......// func1(); func2(); //......// return 0; } void func1() { //......// } void func2() { //......// } func1() has no dependence with func2(), so they can perform parallel execution. And I have to split src.c into src1.c
2009 Apr 14
0
[LLVMdev] Problem on running "hello world" pass on VS2008
Hello > Could you help me to solve this problem? Thanks. Plugins are not supported on systems without dynamic linking (e.g. windows). Well, how to add new pass on windows? generate .lib which is linked with opt? I have tried this way. But, It doesn't work, either. -------------- next part -------------- An HTML attachment was scrubbed... URL: