Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 2008-11-26: Version 0.4.4.1 | 1 2008-12-03: Version 0.4.5 |
| 2 | 2 |
| 3 Added experimental API support for allocating V8 symbols as | |
| 4 external strings. | |
| 5 | |
| 6 Fixed bugs in debugging support on ARM. | |
| 7 | |
| 8 Completed keyed inline cache implementation for ARM. | |
|
Christian Plesner Hansen
2008/12/03 13:12:42
No need to mention this.
| |
| 9 | |
| 10 Changed eval implementation to correctly detect whether or not a | |
| 11 call to eval is aliased. | |
| 12 | |
| 13 Fixed bug caused by a combination of the compilation cache and | |
| 14 dictionary probing in native code. The bug caused us to sometimes | |
| 15 call functions that had not yet been compiled. | |
| 16 | |
| 17 Added platform support for FreeBSD. | |
| 18 | |
| 19 Added support for building V8 on Windows with either the shared or | |
| 20 static version of MSVCRT | |
| 21 | |
| 3 Added the v8::jscre namespace around the jscre functions to avoid | 22 Added the v8::jscre namespace around the jscre functions to avoid |
| 4 link errors (duplicate symbols) when building Google Chrome. | 23 link errors (duplicate symbols) when building Google Chrome. |
| 5 | 24 |
| 25 Added support for calling a JavaScript function with the current | |
| 26 debugger execution context as its argument to the debugger | |
| 27 interface. | |
| 28 | |
| 29 Changed the type of names of counters from wchar_t to char. | |
| 30 | |
| 31 Changed the Windows system call used to compute daylight savings | |
| 32 time. The system call that we used to use became four times | |
| 33 slower on WinXP SP3. | |
| 34 | |
| 35 Added support in the d8 developer shell for memory-mapped counters | |
| 36 and added a stats-viewer tool. | |
| 37 | |
| 38 Fixed bug in upper/lower case mappings (issue 149). | |
| 39 | |
| 6 | 40 |
| 7 2008-11-17: Version 0.4.4 | 41 2008-11-17: Version 0.4.4 |
| 8 | 42 |
| 9 Reduced code size by using shorter instruction encoding when | 43 Reduced code size by using shorter instruction encoding when |
| 10 possible. | 44 possible. |
| 11 | 45 |
| 12 Added a --help option to the shell sample and to the d8 shell. | 46 Added a --help option to the shell sample and to the d8 shell. |
| 13 | 47 |
| 14 Added visual studio project files for building the ARM simulator. | 48 Added visual studio project files for building the ARM simulator. |
| 15 | 49 |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 472 | 506 |
| 473 Improved debugger support by allowing nested break points and by | 507 Improved debugger support by allowing nested break points and by |
| 474 dealing with stack-overflows when compiling functions before | 508 dealing with stack-overflows when compiling functions before |
| 475 setting break points in them. | 509 setting break points in them. |
| 476 | 510 |
| 477 | 511 |
| 478 2008-07-03: Version 0.1.0 | 512 2008-07-03: Version 0.1.0 |
| 479 | 513 |
| 480 Initial export. | 514 Initial export. |
| 481 | 515 |
| OLD | NEW |