Displaying 16 results from an estimated 16 matches for "peufeu".
Did you mean:
perfe
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>> There are essentially two ways to "solve" this issue: one is
>> type-based alias analysis, i.e. assuming "double" and "int" don't
>> alias; LLVM doesn't implement this at the moment. The other is to
>> attempt to analy...
2010 Jun 17
3
[LLVMdev] Strange pointer aliasing behaviour
> There are essentially two ways to "solve" this issue: one is
> type-based alias analysis, i.e. assuming "double" and "int" don't
> alias; LLVM doesn't implement this at the moment. The other is to
> attempt to analyze the loop and prove that %indvar.i is never
> negative; LLVM doesn't implement anything like this at the moment
>
2010 Jun 17
4
[LLVMdev] Strange pointer aliasing behaviour
On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com> wrote:
> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>> There are essentially two ways to "solve" this issue: one is
>>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>> alias; LLVM doesn't implement this at the moment. The other is to
>>>...
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
On 06/17/2010 06:19 PM, Jeffrey Yasskin wrote:
> On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com> wrote:
>> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>>> There are essentially two ways to "solve" this issue: one is
>>>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>>> alias; LLVM doesn't implement this at the moment. The other is to
&...
2010 Jun 17
2
[LLVMdev] Strange pointer aliasing behaviour
On Jun 17, 2010, at 10:42 AM, Andrew Haley wrote:
> On 06/17/2010 06:19 PM, Jeffrey Yasskin wrote:
>> On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com> wrote:
>>> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>>>> There are essentially two ways to "solve" this issue: one is
>>>>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>>>> alias; LLVM doesn't implement this at the moment. The o...
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
...in the standard some time
ago, but could not find it.
On Thu, Jun 17, 2010 at 6:19 PM, Jeffrey Yasskin <jyasskin at google.com> wrote:
> On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com> wrote:
>> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>>> There are essentially two ways to "solve" this issue: one is
>>>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>>> alias; LLVM doesn't implement this at the moment. The other is to
&...
2010 Jun 26
0
[LLVMdev] Strange pointer aliasing behaviour
...om> wrote:
>
> On Jun 17, 2010, at 10:42 AM, Andrew Haley wrote:
>
> On 06/17/2010 06:19 PM, Jeffrey Yasskin wrote:
>
> On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com>
> wrote:
>
> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>
> There are essentially two ways to "solve" this issue: one is
>
> type-based alias analysis, i.e. assuming "double" and "int" don't
>
> alias; LLVM doesn't implement this at the moment. The other is to
>
> attempt to a...
2010 Jun 16
3
[LLVMdev] Strange pointer aliasing behaviour
I'm hitting a strange pointer aliasing "bug". Here is a test case :
/* SOURCE CODE */
#define little_list_size 8
class LittleList1 {
public:
int _length;
double _data[ little_list_size ];
LittleList1( int length )
{
_length = length;
for( int i=0; i<length; i++ )
_data[i] = 0;
}
};
class LittleList2 {
public:
int _length;
double _data[ little_list_size ];
2010 Jun 27
2
[LLVMdev] Strange pointer aliasing behaviour
...17, 2010, at 10:42 AM, Andrew Haley wrote:
>>
>> On 06/17/2010 06:19 PM, Jeffrey Yasskin wrote:
>>
>> On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com>
>> wrote:
>>
>> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>
>> There are essentially two ways to "solve" this issue: one is
>>
>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>
>> alias; LLVM doesn't implement this at the moment. The other i...
2010 Jun 17
2
[LLVMdev] Strange pointer aliasing behaviour
On Jun 17, 2010, at 12:22 AM, Eli Friedman wrote:
> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>> There are essentially two ways to "solve" this issue: one is
>>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>> alias; LLVM doesn't implement this at the moment. The other is to
>>>...
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
On Wed, Jun 16, 2010 at 1:39 PM, Pierre C <lists at peufeu.com> wrote:
>
> I'm hitting a strange pointer aliasing "bug". Here is a test case :
>
> /* SOURCE CODE */
>
> #define little_list_size 8
>
> class LittleList1 {
> public:
> int _length;
> double _data[ little_list_size ];
>
>...
2010 Jun 17
1
[LLVMdev] Strange pointer aliasing behaviour
...of pointer arithmetic.)
Daveed
>
> On Thu, Jun 17, 2010 at 6:19 PM, Jeffrey Yasskin <jyasskin at google.com> wrote:
>> On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com> wrote:
>>> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>>>> There are essentially two ways to "solve" this issue: one is
>>>>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>>>> alias; LLVM doesn't implement this at the moment. The o...
2010 Jun 27
0
[LLVMdev] Strange pointer aliasing behaviour
...drew Haley wrote:
>>>
>>> On 06/17/2010 06:19 PM, Jeffrey Yasskin wrote:
>>>
>>> On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com>
>>> wrote:
>>>
>>> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote:
>>>
>>> There are essentially two ways to "solve" this issue: one is
>>>
>>> type-based alias analysis, i.e. assuming "double" and "int" don't
>>>
>>> alias; LLVM doesn't implement this at the...
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
>> Consider a case like the following:
>> struct X { int a; int b[10]; };
>> int f(struct X* a) { a->b[-1] = 1; return a->a; }
>>
>> This is technically illegal code, but various programs depend on
>> constructs like this working.
>>
Actually if you want to do bit-casting in C the usual way is to very
carefully use an union which informs the
2010 Jun 11
2
[LLVMdev] experimenting with partial evaluation
Hello !
I wanted to experiment with partial evaluation and llvm seems to be the
right tool for this, but since I'm new to it of course I'm a bit lost !
I'll try to explain what I want to do in the simplest possible way :
I have a C program.
In this program, there is a function f( a,b ).
I have a value A for a.
I want to specialise f() so I get a function fA( b ) which is the same as
2006 Jan 14
0
Samba very slow on one PC and very fast on another.
----------------------------------------------------
Server :
Athlon 64 3000+ ; 512MB Ram ; lots of disks ; nforce3 chipset ;
integrated nvidia gigabit NIC.
Gentoo 2.6.15 linux 64-bits ; Samba 3.0.14a-r2
----------------------------------------------------
Clients :
Laptop with Centrino Pentium-M, 100 Mbps NIC, running Windows XP Family
Desktop with Athlon 64 3200+ ; 1G DDR Dual Channel