danno@chromium.org | 4d3fe4e | 2011-03-10 10:14:28 +0000 | [diff] [blame] | 1 | 2011-03-10: Version 3.2.1 |
| 2 | |
| 3 | Fixed a number of crash bugs. |
| 4 | |
| 5 | Improved Crankshaft for x64 and ARM. |
| 6 | |
| 7 | Implemented more of EcmaScript 5 strict mode. |
| 8 | |
| 9 | |
karlklose@chromium.org | 8f806e8 | 2011-03-07 14:06:08 +0000 | [diff] [blame] | 10 | 2011-03-07: Version 3.2.0 |
| 11 | |
| 12 | Fixed a number of crash bugs. |
| 13 | |
| 14 | Turned on Crankshaft by default on x64 and ARM. |
| 15 | |
| 16 | Improved Crankshaft for x64 and ARM. |
| 17 | |
| 18 | Implemented more of EcmaScript 5 strict mode. |
| 19 | |
| 20 | |
ager@chromium.org | 9ee27ae | 2011-03-02 13:43:26 +0000 | [diff] [blame] | 21 | 2011-03-02: Version 3.1.8 |
| 22 | |
| 23 | Fixed a number of crash bugs. |
| 24 | |
| 25 | Improved Crankshaft for x64 and ARM. |
| 26 | |
| 27 | Implemented more of EcmaScript 5 strict mode. |
| 28 | |
| 29 | Fixed issue with unaligned reads and writes on ARM. |
| 30 | |
| 31 | Improved heap profiler support. |
| 32 | |
| 33 | |
vegorov@chromium.org | 5d6c1f5 | 2011-02-28 13:13:38 +0000 | [diff] [blame] | 34 | 2011-02-28: Version 3.1.7 |
| 35 | |
| 36 | Fixed a number of crash bugs. |
| 37 | |
| 38 | Improved Crankshaft for x64 and ARM. |
| 39 | |
ager@chromium.org | 9ee27ae | 2011-03-02 13:43:26 +0000 | [diff] [blame] | 40 | Fixed implementation of indexOf/lastIndexOf for sparse |
vegorov@chromium.org | 5d6c1f5 | 2011-02-28 13:13:38 +0000 | [diff] [blame] | 41 | arrays (http://crbug.com/73940). |
| 42 | |
| 43 | Fixed bug in map space compaction (http://crbug.com/59688). |
| 44 | |
| 45 | Added support for direct getter accessors calls on ARM. |
| 46 | |
| 47 | |
fschneider@chromium.org | 3a5fd78 | 2011-02-24 10:10:44 +0000 | [diff] [blame] | 48 | 2011-02-24: Version 3.1.6 |
| 49 | |
| 50 | Fixed a number of crash bugs. |
| 51 | |
| 52 | Added support for Cygwin (issue 64). |
| 53 | |
| 54 | Improved Crankshaft for x64 and ARM. |
| 55 | |
| 56 | Added Crankshaft support for stores to pixel arrays. |
| 57 | |
| 58 | Fixed issue in CPU profiler with Crankshaft. |
| 59 | |
| 60 | |
kmillikin@chromium.org | 49edbdf | 2011-02-16 12:32:18 +0000 | [diff] [blame] | 61 | 2011-02-16: Version 3.1.5 |
| 62 | |
| 63 | Change RegExp parsing to disallow /(*)/. |
| 64 | |
| 65 | Added GDB JIT support for ARM. |
| 66 | |
| 67 | Fixed several crash bugs. |
| 68 | |
| 69 | Performance improvements on the IA32 platform. |
| 70 | |
| 71 | |
sgjesse@chromium.org | 496c03a | 2011-02-14 12:05:43 +0000 | [diff] [blame] | 72 | 2011-02-14: Version 3.1.4 |
| 73 | |
| 74 | Fixed incorrect compare of prototypes of the global object (issue |
| 75 | 1082). |
| 76 | |
| 77 | Fixed a bug in optimizing calls to global functions (issue 1106). |
| 78 | |
| 79 | Made optimized Function.prototype.apply safe for non-JSObject first |
| 80 | arguments (issue 1128). |
| 81 | |
| 82 | Fixed an error related to element accessors on Object.prototype and |
| 83 | parser errors (issue 1130). |
| 84 | |
| 85 | Fixed a bug in sorting an array with large array indices (issue 1131). |
| 86 | |
| 87 | Properly treat exceptions thrown while compiling (issue 1132). |
| 88 | |
| 89 | Fixed bug in register requirements for function.apply (issue 1133). |
| 90 | |
| 91 | Fixed a representation change bug in the Hydrogen graph construction |
| 92 | (issue 1134). |
| 93 | |
| 94 | Fixed the semantics of delete on parameters (issue 1136). |
| 95 | |
| 96 | Fixed a optimizer bug related to moving instructions with side effects |
| 97 | (issue 1138). |
| 98 | |
| 99 | Added support for the global object in Object.keys (issue 1150). |
| 100 | |
| 101 | Fixed incorrect value for Math.LOG10E |
| 102 | (issue http://code.google.com/p/chromium/issues/detail?id=72555) |
| 103 | |
| 104 | Performance improvements on the IA32 platform. |
| 105 | |
| 106 | Implement assignment to undefined reference in ES5 Strict Mode. |
| 107 | |
| 108 | |
erik.corry@gmail.com | d91075f | 2011-02-10 07:45:38 +0000 | [diff] [blame] | 109 | 2011-02-09: Version 3.1.3 |
| 110 | |
| 111 | Fixed a bug triggered by functions with huge numbers of declared |
| 112 | arguments. |
| 113 | |
sgjesse@chromium.org | 496c03a | 2011-02-14 12:05:43 +0000 | [diff] [blame] | 114 | Fixed zap value aliasing a real object - debug mode only (issue 866). |
erik.corry@gmail.com | d91075f | 2011-02-10 07:45:38 +0000 | [diff] [blame] | 115 | |
sgjesse@chromium.org | 496c03a | 2011-02-14 12:05:43 +0000 | [diff] [blame] | 116 | Fixed issue where Array.prototype.__proto__ had been set to null |
| 117 | (issue 1121). |
erik.corry@gmail.com | d91075f | 2011-02-10 07:45:38 +0000 | [diff] [blame] | 118 | |
| 119 | Fixed stability bugs in Crankshaft for x86. |
| 120 | |
| 121 | |
ricow@chromium.org | 83aa549 | 2011-02-07 12:42:56 +0000 | [diff] [blame] | 122 | 2011-02-07: Version 3.1.2 |
| 123 | |
| 124 | Added better security checks when accessing properties via |
| 125 | Object.getOwnPropertyDescriptor. |
| 126 | |
| 127 | Fixed bug in Object.defineProperty and related access bugs (issues |
| 128 | 992, 1083 and 1092). |
| 129 | |
| 130 | Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease |
| 131 | copyright notice generation for embedders. |
| 132 | |
| 133 | |
kmillikin@chromium.org | 31b1277 | 2011-02-02 16:08:26 +0000 | [diff] [blame] | 134 | 2011-02-02: Version 3.1.1 |
| 135 | |
| 136 | Perform security checks before fetching the value in |
| 137 | Object.getOwnPropertyDescriptor. |
| 138 | |
| 139 | Fixed a bug in Array.prototype.splice triggered by passing no |
| 140 | arguments. |
| 141 | |
| 142 | Fixed bugs in -0 in arithmetic and in Math.pow. |
| 143 | |
| 144 | Fixed bugs in the register allocator and in switching from optimized |
| 145 | to unoptimized code. |
| 146 | |
| 147 | |
| 148 | 2011-01-31: Version 3.1.0 |
| 149 | |
whesse@chromium.org | 7a392b3 | 2011-01-31 11:30:36 +0000 | [diff] [blame] | 150 | Performance improvements on all platforms. |
| 151 | |
| 152 | |
ager@chromium.org | 378b34e | 2011-01-28 08:04:38 +0000 | [diff] [blame] | 153 | 2011-01-28: Version 3.0.12 |
| 154 | |
| 155 | Added support for strict mode parameter and object property |
| 156 | validation. |
| 157 | |
| 158 | Fixed a couple of crash bugs. |
| 159 | |
| 160 | |
ager@chromium.org | 0ee099b | 2011-01-25 14:06:47 +0000 | [diff] [blame] | 161 | 2011-01-25: Version 3.0.11 |
| 162 | |
| 163 | Fixed a bug in deletion of lookup slots that could cause global |
| 164 | variables to be accidentally deleted (http://crbug.com/70066). |
| 165 | |
| 166 | Added support for strict mode octal literal verification. |
| 167 | |
| 168 | Fixed a couple of crash bugs (issues 1070 and 1071). |
| 169 | |
| 170 | |
vegorov@chromium.org | 0a4e901 | 2011-01-24 12:33:13 +0000 | [diff] [blame] | 171 | 2011-01-24: Version 3.0.10 |
| 172 | |
| 173 | Fixed External::Wrap for 64-bit addresses (issue 1037). |
| 174 | |
ager@chromium.org | 0ee099b | 2011-01-25 14:06:47 +0000 | [diff] [blame] | 175 | Fixed incorrect .arguments variable proxy handling in the full |
vegorov@chromium.org | 0a4e901 | 2011-01-24 12:33:13 +0000 | [diff] [blame] | 176 | code generator (issue 1060). |
| 177 | |
| 178 | Introduced partial strict mode support. |
| 179 | |
sgjesse@chromium.org | 496c03a | 2011-02-14 12:05:43 +0000 | [diff] [blame] | 180 | Changed formatting of recursive error messages to match Firefox and |
| 181 | Safari (issue http://crbug.com/70334). |
vegorov@chromium.org | 0a4e901 | 2011-01-24 12:33:13 +0000 | [diff] [blame] | 182 | |
| 183 | Fixed incorrect rounding for float-to-integer conversions for external |
ager@chromium.org | 0ee099b | 2011-01-25 14:06:47 +0000 | [diff] [blame] | 184 | array types, which implement the Typed Array spec |
vegorov@chromium.org | 0a4e901 | 2011-01-24 12:33:13 +0000 | [diff] [blame] | 185 | (issue http://crbug.com/50972). |
| 186 | |
| 187 | Performance improvements on the IA32 platform. |
| 188 | |
| 189 | |
erik.corry@gmail.com | 0511e24 | 2011-01-19 11:11:08 +0000 | [diff] [blame] | 190 | 2011-01-19: Version 3.0.9 |
| 191 | |
| 192 | Added basic GDB JIT Interface integration. |
| 193 | |
| 194 | Make invalid break/continue statements a syntax error instead of a |
| 195 | runtime error. |
| 196 | |
| 197 | |
sgjesse@chromium.org | c6c5718 | 2011-01-17 12:24:25 +0000 | [diff] [blame] | 198 | 2011-01-17: Version 3.0.8 |
| 199 | |
| 200 | Exposed heap size limit to the heap statistics gathered by |
erik.corry@gmail.com | 0511e24 | 2011-01-19 11:11:08 +0000 | [diff] [blame] | 201 | the GetHeapStatistics API. |
sgjesse@chromium.org | c6c5718 | 2011-01-17 12:24:25 +0000 | [diff] [blame] | 202 | |
| 203 | Wrapped external pointers more carefully (issue 1037). |
| 204 | |
| 205 | Hardened the implementation of error objects to avoid setters |
| 206 | intercepting the properties set then throwing an error. |
| 207 | |
| 208 | Avoided trashing the FPSCR when calculating Math.floor on ARM. |
| 209 | |
| 210 | Performance improvements on the IA32 platform. |
| 211 | |
| 212 | |
| 213 | 2011-01-10: Version 3.0.7 |
kmillikin@chromium.org | d2c22f0 | 2011-01-10 08:15:37 +0000 | [diff] [blame] | 214 | |
| 215 | Stopped calling inherited setters when creating object literals |
| 216 | (issue 1015). |
| 217 | |
| 218 | Changed interpretation of malformed \c? escapes in RegExp to match |
| 219 | JSC. |
| 220 | |
| 221 | Enhanced the command-line debugger interface and fixed some minor |
| 222 | bugs in the debugger. |
| 223 | |
| 224 | Performance improvements on the IA32 platform. |
| 225 | |
| 226 | |
sgjesse@chromium.org | c6c5718 | 2011-01-17 12:24:25 +0000 | [diff] [blame] | 227 | 2011-01-05: Version 3.0.6 |
lrn@chromium.org | 5d00b60 | 2011-01-05 09:51:43 +0000 | [diff] [blame] | 228 | |
kmillikin@chromium.org | d2c22f0 | 2011-01-10 08:15:37 +0000 | [diff] [blame] | 229 | Allowed getters and setters on JSArray elements (issue 900). |
lrn@chromium.org | 5d00b60 | 2011-01-05 09:51:43 +0000 | [diff] [blame] | 230 | |
| 231 | Stopped JSON objects from hitting inherited setters (part of |
kmillikin@chromium.org | d2c22f0 | 2011-01-10 08:15:37 +0000 | [diff] [blame] | 232 | issue 1015). |
lrn@chromium.org | 5d00b60 | 2011-01-05 09:51:43 +0000 | [diff] [blame] | 233 | |
| 234 | Allowed numbers and strings as names of getters/setters in object |
kmillikin@chromium.org | d2c22f0 | 2011-01-10 08:15:37 +0000 | [diff] [blame] | 235 | initializer (issue 820). |
lrn@chromium.org | 5d00b60 | 2011-01-05 09:51:43 +0000 | [diff] [blame] | 236 | |
| 237 | Added use_system_v8 option to gyp (off by default), to make it easier |
| 238 | for Linux distributions to ship with system-provided V8 library. |
| 239 | |
kmillikin@chromium.org | d2c22f0 | 2011-01-10 08:15:37 +0000 | [diff] [blame] | 240 | Exported external array data accessors (issue 1016). |
lrn@chromium.org | 5d00b60 | 2011-01-05 09:51:43 +0000 | [diff] [blame] | 241 | |
| 242 | Added labelled thread names to help with debugging (on Linux). |
| 243 | |
| 244 | |
fschneider@chromium.org | 9e3e0b6 | 2011-01-03 10:16:46 +0000 | [diff] [blame] | 245 | 2011-01-03: Version 3.0.5 |
| 246 | |
| 247 | Fixed a couple of cast errors for gcc-3.4.3. |
| 248 | |
| 249 | Performance improvements in GC and IA32 code generator. |
| 250 | |
| 251 | |
whesse@chromium.org | 023421e | 2010-12-21 12:19:12 +0000 | [diff] [blame] | 252 | 2010-12-21: Version 3.0.4 |
| 253 | |
| 254 | Added Date::ResetCache() to the API so that the cached values in the |
| 255 | Date object can be reset to allow live DST / timezone changes. |
| 256 | |
| 257 | Extended existing support for printing (while debugging) the contents |
| 258 | of objects. Added support for printing objects from release builds. |
| 259 | |
| 260 | Fixed V8 issues 989, 1006, and 1007. |
| 261 | |
| 262 | |
ager@chromium.org | 5f0c45f | 2010-12-17 08:51:21 +0000 | [diff] [blame] | 263 | 2010-12-17: Version 3.0.3 |
| 264 | |
| 265 | Reapplied all changes for version 3.0.1. |
| 266 | |
| 267 | Improved debugger protocol for remote debugging. |
| 268 | |
| 269 | Added experimental support for using gyp to generate build files |
| 270 | for V8. |
| 271 | |
| 272 | Fixed implementation of String::Write in the API (issue 975). |
| 273 | |
| 274 | |
lrn@chromium.org | 8541d77 | 2010-12-15 12:05:09 +0000 | [diff] [blame] | 275 | 2010-12-15: Version 3.0.2 |
| 276 | |
| 277 | Revert version 3.0.1 and patch 3.0.1.1. |
| 278 | |
| 279 | |
kmillikin@chromium.org | facd82d | 2010-12-13 18:00:51 +0000 | [diff] [blame] | 280 | 2010-12-13: Version 3.0.1 |
| 281 | |
| 282 | Added support for an experimental internationalization API as an |
| 283 | extension. This extension is disabled by default but can be enabled |
| 284 | when building V8. The ECMAScript internationalization strawman is |
| 285 | at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api. |
| 286 | |
| 287 | Made RegExp character class parsing stricter. This mirrors a change |
| 288 | to RegExp parsing in WebKit. |
| 289 | |
| 290 | Fixed a bug in Object.defineProperty when used to change attributes |
| 291 | of an existing property. It incorrectly set the property value to |
| 292 | undefined (issue 965). |
| 293 | |
| 294 | Fixed several different compilation failures on various platforms |
| 295 | caused by the 3.0.0 release. |
| 296 | |
| 297 | Optimized Math.pow so it can work on unboxed doubles. |
| 298 | |
| 299 | Sped up quoting of JSON strings by removing one traversal of the |
| 300 | string. |
| 301 | |
| 302 | |
kasperl@chromium.org | a555126 | 2010-12-07 12:49:48 +0000 | [diff] [blame] | 303 | 2010-12-07: Version 3.0.0 |
| 304 | |
| 305 | Improved performance by (partially) addressing issue 957 on |
| 306 | IA-32. Still needs more work for the other architectures. |
| 307 | |
| 308 | |
ager@chromium.org | beb2571 | 2010-11-29 08:02:25 +0000 | [diff] [blame] | 309 | 2010-11-29: Version 2.5.9 |
| 310 | |
| 311 | Fixed crashes during GC caused by partially initialize heap |
| 312 | objects. |
| 313 | |
| 314 | Fixed bug in process sample that caused memory leaks. |
| 315 | |
| 316 | Improved performance on ARM by implementing missing stubs and |
| 317 | inlining. |
| 318 | |
| 319 | Improved heap profiler support. |
| 320 | |
| 321 | Added separate seeding on Windows of the random number generator |
| 322 | used internally by the compiler (issue 936). |
| 323 | |
| 324 | Exposed API for getting the name of the function used to construct |
| 325 | an object. |
| 326 | |
| 327 | Fixed date parser to handle one and two digit millisecond |
| 328 | values (issue 944). |
| 329 | |
| 330 | Fixed number parsing to disallow space between sign and |
| 331 | digits (issue 946). |
| 332 | |
| 333 | |
vegorov@chromium.org | 21b5e95 | 2010-11-23 10:24:40 +0000 | [diff] [blame] | 334 | 2010-11-23: Version 2.5.8 |
| 335 | |
| 336 | Removed dependency on Gay's dtoa. |
| 337 | |
| 338 | Improved heap profiler precision and speed. |
| 339 | |
| 340 | Reduced overhead of callback invocations on ARM. |
| 341 | |
| 342 | |
erik.corry@gmail.com | 4a6c327 | 2010-11-18 12:04:40 +0000 | [diff] [blame] | 343 | 2010-11-18: Version 2.5.7 |
| 344 | |
| 345 | Fixed obscure evaluation order bug (issue 931). |
| 346 | |
| 347 | Split the random number state between JavaScript and the private API. |
| 348 | |
| 349 | Fixed performance bug causing GCs when generating stack traces on |
| 350 | code from very large scripts. |
| 351 | |
| 352 | Fixed bug in parser that allowed (foo):42 as a labelled statement |
| 353 | (issue 918). |
| 354 | |
| 355 | Provide more accurate results about used heap size via |
| 356 | GetHeapStatistics. |
| 357 | |
| 358 | Allow build-time customization of the max semispace size. |
| 359 | |
| 360 | Made String.prototype.split honor limit when separator is empty |
| 361 | (issue 929). |
| 362 | |
| 363 | Added missing failure check after expecting an identifier in |
| 364 | preparser (Chromium issue 62639). |
| 365 | |
| 366 | |
ager@chromium.org | 01fe7df | 2010-11-10 11:59:11 +0000 | [diff] [blame] | 367 | 2010-11-10: Version 2.5.6 |
| 368 | |
| 369 | Added support for VFP rounding modes to the ARM simulator. |
| 370 | |
| 371 | Fixed multiplication overflow bug (issue 927). |
| 372 | |
| 373 | Added a limit for the amount of executable memory (issue 925). |
| 374 | |
| 375 | |
whesse@chromium.org | f0ac72d | 2010-11-08 12:47:26 +0000 | [diff] [blame] | 376 | 2010-11-08: Version 2.5.5 |
| 377 | |
| 378 | Added more aggressive GC of external objects in near out-of-memory |
| 379 | situations. |
| 380 | |
| 381 | Fixed a bug that gave the incorrect result for String.split called |
| 382 | on the empty string (issue 924). |
| 383 | |
| 384 | |
lrn@chromium.org | fa943b7 | 2010-11-03 08:14:36 +0000 | [diff] [blame] | 385 | 2010-11-03: Version 2.5.4 |
| 386 | |
whesse@chromium.org | f0ac72d | 2010-11-08 12:47:26 +0000 | [diff] [blame] | 387 | Improved V8 VFPv3 runtime detection to address issue 914. |
lrn@chromium.org | fa943b7 | 2010-11-03 08:14:36 +0000 | [diff] [blame] | 388 | |
| 389 | |
fschneider@chromium.org | e03fb64 | 2010-11-01 12:34:09 +0000 | [diff] [blame] | 390 | 2010-11-01: Version 2.5.3 |
| 391 | |
| 392 | Fixed a bug that prevents constants from overwriting function values |
| 393 | in object literals (issue 907). |
| 394 | |
| 395 | Fixed a bug with reporting of impossible nested calls of DOM functions |
| 396 | (issue http://crbug.com/60753). |
| 397 | |
| 398 | |
lrn@chromium.org | 303ada7 | 2010-10-27 09:33:13 +0000 | [diff] [blame] | 399 | 2010-10-27: Version 2.5.2 |
| 400 | |
| 401 | Improved sampler resolution on Linux. |
| 402 | |
| 403 | Allowed forcing the use of a simulator from the build script |
| 404 | independently of the host architecture. |
| 405 | |
kmillikin@chromium.org | d2c22f0 | 2011-01-10 08:15:37 +0000 | [diff] [blame] | 406 | Fixed FreeBSD port (issue 912). |
lrn@chromium.org | 303ada7 | 2010-10-27 09:33:13 +0000 | [diff] [blame] | 407 | |
| 408 | Made windows-tick-processor respect D8_PATH. |
| 409 | |
| 410 | Implemented --noinline-new flag fully on IA32, X64 and ARM platforms. |
| 411 | |
| 412 | |
whesse@chromium.org | 4a5224e | 2010-10-20 12:37:07 +0000 | [diff] [blame] | 413 | 2010-10-20: Version 2.5.1 |
| 414 | |
| 415 | Fixed bug causing spurious out of memory exceptions |
| 416 | (issue http://crbug.com/54580). |
| 417 | |
| 418 | Fixed compilation error on Solaris platform (issue 901). |
| 419 | |
| 420 | Fixed error in strtod (string to floating point number conversion) |
| 421 | due to glibc's use of 80-bit floats in the FPU on 32-bit linux. |
| 422 | |
| 423 | Adjusted randomized allocations of executable memory to have 64k |
| 424 | granularity (issue http://crbug.com/56036). |
| 425 | |
| 426 | Supported profiling using kernel perf_events on linux. Added ll_prof |
| 427 | script to tools and --ll-prof flag to V8. |
| 428 | |
| 429 | |
vegorov@chromium.org | 4284196 | 2010-10-18 11:18:59 +0000 | [diff] [blame] | 430 | 2010-10-18: Version 2.5.0 |
| 431 | |
| 432 | Fixed bug in cache handling of lastIndex on global regexps |
| 433 | (issue http://crbug.com/58740). |
| 434 | |
| 435 | Added USE_SIMULATOR macro that explicitly indicates that we wish to use |
| 436 | the simulator as the execution engine (by Mark Lam <mark.lam@palm.com> |
kmillikin@chromium.org | facd82d | 2010-12-13 18:00:51 +0000 | [diff] [blame] | 437 | from Hewlett-Packard Development Company, LP). |
vegorov@chromium.org | 4284196 | 2010-10-18 11:18:59 +0000 | [diff] [blame] | 438 | |
| 439 | Fixed compilation error on ARM with gcc 4.4 (issue 894). |
| 440 | |
| 441 | |
| 442 | 2010-10-13: Version 2.4.9 |
ager@chromium.org | b61a0d1 | 2010-10-13 08:35:23 +0000 | [diff] [blame] | 443 | |
| 444 | Fixed a bug in the handling of conditional expressions in test |
| 445 | contexts in compiler for top-level code. |
| 446 | |
| 447 | Added "//@ sourceURL" information to the StackTrace API. |
| 448 | |
| 449 | Exposed RegExp construction through the API. |
| 450 | |
| 451 | |
ricow@chromium.org | eb7c144 | 2010-10-04 08:54:21 +0000 | [diff] [blame] | 452 | 2010-10-04: Version 2.4.8 |
| 453 | |
| 454 | Fixed a bug in ResumeProfilerEx causing it to not always write out the |
| 455 | whole snapshot (issue 868). |
| 456 | |
| 457 | Performance improvements on all platforms. |
| 458 | |
| 459 | |
kmillikin@chromium.org | f05f291 | 2010-09-30 10:07:24 +0000 | [diff] [blame] | 460 | 2010-09-30: Version 2.4.7 |
| 461 | |
| 462 | Changed the command-line flag --max-new-space-size to be in kB and the |
| 463 | flag --max-old-space-size to be in MB (previously they were in bytes). |
| 464 | |
| 465 | Added Debug::CancelDebugBreak to the debugger API. |
| 466 | |
| 467 | Fixed a bug in getters for negative numeric property names |
| 468 | (https://bugs.webkit.org/show_bug.cgi?id=46689). |
| 469 | |
| 470 | Performance improvements on all platforms. |
| 471 | |
| 472 | |
whesse@chromium.org | 4a1fe7d | 2010-09-27 12:32:04 +0000 | [diff] [blame] | 473 | 2010-09-27: Version 2.4.6 |
kmillikin@chromium.org | f05f291 | 2010-09-30 10:07:24 +0000 | [diff] [blame] | 474 | |
whesse@chromium.org | 4a1fe7d | 2010-09-27 12:32:04 +0000 | [diff] [blame] | 475 | Fixed assertion failure related to copy-on-write arrays (issue 876). |
| 476 | |
| 477 | Fixed build failure of 64-bit V8 on Windows. |
| 478 | |
| 479 | Fixed a bug in RegExp (issue http://crbug.com/52801). |
| 480 | |
| 481 | Improved the profiler's coverage to cover more functions (issue 858). |
| 482 | |
| 483 | Fixed error in shift operators on 64-bit V8 |
| 484 | (issue http://crbug.com/54521). |
| 485 | |
| 486 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 487 | 2010-09-22: Version 2.4.5 |
kmillikin@chromium.org | f05f291 | 2010-09-30 10:07:24 +0000 | [diff] [blame] | 488 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 489 | Changed the RegExp benchmark to exercise the regexp engine on different |
| 490 | inputs by scrambling the input strings. |
| 491 | |
| 492 | Fixed a bug in keyed loads on strings. |
| 493 | |
| 494 | Fixed a bug with loading global function prototypes. |
| 495 | |
| 496 | Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999). |
| 497 | |
| 498 | Performance improvements on all platforms. |
| 499 | |
| 500 | |
erik.corry@gmail.com | d88afa2 | 2010-09-15 12:33:05 +0000 | [diff] [blame] | 501 | 2010-09-15: Version 2.4.4 |
| 502 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 503 | Fixed bug with hangs on very large sparse arrays. |
erik.corry@gmail.com | d88afa2 | 2010-09-15 12:33:05 +0000 | [diff] [blame] | 504 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 505 | Now tries harder to free up memory when running out of space. |
erik.corry@gmail.com | d88afa2 | 2010-09-15 12:33:05 +0000 | [diff] [blame] | 506 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 507 | Added heap snapshots to JSON format to API. |
erik.corry@gmail.com | d88afa2 | 2010-09-15 12:33:05 +0000 | [diff] [blame] | 508 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 509 | Recalibrated benchmarks. |
erik.corry@gmail.com | d88afa2 | 2010-09-15 12:33:05 +0000 | [diff] [blame] | 510 | |
| 511 | |
sgjesse@chromium.org | 2ec107f | 2010-09-13 09:19:46 +0000 | [diff] [blame] | 512 | 2010-09-13: Version 2.4.3 |
| 513 | |
| 514 | Made Date.parse properly handle TZ offsets (issue 857). |
| 515 | |
| 516 | Performance improvements on all platforms. |
| 517 | |
| 518 | |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 519 | 2010-09-08: Version 2.4.2 |
| 520 | |
| 521 | Fixed GC crash bug. |
| 522 | |
| 523 | Fixed stack corruption bug. |
| 524 | |
| 525 | Fixed compilation for newer C++ compilers that found Operand(0) |
| 526 | ambiguous. |
| 527 | |
| 528 | |
kmillikin@chromium.org | 3cdd9e1 | 2010-09-06 11:39:48 +0000 | [diff] [blame] | 529 | 2010-09-06: Version 2.4.1 |
| 530 | |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 531 | Added the ability for an embedding application to receive a callback |
| 532 | when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates |
| 533 | (V8::RemoveMemoryAllocationCallback) from the OS. |
kmillikin@chromium.org | 3cdd9e1 | 2010-09-06 11:39:48 +0000 | [diff] [blame] | 534 | |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 535 | Fixed several JSON bugs (including issue 855). |
kmillikin@chromium.org | 3cdd9e1 | 2010-09-06 11:39:48 +0000 | [diff] [blame] | 536 | |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 537 | Fixed memory overrun crash bug triggered during V8's tick-based |
| 538 | profiling. |
kmillikin@chromium.org | 3cdd9e1 | 2010-09-06 11:39:48 +0000 | [diff] [blame] | 539 | |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 540 | Performance improvements on all platforms. |
kmillikin@chromium.org | 3cdd9e1 | 2010-09-06 11:39:48 +0000 | [diff] [blame] | 541 | |
| 542 | |
ricow@chromium.org | d236f4d | 2010-09-01 06:52:08 +0000 | [diff] [blame] | 543 | 2010-09-01: Version 2.4.0 |
| 544 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 545 | Fixed bug in Object.freeze and Object.seal when Array.prototype or |
| 546 | Object.prototype are changed (issue 842). |
ricow@chromium.org | d236f4d | 2010-09-01 06:52:08 +0000 | [diff] [blame] | 547 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 548 | Updated Array.splice to follow Safari and Firefox when called |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 549 | with zero arguments. |
ricow@chromium.org | d236f4d | 2010-09-01 06:52:08 +0000 | [diff] [blame] | 550 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 551 | Fixed a missing live register when breaking at keyed loads on ARM. |
ricow@chromium.org | d236f4d | 2010-09-01 06:52:08 +0000 | [diff] [blame] | 552 | |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 553 | Performance improvements on all platforms. |
ricow@chromium.org | d236f4d | 2010-09-01 06:52:08 +0000 | [diff] [blame] | 554 | |
| 555 | |
ricow@chromium.org | 65fae84 | 2010-08-25 15:26:24 +0000 | [diff] [blame] | 556 | 2010-08-25: Version 2.3.11 |
| 557 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 558 | Fixed bug in RegExp related to copy-on-write arrays. |
ricow@chromium.org | 65fae84 | 2010-08-25 15:26:24 +0000 | [diff] [blame] | 559 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 560 | Refactored tools/test.py script, including the introduction of |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 561 | VARIANT_FLAGS that allows specification of sets of flags with which |
| 562 | all tests should be run. |
ricow@chromium.org | 65fae84 | 2010-08-25 15:26:24 +0000 | [diff] [blame] | 563 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 564 | Fixed a bug in the handling of debug breaks in CallIC. |
ricow@chromium.org | 65fae84 | 2010-08-25 15:26:24 +0000 | [diff] [blame] | 565 | |
ager@chromium.org | 5b2fbee | 2010-09-08 06:38:15 +0000 | [diff] [blame] | 566 | Performance improvements on all platforms. |
ricow@chromium.org | 65fae84 | 2010-08-25 15:26:24 +0000 | [diff] [blame] | 567 | |
| 568 | |
erik.corry@gmail.com | 145eff5 | 2010-08-23 11:36:18 +0000 | [diff] [blame] | 569 | 2010-08-23: Version 2.3.10 |
| 570 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 571 | Fixed bug in bitops on ARM. |
erik.corry@gmail.com | 145eff5 | 2010-08-23 11:36:18 +0000 | [diff] [blame] | 572 | |
| 573 | Build fixes for unusual compilers. |
| 574 | |
| 575 | Track high water mark for RWX memory. |
| 576 | |
| 577 | Performance improvements on all platforms. |
| 578 | |
| 579 | |
ricow@chromium.org | 0b9f850 | 2010-08-18 07:45:01 +0000 | [diff] [blame] | 580 | 2010-08-18: Version 2.3.9 |
| 581 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 582 | Fixed compilation for ARMv4 on OpenBSD/FreeBSD. |
ricow@chromium.org | 0b9f850 | 2010-08-18 07:45:01 +0000 | [diff] [blame] | 583 | |
| 584 | Removed specialized handling of GCC 4.4 (issue 830). |
| 585 | |
kmillikin@chromium.org | 3cdd9e1 | 2010-09-06 11:39:48 +0000 | [diff] [blame] | 586 | Fixed DST cache to take into account the suspension of DST in |
ricow@chromium.org | 0b9f850 | 2010-08-18 07:45:01 +0000 | [diff] [blame] | 587 | Egypt during the 2010 Ramadan (issue http://crbug.com/51855). |
| 588 | |
ricow@chromium.org | 65fae84 | 2010-08-25 15:26:24 +0000 | [diff] [blame] | 589 | Performance improvements on all platforms. |
ricow@chromium.org | 0b9f850 | 2010-08-18 07:45:01 +0000 | [diff] [blame] | 590 | |
| 591 | |
ager@chromium.org | ea4f62e | 2010-08-16 16:28:43 +0000 | [diff] [blame] | 592 | 2010-08-16: Version 2.3.8 |
| 593 | |
| 594 | Fixed build with strict aliasing on GCC 4.4 (issue 463). |
| 595 | |
| 596 | Fixed issue with incorrect handling of custom valueOf methods on |
| 597 | string wrappers (issue 760). |
| 598 | |
| 599 | Fixed compilation for ARMv4 (issue 590). |
| 600 | |
| 601 | Improved performance. |
| 602 | |
| 603 | |
vegorov@chromium.org | 26c16f8 | 2010-08-11 13:41:03 +0000 | [diff] [blame] | 604 | 2010-08-11: Version 2.3.7 |
| 605 | |
| 606 | Reduced size of heap snapshots produced by heap profiler (issue 783). |
| 607 | |
| 608 | Introduced v8::Value::IsRegExp method. |
| 609 | |
| 610 | Fixed CPU profiler crash in start / stop sequence when non-existent |
| 611 | name is passed (issue http://crbug.com/51594). |
| 612 | |
| 613 | Introduced new indexed property query callbacks API (issue 816). This |
| 614 | API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled |
| 615 | by default. |
| 616 | |
| 617 | Removed support for object literal get/set with number/string |
| 618 | property name. |
| 619 | |
| 620 | Fixed handling of JSObject::elements in CalculateNetworkSize |
| 621 | (issue 822). |
| 622 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 623 | Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463). |
vegorov@chromium.org | 26c16f8 | 2010-08-11 13:41:03 +0000 | [diff] [blame] | 624 | |
| 625 | |
lrn@chromium.org | c4e51ac | 2010-08-09 09:47:21 +0000 | [diff] [blame] | 626 | 2010-08-09: Version 2.3.6 |
| 627 | |
vegorov@chromium.org | 26c16f8 | 2010-08-11 13:41:03 +0000 | [diff] [blame] | 628 | RegExp literals create a new object every time they are evaluated |
| 629 | (issue 704). |
lrn@chromium.org | c4e51ac | 2010-08-09 09:47:21 +0000 | [diff] [blame] | 630 | |
vegorov@chromium.org | 26c16f8 | 2010-08-11 13:41:03 +0000 | [diff] [blame] | 631 | Object.seal and Object.freeze return the modified object (issue 809). |
lrn@chromium.org | c4e51ac | 2010-08-09 09:47:21 +0000 | [diff] [blame] | 632 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 633 | Fixed building using GCC 4.4.4. |
lrn@chromium.org | c4e51ac | 2010-08-09 09:47:21 +0000 | [diff] [blame] | 634 | |
| 635 | |
sgjesse@chromium.org | c3a0197 | 2010-08-04 09:46:24 +0000 | [diff] [blame] | 636 | 2010-08-04: Version 2.3.5 |
| 637 | |
| 638 | Added support for ES5 property names. Object initialisers and |
| 639 | dot-notation property access now allows keywords. Also allowed |
| 640 | non-identifiers after "get" or "set" in an object initialiser. |
| 641 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 642 | Randomized the addresses of allocated executable memory on Windows. |
sgjesse@chromium.org | c3a0197 | 2010-08-04 09:46:24 +0000 | [diff] [blame] | 643 | |
| 644 | |
whesse@chromium.org | e90029b | 2010-08-02 11:52:17 +0000 | [diff] [blame] | 645 | 2010-08-02: Version 2.3.4 |
| 646 | |
| 647 | Fixed problems in implementation of ES5 function.prototype.bind. |
| 648 | |
| 649 | Fixed error when using apply with arguments object on ARM (issue 784). |
| 650 | |
| 651 | Added setting of global flags to debugger protocol. |
| 652 | |
| 653 | Fixed an error affecting cached results of sin and cos (issue 792). |
| 654 | |
| 655 | Removed memory leak from a boundary case where V8 is not initialized. |
| 656 | |
| 657 | Fixed issue where debugger could set breakpoints outside the body |
| 658 | of a function. |
| 659 | |
| 660 | Fixed issue in debugger when using both live edit and step in features. |
| 661 | |
| 662 | Added Number-letter (Nl) category to Unicode tables. These characters |
| 663 | can now be used in identifiers. |
| 664 | |
| 665 | Fixed an assert failure on X64 (issue 806). |
| 666 | |
| 667 | Performance improvements on all platforms. |
| 668 | |
| 669 | |
whesse@chromium.org | ba5a61b | 2010-07-26 11:44:40 +0000 | [diff] [blame] | 670 | 2010-07-26: Version 2.3.3 |
| 671 | |
| 672 | Fixed error when building the d8 shell in a fresh checkout. |
| 673 | |
| 674 | Implemented Function.prototype.bind (ES5 15.3.4.5). |
| 675 | |
| 676 | Fixed an error in inlined stores on ia32. |
| 677 | |
| 678 | Fixed an error when setting a breakpoint at the end of a function |
| 679 | that does not end with a newline character. |
| 680 | |
| 681 | Performance improvements on all platforms. |
| 682 | |
| 683 | |
fschneider@chromium.org | ed78ffd | 2010-07-21 11:05:19 +0000 | [diff] [blame] | 684 | 2010-07-21: Version 2.3.2 |
| 685 | |
| 686 | Fixed compiler warnings when building with LLVM. |
| 687 | |
| 688 | Fixed a bug with for-in applied to strings (issue 785). |
| 689 | |
| 690 | Performance improvements on all platforms. |
| 691 | |
whesse@chromium.org | ba5a61b | 2010-07-26 11:44:40 +0000 | [diff] [blame] | 692 | |
ricow@chromium.org | 4980dff | 2010-07-19 08:33:45 +0000 | [diff] [blame] | 693 | 2010-07-19: Version 2.3.1 |
| 694 | |
| 695 | Fixed compilation and linking with V8_INTERPRETED_REGEXP flag. |
| 696 | |
| 697 | Fixed bug related to code flushing while compiling a lazy |
| 698 | compilable function (issue http://crbug.com/49099). |
| 699 | |
| 700 | Performance improvements on all platforms. |
| 701 | |
| 702 | |
ager@chromium.org | b573749 | 2010-07-15 09:29:43 +0000 | [diff] [blame] | 703 | 2010-07-15: Version 2.3.0 |
| 704 | |
| 705 | Added ES5 Object.seal and Object.isSealed. |
| 706 | |
| 707 | Added debugger API for scheduling debugger commands from a |
| 708 | separate thread. |
| 709 | |
| 710 | |
ager@chromium.org | 6a2b0aa | 2010-07-13 20:58:03 +0000 | [diff] [blame] | 711 | 2010-07-14: Version 2.2.24 |
| 712 | |
| 713 | Added API for capturing stack traces for uncaught exceptions. |
| 714 | |
| 715 | Fixed crash bug when preparsing from a non-external V8 string |
| 716 | (issue 775). |
| 717 | |
| 718 | Fixed JSON.parse bug causing input not to be converted to string |
| 719 | (issue 764). |
| 720 | |
| 721 | Added ES5 Object.freeze and Object.isFrozen. |
| 722 | |
| 723 | Performance improvements on all platforms. |
| 724 | |
| 725 | |
erik.corry@gmail.com | 4a2e25e | 2010-07-07 12:22:46 +0000 | [diff] [blame] | 726 | 2010-07-07: Version 2.2.23 |
| 727 | |
| 728 | API change: Convert Unicode code points outside the basic multilingual |
| 729 | plane to the replacement character. Previous behavior was to silently |
| 730 | truncate the value to 16 bits. |
| 731 | |
| 732 | Fixed crash: handle all flat string types in regexp replace. |
| 733 | |
| 734 | Prevent invalid pre-parsing data passed in through the API from |
| 735 | crashing V8. |
| 736 | |
| 737 | Performance improvements on all platforms. |
| 738 | |
ager@chromium.org | 6a2b0aa | 2010-07-13 20:58:03 +0000 | [diff] [blame] | 739 | |
kmillikin@chromium.org | 69ea396 | 2010-07-05 11:01:40 +0000 | [diff] [blame] | 740 | 2010-07-05: Version 2.2.22 |
| 741 | |
| 742 | Added ES5 Object.isExtensible and Object.preventExtensions. |
| 743 | |
| 744 | Enabled building V8 as a DLL. |
| 745 | |
| 746 | Fixed a bug in date code where -0 was not interpreted as 0 |
| 747 | (issue 736). |
| 748 | |
| 749 | Performance improvements on all platforms. |
| 750 | |
| 751 | |
lrn@chromium.org | 32d961d | 2010-06-30 09:09:34 +0000 | [diff] [blame] | 752 | 2010-06-30: Version 2.2.21 |
| 753 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 754 | Fixed bug in externalizing some ASCII strings (Chromium issue 47824). |
lrn@chromium.org | 32d961d | 2010-06-30 09:09:34 +0000 | [diff] [blame] | 755 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 756 | Updated JSON.stringify to floor the space parameter (issue 753). |
lrn@chromium.org | 32d961d | 2010-06-30 09:09:34 +0000 | [diff] [blame] | 757 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 758 | Updated the Mozilla test expectations to the newest version. |
lrn@chromium.org | 32d961d | 2010-06-30 09:09:34 +0000 | [diff] [blame] | 759 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 760 | Updated the ES5 Conformance Test expectations to the latest version. |
lrn@chromium.org | 32d961d | 2010-06-30 09:09:34 +0000 | [diff] [blame] | 761 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 762 | Updated the V8 benchmark suite. |
lrn@chromium.org | 32d961d | 2010-06-30 09:09:34 +0000 | [diff] [blame] | 763 | |
| 764 | Provide actual breakpoints locations in response to setBreakpoint |
| 765 | and listBreakpoints requests. |
| 766 | |
kmillikin@chromium.org | 69ea396 | 2010-07-05 11:01:40 +0000 | [diff] [blame] | 767 | |
fschneider@chromium.org | 40b9da3 | 2010-06-28 11:29:21 +0000 | [diff] [blame] | 768 | 2010-06-28: Version 2.2.20 |
kmillikin@chromium.org | 69ea396 | 2010-07-05 11:01:40 +0000 | [diff] [blame] | 769 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 770 | Fixed bug with for-in on x64 platform (issue 748). |
fschneider@chromium.org | 40b9da3 | 2010-06-28 11:29:21 +0000 | [diff] [blame] | 771 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 772 | Fixed crash bug on x64 platform (issue 756). |
kmillikin@chromium.org | 69ea396 | 2010-07-05 11:01:40 +0000 | [diff] [blame] | 773 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 774 | Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243). |
fschneider@chromium.org | 40b9da3 | 2010-06-28 11:29:21 +0000 | [diff] [blame] | 775 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 776 | Fixed a bug on ARM that caused the result of 1 << x to be |
fschneider@chromium.org | 40b9da3 | 2010-06-28 11:29:21 +0000 | [diff] [blame] | 777 | miscalculated for some inputs. |
| 778 | |
| 779 | Performance improvements on all platforms. |
| 780 | |
kmillikin@chromium.org | 69ea396 | 2010-07-05 11:01:40 +0000 | [diff] [blame] | 781 | |
ricow@chromium.org | 5ad5ace | 2010-06-23 09:06:43 +0000 | [diff] [blame] | 782 | 2010-06-23: Version 2.2.19 |
| 783 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 784 | Fixed bug that causes the build to break when profillingsupport=off |
ricow@chromium.org | 5ad5ace | 2010-06-23 09:06:43 +0000 | [diff] [blame] | 785 | (issue 738). |
| 786 | |
| 787 | Added expose-externalize-string flag for testing extensions. |
| 788 | |
| 789 | Resolve linker issues with using V8 as a DLL causing a number of |
| 790 | problems with unresolved symbols. |
| 791 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 792 | Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not |
ricow@chromium.org | 5ad5ace | 2010-06-23 09:06:43 +0000 | [diff] [blame] | 793 | defined. |
| 794 | |
| 795 | Performance improvements on all platforms. |
| 796 | |
| 797 | |
whesse@chromium.org | 2c186ca | 2010-06-16 11:32:39 +0000 | [diff] [blame] | 798 | 2010-06-16: Version 2.2.18 |
| 799 | |
| 800 | Added API functions to retrieve information on indexed properties |
| 801 | managed by the embedding layer. Fixes bug 737. |
| 802 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 803 | Made ES5 Object.defineProperty support array elements. Fixes bug 619. |
whesse@chromium.org | 2c186ca | 2010-06-16 11:32:39 +0000 | [diff] [blame] | 804 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 805 | Added heap profiling to the API. |
whesse@chromium.org | 2c186ca | 2010-06-16 11:32:39 +0000 | [diff] [blame] | 806 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 807 | Removed old named property query from the API. |
whesse@chromium.org | 2c186ca | 2010-06-16 11:32:39 +0000 | [diff] [blame] | 808 | |
| 809 | Incremental performance improvements. |
| 810 | |
| 811 | |
ager@chromium.org | 2cc82ae | 2010-06-14 07:35:38 +0000 | [diff] [blame] | 812 | 2010-06-14: Version 2.2.17 |
vegorov@chromium.org | 2356e6f | 2010-06-09 09:38:56 +0000 | [diff] [blame] | 813 | |
ager@chromium.org | 2cc82ae | 2010-06-14 07:35:38 +0000 | [diff] [blame] | 814 | Improved debugger support for stepping out of functions. |
| 815 | |
| 816 | Incremental performance improvements. |
| 817 | |
| 818 | |
| 819 | 2010-06-09: Version 2.2.16 |
| 820 | |
kmillikin@chromium.org | 69ea396 | 2010-07-05 11:01:40 +0000 | [diff] [blame] | 821 | Removed the SetExternalStringDiposeCallback API. Changed the |
vegorov@chromium.org | 2356e6f | 2010-06-09 09:38:56 +0000 | [diff] [blame] | 822 | disposal of external string resources to call a virtual Dispose |
| 823 | method on the resource. |
| 824 | |
kmillikin@chromium.org | 69ea396 | 2010-07-05 11:01:40 +0000 | [diff] [blame] | 825 | Added support for more precise break points when debugging and |
vegorov@chromium.org | 2356e6f | 2010-06-09 09:38:56 +0000 | [diff] [blame] | 826 | stepping. |
| 827 | |
| 828 | Memory usage improvements on all platforms. |
| 829 | |
| 830 | |
lrn@chromium.org | 1af7e1b | 2010-06-07 11:12:01 +0000 | [diff] [blame] | 831 | 2010-06-07: Version 2.2.15 |
| 832 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 833 | Added an API to control the disposal of external string resources. |
lrn@chromium.org | 1af7e1b | 2010-06-07 11:12:01 +0000 | [diff] [blame] | 834 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 835 | Added missing initialization of a couple of variables which makes |
lrn@chromium.org | 1af7e1b | 2010-06-07 11:12:01 +0000 | [diff] [blame] | 836 | some compilers complaint when compiling with -Werror. |
| 837 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 838 | Improved performance on all platforms. |
lrn@chromium.org | 1af7e1b | 2010-06-07 11:12:01 +0000 | [diff] [blame] | 839 | |
| 840 | |
sgjesse@chromium.org | 82dbbab | 2010-06-02 08:57:44 +0000 | [diff] [blame] | 841 | 2010-06-02: Version 2.2.14 |
| 842 | |
| 843 | Fixed a crash in code generated for String.charCodeAt. |
| 844 | |
| 845 | Fixed a compilation issue with some GCC versions (issue 727). |
| 846 | |
| 847 | Performance optimizations on x64 and ARM platforms. |
| 848 | |
| 849 | |
ricow@chromium.org | 30ce411 | 2010-05-31 10:38:25 +0000 | [diff] [blame] | 850 | 2010-05-31: Version 2.2.13 |
| 851 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 852 | Implemented Object.getOwnPropertyDescriptor for element indices and |
ricow@chromium.org | 30ce411 | 2010-05-31 10:38:25 +0000 | [diff] [blame] | 853 | strings (issue 599). |
| 854 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 855 | Fixed bug for windows 64 bit C calls from generated code. |
ricow@chromium.org | 30ce411 | 2010-05-31 10:38:25 +0000 | [diff] [blame] | 856 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 857 | Added new scons flag unalignedaccesses for arm builds. |
ricow@chromium.org | 30ce411 | 2010-05-31 10:38:25 +0000 | [diff] [blame] | 858 | |
| 859 | Performance improvements on all platforms. |
| 860 | |
| 861 | |
kmillikin@chromium.org | 9155e25 | 2010-05-26 13:27:57 +0000 | [diff] [blame] | 862 | 2010-05-26: Version 2.2.12 |
| 863 | |
| 864 | Allowed accessors to be defined on objects rather than just object |
| 865 | templates. |
| 866 | |
| 867 | Changed the ScriptData API. |
| 868 | |
| 869 | |
erik.corry@gmail.com | 9dfbea4 | 2010-05-21 12:58:28 +0000 | [diff] [blame] | 870 | 2010-05-21: Version 2.2.11 |
| 871 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 872 | Fixed crash bug in liveedit on 64 bit. |
erik.corry@gmail.com | 9dfbea4 | 2010-05-21 12:58:28 +0000 | [diff] [blame] | 873 | |
| 874 | Use 'full compiler' when debugging is active. This should increase |
| 875 | the density of possible break points, making single step more fine |
| 876 | grained. This will only take effect for functions compiled after |
| 877 | debugging has been started, so recompilation of all functions is |
| 878 | required to get the full effect. IA32 and x64 only for now. |
| 879 | |
| 880 | Misc. fixes to the Solaris build. |
| 881 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 882 | Added new flags --print-cumulative-gc-stat and --trace-gc-nvp. |
erik.corry@gmail.com | 9dfbea4 | 2010-05-21 12:58:28 +0000 | [diff] [blame] | 883 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 884 | Added filtering of CPU profiles by security context. |
erik.corry@gmail.com | 9dfbea4 | 2010-05-21 12:58:28 +0000 | [diff] [blame] | 885 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 886 | Fixed crash bug on ARM when running without VFP2 or VFP3. |
erik.corry@gmail.com | 9dfbea4 | 2010-05-21 12:58:28 +0000 | [diff] [blame] | 887 | |
| 888 | Incremental performance improvements in all backends. |
| 889 | |
| 890 | |
vegorov@chromium.org | dff694e | 2010-05-17 09:10:26 +0000 | [diff] [blame] | 891 | 2010-05-17: Version 2.2.10 |
| 892 | |
| 893 | Performance improvements in the x64 and ARM backends. |
| 894 | |
| 895 | |
sgjesse@chromium.org | 720dc0b | 2010-05-10 09:25:39 +0000 | [diff] [blame] | 896 | 2010-05-10: Version 2.2.9 |
| 897 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 898 | Allowed Object.create to be called with a function (issue 697). |
sgjesse@chromium.org | 720dc0b | 2010-05-10 09:25:39 +0000 | [diff] [blame] | 899 | |
| 900 | Fixed bug with Date.parse returning a non-NaN value when called on a |
| 901 | non date string (issue 696). |
| 902 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 903 | Allowed unaligned memory accesses on ARM targets that support it (by |
erik.corry@gmail.com | 9dfbea4 | 2010-05-21 12:58:28 +0000 | [diff] [blame] | 904 | Subrato K De of CodeAurora <subratokde@codeaurora.org>). |
sgjesse@chromium.org | 720dc0b | 2010-05-10 09:25:39 +0000 | [diff] [blame] | 905 | |
| 906 | C++ API for retrieving JavaScript stack trace information. |
| 907 | |
| 908 | |
ager@chromium.org | ac091b7 | 2010-05-05 07:34:42 +0000 | [diff] [blame] | 909 | 2010-05-05: Version 2.2.8 |
| 910 | |
| 911 | Performance improvements in the x64 and ARM backends. |
| 912 | |
| 913 | |
kmillikin@chromium.org | 4111b80 | 2010-05-03 10:34:42 +0000 | [diff] [blame] | 914 | 2010-05-03: Version 2.2.7 |
| 915 | |
| 916 | Added support for ES5 date time string format to Date.parse. |
| 917 | |
| 918 | Performance improvements in the x64 backend. |
| 919 | |
| 920 | |
lrn@chromium.org | c34f580 | 2010-04-28 12:53:43 +0000 | [diff] [blame] | 921 | 2010-04-28: Version 2.2.6 |
| 922 | |
kmillikin@chromium.org | 4111b80 | 2010-05-03 10:34:42 +0000 | [diff] [blame] | 923 | Added "amd64" as recognized architecture in scons build script |
lrn@chromium.org | c34f580 | 2010-04-28 12:53:43 +0000 | [diff] [blame] | 924 | (by Ryan Dahl <coldredlemur@gmail.com>). |
| 925 | |
kmillikin@chromium.org | 4111b80 | 2010-05-03 10:34:42 +0000 | [diff] [blame] | 926 | Fixed bug in String search and replace with very simple RegExps. |
lrn@chromium.org | c34f580 | 2010-04-28 12:53:43 +0000 | [diff] [blame] | 927 | |
kmillikin@chromium.org | 4111b80 | 2010-05-03 10:34:42 +0000 | [diff] [blame] | 928 | Fixed bug in RegExp containing "\b^". |
lrn@chromium.org | c34f580 | 2010-04-28 12:53:43 +0000 | [diff] [blame] | 929 | |
| 930 | Performance improvements on all platforms. |
| 931 | |
kmillikin@chromium.org | 4111b80 | 2010-05-03 10:34:42 +0000 | [diff] [blame] | 932 | |
fschneider@chromium.org | 013f3e1 | 2010-04-26 13:27:52 +0000 | [diff] [blame] | 933 | 2010-04-26: Version 2.2.5 |
| 934 | |
| 935 | Various performance improvements (especially for ARM and x64) |
| 936 | |
| 937 | Fixed bug in CPU profiling (http://crbug.com/42137) |
| 938 | |
| 939 | Fixed a bug with the natives cache. |
lrn@chromium.org | c34f580 | 2010-04-28 12:53:43 +0000 | [diff] [blame] | 940 | |
| 941 | Fixed two bugs in the ARM code generator that can cause |
fschneider@chromium.org | 013f3e1 | 2010-04-26 13:27:52 +0000 | [diff] [blame] | 942 | wrong calculations. |
| 943 | |
| 944 | Fixed a bug that may cause a wrong result for shift operations. |
| 945 | |
| 946 | |
| 947 | 2010-04-21: Version 2.2.4 |
ricow@chromium.org | c9c8082 | 2010-04-21 08:22:37 +0000 | [diff] [blame] | 948 | |
| 949 | Fixed warnings on arm on newer GCC versions. |
| 950 | |
| 951 | Fixed a number of minor bugs. |
| 952 | |
| 953 | Performance improvements on all platforms. |
| 954 | |
| 955 | |
whesse@chromium.org | b6e43bb | 2010-04-14 09:36:28 +0000 | [diff] [blame] | 956 | 2010-04-14: Version 2.2.3 |
| 957 | |
| 958 | Added stack command and mem command to ARM simulator debugger. |
| 959 | |
| 960 | Fixed scons snapshot and ARM build, and Windows X64 build issues. |
| 961 | |
| 962 | Performance improvements on all platforms. |
| 963 | |
| 964 | |
ager@chromium.org | 357bf65 | 2010-04-12 11:30:10 +0000 | [diff] [blame] | 965 | 2010-04-12: Version 2.2.2 |
| 966 | |
| 967 | Introduced new profiler API. |
| 968 | |
| 969 | Fixed random number generator to produce full 32 random bits. |
| 970 | |
| 971 | |
lrn@chromium.org | 25156de | 2010-04-06 13:10:27 +0000 | [diff] [blame] | 972 | 2010-04-06: Version 2.2.1 |
| 973 | |
| 974 | Debugger improvements. |
| 975 | |
| 976 | Fixed minor bugs. |
| 977 | |
| 978 | |
ricow@chromium.org | aa1b616 | 2010-03-29 07:44:58 +0000 | [diff] [blame] | 979 | 2010-03-29: Version 2.2.0 |
| 980 | |
| 981 | Fixed a few minor bugs. |
| 982 | |
| 983 | Performance improvements for string operations. |
| 984 | |
| 985 | |
ager@chromium.org | b26c50a | 2010-03-26 09:27:16 +0000 | [diff] [blame] | 986 | 2010-03-26: Version 2.1.10 |
| 987 | |
| 988 | Fixed scons build issues. |
| 989 | |
| 990 | Fixed a couple of minor bugs. |
| 991 | |
| 992 | |
sgjesse@chromium.org | df7a284 | 2010-03-25 14:34:15 +0000 | [diff] [blame] | 993 | 2010-03-25: Version 2.1.9 |
| 994 | |
| 995 | Added API support for reattaching a global object to a context. |
| 996 | |
| 997 | Extended debugger API with access to the internal debugger context. |
| 998 | |
| 999 | Fixed Chromium crashes (issues http://crbug.com/39128 and |
| 1000 | http://crbug.com/39160) |
| 1001 | |
| 1002 | |
kmillikin@chromium.org | 5d8f0e6 | 2010-03-24 08:21:20 +0000 | [diff] [blame] | 1003 | 2010-03-24: Version 2.1.8 |
| 1004 | |
| 1005 | Added fine-grained garbage collection callbacks to the API. |
| 1006 | |
| 1007 | Performance improvements on all platforms. |
| 1008 | |
| 1009 | |
whesse@chromium.org | cec079d | 2010-03-22 14:44:04 +0000 | [diff] [blame] | 1010 | 2010-03-22: Version 2.1.7 |
| 1011 | |
| 1012 | Fixed issue 650. |
| 1013 | |
| 1014 | Fixed a bug where __proto__ was sometimes enumerated (issue 646). |
fschneider@chromium.org | 086aac6 | 2010-03-17 13:18:24 +0000 | [diff] [blame] | 1015 | |
| 1016 | Performance improvements for arithmetic operations. |
| 1017 | |
| 1018 | Performance improvements for string operations. |
| 1019 | |
whesse@chromium.org | cec079d | 2010-03-22 14:44:04 +0000 | [diff] [blame] | 1020 | Print script name and line number information in stack trace. |
| 1021 | |
| 1022 | |
| 1023 | 2010-03-17: Version 2.1.6 |
| 1024 | |
| 1025 | Performance improvements for arithmetic operations. |
| 1026 | |
| 1027 | Performance improvements for string operations. |
| 1028 | |
| 1029 | |
vegorov@chromium.org | f837290 | 2010-03-15 10:26:20 +0000 | [diff] [blame] | 1030 | 2010-03-10: Version 2.1.4 |
| 1031 | |
| 1032 | Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853). |
| 1033 | |
| 1034 | Performance improvements on all platforms. |
| 1035 | |
| 1036 | |
ager@chromium.org | ce5e87b | 2010-03-10 10:24:18 +0000 | [diff] [blame] | 1037 | 2010-03-10: Version 2.1.3 |
| 1038 | |
| 1039 | Added API method for context-disposal notifications. |
| 1040 | |
| 1041 | Added API method for accessing elements by integer index. |
| 1042 | |
| 1043 | Added missing implementation of Uint32::Value and Value::IsUint32 |
| 1044 | API methods. |
| 1045 | |
| 1046 | Added IsExecutionTerminating API method. |
| 1047 | |
| 1048 | Disabled strict aliasing for GCC 4.4. |
| 1049 | |
| 1050 | Fixed string-concatenation bug (issue 636). |
| 1051 | |
| 1052 | Performance improvements on all platforms. |
| 1053 | |
| 1054 | |
fschneider@chromium.org | b95b98b | 2010-02-23 10:34:29 +0000 | [diff] [blame] | 1055 | 2010-02-23: Version 2.1.2 |
| 1056 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1057 | Fixed a crash bug caused by wrong assert. |
fschneider@chromium.org | b95b98b | 2010-02-23 10:34:29 +0000 | [diff] [blame] | 1058 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1059 | Fixed a bug with register names on 64-bit V8 (issue 615). |
fschneider@chromium.org | b95b98b | 2010-02-23 10:34:29 +0000 | [diff] [blame] | 1060 | |
| 1061 | Performance improvements on all platforms. |
| 1062 | |
ager@chromium.org | ce5e87b | 2010-03-10 10:24:18 +0000 | [diff] [blame] | 1063 | |
ager@chromium.org | 5c83825 | 2010-02-19 08:53:10 +0000 | [diff] [blame] | 1064 | 2010-02-19: Version 2.1.1 |
| 1065 | |
| 1066 | [ES5] Implemented Object.defineProperty. |
| 1067 | |
| 1068 | Improved profiler support. |
| 1069 | |
| 1070 | Added SetPrototype method in the public V8 API. |
| 1071 | |
| 1072 | Added GetScriptOrigin and GetScriptLineNumber methods to Function |
| 1073 | objects in the API. |
| 1074 | |
| 1075 | Performance improvements on all platforms. |
| 1076 | |
| 1077 | |
sgjesse@chromium.org | b302e56 | 2010-02-03 11:26:59 +0000 | [diff] [blame] | 1078 | 2010-02-03: Version 2.1.0 |
| 1079 | |
| 1080 | Values are now always wrapped in objects when used as a receiver. |
| 1081 | (issue 223). |
| 1082 | |
| 1083 | [ES5] Implemented Object.getOwnPropertyNames. |
| 1084 | |
| 1085 | [ES5] Restrict JSON.parse to only accept strings that conforms to the |
| 1086 | JSON grammar. |
| 1087 | |
| 1088 | Improvement of debugger agent (issue 549 and 554). |
| 1089 | |
| 1090 | Fixed problem with skipped stack frame in profiles (issue 553). |
| 1091 | |
| 1092 | Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl |
| 1093 | <ry@tinyclouds.org>. |
| 1094 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1095 | Fixed a bug that Math.round() returns incorrect results for huge |
sgjesse@chromium.org | b302e56 | 2010-02-03 11:26:59 +0000 | [diff] [blame] | 1096 | integers. |
| 1097 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1098 | Fixed enumeration order for objects created from some constructor |
sgjesse@chromium.org | b302e56 | 2010-02-03 11:26:59 +0000 | [diff] [blame] | 1099 | functions (isue http://crbug.com/3867). |
| 1100 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1101 | Fixed arithmetic on some integer constants (issue 580). |
sgjesse@chromium.org | b302e56 | 2010-02-03 11:26:59 +0000 | [diff] [blame] | 1102 | |
| 1103 | Numerous performance improvements including porting of previous IA-32 |
| 1104 | optimizations to x64 and ARM architectures. |
| 1105 | |
| 1106 | |
fschneider@chromium.org | 0c20e67 | 2010-01-14 15:28:53 +0000 | [diff] [blame] | 1107 | 2010-01-14: Version 2.0.6 |
| 1108 | |
| 1109 | Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor, |
| 1110 | GetOwnProperty, FromPropertyDescriptor. |
| 1111 | |
| 1112 | Fixed Mac x64 build errors. |
| 1113 | |
| 1114 | Improved performance of some math and string operations. |
| 1115 | |
| 1116 | Improved performance of some regexp operations. |
| 1117 | |
| 1118 | Improved performance of context creation. |
| 1119 | |
| 1120 | Improved performance of hash tables. |
| 1121 | |
| 1122 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1123 | 2009-12-18: Version 2.0.5 |
| 1124 | |
| 1125 | Extended to upper limit of map space to allow for 7 times as many map |
| 1126 | to be allocated (issue 524). |
| 1127 | |
| 1128 | Improved performance of code using closures. |
| 1129 | |
| 1130 | Improved performance of some binary operations involving doubles. |
| 1131 | |
| 1132 | |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1133 | 2009-12-16: Version 2.0.4 |
| 1134 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1135 | Added ECMAScript 5 Object.create. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1136 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1137 | Improved performance of Math.max and Math.min. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1138 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1139 | Optimized adding of strings on 64-bit platforms. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1140 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1141 | Improved handling of external strings by using a separate table |
| 1142 | instead of weak handles. This improves garbage collection |
| 1143 | performance and uses less memory. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1144 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1145 | Changed code generation for object and array literals in toplevel |
| 1146 | code to be more compact by doing more work in the runtime. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1147 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1148 | Fixed a crash bug triggered when garbage collection happened during |
| 1149 | generation of a callback load inline cache stub. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1150 | |
sgjesse@chromium.org | 846fb74 | 2009-12-18 08:56:33 +0000 | [diff] [blame] | 1151 | Fixed crash bug sometimes triggered when local variables shadowed |
| 1152 | parameters in functions that used the arguments object. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1153 | |
| 1154 | |
sgjesse@chromium.org | ac6aa17 | 2009-12-04 12:29:05 +0000 | [diff] [blame] | 1155 | 2009-12-03: Version 2.0.3 |
| 1156 | |
| 1157 | Optimized handling and adding of strings, for-in and Array.join. |
| 1158 | |
| 1159 | Heap serialization is now non-destructive. |
| 1160 | |
| 1161 | Improved profiler support with information on time spend in C++ |
| 1162 | callbacks registered through the API. |
| 1163 | |
| 1164 | Added commands to the debugger protocol for starting/stopping |
| 1165 | profiling. |
| 1166 | |
| 1167 | Enabled the non-optimizing compiler for top-level code. |
| 1168 | |
| 1169 | Changed the API to only allow strings to be set as data objects on |
| 1170 | Contexts and scripts to avoid potentially keeping global objects |
| 1171 | around for too long (issue 528). |
| 1172 | |
| 1173 | OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>. |
| 1174 | |
| 1175 | Fixed bugs. |
| 1176 | |
| 1177 | |
ager@chromium.org | 01beca7 | 2009-11-24 14:29:16 +0000 | [diff] [blame] | 1178 | 2009-11-24: Version 2.0.2 |
| 1179 | |
| 1180 | Improved profiler support. |
| 1181 | |
| 1182 | Fixed bug that broke compilation of d8 with readline support. |
| 1183 | |
| 1184 | |
ager@chromium.org | 6141cbe | 2009-11-20 12:14:52 +0000 | [diff] [blame] | 1185 | 2009-11-20: Version 2.0.1 |
| 1186 | |
| 1187 | Fixed crash bug in String.prototype.replace. |
| 1188 | |
| 1189 | Reverted a change which caused Chromium interactive ui test |
| 1190 | failures. |
| 1191 | |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1192 | |
ager@chromium.org | c4c9272 | 2009-11-18 14:12:51 +0000 | [diff] [blame] | 1193 | 2009-11-18: Version 2.0.0 |
| 1194 | |
| 1195 | Added support for VFP on ARM. |
| 1196 | |
| 1197 | Added TryCatch::ReThrow method to the API. |
| 1198 | |
| 1199 | Reduced the size of snapshots and improved the snapshot load time. |
| 1200 | |
| 1201 | Improved heap profiler support. |
| 1202 | |
| 1203 | 64-bit version now supported on Windows. |
| 1204 | |
| 1205 | Fixed a number of debugger issues. |
| 1206 | |
| 1207 | Fixed bugs. |
| 1208 | |
| 1209 | |
sgjesse@chromium.org | f1e7313 | 2009-10-29 14:46:49 +0000 | [diff] [blame] | 1210 | 2009-10-29: Version 1.3.18 |
| 1211 | |
| 1212 | Reverted a change which caused crashes in RegExp replace. |
| 1213 | |
sgjesse@chromium.org | ac6aa17 | 2009-12-04 12:29:05 +0000 | [diff] [blame] | 1214 | Reverted a change which caused Chromium ui_tests failure. |
sgjesse@chromium.org | f1e7313 | 2009-10-29 14:46:49 +0000 | [diff] [blame] | 1215 | |
| 1216 | |
ager@chromium.org | 3811b43 | 2009-10-28 14:53:37 +0000 | [diff] [blame] | 1217 | 2009-10-28: Version 1.3.17 |
| 1218 | |
| 1219 | Added API method to get simple heap statistics. |
| 1220 | |
| 1221 | Improved heap profiler support. |
| 1222 | |
| 1223 | Fixed the implementation of the resource constraint API so it |
| 1224 | works when using snapshots. |
| 1225 | |
| 1226 | Fixed a number of issues in the Windows 64-bit version. |
| 1227 | |
| 1228 | Optimized calls to API getters. |
| 1229 | |
| 1230 | Added valgrind notification on code modification to the 64-bit version. |
| 1231 | |
| 1232 | Fixed issue where we logged shared library addresses on Windows at |
| 1233 | startup and never used them. |
| 1234 | |
| 1235 | |
christian.plesner.hansen@gmail.com | 9d58c2b | 2009-10-16 11:48:38 +0000 | [diff] [blame] | 1236 | 2009-10-16: Version 1.3.16 |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1237 | |
christian.plesner.hansen@gmail.com | 9d58c2b | 2009-10-16 11:48:38 +0000 | [diff] [blame] | 1238 | X64: Convert smis to holding 32 bits of payload. |
| 1239 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1240 | Introduced v8::Integer::NewFromUnsigned method. |
christian.plesner.hansen@gmail.com | 9d58c2b | 2009-10-16 11:48:38 +0000 | [diff] [blame] | 1241 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1242 | Added missing null check in Context::GetCurrent. |
christian.plesner.hansen@gmail.com | 9d58c2b | 2009-10-16 11:48:38 +0000 | [diff] [blame] | 1243 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1244 | Added trim, trimLeft and trimRight methods to String |
christian.plesner.hansen@gmail.com | 9d58c2b | 2009-10-16 11:48:38 +0000 | [diff] [blame] | 1245 | Patch by Jan de Mooij <jandemooij@gmail.com> |
| 1246 | |
| 1247 | Implement ES5 Array.isArray |
| 1248 | Patch by Jan de Mooij <jandemooij@gmail.com> |
| 1249 | |
| 1250 | Skip access checks for hidden properties. |
| 1251 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1252 | Added String::Concat(Handle<String> left, Handle<String> right) to the |
| 1253 | V8 API. |
christian.plesner.hansen@gmail.com | 9d58c2b | 2009-10-16 11:48:38 +0000 | [diff] [blame] | 1254 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1255 | Fixed GYP-based builds of V8. |
christian.plesner.hansen@gmail.com | 9d58c2b | 2009-10-16 11:48:38 +0000 | [diff] [blame] | 1256 | |
| 1257 | |
sgjesse@chromium.org | 152a0b0 | 2009-10-07 13:50:16 +0000 | [diff] [blame] | 1258 | 2009-10-07: Version 1.3.15 |
| 1259 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1260 | Expanded the maximum size of the code space to 512MB for 64-bit mode. |
sgjesse@chromium.org | 152a0b0 | 2009-10-07 13:50:16 +0000 | [diff] [blame] | 1261 | |
| 1262 | Fixed a crash bug happening when starting profiling (issue |
| 1263 | http://crbug.com/23768). |
| 1264 | |
| 1265 | |
sgjesse@chromium.org | c514574 | 2009-10-07 09:00:33 +0000 | [diff] [blame] | 1266 | 2009-10-07: Version 1.3.14 |
| 1267 | |
| 1268 | Added GetRealNamedProperty to the API to lookup real properties |
| 1269 | located on the object or in the prototype chain skipping any |
| 1270 | interceptors. |
| 1271 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1272 | Fixed the stack limits setting API to work correctly with threads. The |
sgjesse@chromium.org | c514574 | 2009-10-07 09:00:33 +0000 | [diff] [blame] | 1273 | stack limit now needs to be set to each thread thich is used with V8. |
| 1274 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1275 | Removed the high-priority flag from IdleNotification() |
sgjesse@chromium.org | c514574 | 2009-10-07 09:00:33 +0000 | [diff] [blame] | 1276 | |
| 1277 | Ensure V8 is initialized before locking and unlocking threads. |
| 1278 | |
| 1279 | Implemented a new JavaScript minifier for compressing the source of |
ager@chromium.org | 3811b43 | 2009-10-28 14:53:37 +0000 | [diff] [blame] | 1280 | the built-in JavaScript. This removes non-Open Source code from Douglas |
sgjesse@chromium.org | c514574 | 2009-10-07 09:00:33 +0000 | [diff] [blame] | 1281 | Crockford from the project. |
| 1282 | |
| 1283 | Added a missing optimization in StringCharAt. |
| 1284 | |
| 1285 | Fixed some flaky socket tests. |
| 1286 | |
| 1287 | Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD |
| 1288 | in 64-bit mode. |
| 1289 | |
| 1290 | Fixed memory leaks in the thread management code. |
| 1291 | |
| 1292 | Fixed the result of assignment to a pixel array. The assigned value |
| 1293 | is now the result. |
| 1294 | |
| 1295 | Error reporting for invalid left-hand sides in for-in statements, pre- |
| 1296 | and postfix count expressions, and assignments now matches the JSC |
| 1297 | behavior in Safari 4. |
| 1298 | |
| 1299 | Follow the spec in disallowing function declarations without a name. |
| 1300 | |
| 1301 | Always allocate code objects within a 2 GB range. On x64 architecture |
| 1302 | this is used to use near calls (32-bit displacement) in Code objects. |
| 1303 | |
| 1304 | Optimized array construction ported to x64 and ARM architectures. |
| 1305 | |
| 1306 | [ES5] Changed Object.keys to return strings for element indices. |
| 1307 | |
| 1308 | |
ager@chromium.org | 68e7ab7 | 2009-09-23 09:40:39 +0000 | [diff] [blame] | 1309 | 2009-09-23: Version 1.3.13 |
| 1310 | |
| 1311 | Fixed uninitialized memory problem. |
| 1312 | |
| 1313 | Improved heap profiler support. |
| 1314 | |
| 1315 | |
christian.plesner.hansen@gmail.com | 2bc58ef | 2009-09-22 10:00:30 +0000 | [diff] [blame] | 1316 | 2009-09-22: Version 1.3.12 |
| 1317 | |
| 1318 | Changed behavior of |function|.toString() on built-in functions to |
| 1319 | be compatible with other implementations. Patch by Jan de Mooij. |
| 1320 | |
| 1321 | Added Object::IsDirty in the API. |
| 1322 | |
| 1323 | Optimized array construction; it is now handled purely in native |
| 1324 | code. |
| 1325 | |
| 1326 | [ES5] Made properties of the arguments array enumerable. |
| 1327 | |
| 1328 | [ES5] Added test suite adapter for the es5conform test suite. |
| 1329 | |
| 1330 | [ES5] Added Object.keys function. |
| 1331 | |
ager@chromium.org | 68e7ab7 | 2009-09-23 09:40:39 +0000 | [diff] [blame] | 1332 | |
ager@chromium.org | 4af710e | 2009-09-15 12:20:11 +0000 | [diff] [blame] | 1333 | 2009-09-15: Version 1.3.11 |
| 1334 | |
| 1335 | Fixed crash in error reporting during bootstrapping. |
| 1336 | |
| 1337 | Optimized generated IA32 math code by using SSE2 instructions when |
| 1338 | available. |
| 1339 | |
| 1340 | Implemented missing pieces of debugger infrastructure on ARM. The |
| 1341 | debugger is now fully functional on ARM. |
| 1342 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1343 | Made 'hidden' the default visibility for gcc. |
ager@chromium.org | 4af710e | 2009-09-15 12:20:11 +0000 | [diff] [blame] | 1344 | |
| 1345 | |
ager@chromium.org | a1645e2 | 2009-09-09 19:27:10 +0000 | [diff] [blame] | 1346 | 2009-09-09: Version 1.3.10 |
| 1347 | |
| 1348 | Fixed profiler on Mac in 64-bit mode. |
| 1349 | |
| 1350 | Optimized creation of objects from simple constructor functions on |
| 1351 | ARM. |
| 1352 | |
| 1353 | Fixed a number of debugger issues. |
| 1354 | |
| 1355 | Reduced the amount of memory consumed by V8. |
| 1356 | |
| 1357 | |
ager@chromium.org | 18ad94b | 2009-09-02 08:22:29 +0000 | [diff] [blame] | 1358 | 2009-09-02: Version 1.3.9 |
| 1359 | |
| 1360 | Optimized stack guard checks on ARM. |
| 1361 | |
| 1362 | Optimized API operations by inlining more in the API. |
| 1363 | |
| 1364 | Optimized creation of objects from simple constructor functions. |
| 1365 | |
| 1366 | Enabled a number of missing optimizations in the 64-bit port. |
| 1367 | |
| 1368 | Implemented native-code support for regular expressions on ARM. |
| 1369 | |
| 1370 | Stopped using the 'sahf' instruction on 64-bit machines that do |
| 1371 | not support it. |
| 1372 | |
| 1373 | Fixed a bug in the support for forceful termination of JavaScript |
| 1374 | execution. |
| 1375 | |
| 1376 | |
ager@chromium.org | 96c75b5 | 2009-08-26 09:13:16 +0000 | [diff] [blame] | 1377 | 2009-08-26: Version 1.3.8 |
| 1378 | |
| 1379 | Changed the handling of idle notifications to allow idle |
| 1380 | notifications when V8 has not yet been initialized. |
| 1381 | |
| 1382 | Fixed ARM simulator compilation problem on Windows. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1383 | |
ager@chromium.org | 96c75b5 | 2009-08-26 09:13:16 +0000 | [diff] [blame] | 1384 | |
ager@chromium.org | ab99eea | 2009-08-25 07:05:41 +0000 | [diff] [blame] | 1385 | 2009-08-25: Version 1.3.7 |
| 1386 | |
| 1387 | Reduced the size of generated code on ARM platforms by reducing |
| 1388 | the size of constant pools. |
| 1389 | |
| 1390 | Changed build files to not include the 'ENV' user environment |
| 1391 | variable in the build environment. |
| 1392 | |
| 1393 | Changed the handling of idle notifications. |
| 1394 | |
| 1395 | |
sgjesse@chromium.org | c81c894 | 2009-08-21 10:54:26 +0000 | [diff] [blame] | 1396 | 2009-08-21: Version 1.3.6 |
| 1397 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1398 | Added support for forceful termination of JavaScript execution. |
sgjesse@chromium.org | c81c894 | 2009-08-21 10:54:26 +0000 | [diff] [blame] | 1399 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1400 | Added low memory notification to the API. The embedding host can signal |
sgjesse@chromium.org | c81c894 | 2009-08-21 10:54:26 +0000 | [diff] [blame] | 1401 | a low memory situation to V8. |
| 1402 | |
| 1403 | Changed the handling of global handles (persistent handles in the API |
| 1404 | sense) to avoid issues regarding allocation of new global handles |
| 1405 | during weak handle callbacks. |
| 1406 | |
| 1407 | Changed the growth policy of the young space. |
| 1408 | |
| 1409 | Fixed a GC issue introduced in version 1.3.5. |
| 1410 | |
| 1411 | |
sgjesse@chromium.org | 911335c | 2009-08-19 12:59:44 +0000 | [diff] [blame] | 1412 | 2009-08-19: Version 1.3.5 |
| 1413 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1414 | Optimized initialization of some arrays in the builtins. |
sgjesse@chromium.org | 911335c | 2009-08-19 12:59:44 +0000 | [diff] [blame] | 1415 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1416 | Fixed mac-nm script to support filenames with spaces. |
sgjesse@chromium.org | 911335c | 2009-08-19 12:59:44 +0000 | [diff] [blame] | 1417 | |
| 1418 | Support for using the V8 profiler when V8 is embedded in a Windows DLL. |
| 1419 | |
| 1420 | Changed typeof RegExp from 'object' to 'function' for compatibility. |
| 1421 | Fixed bug where regexps were not callable across contexts. |
| 1422 | |
| 1423 | Added context independent script compilation to the API. |
| 1424 | |
| 1425 | Added API call to get the stack trace for an exception. |
| 1426 | |
| 1427 | Added API for getting object mirrors. |
| 1428 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1429 | Made sure that SSE3 instructions are used whenever possible even when |
sgjesse@chromium.org | 911335c | 2009-08-19 12:59:44 +0000 | [diff] [blame] | 1430 | running off a snapshot generated without using SSE3 instructions. |
| 1431 | |
| 1432 | Tweaked the handling of the initial size and growth policy of the heap. |
| 1433 | |
| 1434 | Added native code generation for RegExp to 64-bit version. |
| 1435 | |
| 1436 | Added JavaScript debugger support to 64-bit version. |
| 1437 | |
| 1438 | |
ager@chromium.org | add848f | 2009-08-13 12:44:13 +0000 | [diff] [blame] | 1439 | 2009-08-13: Version 1.3.4 |
| 1440 | |
| 1441 | Added a readline() command to the d8 shell. |
| 1442 | |
| 1443 | Fixed bug in json parsing. |
| 1444 | |
| 1445 | Added idle notification to the API and reduced memory on idle |
| 1446 | notifications. |
| 1447 | |
| 1448 | |
christian.plesner.hansen@gmail.com | 5a6af92 | 2009-08-12 14:20:51 +0000 | [diff] [blame] | 1449 | 2009-08-12: Version 1.3.3 |
| 1450 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1451 | Fixed issue 417: incorrect %t placeholder expansion. |
christian.plesner.hansen@gmail.com | 5a6af92 | 2009-08-12 14:20:51 +0000 | [diff] [blame] | 1452 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1453 | Added .gitignore file similar to Chromium's one. |
christian.plesner.hansen@gmail.com | 5a6af92 | 2009-08-12 14:20:51 +0000 | [diff] [blame] | 1454 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1455 | Fixed SConstruct file to build with new logging code for Android. |
christian.plesner.hansen@gmail.com | 5a6af92 | 2009-08-12 14:20:51 +0000 | [diff] [blame] | 1456 | |
| 1457 | API: added function to find instance of template in prototype |
| 1458 | chain. Inlined Object::IsInstanceOf. |
| 1459 | |
| 1460 | Land change to notify valgrind when we modify code on x86. |
| 1461 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1462 | Added api call to determine whether a string can be externalized. |
christian.plesner.hansen@gmail.com | 5a6af92 | 2009-08-12 14:20:51 +0000 | [diff] [blame] | 1463 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1464 | Added a write() command to d8. |
christian.plesner.hansen@gmail.com | 5a6af92 | 2009-08-12 14:20:51 +0000 | [diff] [blame] | 1465 | |
| 1466 | |
sgjesse@chromium.org | b9d7da1 | 2009-08-05 08:38:10 +0000 | [diff] [blame] | 1467 | 2009-08-05: Version 1.3.2 |
| 1468 | |
| 1469 | Started new compiler infrastructure for two-pass compilation using a |
| 1470 | control flow graph constructed from the AST. |
| 1471 | |
| 1472 | Profiler stack sampling for X64. |
| 1473 | |
| 1474 | Safe handling of NaN to Posix platform-dependent time functions. |
| 1475 | |
| 1476 | Added a new profiler control API to unify controlling various aspects |
| 1477 | of profiling. |
| 1478 | |
| 1479 | Fixed issue 392. |
| 1480 | |
| 1481 | |
sgjesse@chromium.org | 0b6db59 | 2009-07-30 14:48:31 +0000 | [diff] [blame] | 1482 | 2009-07-30: Version 1.3.1 |
| 1483 | |
| 1484 | Speed improvements to accessors and interceptors. |
| 1485 | |
| 1486 | Added support for capturing stack information on custom errors. |
| 1487 | |
| 1488 | Added support for morphing an object into a pixel array where its |
| 1489 | indexed properties are stored in an external byte array. Values written |
| 1490 | are always clamped to the 0..255 interval. |
| 1491 | |
| 1492 | Profiler on x64 now handles C/C++ functions from shared libraries. |
| 1493 | |
| 1494 | Changed the debugger to avoid stepping into function.call/apply if the |
| 1495 | function is a built-in. |
| 1496 | |
| 1497 | Initial implementation of constructor heap profile for JS objects. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1498 | |
sgjesse@chromium.org | 0b6db59 | 2009-07-30 14:48:31 +0000 | [diff] [blame] | 1499 | More fine grained control of profiling aspects through the API. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1500 | |
sgjesse@chromium.org | 0b6db59 | 2009-07-30 14:48:31 +0000 | [diff] [blame] | 1501 | Optimized the called as constructor check for API calls. |
| 1502 | |
| 1503 | |
kasperl@chromium.org | e959c18 | 2009-07-27 08:59:04 +0000 | [diff] [blame] | 1504 | 2009-07-27: Version 1.3.0 |
| 1505 | |
| 1506 | Allowed RegExp objects to be called as functions (issue 132). |
| 1507 | |
| 1508 | Fixed issue where global property cells would escape after |
| 1509 | detaching the global object; see http://crbug.com/16276. |
| 1510 | |
| 1511 | Added support for stepping into setters and getters in the |
| 1512 | debugger. |
| 1513 | |
| 1514 | Changed the debugger to avoid stopping in its own JavaScript code |
| 1515 | and in the code of built-in functions. |
| 1516 | |
| 1517 | Fixed issue 345 by avoiding duplicate escaping labels. |
| 1518 | |
| 1519 | Fixed ARM code generator crash in short-circuited boolean |
| 1520 | expressions and added regression tests. |
| 1521 | |
| 1522 | Added an external allocation limit to avoid issues where small V8 |
| 1523 | objects would hold on to large amounts of external memory without |
| 1524 | causing garbage collections. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1525 | |
| 1526 | Finished more of the inline caching stubs for x64 targets. |
kasperl@chromium.org | e959c18 | 2009-07-27 08:59:04 +0000 | [diff] [blame] | 1527 | |
| 1528 | |
kasperl@chromium.org | defbd10 | 2009-07-13 14:04:26 +0000 | [diff] [blame] | 1529 | 2009-07-13: Version 1.2.14 |
| 1530 | |
| 1531 | Added separate paged heap space for global property cells and |
| 1532 | avoid updating the write barrier when storing into them. |
| 1533 | |
| 1534 | Improved peep-hole optimization on ARM platforms by not emitting |
| 1535 | unnecessary debug information. |
| 1536 | |
| 1537 | Re-enabled ICs for loads and calls that skip a global object |
| 1538 | during lookup through the prototype chain. |
| 1539 | |
| 1540 | Allowed access through global proxies to use ICs. |
| 1541 | |
| 1542 | Fixed issue 401. |
| 1543 | |
| 1544 | |
kasperl@chromium.org | 68ac009 | 2009-07-09 06:00:35 +0000 | [diff] [blame] | 1545 | 2009-07-09: Version 1.2.13 |
| 1546 | |
| 1547 | Fixed issue 397, issue 398, and issue 399. |
| 1548 | |
| 1549 | Added support for breakpoint groups. |
| 1550 | |
| 1551 | Fixed bugs introduced with the new global object representation. |
| 1552 | |
| 1553 | Fixed a few bugs in the ARM code generator. |
| 1554 | |
| 1555 | |
kasperl@chromium.org | 86f77b7 | 2009-07-06 08:21:57 +0000 | [diff] [blame] | 1556 | 2009-07-06: Version 1.2.12 |
| 1557 | |
| 1558 | Added stack traces collection to Error objects accessible through |
| 1559 | the e.stack property. |
| 1560 | |
| 1561 | Changed RegExp parser to use a recursive data structure instead of |
| 1562 | stack-based recursion. |
| 1563 | |
| 1564 | Optimized Date object construction and string concatenation. |
| 1565 | |
| 1566 | Improved performance of div, mod, and mul on ARM platforms. |
| 1567 | |
| 1568 | |
kasperl@chromium.org | 2abc450 | 2009-07-02 07:00:29 +0000 | [diff] [blame] | 1569 | 2009-07-02: Version 1.2.11 |
| 1570 | |
| 1571 | Improved performance on IA-32 and ARM. |
| 1572 | |
| 1573 | Fixed profiler sampler implementation on Mac OS X. |
| 1574 | |
| 1575 | Changed the representation of global objects to improve |
| 1576 | performance of adding a lot of new properties. |
| 1577 | |
| 1578 | |
ager@chromium.org | 3e87580 | 2009-06-29 08:26:34 +0000 | [diff] [blame] | 1579 | 2009-06-29: Version 1.2.10 |
| 1580 | |
| 1581 | Improved debugger support. |
| 1582 | |
| 1583 | Fixed bug in exception message reporting (issue 390). |
| 1584 | |
| 1585 | Improved overall performance. |
| 1586 | |
| 1587 | |
ager@chromium.org | 5aa501c | 2009-06-23 07:57:28 +0000 | [diff] [blame] | 1588 | 2009-06-23: Version 1.2.9 |
| 1589 | |
| 1590 | Improved math performance on ARM. |
| 1591 | |
| 1592 | Fixed profiler name-inference bug. |
| 1593 | |
| 1594 | Fixed handling of shared libraries in the profiler tick processor |
| 1595 | scripts. |
| 1596 | |
| 1597 | Fixed handling of tests that time out in the test scripts. |
| 1598 | |
| 1599 | Fixed compilation on MacOS X version 10.4. |
| 1600 | |
| 1601 | Fixed two bugs in the regular expression engine. |
| 1602 | |
| 1603 | Fixed a bug in the string type inference. |
| 1604 | |
| 1605 | Fixed a bug in the handling of 'constant function' properties. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1606 | |
ager@chromium.org | 5aa501c | 2009-06-23 07:57:28 +0000 | [diff] [blame] | 1607 | Improved overall performance. |
kmillikin@chromium.org | 13bd294 | 2009-12-16 15:36:05 +0000 | [diff] [blame] | 1608 | |
ager@chromium.org | 5aa501c | 2009-06-23 07:57:28 +0000 | [diff] [blame] | 1609 | |
ager@chromium.org | eadaf22 | 2009-06-16 09:43:10 +0000 | [diff] [blame] | 1610 | 2009-06-16: Version 1.2.8 |
| 1611 | |
| 1612 | Optimized math on ARM platforms. |
| 1613 | |
| 1614 | Fixed two crash bugs in the handling of getters and setters. |
| 1615 | |
| 1616 | Improved the debugger support by adding scope chain information. |
| 1617 | |
| 1618 | Improved the profiler support by compressing log data transmitted |
| 1619 | to clients. |
| 1620 | |
| 1621 | Improved overall performance. |
| 1622 | |
| 1623 | |
ager@chromium.org | e2902be | 2009-06-08 12:21:35 +0000 | [diff] [blame] | 1624 | 2009-06-08: Version 1.2.7 |
| 1625 | |
| 1626 | Improved debugger and profiler support. |
| 1627 | |
| 1628 | Reduced compilation time by improving the handling of deferred |
| 1629 | code. |
| 1630 | |
| 1631 | Optimized interceptor accesses where the property is on the object |
| 1632 | on which the interceptors is attached. |
| 1633 | |
| 1634 | Fixed compilation problem on GCC 4.4 by changing the stack |
| 1635 | alignment to 16 bytes. |
| 1636 | |
| 1637 | Fixed handle creation to follow stric aliasing rules. |
| 1638 | |
| 1639 | Fixed compilation on FreeBSD. |
| 1640 | |
| 1641 | Introduced API for forcing the deletion of a property ignoring |
| 1642 | interceptors and attributes. |
| 1643 | |
| 1644 | |
sgjesse@chromium.org | 755c5b1 | 2009-05-29 11:04:38 +0000 | [diff] [blame] | 1645 | 2009-05-29: Version 1.2.6 |
| 1646 | |
| 1647 | Added a histogram recording hit rates at different levels of the |
| 1648 | compilation cache. |
| 1649 | |
| 1650 | Added stack overflow check for the RegExp analysis phase. Previously a |
| 1651 | very long regexp graph could overflow the stack with recursive calls. |
| 1652 | |
| 1653 | Use a dynamic buffer when collecting log events in memory. |
| 1654 | |
| 1655 | Added start/stop events to the profiler log. |
| 1656 | |
| 1657 | Fixed infinite loop which could happen when setting a debug break while |
| 1658 | executing a RegExp compiled to native code. |
| 1659 | |
| 1660 | Fixed handling of lastIndexOf called with negative index (issue 351). |
| 1661 | |
| 1662 | Fixed irregular crash in profiler test (issue 358). |
| 1663 | |
| 1664 | Fixed compilation issues with some versions of gcc. |
| 1665 | |
| 1666 | |
kasperl@chromium.org | 71affb5 | 2009-05-26 05:44:31 +0000 | [diff] [blame] | 1667 | 2009-05-26: Version 1.2.5 |
| 1668 | |
| 1669 | Fixed bug in initial boundary check for Boyer-Moore text |
| 1670 | search (issue 349). |
| 1671 | |
| 1672 | Fixed compilation issues with MinGW and gcc 4.3+ and added support |
| 1673 | for armv7 and cortex-a8 architectures. Patches by Lei Zhang and |
| 1674 | Craig Schlenter. |
| 1675 | |
| 1676 | Added a script cache to the debugger. |
| 1677 | |
| 1678 | Optimized compilation performance by improving internal data |
| 1679 | structures and avoiding expensive property load optimizations for |
| 1680 | code that's infrequently executed. |
| 1681 | |
| 1682 | Exposed the calling JavaScript context through the static API |
| 1683 | function Context::GetCalling(). |
| 1684 | |
| 1685 | |
kasperl@chromium.org | b3284ad | 2009-05-18 06:12:45 +0000 | [diff] [blame] | 1686 | 2009-05-18: Version 1.2.4 |
| 1687 | |
| 1688 | Improved performance of floating point number allocation for ARM |
| 1689 | platforms. |
| 1690 | |
| 1691 | Fixed crash when using the instanceof operator on functions with |
| 1692 | number values in their prototype chain (issue 341). |
| 1693 | |
| 1694 | Optimized virtual frame operations in the code generator to speed |
| 1695 | up compilation time and allocated the frames in the zone. |
| 1696 | |
| 1697 | Made the representation of virtual frames and jump targets in the |
| 1698 | code generator much more compact. |
| 1699 | |
| 1700 | Avoided linear search for non-locals in scope code when resolving |
| 1701 | variables inside with and eval scopes. |
| 1702 | |
| 1703 | Optimized lexical scanner by dealing with whitespace as part of |
| 1704 | the token scanning instead of as a separate step before it. |
| 1705 | |
| 1706 | Changed the scavenging collector so that promoted objects do not |
| 1707 | reside in the old generation while their remembered set is being |
| 1708 | swept for pointers into the young generation. |
| 1709 | |
| 1710 | Fixed numeric overflow handling when compiling count operations. |
| 1711 | |
| 1712 | |
ager@chromium.org | 9085a01 | 2009-05-11 19:22:57 +0000 | [diff] [blame] | 1713 | 2009-05-11: Version 1.2.3 |
| 1714 | |
| 1715 | Fixed bug in reporting of out-of-memory situations. |
| 1716 | |
| 1717 | Introduced hidden prototypes on certain builtin prototype objects |
| 1718 | such as String.prototype to emulate JSC's behavior of restoring |
| 1719 | the original function when deleting functions from those prototype |
| 1720 | objects. |
| 1721 | |
| 1722 | Fixed crash bug in the register allocator. |
| 1723 | |
| 1724 | |
ager@chromium.org | 5ec4892 | 2009-05-05 07:25:34 +0000 | [diff] [blame] | 1725 | 2009-05-04: Version 1.2.2 |
| 1726 | |
| 1727 | Fixed bug in array sorting for sparse arrays (issue 326). |
| 1728 | |
| 1729 | Added support for adding a soname when building a shared library |
| 1730 | on Linux (issue 151). |
| 1731 | |
| 1732 | Fixed bug caused by morphing internal ASCII strings to external |
| 1733 | two-byte strings. Slices over ASCII strings have to forward ASCII |
| 1734 | checks to the underlying buffer string. |
| 1735 | |
| 1736 | Allowed API call-as-function handlers to be called as |
| 1737 | constructors. |
| 1738 | |
| 1739 | Fixed a crash bug where an external string was disposed but a |
| 1740 | slice of the external string survived as a symbol. |
| 1741 | |
| 1742 | |
ager@chromium.org | 3a37e9b | 2009-04-27 09:26:21 +0000 | [diff] [blame] | 1743 | 2009-04-27: Version 1.2.1 |
| 1744 | |
| 1745 | Added EcmaScript 5 JSON object. |
| 1746 | |
fschneider@chromium.org | c20610a | 2010-09-22 09:44:58 +0000 | [diff] [blame] | 1747 | Fixed bug in preemption support on ARM. |
ager@chromium.org | 3a37e9b | 2009-04-27 09:26:21 +0000 | [diff] [blame] | 1748 | |
| 1749 | |
ager@chromium.org | 65dad4b | 2009-04-23 08:48:43 +0000 | [diff] [blame] | 1750 | 2009-04-23: Version 1.2.0 |
| 1751 | |
| 1752 | Optimized floating-point operations on ARM. |
| 1753 | |
| 1754 | Added a number of extensions to the debugger API. |
| 1755 | |
| 1756 | Changed the enumeration order for unsigned integer keys to always |
| 1757 | be numerical order. |
| 1758 | |
| 1759 | Added a "read" extension to the shell sample. |
| 1760 | |
| 1761 | Added support for Array.prototype.reduce and |
| 1762 | Array.prototype.reduceRight. |
| 1763 | |
| 1764 | Added an option to the SCons build to control Microsoft Visual C++ |
| 1765 | link-time code generation. |
| 1766 | |
| 1767 | Fixed a number of bugs (in particular issue 315, issue 316, |
| 1768 | issue 317 and issue 318). |
| 1769 | |
| 1770 | |
kasperl@chromium.org | 2d18d10 | 2009-04-15 13:27:32 +0000 | [diff] [blame] | 1771 | 2009-04-15: Version 1.1.10 |
| 1772 | |
| 1773 | Fixed crash bug that occurred when loading a const variable in the |
| 1774 | presence of eval. |
| 1775 | |
| 1776 | Allowed using with and eval in registered extensions in debug mode |
| 1777 | by fixing bogus assert. |
| 1778 | |
| 1779 | Fixed the source position for function returns to enable the |
| 1780 | debugger to break there. |
| 1781 | |
| 1782 | |
kasperl@chromium.org | d1e3e72 | 2009-04-14 13:38:25 +0000 | [diff] [blame] | 1783 | 2009-04-14: Version 1.1.9 |
| 1784 | |
| 1785 | Made the stack traversal code in the profiler robust by avoiding |
| 1786 | to look into the heap. |
| 1787 | |
| 1788 | Added name inferencing for anonymous functions to facilitate |
| 1789 | debugging and profiling. |
| 1790 | |
| 1791 | Re-enabled stats timers in the developer shell (d8). |
| 1792 | |
| 1793 | Fixed issue 303 by avoiding to shortcut cons-symbols. |
| 1794 | |
| 1795 | |
kasperl@chromium.org | acae378 | 2009-04-11 09:17:08 +0000 | [diff] [blame] | 1796 | 2009-04-11: Version 1.1.8 |
| 1797 | |
| 1798 | Changed test-debug/ThreadedDebugging to be non-flaky (issue 96). |
| 1799 | |
ager@chromium.org | 65dad4b | 2009-04-23 08:48:43 +0000 | [diff] [blame] | 1800 | Fixed step-in handling for Function.prototype.apply and call in |
kasperl@chromium.org | acae378 | 2009-04-11 09:17:08 +0000 | [diff] [blame] | 1801 | the debugger (issue 269). |
| 1802 | |
| 1803 | Fixed v8::Object::DeleteHiddenValue to not bail out when there |
| 1804 | are no hidden properties. |
| 1805 | |
ager@chromium.org | 65dad4b | 2009-04-23 08:48:43 +0000 | [diff] [blame] | 1806 | Added workaround for crash bug, where external symbol table |
kasperl@chromium.org | acae378 | 2009-04-11 09:17:08 +0000 | [diff] [blame] | 1807 | entries with deleted resources would lead to NPEs when looking |
| 1808 | up in the symbol table. |
| 1809 | |
| 1810 | |
kasperl@chromium.org | 8ccb0be | 2009-04-07 07:21:39 +0000 | [diff] [blame] | 1811 | 2009-04-07: Version 1.1.7 |
| 1812 | |
| 1813 | Added support for easily importing additional environment |
| 1814 | variables into the SCons build. |
| 1815 | |
| 1816 | Optimized strict equality checks. |
| 1817 | |
| 1818 | Fixed crash in indexed setters on objects without a corresponding |
| 1819 | getter (issue 298). |
| 1820 | |
| 1821 | Re-enabled script compilation cache. |
| 1822 | |
| 1823 | |
ager@chromium.org | 8682a59 | 2009-04-01 10:47:14 +0000 | [diff] [blame] | 1824 | 2009-04-01: Version 1.1.6 |
| 1825 | |
| 1826 | Reverted an unsafe code generator change. |
| 1827 | |
| 1828 | |
ager@chromium.org | 71daaf6 | 2009-04-01 07:22:49 +0000 | [diff] [blame] | 1829 | 2009-04-01: Version 1.1.5 |
| 1830 | |
| 1831 | Fixed bug that caused function literals to not be optimized as |
| 1832 | much as other functions. |
| 1833 | |
| 1834 | Improved profiler support. |
| 1835 | |
| 1836 | Fixed a crash bug in connection with debugger unloading. |
| 1837 | |
| 1838 | Fixed a crash bug in the code generator caused by losing the |
| 1839 | information that a frame element was copied. |
| 1840 | |
| 1841 | Fixed an exception propagation bug that could cause non-null |
| 1842 | return values when exceptions were thrown. |
| 1843 | |
| 1844 | |
ager@chromium.org | 41826e7 | 2009-03-30 13:30:57 +0000 | [diff] [blame] | 1845 | 2009-03-30: Version 1.1.4 |
| 1846 | |
| 1847 | Optimized String.prototype.match. |
| 1848 | |
| 1849 | Improved the stack information in profiles. |
| 1850 | |
| 1851 | Fixed bug in ARM port making it possible to compile the runtime |
| 1852 | system for thumb mode again. |
| 1853 | |
| 1854 | Implemented a number of optimizations in the code generator. |
| 1855 | |
| 1856 | Fixed a number of memory leaks in tests. |
| 1857 | |
| 1858 | Fixed crash bug in connection with script source code and external |
kasperl@chromium.org | 8ccb0be | 2009-04-07 07:21:39 +0000 | [diff] [blame] | 1859 | strings. |
ager@chromium.org | 41826e7 | 2009-03-30 13:30:57 +0000 | [diff] [blame] | 1860 | |
| 1861 | |
kasperl@chromium.org | f5aa837 | 2009-03-24 14:47:14 +0000 | [diff] [blame] | 1862 | 2009-03-24: Version 1.1.3 |
| 1863 | |
| 1864 | Fixed assertion failures in compilation of loop conditions. |
| 1865 | |
| 1866 | Removed STL dependency from developer shell (d8). |
| 1867 | |
| 1868 | Added infrastructure for protecting the V8 heap from corruption |
| 1869 | caused by memory modifications from the outside. |
| 1870 | |
| 1871 | |
ager@chromium.org | bb29dc9 | 2009-03-24 13:25:23 +0000 | [diff] [blame] | 1872 | 2009-03-24: Version 1.1.2 |
| 1873 | |
| 1874 | Improved frame merge code generated by the code generator. |
| 1875 | |
| 1876 | Optimized String.prototype.replace. |
| 1877 | |
| 1878 | Implemented __defineGetter__ and __defineSetter__ for properties |
| 1879 | with integer keys on non-array objects. |
| 1880 | |
| 1881 | Improved debugger and profiler support. |
| 1882 | |
| 1883 | Fixed a number of portability issues to allow compilation for |
| 1884 | smaller ARM devices. |
| 1885 | |
| 1886 | Exposed object cloning through the API. |
| 1887 | |
| 1888 | Implemented hidden properties. This is used to expose an identity |
| 1889 | hash for objects through the API. |
| 1890 | |
| 1891 | Implemented restarting of regular expressions if their input |
| 1892 | string changes representation during preemption. |
| 1893 | |
| 1894 | Fixed a code generator bug that could cause assignments in loops |
| 1895 | to be ignored if using continue to break out of the loop (issue |
| 1896 | 284). |
| 1897 | |
| 1898 | |
ager@chromium.org | 3a6061e | 2009-03-12 14:24:36 +0000 | [diff] [blame] | 1899 | 2009-03-12: Version 1.1.1 |
| 1900 | |
| 1901 | Fixed an assertion in the new compiler to take stack overflow |
| 1902 | exceptions into account. |
| 1903 | |
| 1904 | Removed exception propagation code that could cause crashes. |
| 1905 | |
| 1906 | Fixed minor bug in debugger line number computations. |
| 1907 | |
| 1908 | 8-byte align the C stack on Linux and Windows to speed up floating |
| 1909 | point computations. |
| 1910 | |
| 1911 | |
kasperl@chromium.org | 7be3c99 | 2009-03-12 07:19:55 +0000 | [diff] [blame] | 1912 | 2009-03-12: Version 1.1.0 |
| 1913 | |
| 1914 | Improved code generation infrastructure by doing simple register |
| 1915 | allocation and constant folding and propagation. |
| 1916 | |
| 1917 | Optimized regular expression matching by avoiding to create |
| 1918 | intermediate string arrays and by flattening nested array |
| 1919 | representations of RegExp data. |
| 1920 | |
| 1921 | Traverse a few stack frames when recording profiler samples to |
| 1922 | include partial call graphs in the profiling output. |
| 1923 | |
| 1924 | Added support for using OProfile to profile generated code. |
| 1925 | |
| 1926 | Added remote debugging support to the D8 developer shell. |
| 1927 | |
| 1928 | Optimized creation of nested literals like JSON objects. |
| 1929 | |
| 1930 | Fixed a bug in garbage collecting unused maps and turned it on by |
| 1931 | default (--collect-maps). |
| 1932 | |
| 1933 | Added support for running tests under Valgrind. |
| 1934 | |
| 1935 | |
kasperl@chromium.org | 061ef74 | 2009-02-27 12:16:20 +0000 | [diff] [blame] | 1936 | 2009-02-27: Version 1.0.3 |
| 1937 | |
| 1938 | Optimized double-to-integer conversions in bit operations by using |
| 1939 | SSE3 instructions if available. |
| 1940 | |
| 1941 | Optimized initialization sequences that store to multiple |
| 1942 | properties of the same object. |
| 1943 | |
| 1944 | Changed the D8 debugger frontend to use JSON messages. |
| 1945 | |
| 1946 | Force garbage collections when disposing contexts. |
| 1947 | |
| 1948 | Align code objects at 32-byte boundaries. |
| 1949 | |
| 1950 | |
ager@chromium.org | 381abbb | 2009-02-25 13:23:22 +0000 | [diff] [blame] | 1951 | 2009-02-25: Version 1.0.2 |
| 1952 | |
| 1953 | Improved profiling support by performing simple call stack |
| 1954 | sampling for ticks and by fixing a bug in the logging of code |
| 1955 | addresses. |
| 1956 | |
| 1957 | Fixed a number of debugger issues. |
| 1958 | |
| 1959 | Optimized code that uses eval. |
| 1960 | |
| 1961 | Fixed a couple of bugs in the regular expression engine. |
| 1962 | |
| 1963 | Reduced the size of generated code for certain regular expressions. |
| 1964 | |
| 1965 | Removed JSCRE completely. |
| 1966 | |
| 1967 | Fixed issue where test could not be run if there was a dot in the |
| 1968 | checkout path. |
| 1969 | |
| 1970 | |
ager@chromium.org | 6f10e41 | 2009-02-13 10:11:16 +0000 | [diff] [blame] | 1971 | 2009-02-13: Version 1.0.1 |
| 1972 | |
| 1973 | Fixed two crash-bugs in irregexp (issue 231 and 233). |
| 1974 | |
| 1975 | Fixed a number of minor bugs (issue 87, 227 and 228). |
| 1976 | |
| 1977 | Added support for morphing strings to external strings on demand |
| 1978 | to avoid having to create copies in the embedding code. |
| 1979 | |
| 1980 | Removed experimental support for external symbol callbacks. |
| 1981 | |
| 1982 | |
iposva@chromium.org | 245aa85 | 2009-02-10 00:49:54 +0000 | [diff] [blame] | 1983 | 2009-02-09: Version 1.0.0 |
| 1984 | |
| 1985 | Fixed crash-bug in the code generation for case independent 16 bit |
| 1986 | backreferences. |
ager@chromium.org | 6f10e41 | 2009-02-13 10:11:16 +0000 | [diff] [blame] | 1987 | |
iposva@chromium.org | 245aa85 | 2009-02-10 00:49:54 +0000 | [diff] [blame] | 1988 | Made shells more robust in the presence of string conversion |
| 1989 | failures (issue 224). |
ager@chromium.org | 6f10e41 | 2009-02-13 10:11:16 +0000 | [diff] [blame] | 1990 | |
iposva@chromium.org | 245aa85 | 2009-02-10 00:49:54 +0000 | [diff] [blame] | 1991 | Fixed a potential infinite loop when attempting to resolve |
| 1992 | eval (issue 221). |
ager@chromium.org | 6f10e41 | 2009-02-13 10:11:16 +0000 | [diff] [blame] | 1993 | |
iposva@chromium.org | 245aa85 | 2009-02-10 00:49:54 +0000 | [diff] [blame] | 1994 | Miscellaneous fixes to the new regular expression engine. |
ager@chromium.org | 6f10e41 | 2009-02-13 10:11:16 +0000 | [diff] [blame] | 1995 | |
iposva@chromium.org | 245aa85 | 2009-02-10 00:49:54 +0000 | [diff] [blame] | 1996 | Reduced binary by stripping unneeded text from JavaScript library and |
| 1997 | minifying some JavaScript files. |
| 1998 | |
| 1999 | |
ager@chromium.org | ddb913d | 2009-01-27 10:01:48 +0000 | [diff] [blame] | 2000 | 2009-01-27: Version 0.4.9 |
| 2001 | |
| 2002 | Enabled new regular expression engine. |
| 2003 | |
| 2004 | Made a number of changes to the debugger protocol. |
| 2005 | |
| 2006 | Fixed a number of bugs in the preemption support. |
| 2007 | |
| 2008 | Added -p option to the developer shell to run files in parallel |
| 2009 | using preemption. |
| 2010 | |
| 2011 | Fixed a number of minor bugs (including issues 176, 187, 189, 192, |
| 2012 | 193, 198 and 201). |
| 2013 | |
| 2014 | Fixed a number of bugs in the serialization/deserialization |
| 2015 | support for the ARM platform. |
| 2016 | |
| 2017 | |
sgjesse@chromium.org | 715915b | 2009-01-19 16:08:47 +0000 | [diff] [blame] | 2018 | 2009-01-19: Version 0.4.8.1 |
| 2019 | |
| 2020 | Minor patch to debugger support. |
| 2021 | |
| 2022 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2023 | 2009-01-16: Version 0.4.8 |
| 2024 | |
| 2025 | Fixed string length bug on ARM (issue 171). |
| 2026 | |
| 2027 | Made most methods in the API const. |
| 2028 | |
| 2029 | Optimized object literals by improving data locality. |
| 2030 | |
| 2031 | Fixed bug that caused incomplete functions to be cached in case of |
sgjesse@chromium.org | 715915b | 2009-01-19 16:08:47 +0000 | [diff] [blame] | 2032 | stack overflow exceptions. |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2033 | |
| 2034 | Fixed bugs that caused catch variables and variables introduced by |
sgjesse@chromium.org | 715915b | 2009-01-19 16:08:47 +0000 | [diff] [blame] | 2035 | eval to behave incorrectly when using accessors (issues 186, 190 |
| 2036 | and 191). |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2037 | |
| 2038 | |
christian.plesner.hansen@gmail.com | 37abdec | 2009-01-06 14:43:28 +0000 | [diff] [blame] | 2039 | 2009-01-06: Version 0.4.7 |
| 2040 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2041 | Minor bugfixes and optimizations. |
christian.plesner.hansen@gmail.com | 37abdec | 2009-01-06 14:43:28 +0000 | [diff] [blame] | 2042 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2043 | Added command line debugger to D8 shell. |
christian.plesner.hansen@gmail.com | 37abdec | 2009-01-06 14:43:28 +0000 | [diff] [blame] | 2044 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2045 | Fixed subtle bug that caused the wrong 'this' to be used when |
| 2046 | calling a caught function in a catch clause. |
christian.plesner.hansen@gmail.com | 37abdec | 2009-01-06 14:43:28 +0000 | [diff] [blame] | 2047 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2048 | Inline array loads within loops directly in the code instead of |
| 2049 | always calling a stub. |
christian.plesner.hansen@gmail.com | 37abdec | 2009-01-06 14:43:28 +0000 | [diff] [blame] | 2050 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2051 | |
ager@chromium.org | 8bb6058 | 2008-12-11 12:02:20 +0000 | [diff] [blame] | 2052 | 2008-12-11: Version 0.4.6 |
| 2053 | |
| 2054 | Fixed exception reporting bug where certain exceptions were |
| 2055 | incorrectly reported as uncaught. |
| 2056 | |
| 2057 | Improved the memory allocation strategy used during compilation to |
| 2058 | make running out of memory when compiling huge scripts less |
| 2059 | likely. |
| 2060 | |
| 2061 | Optimized String.replace by avoiding the construction of certain |
| 2062 | sub strings. |
| 2063 | |
| 2064 | Fixed bug in code generation for large switch statements on ARM. |
| 2065 | |
| 2066 | Fixed bug that caused V8 to change the global object template |
| 2067 | passed in by the user. |
| 2068 | |
| 2069 | Changed the API for creating object groups used during garbage |
| 2070 | collection. Entire object groups are now passed to V8 instead of |
| 2071 | individual members of the groups. |
| 2072 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2073 | |
ager@chromium.org | a74f0da | 2008-12-03 16:05:52 +0000 | [diff] [blame] | 2074 | 2008-12-03: Version 0.4.5 |
iposva@chromium.org | 96f667e | 2008-11-26 23:48:02 +0000 | [diff] [blame] | 2075 | |
ager@chromium.org | a74f0da | 2008-12-03 16:05:52 +0000 | [diff] [blame] | 2076 | Added experimental API support for allocating V8 symbols as |
| 2077 | external strings. |
| 2078 | |
| 2079 | Fixed bugs in debugging support on ARM. |
| 2080 | |
| 2081 | Changed eval implementation to correctly detect whether or not a |
| 2082 | call to eval is aliased. |
| 2083 | |
| 2084 | Fixed bug caused by a combination of the compilation cache and |
| 2085 | dictionary probing in native code. The bug caused us to sometimes |
| 2086 | call functions that had not yet been compiled. |
| 2087 | |
| 2088 | Added platform support for FreeBSD. |
| 2089 | |
| 2090 | Added support for building V8 on Windows with either the shared or |
| 2091 | static version of MSVCRT |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2092 | |
iposva@chromium.org | 96f667e | 2008-11-26 23:48:02 +0000 | [diff] [blame] | 2093 | Added the v8::jscre namespace around the jscre functions to avoid |
| 2094 | link errors (duplicate symbols) when building Google Chrome. |
| 2095 | |
ager@chromium.org | a74f0da | 2008-12-03 16:05:52 +0000 | [diff] [blame] | 2096 | Added support for calling a JavaScript function with the current |
| 2097 | debugger execution context as its argument to the debugger |
| 2098 | interface. |
| 2099 | |
| 2100 | Changed the type of names of counters from wchar_t to char. |
| 2101 | |
| 2102 | Changed the Windows system call used to compute daylight savings |
| 2103 | time. The system call that we used to use became four times |
| 2104 | slower on WinXP SP3. |
| 2105 | |
| 2106 | Added support in the d8 developer shell for memory-mapped counters |
| 2107 | and added a stats-viewer tool. |
| 2108 | |
| 2109 | Fixed bug in upper/lower case mappings (issue 149). |
| 2110 | |
iposva@chromium.org | 96f667e | 2008-11-26 23:48:02 +0000 | [diff] [blame] | 2111 | |
ager@chromium.org | 3bf7b91 | 2008-11-17 09:09:45 +0000 | [diff] [blame] | 2112 | 2008-11-17: Version 0.4.4 |
| 2113 | |
| 2114 | Reduced code size by using shorter instruction encoding when |
| 2115 | possible. |
| 2116 | |
| 2117 | Added a --help option to the shell sample and to the d8 shell. |
| 2118 | |
| 2119 | Added visual studio project files for building the ARM simulator. |
| 2120 | |
| 2121 | Fixed a number of ARM simulator issues. |
| 2122 | |
| 2123 | Fixed bug in out-of-memory handling on ARM. |
| 2124 | |
| 2125 | Implemented shell support for passing arguments to a script from |
| 2126 | the command line. |
| 2127 | |
| 2128 | Fixed bug in date code that made certain date functions return -0 |
| 2129 | instead of 0 for dates before the epoch. |
| 2130 | |
| 2131 | Restricted applications of eval so it can only be used in the |
| 2132 | context of the associated global object. |
| 2133 | |
| 2134 | Treat byte-order marks as whitespace characters. |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2135 | |
| 2136 | |
ager@chromium.org | 870a0b6 | 2008-11-04 11:43:05 +0000 | [diff] [blame] | 2137 | 2008-11-04: Version 0.4.3 |
| 2138 | |
| 2139 | Added support for API accessors that prohibit overwriting by |
| 2140 | accessors defined in JavaScript code by using __defineGetter__ and |
| 2141 | __defineSetter__. |
| 2142 | |
| 2143 | Improved handling of conditionals in test status files. |
| 2144 | |
| 2145 | Introduced access control in propertyIsEnumerable. |
| 2146 | |
| 2147 | Improved performance of some string operations by caching |
| 2148 | information about the type of the string between operations. |
| 2149 | |
| 2150 | Fixed bug in fast-case code for switch statements that only have |
| 2151 | integer labels. |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2152 | |
ager@chromium.org | 870a0b6 | 2008-11-04 11:43:05 +0000 | [diff] [blame] | 2153 | |
kasperl@chromium.org | 9bbf968 | 2008-10-30 11:53:07 +0000 | [diff] [blame] | 2154 | 2008-10-30: Version 0.4.2 |
| 2155 | |
| 2156 | Improved performance of Array.prototype.concat by moving the |
| 2157 | implementation to C++ (issue 123). |
| 2158 | |
| 2159 | Fixed heap growth policy to avoid growing old space to its maximum |
| 2160 | capacity before doing a garbage collection and fixed issue that |
| 2161 | would lead to artificial out of memory situations (issue 129). |
| 2162 | |
| 2163 | Fixed Date.prototype.toLocaleDateString to return the date in the |
| 2164 | same format as WebKit. |
| 2165 | |
| 2166 | Added missing initialization checks to debugger API. |
| 2167 | |
| 2168 | Added removing of unused maps during GC. |
| 2169 | |
| 2170 | |
kasperl@chromium.org | 9fe21c6 | 2008-10-28 08:53:51 +0000 | [diff] [blame] | 2171 | 2008-10-28: Version 0.4.1 |
| 2172 | |
| 2173 | Added caching of RegExp data in compilation cache. |
| 2174 | |
| 2175 | Added Visual Studio project file for d8 shell. |
| 2176 | |
| 2177 | Fixed function call performance regression introduced in version |
| 2178 | 0.4.0 when splitting the global object in two parts (issue 120). |
| 2179 | |
| 2180 | Fixed issue 131 by checking for empty handles before throwing and |
| 2181 | reporting exceptions. |
| 2182 | |
| 2183 | |
kasperl@chromium.org | 5a8ca6c | 2008-10-23 13:57:19 +0000 | [diff] [blame] | 2184 | 2008-10-23: Version 0.4.0 |
| 2185 | |
| 2186 | Split the global object into two parts: The state holding global |
| 2187 | object and the global object proxy. |
| 2188 | |
| 2189 | Fixed bug that affected the value of an assignment to an element |
| 2190 | in certain cases (issue 116). |
| 2191 | |
| 2192 | Added GetPropertyNames functionality (issue 33) and extra Date |
| 2193 | functions (issue 77) to the API. |
| 2194 | |
| 2195 | Changed WeakReferenceCallback to take a Persistent<Value> instead |
| 2196 | of a Persistent<Object> (issue 101). |
| 2197 | |
| 2198 | Fixed issues with message reporting for exceptions in try-finally |
| 2199 | blocks (issues 73 and 75). |
| 2200 | |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2201 | Optimized flattening of strings and string equality checking. |
kasperl@chromium.org | 5a8ca6c | 2008-10-23 13:57:19 +0000 | [diff] [blame] | 2202 | |
| 2203 | Improved Boyer-Moore implementation for faster indexOf operations. |
| 2204 | |
| 2205 | Added development shell (d8) which includes counters and |
| 2206 | completion support. |
| 2207 | |
| 2208 | Fixed problem with the receiver passed to functions called from |
| 2209 | eval (issue 124). |
| 2210 | |
| 2211 | |
ager@chromium.org | 7c537e2 | 2008-10-16 08:43:32 +0000 | [diff] [blame] | 2212 | 2008-10-16: Version 0.3.5 |
| 2213 | |
| 2214 | Improved string hash-code distribution by excluding bit-field bits |
| 2215 | from the hash-code. |
| 2216 | |
| 2217 | Changed string search algorithm used in indexOf from KMP to |
| 2218 | Boyer-Moore. |
| 2219 | |
| 2220 | Improved the generated code for the instanceof operator. |
| 2221 | |
| 2222 | Improved performance of slow-case string equality checks by |
| 2223 | specializing the code based on the string representation. |
| 2224 | |
| 2225 | Improve the handling of out-of-memory situations (issue 70). |
| 2226 | |
| 2227 | Improved performance of strict equality checks. |
| 2228 | |
| 2229 | Improved profiler output to make it easier to see anonymous |
| 2230 | functions. |
| 2231 | |
| 2232 | Improved performance of slow-case keyed loads. |
| 2233 | |
| 2234 | Improved property access performance by allocating a number of |
| 2235 | properties in the front object. |
| 2236 | |
| 2237 | Changed the toString behavior on the built-in object constructors |
| 2238 | to print [native code] instead of the actual source. Some web |
| 2239 | applications do not like constructors with complex toString |
| 2240 | results. |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2241 | |
ager@chromium.org | 7c537e2 | 2008-10-16 08:43:32 +0000 | [diff] [blame] | 2242 | |
kasperl@chromium.org | 41044eb | 2008-10-06 08:24:46 +0000 | [diff] [blame] | 2243 | 2008-10-06: Version 0.3.4 |
| 2244 | |
| 2245 | Changed Array.prototype.sort to use quick sort. |
| 2246 | |
| 2247 | Fixed code generation issue where leaving a finally block with |
| 2248 | break or continue would accumulate elements on the expression |
| 2249 | stack (issue 86). |
| 2250 | |
| 2251 | Made sure that the name accessor on functions returns the expected |
| 2252 | names for builtin JavaScript functions and C++ callback functions. |
| 2253 | |
| 2254 | Added fast case code for extending the property storage array of |
| 2255 | JavaScript objects. |
| 2256 | |
| 2257 | Ported switch statement optimizations introduced in version 0.3.3 |
| 2258 | to the ARM code generator. |
| 2259 | |
| 2260 | Allowed GCC to use strict-aliasing rules when compiling. |
| 2261 | |
| 2262 | Improved performance of arguments object allocation by taking care |
| 2263 | of arguments adaptor frames in the generated code. |
| 2264 | |
| 2265 | Updated the V8 benchmark suite to version 2. |
| 2266 | |
| 2267 | |
ager@chromium.org | 236ad96 | 2008-09-25 09:45:57 +0000 | [diff] [blame] | 2268 | 2008-09-25: Version 0.3.3 |
| 2269 | |
| 2270 | Improved handling of relocation information to enable more |
| 2271 | peep-hole optimizations. |
| 2272 | |
| 2273 | Optimized switch statements where all labels are constant small |
| 2274 | integers. |
| 2275 | |
| 2276 | Optimized String.prototype.indexOf for common cases. |
| 2277 | |
| 2278 | Fixed more build issues (issue 80). |
| 2279 | |
| 2280 | Fixed a couple of profiler issues. |
| 2281 | |
| 2282 | Fixed bug where the body of a function created using the Function |
| 2283 | constructor was not allowed to end with a single-line comment |
| 2284 | (issue 85). |
| 2285 | |
| 2286 | Improved handling of object literals by canonicalizing object |
| 2287 | literal maps. This will allow JSON objects with the same set of |
| 2288 | properties to share the same map making inline caching work better |
| 2289 | for JSON objects. |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2290 | |
ager@chromium.org | 236ad96 | 2008-09-25 09:45:57 +0000 | [diff] [blame] | 2291 | |
kasperl@chromium.org | b912362 | 2008-09-17 14:05:56 +0000 | [diff] [blame] | 2292 | 2008-09-17: Version 0.3.2 |
| 2293 | |
| 2294 | Generalized the EvalCache into a CompilationCache and enabled it |
| 2295 | for scripts too. The current strategy is to retire all entries |
| 2296 | whenever a mark-sweep collection is started. |
| 2297 | |
| 2298 | Fixed bug where switch statements containing only a default case |
| 2299 | would lead to an unbalanced stack (issue 69). |
| 2300 | |
| 2301 | Fixed bug that made access to the function in a named function |
| 2302 | expression impossible in certain situations (issue 24). |
| 2303 | |
| 2304 | Fixed even more build issues. |
| 2305 | |
| 2306 | Optimized calling conventions on ARM. The conventions on ARM and |
| 2307 | IA-32 now match. |
| 2308 | |
| 2309 | Removed static initializers for flags and counters. |
| 2310 | |
| 2311 | Improved inline caching behavior for uncommon cases where lazily |
| 2312 | loading Date and RegExp code could force certain code paths go |
| 2313 | megamorphic. |
| 2314 | |
| 2315 | Removed arguments adaption for builtins written in C++. This |
| 2316 | makes Array.prototype.push and Array.prototype.pop slightly |
| 2317 | faster. |
| 2318 | |
| 2319 | |
ager@chromium.org | 9258b6b | 2008-09-11 09:11:10 +0000 | [diff] [blame] | 2320 | 2008-09-11: Version 0.3.1 |
| 2321 | |
| 2322 | Fixed a number of build issues. |
| 2323 | |
| 2324 | Fixed problem with missing I-cache flusing on ARM. |
| 2325 | |
| 2326 | Changed space layout in memory management by splitting up |
| 2327 | code space into old data space and code space. |
| 2328 | |
| 2329 | Added utf-8 conversion support to the API (issue 57). |
| 2330 | |
| 2331 | Optimized repeated calls to eval with the same strings. These |
| 2332 | repeated calls are common in web applications. |
| 2333 | |
| 2334 | Added Xcode project file. |
| 2335 | |
| 2336 | Optimized a couple of Array operation. |
| 2337 | |
| 2338 | Fixed parser bug by checking for end-of-string when parsing break |
| 2339 | and continue (issue 35). |
| 2340 | |
| 2341 | Fixed problem where asian characters were not categorized as |
| 2342 | letters. |
| 2343 | |
| 2344 | Fixed bug that disallowed calling functions fetched from an array |
| 2345 | using a string as an array index (issue 32). |
| 2346 | |
| 2347 | Fixed bug where the internal field count on object templates were |
| 2348 | sometimes ignored (issue 54). |
| 2349 | |
| 2350 | Added -f option to the shell sample for compatibility with other |
| 2351 | engines (issue 18). |
| 2352 | |
| 2353 | Added source info to TryCatches in the API. |
| 2354 | |
| 2355 | Fixed problem where the seed for the random number generator was |
| 2356 | clipped in a double to unsigned int conversion. |
| 2357 | |
| 2358 | Fixed bug where cons string symbols were sometimes converted to |
| 2359 | non-symbol flat strings during GC. |
| 2360 | |
| 2361 | Fixed bug in error reporting when attempting to convert null to an |
| 2362 | object. |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2363 | |
| 2364 | |
ager@chromium.org | c27e4e7 | 2008-09-04 13:52:27 +0000 | [diff] [blame] | 2365 | 2008-09-04: Version 0.3.0 |
| 2366 | |
| 2367 | Added support for running tests on the ARM simulator. |
| 2368 | |
| 2369 | Fixed bug in the 'in' operator where negative indices were not |
| 2370 | treated correctly. |
| 2371 | |
| 2372 | Fixed build issues on gcc-4.3.1. |
| 2373 | |
| 2374 | Changed Date.prototype.toLocaleTimeString to not print the |
| 2375 | timezone part of the time. |
| 2376 | |
| 2377 | Renamed debug.h to v8-debug.h to reduce the risk of name conflicts |
| 2378 | with user code. |
| 2379 | |
| 2380 | |
v8.team.kasperl | 727e995 | 2008-09-02 14:56:44 +0000 | [diff] [blame] | 2381 | 2008-09-02: Version 0.2.5 |
| 2382 | |
| 2383 | Renamed the top level directory 'public' to 'include'. |
| 2384 | |
| 2385 | Added 'env' option to the SCons build scripts to support |
| 2386 | overriding the ENV part of the build environment. This is mostly |
| 2387 | to support Windows builds in cases where SCons cannot find the |
| 2388 | correct paths to the Windows SDK, as these paths cannot be passed |
| 2389 | through shell environment variables. |
| 2390 | |
| 2391 | Enabled "Buffer Security Check" on for the Windows SCons build and |
| 2392 | added the linker option /OPT:ICF as an optimization. |
| 2393 | |
| 2394 | Added the V8 benchmark suite to the repository. |
| 2395 | |
| 2396 | |
mads.s.ager@gmail.com | 9a4089a | 2008-09-01 08:55:01 +0000 | [diff] [blame] | 2397 | 2008-09-01: Version 0.2.4 |
| 2398 | |
| 2399 | Included mjsunit JavaScript test suite and C++ unit tests. |
| 2400 | |
| 2401 | Changed the shell sample to not print the result of executing a |
| 2402 | script provided on the command line. |
| 2403 | |
| 2404 | Fixed issue when building samples on Windows using a shared V8 |
| 2405 | library. Added visibility option on Linux build which makes the |
| 2406 | generated library 18% smaller. |
| 2407 | |
| 2408 | Changed build system to accept multiple build modes in one build |
| 2409 | and generate separate objects, libraries and executables for each |
| 2410 | mode. |
| 2411 | |
| 2412 | Removed deferred negation optimization (a * -b => -(a * b)) since |
| 2413 | this visibly changes operand conversion order. |
| 2414 | |
| 2415 | Improved parsing performance by introducing stack guard in |
| 2416 | preparsing. Without a stack guard preparsing always bails out |
| 2417 | with stack overflow. |
| 2418 | |
| 2419 | Changed shell sample to take flags directly from the command-line. |
| 2420 | Added API call that implements this. |
| 2421 | |
| 2422 | Added load, quit and version functions to the shell sample so it's |
| 2423 | easier to run benchmarks and tests. |
| 2424 | |
| 2425 | Fixed issue with building samples and cctests on 64-bit machines. |
| 2426 | |
| 2427 | Fixed bug in the runtime system where the prototype chain was not |
| 2428 | always searched for a setter when setting a property that does not |
| 2429 | exist locally. |
ager@chromium.org | 3291210 | 2009-01-16 10:38:43 +0000 | [diff] [blame] | 2430 | |
mads.s.ager@gmail.com | 9a4089a | 2008-09-01 08:55:01 +0000 | [diff] [blame] | 2431 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2432 | 2008-08-14: Version 0.2.3 |
| 2433 | |
| 2434 | Improved performance of garbage collection by moving the |
| 2435 | function that updates pointers during compacting collection |
| 2436 | into the updating visitor. This gives the compiler a better |
| 2437 | chance to inline and avoid a function call per (potential) |
| 2438 | pointer. |
| 2439 | |
| 2440 | Extended the shell sample with a --runtime-flags option. |
| 2441 | |
| 2442 | Added Visual Studio project files for the shell.cc and |
| 2443 | process.cc samples. |
| 2444 | |
| 2445 | |
| 2446 | 2008-08-13: Version 0.2.2 |
mads.s.ager | 31e7138 | 2008-08-13 09:32:07 +0000 | [diff] [blame] | 2447 | |
| 2448 | Improved performance of garbage collection by changing the way |
| 2449 | we use the marking stack in the event of stack overflow during |
| 2450 | full garbage collection and by changing the way we mark roots. |
| 2451 | |
| 2452 | Cleaned up ARM version by removing top of stack caching and by |
| 2453 | introducing push/pop elimination. |
| 2454 | |
| 2455 | Cleaned up the way runtime functions are called to allow |
| 2456 | runtime calls with no arguments. |
| 2457 | |
| 2458 | Changed Windows build options to make sure that exceptions are |
| 2459 | disabled and that optimization flags are enabled. |
| 2460 | |
| 2461 | Added first version of Visual Studio project files. |
| 2462 | |
| 2463 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2464 | 2008-08-06: Version 0.2.1 |
mads.s.ager@gmail.com | 769cc96 | 2008-08-06 10:02:49 +0000 | [diff] [blame] | 2465 | |
| 2466 | Improved performance of unary addition by avoiding runtime calls. |
| 2467 | |
| 2468 | Fixed the handling of '>' and '<=' to use right-to-left conversion |
| 2469 | and left-to-right evaluation as specified by ECMA-262. |
| 2470 | |
| 2471 | Fixed a branch elimination bug on the ARM platform where incorrect |
| 2472 | code was generated because of overly aggressive branch |
| 2473 | elimination. |
| 2474 | |
| 2475 | Improved performance of code that repeatedly assigns the same |
| 2476 | function to the same property of different objects with the same |
| 2477 | map. |
| 2478 | |
| 2479 | Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler |
| 2480 | no longer expects DEBUG to be defined. |
| 2481 | |
| 2482 | Added platform-nullos.cc to serve as the basis for new platform |
| 2483 | implementations. |
| 2484 | |
mads.s.ager | 31e7138 | 2008-08-13 09:32:07 +0000 | [diff] [blame] | 2485 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2486 | 2008-07-30: Version 0.2.0 |
kasper.lund | 7276f14 | 2008-07-30 08:49:36 +0000 | [diff] [blame] | 2487 | |
| 2488 | Changed all text files to have native svn:eol-style. |
| 2489 | |
| 2490 | Added a few samples and support for building them. The samples |
| 2491 | include a simple shell that can be used to benchmark and test V8. |
| 2492 | |
| 2493 | Changed V8::GetVersion to return the version as a string. |
| 2494 | |
| 2495 | Added source for lazily loaded scripts to snapshots and made |
| 2496 | serialization non-destructive. |
| 2497 | |
| 2498 | Improved ARM support by fixing the write barrier code to use |
| 2499 | aligned loads and stores and by removing premature locals |
| 2500 | optimization that relied on broken support for callee-saved |
| 2501 | registers (removed). |
| 2502 | |
| 2503 | Refactored the code for marking live objects during garbage |
| 2504 | collection and the code for allocating objects in paged |
| 2505 | spaces. Introduced an abstraction for the map word of a heap- |
| 2506 | allocated object and changed the memory allocator to allocate |
| 2507 | executable memory only for spaces that may contain code objects. |
| 2508 | |
| 2509 | Moved StringBuilder to utils.h and ScopedLock to platform.h, where |
| 2510 | they can be used by debugging and logging modules. Added |
| 2511 | thread-safe message queues for dealing with debugger events. |
| 2512 | |
| 2513 | Fixed the source code reported by toString for certain builtin |
| 2514 | empty functions and made sure that the prototype property of a |
| 2515 | function is enumerable. |
| 2516 | |
| 2517 | Improved performance of converting values to condition flags in |
| 2518 | generated code. |
| 2519 | |
| 2520 | Merged disassembler-{arch} files. |
| 2521 | |
| 2522 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2523 | 2008-07-28: Version 0.1.4 |
kasper.lund | af4734f | 2008-07-28 12:50:18 +0000 | [diff] [blame] | 2524 | |
| 2525 | Added support for storing JavaScript stack traces in a stack |
| 2526 | allocated buffer to make it visible in shallow core dumps. |
| 2527 | Controlled by the --preallocate-message-memory flag which is |
| 2528 | disabled by default. |
| 2529 | |
| 2530 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2531 | 2008-07-25: Version 0.1.3 |
kasper.lund | 4451067 | 2008-07-25 07:37:58 +0000 | [diff] [blame] | 2532 | |
| 2533 | Fixed bug in JSObject::GetPropertyAttributePostInterceptor where |
| 2534 | map transitions would count as properties. |
| 2535 | |
| 2536 | Allowed aliased eval invocations by treating them as evals in the |
| 2537 | global context. This may change in the future. |
| 2538 | |
| 2539 | Added support for accessing the last entered context through the |
| 2540 | API and renamed Context::Current to Context::GetCurrent and |
| 2541 | Context::GetSecurityContext to Context::GetCurrentSecurityContext. |
| 2542 | |
| 2543 | Fixed bug in the debugger that would cause the debugger scripts to |
| 2544 | be recursively loaded and changed all disabling of interrupts to |
| 2545 | be block-structured. |
| 2546 | |
| 2547 | Made snapshot data read-only to allow it to be more easily shared |
| 2548 | across multiple users of V8 when linked as a shared library. |
| 2549 | |
| 2550 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2551 | 2008-07-16: Version 0.1.2 |
kasper.lund | 212ac23 | 2008-07-16 07:07:30 +0000 | [diff] [blame] | 2552 | |
| 2553 | Fixed building on Mac OS X by recognizing i386 and friends as |
| 2554 | IA-32 platforms. |
| 2555 | |
| 2556 | Added propagation of stack overflow exceptions that occur while |
| 2557 | compiling nested functions. |
| 2558 | |
| 2559 | Improved debugger with support for recursive break points and |
| 2560 | handling of exceptions that occur in the debugger JavaScript code. |
| 2561 | |
| 2562 | Renamed GetInternal to GetInternalField and SetInternal to |
| 2563 | SetInternalField in the API and moved InternalFieldCount and |
| 2564 | SetInternalFieldCount from FunctionTemplate to ObjectTemplate. |
| 2565 | |
| 2566 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2567 | 2008-07-09: Version 0.1.1 |
kasper.lund | bd3ec4e | 2008-07-09 11:06:54 +0000 | [diff] [blame] | 2568 | |
| 2569 | Fixed bug in stack overflow check code for IA-32 targets where a |
| 2570 | non-tagged value in register eax was pushed to the stack. |
| 2571 | |
| 2572 | Fixed potential quadratic behavior when converting strings to |
| 2573 | numbers. |
| 2574 | |
| 2575 | Fixed bug where the return value from Object::SetProperty could |
| 2576 | end up being the property holder instead of the written value. |
| 2577 | |
| 2578 | Improved debugger support by allowing nested break points and by |
| 2579 | dealing with stack-overflows when compiling functions before |
| 2580 | setting break points in them. |
| 2581 | |
| 2582 | |
mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 2583 | 2008-07-03: Version 0.1.0 |
christian.plesner.hansen | 43d26ec | 2008-07-03 15:10:15 +0000 | [diff] [blame] | 2584 | |
kasper.lund | bd3ec4e | 2008-07-09 11:06:54 +0000 | [diff] [blame] | 2585 | Initial export. |
christian.plesner.hansen | 43d26ec | 2008-07-03 15:10:15 +0000 | [diff] [blame] | 2586 | |