blob: 61878d3ef488d81fb75da821fe3e1b1efc68bcd3 [file] [log] [blame]
jseward43230652003-12-14 00:14:54 +00001
sewardjec39f332005-08-02 15:28:07 +00002Release 3.0.0 (3 August 2005)
3~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sewardjf9929e62005-08-02 21:05:58 +000043.0.0 is a major overhaul of Valgrind. The most significant user
5visible change is that Valgrind now supports architectures other than
6x86. The new architectures it supports are AMD64 and PPC32, and the
7infrastructure is present for other architectures to be added later.
njn4a9f6f42005-07-19 23:46:08 +00008
sewardjf9929e62005-08-02 21:05:58 +00009AMD64 support works well, but has some shortcomings:
njn4a9f6f42005-07-19 23:46:08 +000010
njn7b1a6a42005-07-20 04:20:44 +000011- It generally won't be as solid as the x86 version. For example,
12 support for more obscure instructions and system calls may be missing.
13 We will fix these as they arise.
njn4a9f6f42005-07-19 23:46:08 +000014
sewardjc371bd02005-07-27 09:55:24 +000015- Address space may be limited; see the point about
njn7b1a6a42005-07-20 04:20:44 +000016 position-independent executables below.
njn4a9f6f42005-07-19 23:46:08 +000017
njn7b1a6a42005-07-20 04:20:44 +000018- If Valgrind is built on an AMD64 machine, it will only run 64-bit
19 executables. If you want to run 32-bit x86 executables under Valgrind
20 on an AMD64, you will need to build Valgrind on an x86 machine and
21 copy it to the AMD64 machine. And it probably won't work if you do
22 something tricky like exec'ing a 32-bit program from a 64-bit program
23 while using --trace-children=yes. We hope to improve this situation
24 in the future.
25
26The PPC32 support is very basic. It may not work reliably even for
sewardjc371bd02005-07-27 09:55:24 +000027small programs, but it's a start. Many thanks to Paul Mackerras for
28his great work that enabled this support. We are working to make
29PPC32 usable as soon as possible.
njn4a9f6f42005-07-19 23:46:08 +000030
31Other user-visible changes:
32
sewardjec39f332005-08-02 15:28:07 +000033- Valgrind is no longer built by default as a position-independent
34 executable (PIE), as this caused too many problems.
njn4a9f6f42005-07-19 23:46:08 +000035
36 Without PIE enabled, AMD64 programs will only be able to access 2GB of
37 address space. We will fix this eventually, but not for the moment.
38
39 Use --enable-pie at configure-time to turn this on.
40
41- Support for programs that use stack-switching has been improved. Use
42 the --max-stackframe flag for simple cases, and the
43 VALGRIND_STACK_REGISTER, VALGRIND_STACK_DEREGISTER and
44 VALGRIND_STACK_CHANGE client requests for trickier cases.
45
njn7b1a6a42005-07-20 04:20:44 +000046- Support for programs that use self-modifying code has been improved,
47 in particular programs that put temporary code fragments on the stack.
48 This helps for C programs compiled with GCC that use nested functions,
njne7723322005-07-24 17:19:09 +000049 and also Ada programs. This is controlled with the --smc-check
njn7b1a6a42005-07-20 04:20:44 +000050 flag, although the default setting should work in most cases.
njn4a9f6f42005-07-19 23:46:08 +000051
njn7b1a6a42005-07-20 04:20:44 +000052- Output can now be printed in XML format. This should make it easier
sewardjc371bd02005-07-27 09:55:24 +000053 for tools such as GUI front-ends and automated error-processing
54 schemes to use Valgrind output as input. The --xml flag controls this.
55 As part of this change, ELF directory information is read from executables,
56 so absolute source file paths are available if needed.
njn4a9f6f42005-07-19 23:46:08 +000057
58- Programs that allocate many heap blocks may run faster, due to
59 improvements in certain data structures.
60
njn7b1a6a42005-07-20 04:20:44 +000061- Addrcheck is currently not working. We hope to get it working again
62 soon. Helgrind is still not working, as was the case for the 2.4.0
63 release.
njn4a9f6f42005-07-19 23:46:08 +000064
sewardjc371bd02005-07-27 09:55:24 +000065- The JITter has been completely rewritten, and is now in a separate
66 library, called Vex. This enabled a lot of the user-visible changes,
67 such as new architecture support. The new JIT unfortunately translates
68 more slowly than the old one, so programs may take longer to start.
69 We believe the code quality is produces is about the same, so once
70 started, programs should run at about the same speed. Feedback about
71 this would be useful.
72
73 On the plus side, Vex and hence Memcheck tracks value flow properly
74 through floating point and vector registers, something the 2.X line
75 could not do. That means that Memcheck is much more likely to be
76 usably accurate on vectorised code.
77
sewardjec39f332005-08-02 15:28:07 +000078- There is a subtle change to the way exiting of threaded programs
sewardjc371bd02005-07-27 09:55:24 +000079 is handled. In 3.0, Valgrind's final diagnostic output (leak check,
80 etc) is not printed until the last thread exits. If the last thread
81 to exit was not the original thread which started the program, any
82 other process wait()-ing on this one to exit may conclude it has
83 finished before the diagnostic output is printed. This may not be
84 what you expect. 2.X had a different scheme which avoided this
85 problem, but caused deadlocks under obscure circumstances, so we
86 are trying something different for 3.0.
87
88- Small changes in control log file naming which make it easier to
sewardjec39f332005-08-02 15:28:07 +000089 use valgrind for debugging MPI-based programs. The relevant
90 new flags are --log-file-exactly= and --log-file-qualifier=.
sewardjc371bd02005-07-27 09:55:24 +000091
92- As part of adding AMD64 support, DWARF2 CFI-based stack unwinding
93 support was added. In principle this means Valgrind can produce
94 meaningful backtraces on x86 code compiled with -fomit-frame-pointer
tom81868f02005-07-27 10:33:08 +000095 providing you also compile your code with -fasynchronous-unwind-tables.
sewardjc371bd02005-07-27 09:55:24 +000096
sewardjec39f332005-08-02 15:28:07 +000097- The documentation build system has been completely redone.
98 The documentation masters are now in XML format, and from that
99 HTML, PostScript and PDF documentation is generated. As a result
100 the manual is now available in book form. Note that the
101 documentation in the source tarballs is pre-built, so you don't need
102 any XML processing tools to build Valgrind from a tarball.
njn4a9f6f42005-07-19 23:46:08 +0000103
104Changes that are not user-visible:
105
sewardjc371bd02005-07-27 09:55:24 +0000106- The code has been massively overhauled in order to modularise it.
107 As a result we hope it is easier to navigate and understand.
njn4a9f6f42005-07-19 23:46:08 +0000108
109- Lots of code has been rewritten.
110
sewardjf9929e62005-08-02 21:05:58 +0000111BUGS FIXED:
njn4a9f6f42005-07-19 23:46:08 +0000112
sewardjf9929e62005-08-02 21:05:58 +0000113199810 vex amd64->IR: unhandled instruction bytes: 0xA3 0x4C 0x70 0xD7
114109802 Add a plausible_stack_size command-line parameter ?
115109783 unhandled ioctl TIOCMGET (running hw detection tool discover)
116109780 unhandled ioctl BLKSSZGET (running fdisk -l /dev/hda)
117109718 vex x86->IR: unhandled instruction: ffreep
118109429 AMD64 unhandled syscall: 127 (sigpending)
119109401 false positive uninit in strchr from ld-linux.so.2
120109385 "stabs" parse failure
121109378 amd64: unhandled instruction REP NOP
122109376 amd64: unhandled instruction LOOP Jb
123109363 AMD64 unhandled instruction bytes
124109362 AMD64 unhandled syscall: 24 (sched_yield)
125109358 fork() won't work with valgrind-3.0 SVN
126109332 amd64 unhandled instruction: ADC Ev, Gv
127109314 Bogus memcheck report on amd64
128108883 Crash; vg_memory.c:905 (vgPlain_init_shadow_range):
129 Assertion `vgPlain_defined_init_shadow_page()' failed.
130108349 mincore syscall parameter checked incorrectly
131108059 build infrastructure: small update
132107524 epoll_ctl event parameter checked on EPOLL_CTL_DEL
133107123 Vex dies with unhandled instructions: 0xD9 0x31 0xF 0xAE
134106841 auxmap & openGL problems
135106713 SDL_Init causes valgrind to exit
136106352 setcontext and makecontext not handled correctly
137106293 addresses beyond initial client stack allocation
138 not checked in VALGRIND_DO_LEAK_CHECK
139106283 PIE client programs are loaded at address 0
140105831 Assertion `vgPlain_defined_init_shadow_page()' failed.
141105039 long run-times probably due to memory manager
142104797 valgrind needs to be aware of BLKGETSIZE64
143103594 unhandled instruction: FICOM
144103320 Valgrind 2.4.0 fails to compile with gcc 3.4.3 and -O0
145103168 potentially memory leak in coregrind/ume.c
146102039 bad permissions for mapped region at address 0xB7C73680
147101881 weird assertion problem
148101543 Support fadvise64 syscalls
14975247 x86_64/amd64 support (the biggest "bug" we have ever fixed)
njn4a9f6f42005-07-19 23:46:08 +0000150
sewardjbfa2b992005-07-27 17:49:17 +0000151(3.0RC1: 27 July 05, vex r1303, valgrind r4283).
152
153
154
njn8c927302005-03-12 16:45:01 +0000155Stable release 2.4.0 (March 2005) -- CHANGES RELATIVE TO 2.2.0
njn1aa5ae42005-03-26 16:04:27 +0000156~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1572.4.0 brings many significant changes and bug fixes. The most
158significant user-visible change is that we no longer supply our own
159pthread implementation. Instead, Valgrind is finally capable of
160running the native thread library, either LinuxThreads or NPTL.
njn8c927302005-03-12 16:45:01 +0000161
njn1aa5ae42005-03-26 16:04:27 +0000162This means our libpthread has gone, along with the bugs associated
163with it. Valgrind now supports the kernel's threading syscalls, and
164lets you use your standard system libpthread. As a result:
njn8c927302005-03-12 16:45:01 +0000165
njn1aa5ae42005-03-26 16:04:27 +0000166* There are many fewer system dependencies and strange library-related
167 bugs. There is a small performance improvement, and a large
168 stability improvement.
njn8c927302005-03-12 16:45:01 +0000169
njn1aa5ae42005-03-26 16:04:27 +0000170* On the downside, Valgrind can no longer report misuses of the POSIX
171 PThreads API. It also means that Helgrind currently does not work.
172 We hope to fix these problems in a future release.
njn8c927302005-03-12 16:45:01 +0000173
njn1aa5ae42005-03-26 16:04:27 +0000174Note that running the native thread libraries does not mean Valgrind
175is able to provide genuine concurrent execution on SMPs. We still
176impose the restriction that only one thread is running at any given
177time.
njn8c927302005-03-12 16:45:01 +0000178
njn1aa5ae42005-03-26 16:04:27 +0000179There are many other significant changes too:
njn8c927302005-03-12 16:45:01 +0000180
njn1aa5ae42005-03-26 16:04:27 +0000181* Memcheck is (once again) the default tool.
njn8c927302005-03-12 16:45:01 +0000182
njn1aa5ae42005-03-26 16:04:27 +0000183* The default stack backtrace is now 12 call frames, rather than 4.
njn8c927302005-03-12 16:45:01 +0000184
njn1aa5ae42005-03-26 16:04:27 +0000185* Suppressions can have up to 25 call frame matches, rather than 4.
njn8c927302005-03-12 16:45:01 +0000186
njn1aa5ae42005-03-26 16:04:27 +0000187* Memcheck and Addrcheck use less memory. Under some circumstances,
188 they no longer allocate shadow memory if there are large regions of
189 memory with the same A/V states - such as an mmaped file.
njn8c927302005-03-12 16:45:01 +0000190
njn1aa5ae42005-03-26 16:04:27 +0000191* The memory-leak detector in Memcheck and Addrcheck has been
192 improved. It now reports more types of memory leak, including
193 leaked cycles. When reporting leaked memory, it can distinguish
194 between directly leaked memory (memory with no references), and
195 indirectly leaked memory (memory only referred to by other leaked
196 memory).
njn8c927302005-03-12 16:45:01 +0000197
njn1aa5ae42005-03-26 16:04:27 +0000198* Memcheck's confusion over the effect of mprotect() has been fixed:
199 previously mprotect could erroneously mark undefined data as
200 defined.
njn8c927302005-03-12 16:45:01 +0000201
njn1aa5ae42005-03-26 16:04:27 +0000202* Signal handling is much improved and should be very close to what
203 you get when running natively.
204
205 One result of this is that Valgrind observes changes to sigcontexts
206 passed to signal handlers. Such modifications will take effect when
207 the signal returns. You will need to run with --single-step=yes to
208 make this useful.
njn8c927302005-03-12 16:45:01 +0000209
210* Valgrind is built in Position Independent Executable (PIE) format if
njn1aa5ae42005-03-26 16:04:27 +0000211 your toolchain supports it. This allows it to take advantage of all
njn8c927302005-03-12 16:45:01 +0000212 the available address space on systems with 4Gbyte user address
213 spaces.
214
215* Valgrind can now run itself (requires PIE support).
216
njn1aa5ae42005-03-26 16:04:27 +0000217* Syscall arguments are now checked for validity. Previously all
218 memory used by syscalls was checked, but now the actual values
219 passed are also checked.
njn8c927302005-03-12 16:45:01 +0000220
njn1aa5ae42005-03-26 16:04:27 +0000221* Syscall wrappers are more robust against bad addresses being passed
222 to syscalls: they will fail with EFAULT rather than killing Valgrind
223 with SIGSEGV.
njn8c927302005-03-12 16:45:01 +0000224
njn1aa5ae42005-03-26 16:04:27 +0000225* Because clone() is directly supported, some non-pthread uses of it
226 will work. Partial sharing (where some resources are shared, and
227 some are not) is not supported.
228
229* open() and readlink() on /proc/self/exe are supported.
230
231BUGS FIXED:
232
23388520 pipe+fork+dup2 kills the main program
23488604 Valgrind Aborts when using $VALGRIND_OPTS and user progra...
23588614 valgrind: vg_libpthread.c:2323 (read): Assertion `read_pt...
23688703 Stabs parser fails to handle ";"
23788886 ioctl wrappers for TIOCMBIS and TIOCMBIC
23889032 valgrind pthread_cond_timedwait fails
23989106 the 'impossible' happened
24089139 Missing sched_setaffinity & sched_getaffinity
24189198 valgrind lacks support for SIOCSPGRP and SIOCGPGRP
24289263 Missing ioctl translations for scsi-generic and CD playing
24389440 tests/deadlock.c line endings
24489481 `impossible' happened: EXEC FAILED
24589663 valgrind 2.2.0 crash on Redhat 7.2
24689792 Report pthread_mutex_lock() deadlocks instead of returnin...
24790111 statvfs64 gives invalid error/warning
24890128 crash+memory fault with stabs generated by gnat for a run...
24990778 VALGRIND_CHECK_DEFINED() not as documented in memcheck.h
25090834 cachegrind crashes at end of program without reporting re...
25191028 valgrind: vg_memory.c:229 (vgPlain_unmap_range): Assertio...
25291162 valgrind crash while debugging drivel 1.2.1
25391199 Unimplemented function
25491325 Signal routing does not propagate the siginfo structure
25591599 Assertion `cv == ((void *)0)'
25691604 rw_lookup clears orig and sends the NULL value to rw_new
25791821 Small problems building valgrind with $top_builddir ne $t...
25891844 signal 11 (SIGSEGV) at get_tcb (libpthread.c:86) in corec...
25992264 UNIMPLEMENTED FUNCTION: pthread_condattr_setpshared
26092331 per-target flags necessitate AM_PROG_CC_C_O
26192420 valgrind doesn't compile with linux 2.6.8.1/9
26292513 Valgrind 2.2.0 generates some warning messages
26392528 vg_symtab2.c:170 (addLoc): Assertion `loc->size > 0' failed.
26493096 unhandled ioctl 0x4B3A and 0x5601
26593117 Tool and core interface versions do not match
26693128 Can't run valgrind --tool=memcheck because of unimplement...
26793174 Valgrind can crash if passed bad args to certain syscalls
26893309 Stack frame in new thread is badly aligned
26993328 Wrong types used with sys_sigprocmask()
27093763 /usr/include/asm/msr.h is missing
27193776 valgrind: vg_memory.c:508 (vgPlain_find_map_space): Asser...
27293810 fcntl() argument checking a bit too strict
27394378 Assertion `tst->sigqueue_head != tst->sigqueue_tail' failed.
27494429 valgrind 2.2.0 segfault with mmap64 in glibc 2.3.3
27594645 Impossible happened: PINSRW mem
27694953 valgrind: the `impossible' happened: SIGSEGV
27795667 Valgrind does not work with any KDE app
27896243 Assertion 'res==0' failed
27996252 stage2 loader of valgrind fails to allocate memory
28096520 All programs crashing at _dl_start (in /lib/ld-2.3.3.so) ...
28196660 ioctl CDROMREADTOCENTRY causes bogus warnings
28296747 After looping in a segfault handler, the impossible happens
28396923 Zero sized arrays crash valgrind trace back with SIGFPE
28496948 valgrind stops with assertion failure regarding mmap2
28596966 valgrind fails when application opens more than 16 sockets
28697398 valgrind: vg_libpthread.c:2667 Assertion failed
28797407 valgrind: vg_mylibc.c:1226 (vgPlain_safe_fd): Assertion `...
28897427 "Warning: invalid file descriptor -1 in syscall close()" ...
28997785 missing backtrace
29097792 build in obj dir fails - autoconf / makefile cleanup
29197880 pthread_mutex_lock fails from shared library (special ker...
29297975 program aborts without ang VG messages
29398129 Failed when open and close file 230000 times using stdio
29498175 Crashes when using valgrind-2.2.0 with a program using al...
29598288 Massif broken
29698303 UNIMPLEMENTED FUNCTION pthread_condattr_setpshared
29798630 failed--compilation missing warnings.pm, fails to make he...
29898756 Cannot valgrind signal-heavy kdrive X server
29998966 valgrinding the JVM fails with a sanity check assertion
30099035 Valgrind crashes while profiling
30199142 loops with message "Signal 11 being dropped from thread 0...
30299195 threaded apps crash on thread start (using QThread::start...
30399348 Assertion `vgPlain_lseek(core_fd, 0, 1) == phdrs[i].p_off...
30499568 False negative due to mishandling of mprotect
30599738 valgrind memcheck crashes on program that uses sigitimer
30699923 0-sized allocations are reported as leaks
30799949 program seg faults after exit()
308100036 "newSuperblock's request for 1048576 bytes failed"
309100116 valgrind: (pthread_cond_init): Assertion `sizeof(* cond) ...
310100486 memcheck reports "valgrind: the `impossible' happened: V...
311100833 second call to "mremap" fails with EINVAL
312101156 (vgPlain_find_map_space): Assertion `(addr & ((1 << 12)-1...
313101173 Assertion `recDepth >= 0 && recDepth < 500' failed
314101291 creating threads in a forked process fails
315101313 valgrind causes different behavior when resizing a window...
316101423 segfault for c++ array of floats
317101562 valgrind massif dies on SIGINT even with signal handler r...
318
njn8c927302005-03-12 16:45:01 +0000319
jseward34ed74f2004-08-30 18:04:42 +0000320Stable release 2.2.0 (31 August 2004) -- CHANGES RELATIVE TO 2.0.0
321~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
jseward7d180d92004-08-30 18:15:37 +00003222.2.0 brings nine months worth of improvements and bug fixes. We
323believe it to be a worthy successor to 2.0.0. There are literally
324hundreds of bug fixes and minor improvements. There are also some
325fairly major user-visible changes:
326
327* A complete overhaul of handling of system calls and signals, and
328 their interaction with threads. In general, the accuracy of the
329 system call, thread and signal simulations is much improved:
330
331 - Blocking system calls behave exactly as they do when running
332 natively (not on valgrind). That is, if a syscall blocks only the
333 calling thread when running natively, than it behaves the same on
334 valgrind. No more mysterious hangs because V doesn't know that some
335 syscall or other, should block only the calling thread.
336
337 - Interrupted syscalls should now give more faithful results.
338
339 - Signal contexts in signal handlers are supported.
340
341* Improvements to NPTL support to the extent that V now works
342 properly on NPTL-only setups.
343
344* Greater isolation between Valgrind and the program being run, so
345 the program is less likely to inadvertently kill Valgrind by
346 doing wild writes.
347
348* Massif: a new space profiling tool. Try it! It's cool, and it'll
349 tell you in detail where and when your C/C++ code is allocating heap.
350 Draws pretty .ps pictures of memory use against time. A potentially
351 powerful tool for making sense of your program's space use.
352
353* File descriptor leakage checks. When enabled, Valgrind will print out
354 a list of open file descriptors on exit.
355
356* Improved SSE2/SSE3 support.
357
jseward2eb002b2004-08-31 00:14:02 +0000358* Time-stamped output; use --time-stamp=yes
359
jseward34ed74f2004-08-30 18:04:42 +0000360
361
362Stable release 2.2.0 (31 August 2004) -- CHANGES RELATIVE TO 2.1.2
363~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3642.2.0 is not much different from 2.1.2, released seven weeks ago.
365A number of bugs have been fixed, most notably #85658, which gave
366problems for quite a few people. There have been many internal
367cleanups, but those are not user visible.
368
369The following bugs have been fixed since 2.1.2:
370
37185658 Assert in coregrind/vg_libpthread.c:2326 (open64) !=
372 (void*)0 failed
373 This bug was reported multiple times, and so the following
374 duplicates of it are also fixed: 87620, 85796, 85935, 86065,
375 86919, 86988, 87917, 88156
376
37780716 Semaphore mapping bug caused by unmap (sem_destroy)
378 (Was fixed prior to 2.1.2)
379
38086987 semctl and shmctl syscalls family is not handled properly
381
38286696 valgrind 2.1.2 + RH AS2.1 + librt
383
38486730 valgrind locks up at end of run with assertion failure
385 in __pthread_unwind
386
38786641 memcheck doesn't work with Mesa OpenGL/ATI on Suse 9.1
388 (also fixes 74298, a duplicate of this)
389
39085947 MMX/SSE unhandled instruction 'sfence'
391
39284978 Wrong error "Conditional jump or move depends on
393 uninitialised value" resulting from "sbbl %reg, %reg"
394
39586254 ssort() fails when signed int return type from comparison is
396 too small to handle result of unsigned int subtraction
397
39887089 memalign( 4, xxx) makes valgrind assert
399
jseward2eb002b2004-08-31 00:14:02 +000040086407 Add support for low-level parallel port driver ioctls.
jseward34ed74f2004-08-30 18:04:42 +0000401
40270587 Add timestamps to Valgrind output? (wishlist)
403
40484937 vg_libpthread.c:2505 (se_remap): Assertion `res == 0'
405 (fixed prior to 2.1.2)
406
40786317 cannot load libSDL-1.2.so.0 using valgrind
408
40986989 memcpy from mac_replace_strmem.c complains about
410 uninitialized pointers passed when length to copy is zero
411
41285811 gnu pascal symbol causes segmentation fault; ok in 2.0.0
413
41479138 writing to sbrk()'d memory causes segfault
415
41677369 sched deadlock while signal received during pthread_join
417 and the joined thread exited
418
41988115 In signal handler for SIGFPE, siginfo->si_addr is wrong
420 under Valgrind
421
42278765 Massif crashes on app exit if FP exceptions are enabled
423
424Additionally there are the following changes, which are not
425connected to any bug report numbers, AFAICS:
426
427* Fix scary bug causing mis-identification of SSE stores vs
428 loads and so causing memcheck to sometimes give nonsense results
429 on SSE code.
430
431* Add support for the POSIX message queue system calls.
432
433* Fix to allow 32-bit Valgrind to run on AMD64 boxes. Note: this does
434 NOT allow Valgrind to work with 64-bit executables - only with 32-bit
435 executables on an AMD64 box.
436
437* At configure time, only check whether linux/mii.h can be processed
438 so that we don't generate ugly warnings by trying to compile it.
439
jseward2eb002b2004-08-31 00:14:02 +0000440* Add support for POSIX clocks and timers.
441
jseward34ed74f2004-08-30 18:04:42 +0000442
443
jseward9cd978c2004-07-17 13:38:12 +0000444Developer (cvs head) release 2.1.2 (18 July 2004)
jsewardbd0a6e42004-07-17 12:19:43 +0000445~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4462.1.2 contains four months worth of bug fixes and refinements.
jseward9cd978c2004-07-17 13:38:12 +0000447Although officially a developer release, we believe it to be stable
448enough for widespread day-to-day use. 2.1.2 is pretty good, so try it
449first, although there is a chance it won't work. If so then try 2.0.0
450and tell us what went wrong." 2.1.2 fixes a lot of problems present
451in 2.0.0 and is generally a much better product.
jsewardbd0a6e42004-07-17 12:19:43 +0000452
jseward9cd978c2004-07-17 13:38:12 +0000453Relative to 2.1.1, a large number of minor problems with 2.1.1 have
454been fixed, and so if you use 2.1.1 you should try 2.1.2. Users of
455the last stable release, 2.0.0, might also want to try this release.
jsewardbd0a6e42004-07-17 12:19:43 +0000456
457The following bugs, and probably many more, have been fixed. These
458are listed at http://bugs.kde.org. Reporting a bug for valgrind in
459the http://bugs.kde.org is much more likely to get you a fix than
460mailing developers directly, so please continue to keep sending bugs
461there.
462
46376869 Crashes when running any tool under Fedora Core 2 test1
464 This fixes the problem with returning from a signal handler
jseward0400d4d2004-07-17 23:26:46 +0000465 when VDSOs are turned off in FC2.
jsewardbd0a6e42004-07-17 12:19:43 +0000466
jseward0400d4d2004-07-17 23:26:46 +000046769508 java 1.4.2 client fails with erroneous "stack size too small".
468 This fix makes more of the pthread stack attribute related
469 functions work properly. Java still doesn't work though.
jsewardbd0a6e42004-07-17 12:19:43 +0000470
47171906 malloc alignment should be 8, not 4
472 All memory returned by malloc/new etc is now at least
473 8-byte aligned.
474
jsewarda6017a42004-07-17 23:44:35 +000047581970 vg_alloc_ThreadState: no free slots available
476 (closed because the workaround is simple: increase
477 VG_N_THREADS, rebuild and try again.)
478
jsewardbd0a6e42004-07-17 12:19:43 +000047978514 Conditional jump or move depends on uninitialized value(s)
480 (a slight mishanding of FP code in memcheck)
481
jsewarda6017a42004-07-17 23:44:35 +000048277952 pThread Support (crash) (due to initialisation-ordering probs)
483 (also 85118)
484
jsewardbd0a6e42004-07-17 12:19:43 +000048580942 Addrcheck wasn't doing overlap checking as it should.
48678048 return NULL on malloc/new etc failure, instead of asserting
48773655 operator new() override in user .so files often doesn't get picked up
48883060 Valgrind does not handle native kernel AIO
48969872 Create proper coredumps after fatal signals
49082026 failure with new glibc versions: __libc_* functions are not exported
49170344 UNIMPLEMENTED FUNCTION: tcdrain
49281297 Cancellation of pthread_cond_wait does not require mutex
49382872 Using debug info from additional packages (wishlist)
49483025 Support for ioctls FIGETBSZ and FIBMAP
49583340 Support for ioctl HDIO_GET_IDENTITY
49679714 Support for the semtimedop system call.
49777022 Support for ioctls FBIOGET_VSCREENINFO and FBIOGET_FSCREENINFO
49882098 hp2ps ansification (wishlist)
49983573 Valgrind SIGSEGV on execve
50082999 show which cmdline option was erroneous (wishlist)
50183040 make valgrind VPATH and distcheck-clean (wishlist)
jsewarda6017a42004-07-17 23:44:35 +000050283998 Assertion `newfd > vgPlain_max_fd' failed (see below)
50382722 Unchecked mmap in as_pad leads to mysterious failures later
50478958 memcheck seg faults while running Mozilla
jsewarda2c08002004-07-18 09:24:57 +000050585416 Arguments with colon (e.g. --logsocket) ignored
jsewardbd0a6e42004-07-17 12:19:43 +0000506
507
508Additionally there are the following changes, which are not
509connected to any bug report numbers, AFAICS:
510
511* Rearranged address space layout relative to 2.1.1, so that
512 Valgrind/tools will run out of memory later than currently in many
513 circumstances. This is good news esp. for Calltree. It should
514 be possible for client programs to allocate over 800MB of
515 memory when using memcheck now.
516
jseward9cd978c2004-07-17 13:38:12 +0000517* Improved checking when laying out memory. Should hopefully avoid
518 the random segmentation faults that 2.1.1 sometimes caused.
519
jsewardbd0a6e42004-07-17 12:19:43 +0000520* Support for Fedora Core 2 and SuSE 9.1. Improvements to NPTL
521 support to the extent that V now works properly on NPTL-only setups.
522
523* Renamed the following options:
524 --logfile-fd --> --log-fd
525 --logfile --> --log-file
526 --logsocket --> --log-socket
527 to be consistent with each other and other options (esp. --input-fd).
528
529* Add support for SIOCGMIIPHY, SIOCGMIIREG and SIOCSMIIREG ioctls and
530 improve the checking of other interface related ioctls.
531
jsewardbd0a6e42004-07-17 12:19:43 +0000532* Fix building with gcc-3.4.1.
533
534* Remove limit on number of semaphores supported.
535
jsewardbd0a6e42004-07-17 12:19:43 +0000536* Add support for syscalls: set_tid_address (258), acct (51).
537
538* Support instruction "repne movs" -- not official but seems to occur.
539
540* Implement an emulated soft limit for file descriptors in addition to
541 the current reserved area, which effectively acts as a hard limit. The
542 setrlimit system call now simply updates the emulated limits as best
543 as possible - the hard limit is not allowed to move at all and just
544 returns EPERM if you try and change it. This should stop reductions
545 in the soft limit causing assertions when valgrind tries to allocate
546 descriptors from the reserved area.
jsewarda6017a42004-07-17 23:44:35 +0000547 (This actually came from bug #83998).
jsewardbd0a6e42004-07-17 12:19:43 +0000548
nethercote76e8fd92004-07-21 10:37:31 +0000549* Major overhaul of Cachegrind implementation. First user-visible change
nethercote5e63bfb2004-07-17 12:49:53 +0000550 is that cachegrind.out files are now typically 90% smaller than they
nethercote76e8fd92004-07-21 10:37:31 +0000551 used to be; code annotation times are correspondingly much smaller.
552 Second user-visible change is that hit/miss counts for code that is
553 unloaded at run-time is no longer dumped into a single "discard" pile,
554 but accurately preserved.
jsewardbd0a6e42004-07-17 12:19:43 +0000555
556* Client requests for telling valgrind about memory pools.
557
558
559
jseward9cd978c2004-07-17 13:38:12 +0000560Developer (cvs head) release 2.1.1 (12 March 2004)
561~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
jsewardbd0a6e42004-07-17 12:19:43 +00005622.1.1 contains some internal structural changes needed for V's
jsewarde3e77042004-03-12 21:07:05 +0000563long-term future. These don't affect end-users. Most notable
564user-visible changes are:
565
566* Greater isolation between Valgrind and the program being run, so
567 the program is less likely to inadvertently kill Valgrind by
568 doing wild writes.
569
570* Massif: a new space profiling tool. Try it! It's cool, and it'll
571 tell you in detail where and when your C/C++ code is allocating heap.
572 Draws pretty .ps pictures of memory use against time. A potentially
573 powerful tool for making sense of your program's space use.
574
575* Fixes for many bugs, including support for more SSE2/SSE3 instructions,
576 various signal/syscall things, and various problems with debug
577 info readers.
578
579* Support for glibc-2.3.3 based systems.
580
581We are now doing automatic overnight build-and-test runs on a variety
582of distros. As a result, we believe 2.1.1 builds and runs on:
583Red Hat 7.2, 7.3, 8.0, 9, Fedora Core 1, SuSE 8.2, SuSE 9.
584
585
586The following bugs, and probably many more, have been fixed. These
587are listed at http://bugs.kde.org. Reporting a bug for valgrind in
588the http://bugs.kde.org is much more likely to get you a fix than
589mailing developers directly, so please continue to keep sending bugs
590there.
591
59269616 glibc 2.3.2 w/NPTL is massively different than what valgrind expects
59369856 I don't know how to instrument MMXish stuff (Helgrind)
59473892 valgrind segfaults starting with Objective-C debug info
595 (fix for S-type stabs)
59673145 Valgrind complains too much about close(<reserved fd>)
59773902 Shadow memory allocation seems to fail on RedHat 8.0
59868633 VG_N_SEMAPHORES too low (V itself was leaking semaphores)
59975099 impossible to trace multiprocess programs
60076839 the `impossible' happened: disInstr: INT but not 0x80 !
60176762 vg_to_ucode.c:3748 (dis_push_segreg): Assertion `sz == 4' failed.
60276747 cannot include valgrind.h in c++ program
60376223 parsing B(3,10) gave NULL type => impossible happens
60475604 shmdt handling problem
60576416 Problems with gcc 3.4 snap 20040225
60675614 using -gstabs when building your programs the `impossible' happened
60775787 Patch for some CDROM ioctls CDORM_GET_MCN, CDROM_SEND_PACKET,
60875294 gcc 3.4 snapshot's libstdc++ have unsupported instructions.
609 (REP RET)
61073326 vg_symtab2.c:272 (addScopeRange): Assertion `range->size > 0' failed.
61172596 not recognizing __libc_malloc
61269489 Would like to attach ddd to running program
61372781 Cachegrind crashes with kde programs
61473055 Illegal operand at DXTCV11CompressBlockSSE2 (more SSE opcodes)
61573026 Descriptor leak check reports port numbers wrongly
61671705 README_MISSING_SYSCALL_OR_IOCTL out of date
61772643 Improve support for SSE/SSE2 instructions
61872484 valgrind leaves it's own signal mask in place when execing
61972650 Signal Handling always seems to restart system calls
62072006 The mmap system call turns all errors in ENOMEM
62171781 gdb attach is pretty useless
62271180 unhandled instruction bytes: 0xF 0xAE 0x85 0xE8
62369886 writes to zero page cause valgrind to assert on exit
62471791 crash when valgrinding gimp 1.3 (stabs reader problem)
62569783 unhandled syscall: 218
62669782 unhandled instruction bytes: 0x66 0xF 0x2B 0x80
62770385 valgrind fails if the soft file descriptor limit is less
628 than about 828
62969529 "rep; nop" should do a yield
63070827 programs with lots of shared libraries report "mmap failed"
631 for some of them when reading symbols
63271028 glibc's strnlen is optimised enough to confuse valgrind
633
634
635
636
jseward43230652003-12-14 00:14:54 +0000637Unstable (cvs head) release 2.1.0 (15 December 2003)
638~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
639For whatever it's worth, 2.1.0 actually seems pretty darn stable to me
640(Julian). It looks eminently usable, and given that it fixes some
641significant bugs, may well be worth using on a day-to-day basis.
6422.1.0 is known to build and pass regression tests on: SuSE 9, SuSE
6438.2, RedHat 8.
644
6452.1.0 most notably includes Jeremy Fitzhardinge's complete overhaul of
646handling of system calls and signals, and their interaction with
647threads. In general, the accuracy of the system call, thread and
648signal simulations is much improved. Specifically:
649
650- Blocking system calls behave exactly as they do when running
651 natively (not on valgrind). That is, if a syscall blocks only the
652 calling thread when running natively, than it behaves the same on
653 valgrind. No more mysterious hangs because V doesn't know that some
654 syscall or other, should block only the calling thread.
655
656- Interrupted syscalls should now give more faithful results.
657
658- Finally, signal contexts in signal handlers are supported. As a
659 result, konqueror on SuSE 9 no longer segfaults when notified of
660 file changes in directories it is watching.
661
662Other changes:
663
664- Robert Walsh's file descriptor leakage checks. When enabled,
665 Valgrind will print out a list of open file descriptors on
666 exit. Along with each file descriptor, Valgrind prints out a stack
667 backtrace of where the file was opened and any details relating to the
668 file descriptor such as the file name or socket details.
669 To use, give: --track-fds=yes
670
671- Implemented a few more SSE/SSE2 instructions.
672
673- Less crud on the stack when you do 'where' inside a GDB attach.
674
675- Fixed the following bugs:
676 68360: Valgrind does not compile against 2.6.0-testX kernels
677 68525: CVS head doesn't compile on C90 compilers
678 68566: pkgconfig support (wishlist)
679 68588: Assertion `sz == 4' failed in vg_to_ucode.c (disInstr)
680 69140: valgrind not able to explicitly specify a path to a binary.
681 69432: helgrind asserts encountering a MutexErr when there are
682 EraserErr suppressions
683
jseward0b12daf2003-12-14 14:35:28 +0000684- Increase the max size of the translation cache from 200k average bbs
685 to 300k average bbs. Programs on the size of OOo (680m17) are
686 thrashing the cache at the smaller size, creating large numbers of
687 retranslations and wasting significant time as a result.
688
jseward43230652003-12-14 00:14:54 +0000689
690
691Stable release 2.0.0 (5 Nov 2003)
692~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
693
6942.0.0 improves SSE/SSE2 support, fixes some minor bugs, and
695improves support for SuSE 9 and the Red Hat "Severn" beta.
696
697- Further improvements to SSE/SSE2 support. The entire test suite of
698 the GNU Scientific Library (gsl-1.4) compiled with Intel Icc 7.1
699 20030307Z '-g -O -xW' now works. I think this gives pretty good
700 coverage of SSE/SSE2 floating point instructions, or at least the
701 subset emitted by Icc.
702
703- Also added support for the following instructions:
704 MOVNTDQ UCOMISD UNPCKLPS UNPCKHPS SQRTSS
705 PUSH/POP %{FS,GS}, and PUSH %CS (Nb: there is no POP %CS).
706
707- CFI support for GDB version 6. Needed to enable newer GDBs
708 to figure out where they are when using --gdb-attach=yes.
709
710- Fix this:
711 mc_translate.c:1091 (memcheck_instrument): Assertion
712 `u_in->size == 4 || u_in->size == 16' failed.
713
714- Return an error rather than panicing when given a bad socketcall.
715
716- Fix checking of syscall rt_sigtimedwait().
717
718- Implement __NR_clock_gettime (syscall 265). Needed on Red Hat Severn.
719
720- Fixed bug in overlap check in strncpy() -- it was assuming the src was 'n'
721 bytes long, when it could be shorter, which could cause false
722 positives.
723
724- Support use of select() for very large numbers of file descriptors.
725
726- Don't fail silently if the executable is statically linked, or is
727 setuid/setgid. Print an error message instead.
728
729- Support for old DWARF-1 format line number info.
730
731
732
733Snapshot 20031012 (12 October 2003)
734~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
735
736Three months worth of bug fixes, roughly. Most significant single
737change is improved SSE/SSE2 support, mostly thanks to Dirk Mueller.
738
73920031012 builds on Red Hat Fedora ("Severn") but doesn't really work
740(curiosly, mozilla runs OK, but a modest "ls -l" bombs). I hope to
741get a working version out soon. It may or may not work ok on the
742forthcoming SuSE 9; I hear positive noises about it but haven't been
743able to verify this myself (not until I get hold of a copy of 9).
744
745A detailed list of changes, in no particular order:
746
747- Describe --gen-suppressions in the FAQ.
748
749- Syscall __NR_waitpid supported.
750
751- Minor MMX bug fix.
752
753- -v prints program's argv[] at startup.
754
755- More glibc-2.3 suppressions.
756
757- Suppressions for stack underrun bug(s) in the c++ support library
758 distributed with Intel Icc 7.0.
759
760- Fix problems reading /proc/self/maps.
761
762- Fix a couple of messages that should have been suppressed by -q,
763 but weren't.
764
765- Make Addrcheck understand "Overlap" suppressions.
766
767- At startup, check if program is statically linked and bail out if so.
768
769- Cachegrind: Auto-detect Intel Pentium-M, also VIA Nehemiah
770
771- Memcheck/addrcheck: minor speed optimisations
772
773- Handle syscall __NR_brk more correctly than before.
774
775- Fixed incorrect allocate/free mismatch errors when using
776 operator new(unsigned, std::nothrow_t const&)
777 operator new[](unsigned, std::nothrow_t const&)
778
779- Support POSIX pthread spinlocks.
780
781- Fixups for clean compilation with gcc-3.3.1.
daywalker5d945de2003-09-26 00:32:53 +0000782
783- Implemented more opcodes:
784 - push %es
785 - push %ds
786 - pop %es
787 - pop %ds
788 - movntq
789 - sfence
790 - pshufw
791 - pavgb
792 - ucomiss
793 - enter
daywalkerb18d2532003-09-27 20:15:01 +0000794 - mov imm32, %esp
795 - all "in" and "out" opcodes
daywalker79aad842003-09-30 22:58:12 +0000796 - inc/dec %esp
jseward43230652003-12-14 00:14:54 +0000797 - A whole bunch of SSE/SSE2 instructions
daywalker5d945de2003-09-26 00:32:53 +0000798
jseward43230652003-12-14 00:14:54 +0000799- Memcheck: don't bomb on SSE/SSE2 code.
daywalker5d945de2003-09-26 00:32:53 +0000800
sewardj90238792003-05-05 00:23:42 +0000801
sewardj945f39f2003-07-25 21:11:40 +0000802Snapshot 20030725 (25 July 2003)
803~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
804
805Fixes some minor problems in 20030716.
806
807- Fix bugs in overlap checking for strcpy/memcpy etc.
808
809- Do overlap checking with Addrcheck as well as Memcheck.
810
811- Fix this:
812 Memcheck: the `impossible' happened:
813 get_error_name: unexpected type
814
815- Install headers needed to compile new skins.
816
sewardje3dd2e02003-07-27 08:04:48 +0000817- Remove leading spaces and colon in the LD_LIBRARY_PATH / LD_PRELOAD
sewardj945f39f2003-07-25 21:11:40 +0000818 passed to non-traced children.
819
sewardjb9eda952003-07-26 21:39:05 +0000820- Fix file descriptor leak in valgrind-listener.
821
sewardje3dd2e02003-07-27 08:04:48 +0000822- Fix longstanding bug in which the allocation point of a
823 block resized by realloc was not correctly set. This may
824 have caused confusing error messages.
sewardj945f39f2003-07-25 21:11:40 +0000825
826
sewardj626fd892003-07-16 20:10:26 +0000827Snapshot 20030716 (16 July 2003)
sewardj9d916ed2003-07-14 23:38:40 +0000828~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
829
sewardj626fd892003-07-16 20:10:26 +000083020030716 is a snapshot of our current CVS head (development) branch.
sewardj9d916ed2003-07-14 23:38:40 +0000831This is the branch which will become valgrind-2.0. It contains
832significant enhancements over the 1.9.X branch.
833
834Despite this being a snapshot of the CVS head, it is believed to be
835quite stable -- at least as stable as 1.9.6 or 1.0.4, if not more so
836-- and therefore suitable for widespread use. Please let us know asap
837if it causes problems for you.
838
839Two reasons for releasing a snapshot now are:
840
841- It's been a while since 1.9.6, and this snapshot fixes
842 various problems that 1.9.6 has with threaded programs
843 on glibc-2.3.X based systems.
844
845- So as to make available improvements in the 2.0 line.
846
sewardj626fd892003-07-16 20:10:26 +0000847Major changes in 20030716, as compared to 1.9.6:
sewardj9d916ed2003-07-14 23:38:40 +0000848
849- More fixes to threading support on glibc-2.3.1 and 2.3.2-based
850 systems (SuSE 8.2, Red Hat 9). If you have had problems
851 with inconsistent/illogical behaviour of errno, h_errno or the DNS
sewardj626fd892003-07-16 20:10:26 +0000852 resolver functions in threaded programs, 20030716 should improve
sewardj9d916ed2003-07-14 23:38:40 +0000853 matters. This snapshot seems stable enough to run OpenOffice.org
854 1.1rc on Red Hat 7.3, SuSE 8.2 and Red Hat 9, and that's a big
855 threaded app if ever I saw one.
856
857- Automatic generation of suppression records; you no longer
858 need to write them by hand. Use --gen-suppressions=yes.
859
sewardj21511802003-07-22 17:47:42 +0000860- strcpy/memcpy/etc check their arguments for overlaps, when
861 running with the Memcheck or Addrcheck skins.
862
863- malloc_usable_size() is now supported.
864
865- new client requests:
866 - VALGRIND_COUNT_ERRORS, VALGRIND_COUNT_LEAKS:
867 useful with regression testing
868 - VALGRIND_NON_SIMD_CALL[0123]: for running arbitrary functions
869 on real CPU (use with caution!)
870
sewardj9d916ed2003-07-14 23:38:40 +0000871- The GDB attach mechanism is more flexible. Allow the GDB to
872 be run to be specified by --gdb-path=/path/to/gdb, and specify
873 which file descriptor V will read its input from with
874 --input-fd=<number>.
875
sewardj21511802003-07-22 17:47:42 +0000876- Cachegrind gives more accurate results (wasn't tracking instructions in
877 malloc() and friends previously, is now).
878
sewardj9d916ed2003-07-14 23:38:40 +0000879- Complete support for the MMX instruction set.
880
881- Partial support for the SSE and SSE2 instruction sets. Work for this
882 is ongoing. About half the SSE/SSE2 instructions are done, so
883 some SSE based programs may work. Currently you need to specify
884 --skin=addrcheck. Basically not suitable for real use yet.
885
886- Significant speedups (10%-20%) for standard memory checking.
887
888- Fix assertion failure in pthread_once().
889
890- Fix this:
891 valgrind: vg_intercept.c:598 (vgAllRoadsLeadToRome_select):
892 Assertion `ms_end >= ms_now' failed.
893
894- Implement pthread_mutexattr_setpshared.
895
896- Understand Pentium 4 branch hints. Also implemented a couple more
897 obscure x86 instructions.
898
899- Lots of other minor bug fixes.
900
sewardj626fd892003-07-16 20:10:26 +0000901- We have a decent regression test system, for the first time.
902 This doesn't help you directly, but it does make it a lot easier
903 for us to track the quality of the system, especially across
904 multiple linux distributions.
905
906 You can run the regression tests with 'make regtest' after 'make
907 install' completes. On SuSE 8.2 and Red Hat 9 I get this:
908
909 == 84 tests, 0 stderr failures, 0 stdout failures ==
910
911 On Red Hat 8, I get this:
912
913 == 84 tests, 2 stderr failures, 1 stdout failure ==
914 corecheck/tests/res_search (stdout)
915 memcheck/tests/sigaltstack (stderr)
916
917 sigaltstack is probably harmless. res_search doesn't work
918 on R H 8 even running natively, so I'm not too worried.
919
920 On Red Hat 7.3, a glibc-2.2.5 system, I get these harmless failures:
921
922 == 84 tests, 2 stderr failures, 1 stdout failure ==
923 corecheck/tests/pth_atfork1 (stdout)
924 corecheck/tests/pth_atfork1 (stderr)
925 memcheck/tests/sigaltstack (stderr)
926
927 You need to run on a PII system, at least, since some tests
928 contain P6-specific instructions, and the test machine needs
929 access to the internet so that corecheck/tests/res_search
930 (a test that the DNS resolver works) can function.
931
sewardj9d916ed2003-07-14 23:38:40 +0000932As ever, thanks for the vast amount of feedback :) and bug reports :(
933We may not answer all messages, but we do at least look at all of
934them, and tend to fix the most frequently reported bugs.
935
936
937
sewardj37918822003-05-05 01:05:09 +0000938Version 1.9.6 (7 May 2003 or thereabouts)
939~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
940
941Major changes in 1.9.6:
942
943- Improved threading support for glibc >= 2.3.2 (SuSE 8.2,
944 RedHat 9, to name but two ...) It turned out that 1.9.5
945 had problems with threading support on glibc >= 2.3.2,
946 usually manifested by threaded programs deadlocking in system calls,
947 or running unbelievably slowly. Hopefully these are fixed now. 1.9.6
948 is the first valgrind which gives reasonable support for
949 glibc-2.3.2. Also fixed a 2.3.2 problem with pthread_atfork().
950
951- Majorly expanded FAQ.txt. We've added workarounds for all
952 common problems for which a workaround is known.
953
954Minor changes in 1.9.6:
955
956- Fix identification of the main thread's stack. Incorrect
957 identification of it was causing some on-stack addresses to not get
958 identified as such. This only affected the usefulness of some error
959 messages; the correctness of the checks made is unchanged.
960
961- Support for kernels >= 2.5.68.
962
963- Dummy implementations of __libc_current_sigrtmin,
964 __libc_current_sigrtmax and __libc_allocate_rtsig, hopefully
965 good enough to keep alive programs which previously died for lack of
966 them.
967
968- Fix bug in the VALGRIND_DISCARD_TRANSLATIONS client request.
969
sewardj3d47b792003-05-05 22:15:35 +0000970- Fix bug in the DWARF2 debug line info loader, when instructions
971 following each other have source lines far from each other
972 (e.g. with inlined functions).
973
sewardj37918822003-05-05 01:05:09 +0000974- Debug info reading: read symbols from both "symtab" and "dynsym"
975 sections, rather than merely from the one that comes last in the
976 file.
977
978- New syscall support: prctl(), creat(), lookup_dcookie().
979
980- When checking calls to accept(), recvfrom(), getsocketopt(),
981 don't complain if buffer values are NULL.
982
983- Try and avoid assertion failures in
984 mash_LD_PRELOAD_and_LD_LIBRARY_PATH.
985
986- Minor bug fixes in cg_annotate.
987
988
989
sewardj90238792003-05-05 00:23:42 +0000990Version 1.9.5 (7 April 2003)
991~~~~~~~~~~~~~~~~~~~~~~~~~~~~
992
993It occurs to me that it would be helpful for valgrind users to record
994in the source distribution the changes in each release. So I now
995attempt to mend my errant ways :-) Changes in this and future releases
996will be documented in the NEWS file in the source distribution.
997
998Major changes in 1.9.5:
999
1000- (Critical bug fix): Fix a bug in the FPU simulation. This was
1001 causing some floating point conditional tests not to work right.
1002 Several people reported this. If you had floating point code which
1003 didn't work right on 1.9.1 to 1.9.4, it's worth trying 1.9.5.
1004
1005- Partial support for Red Hat 9. RH9 uses the new Native Posix
1006 Threads Library (NPTL), instead of the older LinuxThreads.
1007 This potentially causes problems with V which will take some
1008 time to correct. In the meantime we have partially worked around
1009 this, and so 1.9.5 works on RH9. Threaded programs still work,
1010 but they may deadlock, because some system calls (accept, read,
1011 write, etc) which should be nonblocking, in fact do block. This
1012 is a known bug which we are looking into.
1013
1014 If you can, your best bet (unfortunately) is to avoid using
1015 1.9.5 on a Red Hat 9 system, or on any NPTL-based distribution.
1016 If your glibc is 2.3.1 or earlier, you're almost certainly OK.
1017
1018Minor changes in 1.9.5:
1019
1020- Added some #errors to valgrind.h to ensure people don't include
1021 it accidentally in their sources. This is a change from 1.0.X
1022 which was never properly documented. The right thing to include
1023 is now memcheck.h. Some people reported problems and strange
1024 behaviour when (incorrectly) including valgrind.h in code with
1025 1.9.1 -- 1.9.4. This is no longer possible.
1026
1027- Add some __extension__ bits and pieces so that gcc configured
1028 for valgrind-checking compiles even with -Werror. If you
1029 don't understand this, ignore it. Of interest to gcc developers
1030 only.
1031
1032- Removed a pointless check which caused problems interworking
1033 with Clearcase. V would complain about shared objects whose
1034 names did not end ".so", and refuse to run. This is now fixed.
1035 In fact it was fixed in 1.9.4 but not documented.
1036
1037- Fixed a bug causing an assertion failure of "waiters == 1"
1038 somewhere in vg_scheduler.c, when running large threaded apps,
1039 notably MySQL.
1040
1041- Add support for the munlock system call (124).
1042
1043Some comments about future releases:
1044
10451.9.5 is, we hope, the most stable Valgrind so far. It pretty much
1046supersedes the 1.0.X branch. If you are a valgrind packager, please
1047consider making 1.9.5 available to your users. You can regard the
10481.0.X branch as obsolete: 1.9.5 is stable and vastly superior. There
1049are no plans at all for further releases of the 1.0.X branch.
1050
1051If you want a leading-edge valgrind, consider building the cvs head
1052(from SourceForge), or getting a snapshot of it. Current cool stuff
1053going in includes MMX support (done); SSE/SSE2 support (in progress),
1054a significant (10-20%) performance improvement (done), and the usual
1055large collection of minor changes. Hopefully we will be able to
1056improve our NPTL support, but no promises.
1057