Displaying 5 results from an estimated 5 matches for "simple_loops_f2_4list".
2009 Apr 13
2
[LLVMdev] MemoryDependenceAnalysis
I'm attaching the .bc file. Note that my analysis pass is invoked
after "-O1" and that's why the IR I included in the original email is
optimized.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: simple_loops_F2_4list.bc
Type: application/octet-stream
Size: 6384 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090413/779e1ae8/attachment.obj>
-------------- next part --------------
On Apr 13, 2009, at 2:21 PM, Chris Lattner wrote:
> On Apr 13, 2009, at 9:06 AM, Ant...
2009 Apr 25
0
[LLVMdev] MemoryDependenceAnalysis
...problem is that (without more information
about language semantics) there is no way to know how much data is
accessed off each pointer by the function, nor whether it accesses
them through other aliases. For example, "bar" could capture the N
pointer, etc.
-Chris
>
> <simple_loops_F2_4list.bc>
> On Apr 13, 2009, at 2:21 PM, Chris Lattner wrote:
>
>> On Apr 13, 2009, at 9:06 AM, Anthony Danalis wrote:
>>> Hello,
>>>
>>> I have a code similar to the following:
>>
>> Hi Anthony,
>>
>> Can you please attach the .bc file fo...
2009 Apr 13
0
[LLVMdev] MemoryDependenceAnalysis
On Apr 13, 2009, at 9:06 AM, Anthony Danalis wrote:
> Hello,
>
> I have a code similar to the following:
Hi Anthony,
Can you please attach the .bc file for this?
-Chris
>
>
> program test
> integer i, j, N
> real B(10)
>
> call bar(N, 8)
> N = N+1
> do i = 1, N
> B(i) =
2009 Apr 25
1
[LLVMdev] MemoryDependenceAnalysis
...tion
> about language semantics) there is no way to know how much data is
> accessed off each pointer by the function, nor whether it accesses
> them through other aliases. For example, "bar" could capture the N
> pointer, etc.
>
> -Chris
>
>
>>
>> <simple_loops_F2_4list.bc>
>> On Apr 13, 2009, at 2:21 PM, Chris Lattner wrote:
>>
>>> On Apr 13, 2009, at 9:06 AM, Anthony Danalis wrote:
>>>> Hello,
>>>>
>>>> I have a code similar to the following:
>>>
>>> Hi Anthony,
>>>
>>&g...
2009 Apr 13
5
[LLVMdev] MemoryDependenceAnalysis
Hello,
I have a code similar to the following:
program test
integer i, j, N
real B(10)
call bar(N, 8)
N = N+1
do i = 1, N
B(i) = (i+5)/(i+3)
enddo
j = N/2
N = N+7
call IMPORTANT_F(B, N, i, j)
end program
and I am trying to use dependence