[Valgrind-developers] 2008-01-22 03:20:05 GMT nightly build (aston, x86_64, Fedora Core 5)

2008-01-21 Thread Tom Hughes
Nightly build on aston ( x86_64, Fedora Core 5 ) started at 2008-01-22 03:20:05 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests

[Valgrind-developers] 2008-01-22 03:25:04 GMT nightly build (trojan, x86_64, Fedora Core 6)

2008-01-21 Thread Tom Hughes
Nightly build on trojan ( x86_64, Fedora Core 6 ) started at 2008-01-22 03:25:04 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests

[Valgrind-developers] 2008-01-22 03:05:08 GMT nightly build (lloyd, x86_64, Fedora 7)

2008-01-21 Thread Tom Hughes
Nightly build on lloyd ( x86_64, Fedora 7 ) started at 2008-01-22 03:05:08 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests ... fa

[Valgrind-developers] 2008-01-22 03:10:04 GMT nightly build (dellow, x86_64, Fedora 8)

2008-01-21 Thread Tom Hughes
Nightly build on dellow ( x86_64, Fedora 8 ) started at 2008-01-22 03:10:04 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests ... f

[Valgrind-developers] 2008-01-22 03:00:03 GMT nightly build (gill, x86_64, Fedora Core 2)

2008-01-21 Thread Tom Hughes
Nightly build on gill ( x86_64, Fedora Core 2 ) started at 2008-01-22 03:00:03 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests .

Re: [Valgrind-developers] helgrind: more tests

2008-01-21 Thread Konstantin Serebryany
Ehm... This notice was not added by the googlecode site :) I am google employee and hence the results of my work are *copyrighted* by google. But, they are *licensed* under BSD license which means that anyone is free to do whatever he/she likes with these files except for removal of copyright notic

Re: [Valgrind-developers] helgrind: more tests

2008-01-21 Thread Bart Van Assche
On Jan 21, 2008 4:34 PM, Konstantin Serebryany <[EMAIL PROTECTED]> wrote: > > I am working on a test suite for helgrind (and potentially any other data > race detector). > In order to simplify things for myself I've created a separate project > http://code.google.com/p/data-race-test/ but if you fi

[Valgrind-developers] helgrind: more tests

2008-01-21 Thread Konstantin Serebryany
Hi, I am working on a test suite for helgrind (and potentially any other data race detector). In order to simplify things for myself I've created a separate project http://code.google.com/p/data-race-test/ but if you find anything useful there please put it into valgrind svn. I will be grateful fo

[Valgrind-developers] valgrind: r7358 - in trunk/exp-drd: . tests

2008-01-21 Thread svn
Author: sewardj Date: 2008-01-21 14:19:07 + (Mon, 21 Jan 2008) New Revision: 7358 Log: drd changes (Bart Van Assche) - The exp-drd regression tests now run without producing assertion failures and without hanging on Red Hat 7.3. It doesn't make sense however to run exp-drd on Red Hat 7.3 -- w

Re: [Valgrind-developers] valgrind: r7353 - trunk/helgrind

2008-01-21 Thread Julian Seward
> Yea... And we probably need to export one more FM method: > + while (HG_(nextIterFM)( map_locks, (Word*)&gla, (Word*)&lk ) > + && compareFM(map_locks, gla,lastA) <= 0) { // use the comparison > function from map_locks Urr. You're right. That's ugly. That means 2 function calls per

Re: [Valgrind-developers] valgrind: r7353 - trunk/helgrind

2008-01-21 Thread Konstantin Serebryany
>> Unfortunately I don't think this really fixes it. Ouch! Yep, it does not. It just hides the problem and makes it extremely rare. >> I think the only fix is to change all the unboxed comparison stuff in WordFM to use unsigned Words. Yea... And we probably need to export one more FM method: +

Re: [Valgrind-developers] valgrind: r7353 - trunk/helgrind

2008-01-21 Thread Julian Seward
On Monday 21 January 2008 11:08, Konstantin Serebryany wrote: > Hi Julian, > > I found out that this fix has an issue (which appears only in 32-bit mode). > > + while (HG_(nextIterFM)( map_locks, (Word*)&gla, (Word*)&lk ) > + && gla <= lastA) { > > This should look like > + while (HG_(

Re: [Valgrind-developers] exp-drd patch

2008-01-21 Thread Julian Seward
> > > - The exp-drd regression tests now run without producing assertion > > > failures and without hanging on Red Hat 7.3. It doesn't make sense > > > however to run exp-drd on Red Hat 7.3 -- while exp-drd works fine with > > > the NPTL, more work would be required to make exp-drd work with > > >

Re: [Valgrind-developers] profiling valgrind tools

2008-01-21 Thread Konstantin Serebryany
On Jan 15, 2008 12:38 PM, Julian Seward <[EMAIL PROTECTED]> wrote: > On Tuesday 15 January 2008 10:32, Konstantin Serebryany wrote: > > You mean it requires 32-bit hardware? or 32-bit-only os? or 32-bit > > executable? > > I _think_ requires 32-bit executable. > > It looks like oprofile's callgrap

Re: [Valgrind-developers] valgrind: r7353 - trunk/helgrind

2008-01-21 Thread Konstantin Serebryany
Hi Julian, I found out that this fix has an issue (which appears only in 32-bit mode). + while (HG_(nextIterFM)( map_locks, (Word*)&gla, (Word*)&lk ) + && gla <= lastA) { This should look like + while (HG_(nextIterFM)( map_locks, (Word*)&gla, (Word*)&lk ) + && (Word)gla <=