blob: 41083e2da3f76d41204f3294d63e358b01f06617 [file] [log] [blame]
Ben Murdoch086aeea2011-05-13 15:57:08 +010012010-01-10: Version 3.0.7
2
3 Stopped calling inherited setters when creating object literals
4 (issue 1015).
5
6 Changed interpretation of malformed \c? escapes in RegExp to match
7 JSC.
8
9 Enhanced the command-line debugger interface and fixed some minor
10 bugs in the debugger.
11
12 Performance improvements on the IA32 platform.
13
14
Steve Block9fac8402011-05-12 15:51:54 +0100152010-01-05: Version 3.0.6
16
Ben Murdoch086aeea2011-05-13 15:57:08 +010017 Allowed getters and setters on JSArray elements (issue 900).
Steve Block9fac8402011-05-12 15:51:54 +010018
19 Stopped JSON objects from hitting inherited setters (part of
Ben Murdoch086aeea2011-05-13 15:57:08 +010020 issue 1015).
Steve Block9fac8402011-05-12 15:51:54 +010021
22 Allowed numbers and strings as names of getters/setters in object
Ben Murdoch086aeea2011-05-13 15:57:08 +010023 initializer (issue 820).
Steve Block9fac8402011-05-12 15:51:54 +010024
25 Added use_system_v8 option to gyp (off by default), to make it easier
26 for Linux distributions to ship with system-provided V8 library.
27
Ben Murdoch086aeea2011-05-13 15:57:08 +010028 Exported external array data accessors (issue 1016).
Steve Block9fac8402011-05-12 15:51:54 +010029
30 Added labelled thread names to help with debugging (on Linux).
31
32
332011-01-03: Version 3.0.5
34
35 Fixed a couple of cast errors for gcc-3.4.3.
36
37 Performance improvements in GC and IA32 code generator.
38
39
Ben Murdochb0fe1622011-05-05 13:52:32 +0100402010-12-21: Version 3.0.4
41
42 Added Date::ResetCache() to the API so that the cached values in the
43 Date object can be reset to allow live DST / timezone changes.
44
45 Extended existing support for printing (while debugging) the contents
46 of objects. Added support for printing objects from release builds.
47
48 Fixed V8 issues 989, 1006, and 1007.
49
50
512010-12-17: Version 3.0.3
52
53 Reapplied all changes for version 3.0.1.
54
55 Improved debugger protocol for remote debugging.
56
57 Added experimental support for using gyp to generate build files
58 for V8.
59
60 Fixed implementation of String::Write in the API (issue 975).
61
62
632010-12-15: Version 3.0.2
64
65 Revert version 3.0.1 and patch 3.0.1.1.
66
67
682010-12-13: Version 3.0.1
69
70 Added support for an experimental internationalization API as an
71 extension. This extension is disabled by default but can be enabled
72 when building V8. The ECMAScript internationalization strawman is
73 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
74
75 Made RegExp character class parsing stricter. This mirrors a change
76 to RegExp parsing in WebKit.
77
78 Fixed a bug in Object.defineProperty when used to change attributes
79 of an existing property. It incorrectly set the property value to
80 undefined (issue 965).
81
82 Fixed several different compilation failures on various platforms
83 caused by the 3.0.0 release.
84
85 Optimized Math.pow so it can work on unboxed doubles.
86
87 Sped up quoting of JSON strings by removing one traversal of the
88 string.
89
90
912010-12-07: Version 3.0.0
92
93 Improved performance by (partially) addressing issue 957 on
94 IA-32. Still needs more work for the other architectures.
95
96
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800972010-11-29: Version 2.5.9
98
99 Fixed crashes during GC caused by partially initialize heap
100 objects.
101
102 Fixed bug in process sample that caused memory leaks.
103
104 Improved performance on ARM by implementing missing stubs and
105 inlining.
106
107 Improved heap profiler support.
108
109 Added separate seeding on Windows of the random number generator
110 used internally by the compiler (issue 936).
111
112 Exposed API for getting the name of the function used to construct
113 an object.
114
115 Fixed date parser to handle one and two digit millisecond
116 values (issue 944).
117
118 Fixed number parsing to disallow space between sign and
119 digits (issue 946).
120
121
1222010-11-23: Version 2.5.8
123
124 Removed dependency on Gay's dtoa.
125
126 Improved heap profiler precision and speed.
127
128 Reduced overhead of callback invocations on ARM.
129
130
1312010-11-18: Version 2.5.7
132
133 Fixed obscure evaluation order bug (issue 931).
134
135 Split the random number state between JavaScript and the private API.
136
137 Fixed performance bug causing GCs when generating stack traces on
138 code from very large scripts.
139
140 Fixed bug in parser that allowed (foo):42 as a labelled statement
141 (issue 918).
142
143 Provide more accurate results about used heap size via
144 GetHeapStatistics.
145
146 Allow build-time customization of the max semispace size.
147
148 Made String.prototype.split honor limit when separator is empty
149 (issue 929).
150
151 Added missing failure check after expecting an identifier in
152 preparser (Chromium issue 62639).
153
154
Russell Brenner90bac252010-11-18 13:33:46 -08001552010-11-10: Version 2.5.6
156
157 Added support for VFP rounding modes to the ARM simulator.
158
159 Fixed multiplication overflow bug (issue 927).
160
161 Added a limit for the amount of executable memory (issue 925).
162
163
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001642010-11-08: Version 2.5.5
165
166 Added more aggressive GC of external objects in near out-of-memory
167 situations.
168
169 Fixed a bug that gave the incorrect result for String.split called
170 on the empty string (issue 924).
171
172
1732010-11-03: Version 2.5.4
174
175 Improved V8 VFPv3 runtime detection to address issue 914.
176
177
1782010-11-01: Version 2.5.3
179
180 Fixed a bug that prevents constants from overwriting function values
181 in object literals (issue 907).
182
183 Fixed a bug with reporting of impossible nested calls of DOM functions
184 (issue http://crbug.com/60753).
185
186
John Reck59135872010-11-02 12:39:01 -07001872010-10-27: Version 2.5.2
188
189 Improved sampler resolution on Linux.
190
191 Allowed forcing the use of a simulator from the build script
192 independently of the host architecture.
193
Ben Murdoch086aeea2011-05-13 15:57:08 +0100194 Fixed FreeBSD port (issue 912).
John Reck59135872010-11-02 12:39:01 -0700195
196 Made windows-tick-processor respect D8_PATH.
197
198 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
199
200
Ben Murdochf87a2032010-10-22 12:50:53 +01002012010-10-20: Version 2.5.1
202
203 Fixed bug causing spurious out of memory exceptions
204 (issue http://crbug.com/54580).
205
206 Fixed compilation error on Solaris platform (issue 901).
207
208 Fixed error in strtod (string to floating point number conversion)
209 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
210
211 Adjusted randomized allocations of executable memory to have 64k
212 granularity (issue http://crbug.com/56036).
213
214 Supported profiling using kernel perf_events on linux. Added ll_prof
215 script to tools and --ll-prof flag to V8.
216
217
2182010-10-18: Version 2.5.0
219
220 Fixed bug in cache handling of lastIndex on global regexps
221 (issue http://crbug.com/58740).
222
223 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
224 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
Ben Murdochb0fe1622011-05-05 13:52:32 +0100225 from Hewlett-Packard Development Company, LP).
Ben Murdochf87a2032010-10-22 12:50:53 +0100226
227 Fixed compilation error on ARM with gcc 4.4 (issue 894).
228
229
2302010-10-13: Version 2.4.9
231
232 Fixed a bug in the handling of conditional expressions in test
233 contexts in compiler for top-level code.
234
235 Added "//@ sourceURL" information to the StackTrace API.
236
237 Exposed RegExp construction through the API.
238
239
2402010-10-04: Version 2.4.8
241
242 Fixed a bug in ResumeProfilerEx causing it to not always write out the
243 whole snapshot (issue 868).
244
245 Performance improvements on all platforms.
246
247
2482010-09-30: Version 2.4.7
249
250 Changed the command-line flag --max-new-space-size to be in kB and the
251 flag --max-old-space-size to be in MB (previously they were in bytes).
252
253 Added Debug::CancelDebugBreak to the debugger API.
254
255 Fixed a bug in getters for negative numeric property names
256 (https://bugs.webkit.org/show_bug.cgi?id=46689).
257
258 Performance improvements on all platforms.
259
260
Kristian Monsen0d5e1162010-09-30 15:31:59 +01002612010-09-27: Version 2.4.6
Ben Murdochf87a2032010-10-22 12:50:53 +0100262
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100263 Fixed assertion failure related to copy-on-write arrays (issue 876).
264
265 Fixed build failure of 64-bit V8 on Windows.
266
267 Fixed a bug in RegExp (issue http://crbug.com/52801).
268
269 Improved the profiler's coverage to cover more functions (issue 858).
270
271 Fixed error in shift operators on 64-bit V8
272 (issue http://crbug.com/54521).
273
274
2752010-09-22: Version 2.4.5
Ben Murdochf87a2032010-10-22 12:50:53 +0100276
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100277 Changed the RegExp benchmark to exercise the regexp engine on different
278 inputs by scrambling the input strings.
279
280 Fixed a bug in keyed loads on strings.
281
282 Fixed a bug with loading global function prototypes.
283
284 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
285
286 Performance improvements on all platforms.
287
288
2892010-09-15: Version 2.4.4
290
291 Fixed bug with hangs on very large sparse arrays.
292
293 Now tries harder to free up memory when running out of space.
294
295 Added heap snapshots to JSON format to API.
296
297 Recalibrated benchmarks.
298
299
Steve Block59151502010-09-22 15:07:15 +01003002010-09-13: Version 2.4.3
301
302 Made Date.parse properly handle TZ offsets (issue 857).
303
304 Performance improvements on all platforms.
305
306
Iain Merrick9ac36c92010-09-13 15:29:50 +01003072010-09-08: Version 2.4.2
308
309 Fixed GC crash bug.
310
311 Fixed stack corruption bug.
312
313 Fixed compilation for newer C++ compilers that found Operand(0)
314 ambiguous.
315
316
3172010-09-06: Version 2.4.1
318
319 Added the ability for an embedding application to receive a callback
320 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
321 (V8::RemoveMemoryAllocationCallback) from the OS.
322
323 Fixed several JSON bugs (including issue 855).
324
325 Fixed memory overrun crash bug triggered during V8's tick-based
326 profiling.
327
328 Performance improvements on all platforms.
329
330
Kristian Monsen80d68ea2010-09-08 11:05:35 +01003312010-09-01: Version 2.4.0
332
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100333 Fixed bug in Object.freeze and Object.seal when Array.prototype or
334 Object.prototype are changed (issue 842).
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100335
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100336 Updated Array.splice to follow Safari and Firefox when called
Iain Merrick9ac36c92010-09-13 15:29:50 +0100337 with zero arguments.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100338
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100339 Fixed a missing live register when breaking at keyed loads on ARM.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100340
Iain Merrick9ac36c92010-09-13 15:29:50 +0100341 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100342
343
3442010-08-25: Version 2.3.11
345
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100346 Fixed bug in RegExp related to copy-on-write arrays.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100347
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100348 Refactored tools/test.py script, including the introduction of
Iain Merrick9ac36c92010-09-13 15:29:50 +0100349 VARIANT_FLAGS that allows specification of sets of flags with which
350 all tests should be run.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100351
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100352 Fixed a bug in the handling of debug breaks in CallIC.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100353
Iain Merrick9ac36c92010-09-13 15:29:50 +0100354 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100355
356
Steve Block791712a2010-08-27 10:21:07 +01003572010-08-23: Version 2.3.10
358
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100359 Fixed bug in bitops on ARM.
Steve Block791712a2010-08-27 10:21:07 +0100360
361 Build fixes for unusual compilers.
362
363 Track high water mark for RWX memory.
364
365 Performance improvements on all platforms.
366
367
Iain Merrick75681382010-08-19 15:07:18 +01003682010-08-18: Version 2.3.9
369
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100370 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
Iain Merrick75681382010-08-19 15:07:18 +0100371
372 Removed specialized handling of GCC 4.4 (issue 830).
373
Iain Merrick9ac36c92010-09-13 15:29:50 +0100374 Fixed DST cache to take into account the suspension of DST in
Iain Merrick75681382010-08-19 15:07:18 +0100375 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
376
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100377 Performance improvements on all platforms.
Iain Merrick75681382010-08-19 15:07:18 +0100378
379
3802010-08-16: Version 2.3.8
381
382 Fixed build with strict aliasing on GCC 4.4 (issue 463).
383
384 Fixed issue with incorrect handling of custom valueOf methods on
385 string wrappers (issue 760).
386
387 Fixed compilation for ARMv4 (issue 590).
388
389 Improved performance.
390
391
3922010-08-11: Version 2.3.7
393
394 Reduced size of heap snapshots produced by heap profiler (issue 783).
395
396 Introduced v8::Value::IsRegExp method.
397
398 Fixed CPU profiler crash in start / stop sequence when non-existent
399 name is passed (issue http://crbug.com/51594).
400
401 Introduced new indexed property query callbacks API (issue 816). This
402 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
403 by default.
404
405 Removed support for object literal get/set with number/string
406 property name.
407
408 Fixed handling of JSObject::elements in CalculateNetworkSize
409 (issue 822).
410
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100411 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
Iain Merrick75681382010-08-19 15:07:18 +0100412
413
Ben Murdochbb769b22010-08-11 14:56:33 +01004142010-08-09: Version 2.3.6
415
Iain Merrick75681382010-08-19 15:07:18 +0100416 RegExp literals create a new object every time they are evaluated
417 (issue 704).
Ben Murdochbb769b22010-08-11 14:56:33 +0100418
Iain Merrick75681382010-08-19 15:07:18 +0100419 Object.seal and Object.freeze return the modified object (issue 809).
Ben Murdochbb769b22010-08-11 14:56:33 +0100420
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100421 Fixed building using GCC 4.4.4.
Ben Murdochbb769b22010-08-11 14:56:33 +0100422
423
4242010-08-04: Version 2.3.5
425
426 Added support for ES5 property names. Object initialisers and
427 dot-notation property access now allows keywords. Also allowed
428 non-identifiers after "get" or "set" in an object initialiser.
429
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100430 Randomized the addresses of allocated executable memory on Windows.
Ben Murdochbb769b22010-08-11 14:56:33 +0100431
432
4332010-08-02: Version 2.3.4
434
435 Fixed problems in implementation of ES5 function.prototype.bind.
436
437 Fixed error when using apply with arguments object on ARM (issue 784).
438
439 Added setting of global flags to debugger protocol.
440
441 Fixed an error affecting cached results of sin and cos (issue 792).
442
443 Removed memory leak from a boundary case where V8 is not initialized.
444
445 Fixed issue where debugger could set breakpoints outside the body
446 of a function.
447
448 Fixed issue in debugger when using both live edit and step in features.
449
450 Added Number-letter (Nl) category to Unicode tables. These characters
451 can now be used in identifiers.
452
453 Fixed an assert failure on X64 (issue 806).
454
455 Performance improvements on all platforms.
456
457
Kristian Monsen50ef84f2010-07-29 15:18:00 +01004582010-07-26: Version 2.3.3
459
460 Fixed error when building the d8 shell in a fresh checkout.
461
462 Implemented Function.prototype.bind (ES5 15.3.4.5).
463
464 Fixed an error in inlined stores on ia32.
465
466 Fixed an error when setting a breakpoint at the end of a function
467 that does not end with a newline character.
468
469 Performance improvements on all platforms.
470
471
4722010-07-21: Version 2.3.2
473
474 Fixed compiler warnings when building with LLVM.
475
476 Fixed a bug with for-in applied to strings (issue 785).
477
478 Performance improvements on all platforms.
479
480
Ben Murdoch3bec4d22010-07-22 14:51:16 +01004812010-07-19: Version 2.3.1
482
483 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
484
485 Fixed bug related to code flushing while compiling a lazy
486 compilable function (issue http://crbug.com/49099).
487
488 Performance improvements on all platforms.
489
490
4912010-07-15: Version 2.3.0
492
493 Added ES5 Object.seal and Object.isSealed.
494
495 Added debugger API for scheduling debugger commands from a
496 separate thread.
497
498
4992010-07-14: Version 2.2.24
500
501 Added API for capturing stack traces for uncaught exceptions.
502
503 Fixed crash bug when preparsing from a non-external V8 string
504 (issue 775).
505
506 Fixed JSON.parse bug causing input not to be converted to string
507 (issue 764).
508
509 Added ES5 Object.freeze and Object.isFrozen.
510
511 Performance improvements on all platforms.
512
513
Leon Clarkeac952652010-07-15 11:15:24 +01005142010-07-07: Version 2.2.23
515
516 API change: Convert Unicode code points outside the basic multilingual
517 plane to the replacement character. Previous behavior was to silently
518 truncate the value to 16 bits.
519
520 Fixed crash: handle all flat string types in regexp replace.
521
522 Prevent invalid pre-parsing data passed in through the API from
523 crashing V8.
524
525 Performance improvements on all platforms.
526
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100527
Steve Block8defd9f2010-07-08 12:39:36 +01005282010-07-05: Version 2.2.22
529
530 Added ES5 Object.isExtensible and Object.preventExtensions.
531
532 Enabled building V8 as a DLL.
533
534 Fixed a bug in date code where -0 was not interpreted as 0
535 (issue 736).
536
537 Performance improvements on all platforms.
538
539
5402010-06-30: Version 2.2.21
541
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100542 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
Steve Block8defd9f2010-07-08 12:39:36 +0100543
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100544 Updated JSON.stringify to floor the space parameter (issue 753).
Steve Block8defd9f2010-07-08 12:39:36 +0100545
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100546 Updated the Mozilla test expectations to the newest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100547
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100548 Updated the ES5 Conformance Test expectations to the latest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100549
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100550 Updated the V8 benchmark suite.
Steve Block8defd9f2010-07-08 12:39:36 +0100551
552 Provide actual breakpoints locations in response to setBreakpoint
553 and listBreakpoints requests.
554
555
5562010-06-28: Version 2.2.20
557
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100558 Fixed bug with for-in on x64 platform (issue 748).
Steve Block8defd9f2010-07-08 12:39:36 +0100559
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100560 Fixed crash bug on x64 platform (issue 756).
Steve Block8defd9f2010-07-08 12:39:36 +0100561
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100562 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
Steve Block8defd9f2010-07-08 12:39:36 +0100563
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100564 Fixed a bug on ARM that caused the result of 1 << x to be
Steve Block8defd9f2010-07-08 12:39:36 +0100565 miscalculated for some inputs.
566
567 Performance improvements on all platforms.
568
569
Kristian Monsen9dcf7e22010-06-28 14:14:28 +01005702010-06-23: Version 2.2.19
571
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100572 Fixed bug that causes the build to break when profillingsupport=off
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100573 (issue 738).
574
575 Added expose-externalize-string flag for testing extensions.
576
577 Resolve linker issues with using V8 as a DLL causing a number of
578 problems with unresolved symbols.
579
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100580 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100581 defined.
582
583 Performance improvements on all platforms.
584
585
5862010-06-16: Version 2.2.18
587
588 Added API functions to retrieve information on indexed properties
589 managed by the embedding layer. Fixes bug 737.
590
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100591 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100592
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100593 Added heap profiling to the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100594
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100595 Removed old named property query from the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100596
597 Incremental performance improvements.
598
599
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01006002010-06-14: Version 2.2.17
601
602 Improved debugger support for stepping out of functions.
603
604 Incremental performance improvements.
605
606
6072010-06-09: Version 2.2.16
608
Steve Block8defd9f2010-07-08 12:39:36 +0100609 Removed the SetExternalStringDiposeCallback API. Changed the
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100610 disposal of external string resources to call a virtual Dispose
611 method on the resource.
612
Steve Block8defd9f2010-07-08 12:39:36 +0100613 Added support for more precise break points when debugging and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100614 stepping.
615
616 Memory usage improvements on all platforms.
617
618
6192010-06-07: Version 2.2.15
620
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100621 Added an API to control the disposal of external string resources.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100622
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100623 Added missing initialization of a couple of variables which makes
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100624 some compilers complaint when compiling with -Werror.
625
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100626 Improved performance on all platforms.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100627
628
6292010-06-02: Version 2.2.14
630
631 Fixed a crash in code generated for String.charCodeAt.
632
633 Fixed a compilation issue with some GCC versions (issue 727).
634
635 Performance optimizations on x64 and ARM platforms.
636
637
6382010-05-31: Version 2.2.13
639
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100640 Implemented Object.getOwnPropertyDescriptor for element indices and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100641 strings (issue 599).
642
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100643 Fixed bug for windows 64 bit C calls from generated code.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100644
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100645 Added new scons flag unalignedaccesses for arm builds.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100646
647 Performance improvements on all platforms.
648
649
Leon Clarkef7060e22010-06-03 12:02:55 +01006502010-05-26: Version 2.2.12
651
652 Allowed accessors to be defined on objects rather than just object
653 templates.
654
655 Changed the ScriptData API.
656
657
6582010-05-21: Version 2.2.11
659
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100660 Fixed crash bug in liveedit on 64 bit.
Leon Clarkef7060e22010-06-03 12:02:55 +0100661
662 Use 'full compiler' when debugging is active. This should increase
663 the density of possible break points, making single step more fine
664 grained. This will only take effect for functions compiled after
665 debugging has been started, so recompilation of all functions is
666 required to get the full effect. IA32 and x64 only for now.
667
668 Misc. fixes to the Solaris build.
669
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100670 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
Leon Clarkef7060e22010-06-03 12:02:55 +0100671
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100672 Added filtering of CPU profiles by security context.
Leon Clarkef7060e22010-06-03 12:02:55 +0100673
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100674 Fixed crash bug on ARM when running without VFP2 or VFP3.
Leon Clarkef7060e22010-06-03 12:02:55 +0100675
676 Incremental performance improvements in all backends.
677
678
Kristian Monsen25f61362010-05-21 11:50:48 +01006792010-05-17: Version 2.2.10
680
681 Performance improvements in the x64 and ARM backends.
682
683
6842010-05-10: Version 2.2.9
685
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100686 Allowed Object.create to be called with a function (issue 697).
Kristian Monsen25f61362010-05-21 11:50:48 +0100687
688 Fixed bug with Date.parse returning a non-NaN value when called on a
689 non date string (issue 696).
690
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100691 Allowed unaligned memory accesses on ARM targets that support it (by
Leon Clarkef7060e22010-06-03 12:02:55 +0100692 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
Kristian Monsen25f61362010-05-21 11:50:48 +0100693
694 C++ API for retrieving JavaScript stack trace information.
695
696
Steve Block6ded16b2010-05-10 14:33:55 +01006972010-05-05: Version 2.2.8
698
699 Performance improvements in the x64 and ARM backends.
700
701
7022010-05-03: Version 2.2.7
703
704 Added support for ES5 date time string format to Date.parse.
705
706 Performance improvements in the x64 backend.
707
708
7092010-04-28: Version 2.2.6
710
711 Added "amd64" as recognized architecture in scons build script
712 (by Ryan Dahl <coldredlemur@gmail.com>).
713
714 Fixed bug in String search and replace with very simple RegExps.
715
716 Fixed bug in RegExp containing "\b^".
717
718 Performance improvements on all platforms.
719
720
7212010-04-26: Version 2.2.5
722
723 Various performance improvements (especially for ARM and x64)
724
725 Fixed bug in CPU profiling (http://crbug.com/42137)
726
727 Fixed a bug with the natives cache.
728
729 Fixed two bugs in the ARM code generator that can cause
730 wrong calculations.
731
732 Fixed a bug that may cause a wrong result for shift operations.
733
734
7352010-04-21: Version 2.2.4
736
737 Fixed warnings on arm on newer GCC versions.
738
739 Fixed a number of minor bugs.
740
741 Performance improvements on all platforms.
742
743
7442010-04-14: Version 2.2.3
745
746 Added stack command and mem command to ARM simulator debugger.
747
748 Fixed scons snapshot and ARM build, and Windows X64 build issues.
749
750 Performance improvements on all platforms.
751
752
7532010-04-12: Version 2.2.2
754
755 Introduced new profiler API.
756
757 Fixed random number generator to produce full 32 random bits.
758
759
7602010-04-06: Version 2.2.1
761
762 Debugger improvements.
763
764 Fixed minor bugs.
765
766
7672010-03-29: Version 2.2.0
768
769 Fixed a few minor bugs.
770
771 Performance improvements for string operations.
772
773
7742010-03-26: Version 2.1.10
775
776 Fixed scons build issues.
777
778 Fixed a couple of minor bugs.
779
780
7812010-03-25: Version 2.1.9
782
783 Added API support for reattaching a global object to a context.
784
785 Extended debugger API with access to the internal debugger context.
786
787 Fixed Chromium crashes (issues http://crbug.com/39128 and
788 http://crbug.com/39160)
789
790
7912010-03-24: Version 2.1.8
792
793 Added fine-grained garbage collection callbacks to the API.
794
795 Performance improvements on all platforms.
796
797
7982010-03-22: Version 2.1.7
799
800 Fixed issue 650.
801
802 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
803
804 Performance improvements for arithmetic operations.
805
806 Performance improvements for string operations.
807
808 Print script name and line number information in stack trace.
809
810
8112010-03-17: Version 2.1.6
812
813 Performance improvements for arithmetic operations.
814
815 Performance improvements for string operations.
816
817
8182010-03-10: Version 2.1.4
819
820 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
821
822 Performance improvements on all platforms.
823
824
8252010-03-10: Version 2.1.3
826
827 Added API method for context-disposal notifications.
828
829 Added API method for accessing elements by integer index.
830
831 Added missing implementation of Uint32::Value and Value::IsUint32
832 API methods.
833
834 Added IsExecutionTerminating API method.
835
836 Disabled strict aliasing for GCC 4.4.
837
838 Fixed string-concatenation bug (issue 636).
839
840 Performance improvements on all platforms.
841
842
Andrei Popescu402d9372010-02-26 13:31:12 +00008432010-02-23: Version 2.1.2
844
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100845 Fixed a crash bug caused by wrong assert.
Andrei Popescu402d9372010-02-26 13:31:12 +0000846
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100847 Fixed a bug with register names on 64-bit V8 (issue 615).
Andrei Popescu402d9372010-02-26 13:31:12 +0000848
849 Performance improvements on all platforms.
850
Steve Block6ded16b2010-05-10 14:33:55 +0100851
Andrei Popescu402d9372010-02-26 13:31:12 +00008522010-02-19: Version 2.1.1
853
854 [ES5] Implemented Object.defineProperty.
855
856 Improved profiler support.
857
858 Added SetPrototype method in the public V8 API.
859
860 Added GetScriptOrigin and GetScriptLineNumber methods to Function
861 objects in the API.
862
863 Performance improvements on all platforms.
864
865
Leon Clarke4515c472010-02-03 11:58:03 +00008662010-02-03: Version 2.1.0
867
868 Values are now always wrapped in objects when used as a receiver.
869 (issue 223).
870
871 [ES5] Implemented Object.getOwnPropertyNames.
872
873 [ES5] Restrict JSON.parse to only accept strings that conforms to the
874 JSON grammar.
875
876 Improvement of debugger agent (issue 549 and 554).
877
878 Fixed problem with skipped stack frame in profiles (issue 553).
879
880 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
881 <ry@tinyclouds.org>.
882
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100883 Fixed a bug that Math.round() returns incorrect results for huge
Leon Clarke4515c472010-02-03 11:58:03 +0000884 integers.
885
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100886 Fixed enumeration order for objects created from some constructor
Leon Clarke4515c472010-02-03 11:58:03 +0000887 functions (isue http://crbug.com/3867).
888
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100889 Fixed arithmetic on some integer constants (issue 580).
Leon Clarke4515c472010-02-03 11:58:03 +0000890
891 Numerous performance improvements including porting of previous IA-32
892 optimizations to x64 and ARM architectures.
893
894
Leon Clarkee46be812010-01-19 14:06:41 +00008952010-01-14: Version 2.0.6
896
897 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
898 GetOwnProperty, FromPropertyDescriptor.
899
900 Fixed Mac x64 build errors.
901
902 Improved performance of some math and string operations.
903
904 Improved performance of some regexp operations.
905
906 Improved performance of context creation.
907
908 Improved performance of hash tables.
909
910
9112009-12-18: Version 2.0.5
912
913 Extended to upper limit of map space to allow for 7 times as many map
914 to be allocated (issue 524).
915
916 Improved performance of code using closures.
917
918 Improved performance of some binary operations involving doubles.
919
920
9212009-12-16: Version 2.0.4
922
923 Added ECMAScript 5 Object.create.
924
925 Improved performance of Math.max and Math.min.
926
927 Optimized adding of strings on 64-bit platforms.
928
929 Improved handling of external strings by using a separate table
930 instead of weak handles. This improves garbage collection
931 performance and uses less memory.
932
933 Changed code generation for object and array literals in toplevel
934 code to be more compact by doing more work in the runtime.
935
936 Fixed a crash bug triggered when garbage collection happened during
937 generation of a callback load inline cache stub.
938
939 Fixed crash bug sometimes triggered when local variables shadowed
940 parameters in functions that used the arguments object.
941
942
Steve Blockd0582a62009-12-15 09:54:21 +00009432009-12-03: Version 2.0.3
944
945 Optimized handling and adding of strings, for-in and Array.join.
946
947 Heap serialization is now non-destructive.
948
949 Improved profiler support with information on time spend in C++
950 callbacks registered through the API.
951
952 Added commands to the debugger protocol for starting/stopping
953 profiling.
954
955 Enabled the non-optimizing compiler for top-level code.
956
957 Changed the API to only allow strings to be set as data objects on
958 Contexts and scripts to avoid potentially keeping global objects
959 around for too long (issue 528).
960
961 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
962
963 Fixed bugs.
964
965
9662009-11-24: Version 2.0.2
967
968 Improved profiler support.
969
970 Fixed bug that broke compilation of d8 with readline support.
971
972
9732009-11-20: Version 2.0.1
974
975 Fixed crash bug in String.prototype.replace.
976
977 Reverted a change which caused Chromium interactive ui test
978 failures.
979
Leon Clarkee46be812010-01-19 14:06:41 +0000980
Steve Blockd0582a62009-12-15 09:54:21 +00009812009-11-18: Version 2.0.0
982
983 Added support for VFP on ARM.
984
985 Added TryCatch::ReThrow method to the API.
986
987 Reduced the size of snapshots and improved the snapshot load time.
988
989 Improved heap profiler support.
990
991 64-bit version now supported on Windows.
992
993 Fixed a number of debugger issues.
994
995 Fixed bugs.
996
997
9982009-10-29: Version 1.3.18
999
1000 Reverted a change which caused crashes in RegExp replace.
1001
1002 Reverted a change which caused Chromium ui_tests failure.
1003
1004
10052009-10-28: Version 1.3.17
1006
1007 Added API method to get simple heap statistics.
1008
1009 Improved heap profiler support.
1010
1011 Fixed the implementation of the resource constraint API so it
1012 works when using snapshots.
1013
1014 Fixed a number of issues in the Windows 64-bit version.
1015
1016 Optimized calls to API getters.
1017
1018 Added valgrind notification on code modification to the 64-bit version.
1019
1020 Fixed issue where we logged shared library addresses on Windows at
1021 startup and never used them.
1022
1023
Steve Block3ce2e202009-11-05 08:53:23 +000010242009-10-16: Version 1.3.16
Leon Clarkee46be812010-01-19 14:06:41 +00001025
Steve Block3ce2e202009-11-05 08:53:23 +00001026 X64: Convert smis to holding 32 bits of payload.
1027
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001028 Introduced v8::Integer::NewFromUnsigned method.
Steve Block3ce2e202009-11-05 08:53:23 +00001029
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001030 Added missing null check in Context::GetCurrent.
Steve Block3ce2e202009-11-05 08:53:23 +00001031
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001032 Added trim, trimLeft and trimRight methods to String
Steve Block3ce2e202009-11-05 08:53:23 +00001033 Patch by Jan de Mooij <jandemooij@gmail.com>
1034
1035 Implement ES5 Array.isArray
1036 Patch by Jan de Mooij <jandemooij@gmail.com>
1037
1038 Skip access checks for hidden properties.
1039
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001040 Added String::Concat(Handle<String> left, Handle<String> right) to the
1041 V8 API.
Steve Block3ce2e202009-11-05 08:53:23 +00001042
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001043 Fixed GYP-based builds of V8.
Steve Block3ce2e202009-11-05 08:53:23 +00001044
1045
10462009-10-07: Version 1.3.15
1047
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001048 Expanded the maximum size of the code space to 512MB for 64-bit mode.
Steve Block3ce2e202009-11-05 08:53:23 +00001049
1050 Fixed a crash bug happening when starting profiling (issue
1051 http://crbug.com/23768).
1052
1053
10542009-10-07: Version 1.3.14
1055
1056 Added GetRealNamedProperty to the API to lookup real properties
1057 located on the object or in the prototype chain skipping any
1058 interceptors.
1059
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001060 Fixed the stack limits setting API to work correctly with threads. The
Steve Block3ce2e202009-11-05 08:53:23 +00001061 stack limit now needs to be set to each thread thich is used with V8.
1062
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001063 Removed the high-priority flag from IdleNotification()
Steve Block3ce2e202009-11-05 08:53:23 +00001064
1065 Ensure V8 is initialized before locking and unlocking threads.
1066
1067 Implemented a new JavaScript minifier for compressing the source of
Steve Blockd0582a62009-12-15 09:54:21 +00001068 the built-in JavaScript. This removes non-Open Source code from Douglas
Steve Block3ce2e202009-11-05 08:53:23 +00001069 Crockford from the project.
1070
1071 Added a missing optimization in StringCharAt.
1072
1073 Fixed some flaky socket tests.
1074
1075 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
1076 in 64-bit mode.
1077
1078 Fixed memory leaks in the thread management code.
1079
1080 Fixed the result of assignment to a pixel array. The assigned value
1081 is now the result.
1082
1083 Error reporting for invalid left-hand sides in for-in statements, pre-
1084 and postfix count expressions, and assignments now matches the JSC
1085 behavior in Safari 4.
1086
1087 Follow the spec in disallowing function declarations without a name.
1088
1089 Always allocate code objects within a 2 GB range. On x64 architecture
1090 this is used to use near calls (32-bit displacement) in Code objects.
1091
1092 Optimized array construction ported to x64 and ARM architectures.
1093
1094 [ES5] Changed Object.keys to return strings for element indices.
1095
1096
Steve Blocka7e24c12009-10-30 11:49:00 +000010972009-09-23: Version 1.3.13
1098
1099 Fixed uninitialized memory problem.
1100
1101 Improved heap profiler support.
1102
1103
11042009-09-22: Version 1.3.12
1105
1106 Changed behavior of |function|.toString() on built-in functions to
1107 be compatible with other implementations. Patch by Jan de Mooij.
1108
1109 Added Object::IsDirty in the API.
1110
1111 Optimized array construction; it is now handled purely in native
1112 code.
1113
1114 [ES5] Made properties of the arguments array enumerable.
1115
1116 [ES5] Added test suite adapter for the es5conform test suite.
1117
1118 [ES5] Added Object.keys function.
1119
1120
11212009-09-15: Version 1.3.11
1122
1123 Fixed crash in error reporting during bootstrapping.
1124
1125 Optimized generated IA32 math code by using SSE2 instructions when
1126 available.
1127
1128 Implemented missing pieces of debugger infrastructure on ARM. The
1129 debugger is now fully functional on ARM.
1130
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001131 Made 'hidden' the default visibility for gcc.
Steve Blocka7e24c12009-10-30 11:49:00 +00001132
1133
11342009-09-09: Version 1.3.10
1135
1136 Fixed profiler on Mac in 64-bit mode.
1137
1138 Optimized creation of objects from simple constructor functions on
1139 ARM.
1140
1141 Fixed a number of debugger issues.
1142
1143 Reduced the amount of memory consumed by V8.
1144
1145
11462009-09-02: Version 1.3.9
1147
1148 Optimized stack guard checks on ARM.
1149
1150 Optimized API operations by inlining more in the API.
1151
1152 Optimized creation of objects from simple constructor functions.
1153
1154 Enabled a number of missing optimizations in the 64-bit port.
1155
1156 Implemented native-code support for regular expressions on ARM.
1157
1158 Stopped using the 'sahf' instruction on 64-bit machines that do
1159 not support it.
1160
1161 Fixed a bug in the support for forceful termination of JavaScript
1162 execution.
1163
1164
11652009-08-26: Version 1.3.8
1166
1167 Changed the handling of idle notifications to allow idle
1168 notifications when V8 has not yet been initialized.
1169
1170 Fixed ARM simulator compilation problem on Windows.
Leon Clarkee46be812010-01-19 14:06:41 +00001171
Steve Blocka7e24c12009-10-30 11:49:00 +00001172
11732009-08-25: Version 1.3.7
1174
1175 Reduced the size of generated code on ARM platforms by reducing
1176 the size of constant pools.
1177
1178 Changed build files to not include the 'ENV' user environment
1179 variable in the build environment.
1180
1181 Changed the handling of idle notifications.
1182
1183
11842009-08-21: Version 1.3.6
1185
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001186 Added support for forceful termination of JavaScript execution.
Steve Blocka7e24c12009-10-30 11:49:00 +00001187
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001188 Added low memory notification to the API. The embedding host can signal
Steve Blocka7e24c12009-10-30 11:49:00 +00001189 a low memory situation to V8.
1190
1191 Changed the handling of global handles (persistent handles in the API
1192 sense) to avoid issues regarding allocation of new global handles
1193 during weak handle callbacks.
1194
1195 Changed the growth policy of the young space.
1196
1197 Fixed a GC issue introduced in version 1.3.5.
1198
1199
12002009-08-19: Version 1.3.5
1201
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001202 Optimized initialization of some arrays in the builtins.
Steve Blocka7e24c12009-10-30 11:49:00 +00001203
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001204 Fixed mac-nm script to support filenames with spaces.
Steve Blocka7e24c12009-10-30 11:49:00 +00001205
1206 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
1207
1208 Changed typeof RegExp from 'object' to 'function' for compatibility.
1209 Fixed bug where regexps were not callable across contexts.
1210
1211 Added context independent script compilation to the API.
1212
1213 Added API call to get the stack trace for an exception.
1214
1215 Added API for getting object mirrors.
1216
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001217 Made sure that SSE3 instructions are used whenever possible even when
Steve Blocka7e24c12009-10-30 11:49:00 +00001218 running off a snapshot generated without using SSE3 instructions.
1219
1220 Tweaked the handling of the initial size and growth policy of the heap.
1221
1222 Added native code generation for RegExp to 64-bit version.
1223
1224 Added JavaScript debugger support to 64-bit version.
1225
1226
12272009-08-13: Version 1.3.4
1228
1229 Added a readline() command to the d8 shell.
1230
1231 Fixed bug in json parsing.
1232
1233 Added idle notification to the API and reduced memory on idle
1234 notifications.
1235
1236
12372009-08-12: Version 1.3.3
1238
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001239 Fixed issue 417: incorrect %t placeholder expansion.
Steve Blocka7e24c12009-10-30 11:49:00 +00001240
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001241 Added .gitignore file similar to Chromium's one.
Steve Blocka7e24c12009-10-30 11:49:00 +00001242
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001243 Fixed SConstruct file to build with new logging code for Android.
Steve Blocka7e24c12009-10-30 11:49:00 +00001244
1245 API: added function to find instance of template in prototype
1246 chain. Inlined Object::IsInstanceOf.
1247
1248 Land change to notify valgrind when we modify code on x86.
1249
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001250 Added api call to determine whether a string can be externalized.
Steve Blocka7e24c12009-10-30 11:49:00 +00001251
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001252 Added a write() command to d8.
Steve Blocka7e24c12009-10-30 11:49:00 +00001253
1254
12552009-08-05: Version 1.3.2
1256
1257 Started new compiler infrastructure for two-pass compilation using a
1258 control flow graph constructed from the AST.
1259
1260 Profiler stack sampling for X64.
1261
1262 Safe handling of NaN to Posix platform-dependent time functions.
1263
1264 Added a new profiler control API to unify controlling various aspects
1265 of profiling.
1266
1267 Fixed issue 392.
1268
1269
12702009-07-30: Version 1.3.1
1271
1272 Speed improvements to accessors and interceptors.
1273
1274 Added support for capturing stack information on custom errors.
1275
1276 Added support for morphing an object into a pixel array where its
1277 indexed properties are stored in an external byte array. Values written
1278 are always clamped to the 0..255 interval.
1279
1280 Profiler on x64 now handles C/C++ functions from shared libraries.
1281
1282 Changed the debugger to avoid stepping into function.call/apply if the
1283 function is a built-in.
1284
1285 Initial implementation of constructor heap profile for JS objects.
Leon Clarkee46be812010-01-19 14:06:41 +00001286
Steve Blocka7e24c12009-10-30 11:49:00 +00001287 More fine grained control of profiling aspects through the API.
Leon Clarkee46be812010-01-19 14:06:41 +00001288
Steve Blocka7e24c12009-10-30 11:49:00 +00001289 Optimized the called as constructor check for API calls.
1290
1291
12922009-07-27: Version 1.3.0
1293
1294 Allowed RegExp objects to be called as functions (issue 132).
1295
1296 Fixed issue where global property cells would escape after
1297 detaching the global object; see http://crbug.com/16276.
1298
1299 Added support for stepping into setters and getters in the
1300 debugger.
1301
1302 Changed the debugger to avoid stopping in its own JavaScript code
1303 and in the code of built-in functions.
1304
1305 Fixed issue 345 by avoiding duplicate escaping labels.
1306
1307 Fixed ARM code generator crash in short-circuited boolean
1308 expressions and added regression tests.
1309
1310 Added an external allocation limit to avoid issues where small V8
1311 objects would hold on to large amounts of external memory without
1312 causing garbage collections.
Leon Clarkee46be812010-01-19 14:06:41 +00001313
1314 Finished more of the inline caching stubs for x64 targets.
Steve Blocka7e24c12009-10-30 11:49:00 +00001315
1316
13172009-07-13: Version 1.2.14
1318
1319 Added separate paged heap space for global property cells and
1320 avoid updating the write barrier when storing into them.
1321
1322 Improved peep-hole optimization on ARM platforms by not emitting
1323 unnecessary debug information.
1324
1325 Re-enabled ICs for loads and calls that skip a global object
1326 during lookup through the prototype chain.
1327
1328 Allowed access through global proxies to use ICs.
1329
1330 Fixed issue 401.
1331
1332
13332009-07-09: Version 1.2.13
1334
1335 Fixed issue 397, issue 398, and issue 399.
1336
1337 Added support for breakpoint groups.
1338
1339 Fixed bugs introduced with the new global object representation.
1340
1341 Fixed a few bugs in the ARM code generator.
1342
1343
13442009-07-06: Version 1.2.12
1345
1346 Added stack traces collection to Error objects accessible through
1347 the e.stack property.
1348
1349 Changed RegExp parser to use a recursive data structure instead of
1350 stack-based recursion.
1351
1352 Optimized Date object construction and string concatenation.
1353
1354 Improved performance of div, mod, and mul on ARM platforms.
1355
1356
13572009-07-02: Version 1.2.11
1358
1359 Improved performance on IA-32 and ARM.
1360
1361 Fixed profiler sampler implementation on Mac OS X.
1362
1363 Changed the representation of global objects to improve
1364 performance of adding a lot of new properties.
1365
1366
13672009-06-29: Version 1.2.10
1368
1369 Improved debugger support.
1370
1371 Fixed bug in exception message reporting (issue 390).
1372
1373 Improved overall performance.
1374
1375
13762009-06-23: Version 1.2.9
1377
1378 Improved math performance on ARM.
1379
1380 Fixed profiler name-inference bug.
1381
1382 Fixed handling of shared libraries in the profiler tick processor
1383 scripts.
1384
1385 Fixed handling of tests that time out in the test scripts.
1386
1387 Fixed compilation on MacOS X version 10.4.
1388
1389 Fixed two bugs in the regular expression engine.
1390
1391 Fixed a bug in the string type inference.
1392
1393 Fixed a bug in the handling of 'constant function' properties.
Leon Clarkee46be812010-01-19 14:06:41 +00001394
Steve Blocka7e24c12009-10-30 11:49:00 +00001395 Improved overall performance.
Leon Clarkee46be812010-01-19 14:06:41 +00001396
Steve Blocka7e24c12009-10-30 11:49:00 +00001397
13982009-06-16: Version 1.2.8
1399
1400 Optimized math on ARM platforms.
1401
1402 Fixed two crash bugs in the handling of getters and setters.
1403
1404 Improved the debugger support by adding scope chain information.
1405
1406 Improved the profiler support by compressing log data transmitted
1407 to clients.
1408
1409 Improved overall performance.
1410
1411
14122009-06-08: Version 1.2.7
1413
1414 Improved debugger and profiler support.
1415
1416 Reduced compilation time by improving the handling of deferred
1417 code.
1418
1419 Optimized interceptor accesses where the property is on the object
1420 on which the interceptors is attached.
1421
1422 Fixed compilation problem on GCC 4.4 by changing the stack
1423 alignment to 16 bytes.
1424
1425 Fixed handle creation to follow stric aliasing rules.
1426
1427 Fixed compilation on FreeBSD.
1428
1429 Introduced API for forcing the deletion of a property ignoring
1430 interceptors and attributes.
1431
1432
14332009-05-29: Version 1.2.6
1434
1435 Added a histogram recording hit rates at different levels of the
1436 compilation cache.
1437
1438 Added stack overflow check for the RegExp analysis phase. Previously a
1439 very long regexp graph could overflow the stack with recursive calls.
1440
1441 Use a dynamic buffer when collecting log events in memory.
1442
1443 Added start/stop events to the profiler log.
1444
1445 Fixed infinite loop which could happen when setting a debug break while
1446 executing a RegExp compiled to native code.
1447
1448 Fixed handling of lastIndexOf called with negative index (issue 351).
1449
1450 Fixed irregular crash in profiler test (issue 358).
1451
1452 Fixed compilation issues with some versions of gcc.
1453
1454
14552009-05-26: Version 1.2.5
1456
1457 Fixed bug in initial boundary check for Boyer-Moore text
1458 search (issue 349).
1459
1460 Fixed compilation issues with MinGW and gcc 4.3+ and added support
1461 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
1462 Craig Schlenter.
1463
1464 Added a script cache to the debugger.
1465
1466 Optimized compilation performance by improving internal data
1467 structures and avoiding expensive property load optimizations for
1468 code that's infrequently executed.
1469
1470 Exposed the calling JavaScript context through the static API
1471 function Context::GetCalling().
1472
1473
14742009-05-18: Version 1.2.4
1475
1476 Improved performance of floating point number allocation for ARM
1477 platforms.
1478
1479 Fixed crash when using the instanceof operator on functions with
1480 number values in their prototype chain (issue 341).
1481
1482 Optimized virtual frame operations in the code generator to speed
1483 up compilation time and allocated the frames in the zone.
1484
1485 Made the representation of virtual frames and jump targets in the
1486 code generator much more compact.
1487
1488 Avoided linear search for non-locals in scope code when resolving
1489 variables inside with and eval scopes.
1490
1491 Optimized lexical scanner by dealing with whitespace as part of
1492 the token scanning instead of as a separate step before it.
1493
1494 Changed the scavenging collector so that promoted objects do not
1495 reside in the old generation while their remembered set is being
1496 swept for pointers into the young generation.
1497
1498 Fixed numeric overflow handling when compiling count operations.
1499
1500
15012009-05-11: Version 1.2.3
1502
1503 Fixed bug in reporting of out-of-memory situations.
1504
1505 Introduced hidden prototypes on certain builtin prototype objects
1506 such as String.prototype to emulate JSC's behavior of restoring
1507 the original function when deleting functions from those prototype
1508 objects.
1509
1510 Fixed crash bug in the register allocator.
1511
1512
15132009-05-04: Version 1.2.2
1514
1515 Fixed bug in array sorting for sparse arrays (issue 326).
1516
1517 Added support for adding a soname when building a shared library
1518 on Linux (issue 151).
1519
1520 Fixed bug caused by morphing internal ASCII strings to external
1521 two-byte strings. Slices over ASCII strings have to forward ASCII
1522 checks to the underlying buffer string.
1523
1524 Allowed API call-as-function handlers to be called as
1525 constructors.
1526
1527 Fixed a crash bug where an external string was disposed but a
1528 slice of the external string survived as a symbol.
1529
1530
15312009-04-27: Version 1.2.1
1532
1533 Added EcmaScript 5 JSON object.
1534
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001535 Fixed bug in preemption support on ARM.
Steve Blocka7e24c12009-10-30 11:49:00 +00001536
1537
15382009-04-23: Version 1.2.0
1539
1540 Optimized floating-point operations on ARM.
1541
1542 Added a number of extensions to the debugger API.
1543
1544 Changed the enumeration order for unsigned integer keys to always
1545 be numerical order.
1546
1547 Added a "read" extension to the shell sample.
1548
1549 Added support for Array.prototype.reduce and
1550 Array.prototype.reduceRight.
1551
1552 Added an option to the SCons build to control Microsoft Visual C++
1553 link-time code generation.
1554
1555 Fixed a number of bugs (in particular issue 315, issue 316,
1556 issue 317 and issue 318).
1557
1558
15592009-04-15: Version 1.1.10
1560
1561 Fixed crash bug that occurred when loading a const variable in the
1562 presence of eval.
1563
1564 Allowed using with and eval in registered extensions in debug mode
1565 by fixing bogus assert.
1566
1567 Fixed the source position for function returns to enable the
1568 debugger to break there.
1569
1570
15712009-04-14: Version 1.1.9
1572
1573 Made the stack traversal code in the profiler robust by avoiding
1574 to look into the heap.
1575
1576 Added name inferencing for anonymous functions to facilitate
1577 debugging and profiling.
1578
1579 Re-enabled stats timers in the developer shell (d8).
1580
1581 Fixed issue 303 by avoiding to shortcut cons-symbols.
1582
1583
15842009-04-11: Version 1.1.8
1585
1586 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
1587
1588 Fixed step-in handling for Function.prototype.apply and call in
1589 the debugger (issue 269).
1590
1591 Fixed v8::Object::DeleteHiddenValue to not bail out when there
1592 are no hidden properties.
1593
1594 Added workaround for crash bug, where external symbol table
1595 entries with deleted resources would lead to NPEs when looking
1596 up in the symbol table.
1597
1598
15992009-04-07: Version 1.1.7
1600
1601 Added support for easily importing additional environment
1602 variables into the SCons build.
1603
1604 Optimized strict equality checks.
1605
1606 Fixed crash in indexed setters on objects without a corresponding
1607 getter (issue 298).
1608
1609 Re-enabled script compilation cache.
1610
1611
16122009-04-01: Version 1.1.6
1613
1614 Reverted an unsafe code generator change.
1615
1616
16172009-04-01: Version 1.1.5
1618
1619 Fixed bug that caused function literals to not be optimized as
1620 much as other functions.
1621
1622 Improved profiler support.
1623
1624 Fixed a crash bug in connection with debugger unloading.
1625
1626 Fixed a crash bug in the code generator caused by losing the
1627 information that a frame element was copied.
1628
1629 Fixed an exception propagation bug that could cause non-null
1630 return values when exceptions were thrown.
1631
1632
16332009-03-30: Version 1.1.4
1634
1635 Optimized String.prototype.match.
1636
1637 Improved the stack information in profiles.
1638
1639 Fixed bug in ARM port making it possible to compile the runtime
1640 system for thumb mode again.
1641
1642 Implemented a number of optimizations in the code generator.
1643
1644 Fixed a number of memory leaks in tests.
1645
1646 Fixed crash bug in connection with script source code and external
1647 strings.
1648
1649
16502009-03-24: Version 1.1.3
1651
1652 Fixed assertion failures in compilation of loop conditions.
1653
1654 Removed STL dependency from developer shell (d8).
1655
1656 Added infrastructure for protecting the V8 heap from corruption
1657 caused by memory modifications from the outside.
1658
1659
16602009-03-24: Version 1.1.2
1661
1662 Improved frame merge code generated by the code generator.
1663
1664 Optimized String.prototype.replace.
1665
1666 Implemented __defineGetter__ and __defineSetter__ for properties
1667 with integer keys on non-array objects.
1668
1669 Improved debugger and profiler support.
1670
1671 Fixed a number of portability issues to allow compilation for
1672 smaller ARM devices.
1673
1674 Exposed object cloning through the API.
1675
1676 Implemented hidden properties. This is used to expose an identity
1677 hash for objects through the API.
1678
1679 Implemented restarting of regular expressions if their input
1680 string changes representation during preemption.
1681
1682 Fixed a code generator bug that could cause assignments in loops
1683 to be ignored if using continue to break out of the loop (issue
1684 284).
1685
1686
16872009-03-12: Version 1.1.1
1688
1689 Fixed an assertion in the new compiler to take stack overflow
1690 exceptions into account.
1691
1692 Removed exception propagation code that could cause crashes.
1693
1694 Fixed minor bug in debugger line number computations.
1695
1696 8-byte align the C stack on Linux and Windows to speed up floating
1697 point computations.
1698
1699
17002009-03-12: Version 1.1.0
1701
1702 Improved code generation infrastructure by doing simple register
1703 allocation and constant folding and propagation.
1704
1705 Optimized regular expression matching by avoiding to create
1706 intermediate string arrays and by flattening nested array
1707 representations of RegExp data.
1708
1709 Traverse a few stack frames when recording profiler samples to
1710 include partial call graphs in the profiling output.
1711
1712 Added support for using OProfile to profile generated code.
1713
1714 Added remote debugging support to the D8 developer shell.
1715
1716 Optimized creation of nested literals like JSON objects.
1717
1718 Fixed a bug in garbage collecting unused maps and turned it on by
1719 default (--collect-maps).
1720
1721 Added support for running tests under Valgrind.
1722
1723
17242009-02-27: Version 1.0.3
1725
1726 Optimized double-to-integer conversions in bit operations by using
1727 SSE3 instructions if available.
1728
1729 Optimized initialization sequences that store to multiple
1730 properties of the same object.
1731
1732 Changed the D8 debugger frontend to use JSON messages.
1733
1734 Force garbage collections when disposing contexts.
1735
1736 Align code objects at 32-byte boundaries.
1737
1738
17392009-02-25: Version 1.0.2
1740
1741 Improved profiling support by performing simple call stack
1742 sampling for ticks and by fixing a bug in the logging of code
1743 addresses.
1744
1745 Fixed a number of debugger issues.
1746
1747 Optimized code that uses eval.
1748
1749 Fixed a couple of bugs in the regular expression engine.
1750
1751 Reduced the size of generated code for certain regular expressions.
1752
1753 Removed JSCRE completely.
1754
1755 Fixed issue where test could not be run if there was a dot in the
1756 checkout path.
1757
1758
17592009-02-13: Version 1.0.1
1760
1761 Fixed two crash-bugs in irregexp (issue 231 and 233).
1762
1763 Fixed a number of minor bugs (issue 87, 227 and 228).
1764
1765 Added support for morphing strings to external strings on demand
1766 to avoid having to create copies in the embedding code.
1767
1768 Removed experimental support for external symbol callbacks.
1769
1770
17712009-02-09: Version 1.0.0
1772
1773 Fixed crash-bug in the code generation for case independent 16 bit
1774 backreferences.
1775
1776 Made shells more robust in the presence of string conversion
1777 failures (issue 224).
1778
1779 Fixed a potential infinite loop when attempting to resolve
1780 eval (issue 221).
1781
1782 Miscellaneous fixes to the new regular expression engine.
1783
1784 Reduced binary by stripping unneeded text from JavaScript library and
1785 minifying some JavaScript files.
1786
1787
17882009-01-27: Version 0.4.9
1789
1790 Enabled new regular expression engine.
1791
1792 Made a number of changes to the debugger protocol.
1793
1794 Fixed a number of bugs in the preemption support.
1795
1796 Added -p option to the developer shell to run files in parallel
1797 using preemption.
1798
1799 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
1800 193, 198 and 201).
1801
1802 Fixed a number of bugs in the serialization/deserialization
1803 support for the ARM platform.
1804
1805
18062009-01-19: Version 0.4.8.1
1807
1808 Minor patch to debugger support.
1809
1810
18112009-01-16: Version 0.4.8
1812
1813 Fixed string length bug on ARM (issue 171).
1814
1815 Made most methods in the API const.
1816
1817 Optimized object literals by improving data locality.
1818
1819 Fixed bug that caused incomplete functions to be cached in case of
1820 stack overflow exceptions.
1821
1822 Fixed bugs that caused catch variables and variables introduced by
1823 eval to behave incorrectly when using accessors (issues 186, 190
1824 and 191).
1825
1826
18272009-01-06: Version 0.4.7
1828
1829 Minor bugfixes and optimizations.
1830
1831 Added command line debugger to D8 shell.
1832
1833 Fixed subtle bug that caused the wrong 'this' to be used when
1834 calling a caught function in a catch clause.
1835
1836 Inline array loads within loops directly in the code instead of
1837 always calling a stub.
1838
1839
18402008-12-11: Version 0.4.6
1841
1842 Fixed exception reporting bug where certain exceptions were
1843 incorrectly reported as uncaught.
1844
1845 Improved the memory allocation strategy used during compilation to
1846 make running out of memory when compiling huge scripts less
1847 likely.
1848
1849 Optimized String.replace by avoiding the construction of certain
1850 sub strings.
1851
1852 Fixed bug in code generation for large switch statements on ARM.
1853
1854 Fixed bug that caused V8 to change the global object template
1855 passed in by the user.
1856
1857 Changed the API for creating object groups used during garbage
1858 collection. Entire object groups are now passed to V8 instead of
1859 individual members of the groups.
1860
1861
18622008-12-03: Version 0.4.5
1863
1864 Added experimental API support for allocating V8 symbols as
1865 external strings.
1866
1867 Fixed bugs in debugging support on ARM.
1868
1869 Changed eval implementation to correctly detect whether or not a
1870 call to eval is aliased.
1871
1872 Fixed bug caused by a combination of the compilation cache and
1873 dictionary probing in native code. The bug caused us to sometimes
1874 call functions that had not yet been compiled.
1875
1876 Added platform support for FreeBSD.
1877
1878 Added support for building V8 on Windows with either the shared or
1879 static version of MSVCRT
1880
1881 Added the v8::jscre namespace around the jscre functions to avoid
1882 link errors (duplicate symbols) when building Google Chrome.
1883
1884 Added support for calling a JavaScript function with the current
1885 debugger execution context as its argument to the debugger
1886 interface.
1887
1888 Changed the type of names of counters from wchar_t to char.
1889
1890 Changed the Windows system call used to compute daylight savings
1891 time. The system call that we used to use became four times
1892 slower on WinXP SP3.
1893
1894 Added support in the d8 developer shell for memory-mapped counters
1895 and added a stats-viewer tool.
1896
1897 Fixed bug in upper/lower case mappings (issue 149).
1898
1899
19002008-11-17: Version 0.4.4
1901
1902 Reduced code size by using shorter instruction encoding when
1903 possible.
1904
1905 Added a --help option to the shell sample and to the d8 shell.
1906
1907 Added visual studio project files for building the ARM simulator.
1908
1909 Fixed a number of ARM simulator issues.
1910
1911 Fixed bug in out-of-memory handling on ARM.
1912
1913 Implemented shell support for passing arguments to a script from
1914 the command line.
1915
1916 Fixed bug in date code that made certain date functions return -0
1917 instead of 0 for dates before the epoch.
1918
1919 Restricted applications of eval so it can only be used in the
1920 context of the associated global object.
1921
1922 Treat byte-order marks as whitespace characters.
1923
1924
19252008-11-04: Version 0.4.3
1926
1927 Added support for API accessors that prohibit overwriting by
1928 accessors defined in JavaScript code by using __defineGetter__ and
1929 __defineSetter__.
1930
1931 Improved handling of conditionals in test status files.
1932
1933 Introduced access control in propertyIsEnumerable.
1934
1935 Improved performance of some string operations by caching
1936 information about the type of the string between operations.
1937
1938 Fixed bug in fast-case code for switch statements that only have
1939 integer labels.
1940
1941
19422008-10-30: Version 0.4.2
1943
1944 Improved performance of Array.prototype.concat by moving the
1945 implementation to C++ (issue 123).
1946
1947 Fixed heap growth policy to avoid growing old space to its maximum
1948 capacity before doing a garbage collection and fixed issue that
1949 would lead to artificial out of memory situations (issue 129).
1950
1951 Fixed Date.prototype.toLocaleDateString to return the date in the
1952 same format as WebKit.
1953
1954 Added missing initialization checks to debugger API.
1955
1956 Added removing of unused maps during GC.
1957
1958
19592008-10-28: Version 0.4.1
1960
1961 Added caching of RegExp data in compilation cache.
1962
1963 Added Visual Studio project file for d8 shell.
1964
1965 Fixed function call performance regression introduced in version
1966 0.4.0 when splitting the global object in two parts (issue 120).
1967
1968 Fixed issue 131 by checking for empty handles before throwing and
1969 reporting exceptions.
1970
1971
19722008-10-23: Version 0.4.0
1973
1974 Split the global object into two parts: The state holding global
1975 object and the global object proxy.
1976
1977 Fixed bug that affected the value of an assignment to an element
1978 in certain cases (issue 116).
1979
1980 Added GetPropertyNames functionality (issue 33) and extra Date
1981 functions (issue 77) to the API.
1982
1983 Changed WeakReferenceCallback to take a Persistent<Value> instead
1984 of a Persistent<Object> (issue 101).
1985
1986 Fixed issues with message reporting for exceptions in try-finally
1987 blocks (issues 73 and 75).
1988
1989 Optimized flattening of strings and string equality checking.
1990
1991 Improved Boyer-Moore implementation for faster indexOf operations.
1992
1993 Added development shell (d8) which includes counters and
1994 completion support.
1995
1996 Fixed problem with the receiver passed to functions called from
1997 eval (issue 124).
1998
1999
20002008-10-16: Version 0.3.5
2001
2002 Improved string hash-code distribution by excluding bit-field bits
2003 from the hash-code.
2004
2005 Changed string search algorithm used in indexOf from KMP to
2006 Boyer-Moore.
2007
2008 Improved the generated code for the instanceof operator.
2009
2010 Improved performance of slow-case string equality checks by
2011 specializing the code based on the string representation.
2012
2013 Improve the handling of out-of-memory situations (issue 70).
2014
2015 Improved performance of strict equality checks.
2016
2017 Improved profiler output to make it easier to see anonymous
2018 functions.
2019
2020 Improved performance of slow-case keyed loads.
2021
2022 Improved property access performance by allocating a number of
2023 properties in the front object.
2024
2025 Changed the toString behavior on the built-in object constructors
2026 to print [native code] instead of the actual source. Some web
2027 applications do not like constructors with complex toString
2028 results.
2029
2030
20312008-10-06: Version 0.3.4
2032
2033 Changed Array.prototype.sort to use quick sort.
2034
2035 Fixed code generation issue where leaving a finally block with
2036 break or continue would accumulate elements on the expression
2037 stack (issue 86).
2038
2039 Made sure that the name accessor on functions returns the expected
2040 names for builtin JavaScript functions and C++ callback functions.
2041
2042 Added fast case code for extending the property storage array of
2043 JavaScript objects.
2044
2045 Ported switch statement optimizations introduced in version 0.3.3
2046 to the ARM code generator.
2047
2048 Allowed GCC to use strict-aliasing rules when compiling.
2049
2050 Improved performance of arguments object allocation by taking care
2051 of arguments adaptor frames in the generated code.
2052
2053 Updated the V8 benchmark suite to version 2.
2054
2055
20562008-09-25: Version 0.3.3
2057
2058 Improved handling of relocation information to enable more
2059 peep-hole optimizations.
2060
2061 Optimized switch statements where all labels are constant small
2062 integers.
2063
2064 Optimized String.prototype.indexOf for common cases.
2065
2066 Fixed more build issues (issue 80).
2067
2068 Fixed a couple of profiler issues.
2069
2070 Fixed bug where the body of a function created using the Function
2071 constructor was not allowed to end with a single-line comment
2072 (issue 85).
2073
2074 Improved handling of object literals by canonicalizing object
2075 literal maps. This will allow JSON objects with the same set of
2076 properties to share the same map making inline caching work better
2077 for JSON objects.
2078
2079
20802008-09-17: Version 0.3.2
2081
2082 Generalized the EvalCache into a CompilationCache and enabled it
2083 for scripts too. The current strategy is to retire all entries
2084 whenever a mark-sweep collection is started.
2085
2086 Fixed bug where switch statements containing only a default case
2087 would lead to an unbalanced stack (issue 69).
2088
2089 Fixed bug that made access to the function in a named function
2090 expression impossible in certain situations (issue 24).
2091
2092 Fixed even more build issues.
2093
2094 Optimized calling conventions on ARM. The conventions on ARM and
2095 IA-32 now match.
2096
2097 Removed static initializers for flags and counters.
2098
2099 Improved inline caching behavior for uncommon cases where lazily
2100 loading Date and RegExp code could force certain code paths go
2101 megamorphic.
2102
2103 Removed arguments adaption for builtins written in C++. This
2104 makes Array.prototype.push and Array.prototype.pop slightly
2105 faster.
2106
2107
21082008-09-11: Version 0.3.1
2109
2110 Fixed a number of build issues.
2111
2112 Fixed problem with missing I-cache flusing on ARM.
2113
2114 Changed space layout in memory management by splitting up
2115 code space into old data space and code space.
2116
2117 Added utf-8 conversion support to the API (issue 57).
2118
2119 Optimized repeated calls to eval with the same strings. These
2120 repeated calls are common in web applications.
2121
2122 Added Xcode project file.
2123
2124 Optimized a couple of Array operation.
2125
2126 Fixed parser bug by checking for end-of-string when parsing break
2127 and continue (issue 35).
2128
2129 Fixed problem where asian characters were not categorized as
2130 letters.
2131
2132 Fixed bug that disallowed calling functions fetched from an array
2133 using a string as an array index (issue 32).
2134
2135 Fixed bug where the internal field count on object templates were
2136 sometimes ignored (issue 54).
2137
2138 Added -f option to the shell sample for compatibility with other
2139 engines (issue 18).
2140
2141 Added source info to TryCatches in the API.
2142
2143 Fixed problem where the seed for the random number generator was
2144 clipped in a double to unsigned int conversion.
2145
2146 Fixed bug where cons string symbols were sometimes converted to
2147 non-symbol flat strings during GC.
2148
2149 Fixed bug in error reporting when attempting to convert null to an
2150 object.
2151
2152
21532008-09-04: Version 0.3.0
2154
2155 Added support for running tests on the ARM simulator.
2156
2157 Fixed bug in the 'in' operator where negative indices were not
2158 treated correctly.
2159
2160 Fixed build issues on gcc-4.3.1.
2161
2162 Changed Date.prototype.toLocaleTimeString to not print the
2163 timezone part of the time.
2164
2165 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
2166 with user code.
2167
2168
21692008-09-02: Version 0.2.5
2170
2171 Renamed the top level directory 'public' to 'include'.
2172
2173 Added 'env' option to the SCons build scripts to support
2174 overriding the ENV part of the build environment. This is mostly
2175 to support Windows builds in cases where SCons cannot find the
2176 correct paths to the Windows SDK, as these paths cannot be passed
2177 through shell environment variables.
2178
2179 Enabled "Buffer Security Check" on for the Windows SCons build and
2180 added the linker option /OPT:ICF as an optimization.
2181
2182 Added the V8 benchmark suite to the repository.
2183
2184
21852008-09-01: Version 0.2.4
2186
2187 Included mjsunit JavaScript test suite and C++ unit tests.
2188
2189 Changed the shell sample to not print the result of executing a
2190 script provided on the command line.
2191
2192 Fixed issue when building samples on Windows using a shared V8
2193 library. Added visibility option on Linux build which makes the
2194 generated library 18% smaller.
2195
2196 Changed build system to accept multiple build modes in one build
2197 and generate separate objects, libraries and executables for each
2198 mode.
2199
2200 Removed deferred negation optimization (a * -b => -(a * b)) since
2201 this visibly changes operand conversion order.
2202
2203 Improved parsing performance by introducing stack guard in
2204 preparsing. Without a stack guard preparsing always bails out
2205 with stack overflow.
2206
2207 Changed shell sample to take flags directly from the command-line.
2208 Added API call that implements this.
2209
2210 Added load, quit and version functions to the shell sample so it's
2211 easier to run benchmarks and tests.
2212
2213 Fixed issue with building samples and cctests on 64-bit machines.
2214
2215 Fixed bug in the runtime system where the prototype chain was not
2216 always searched for a setter when setting a property that does not
2217 exist locally.
2218
2219
22202008-08-14: Version 0.2.3
2221
2222 Improved performance of garbage collection by moving the
2223 function that updates pointers during compacting collection
2224 into the updating visitor. This gives the compiler a better
2225 chance to inline and avoid a function call per (potential)
2226 pointer.
2227
2228 Extended the shell sample with a --runtime-flags option.
2229
2230 Added Visual Studio project files for the shell.cc and
2231 process.cc samples.
2232
2233
22342008-08-13: Version 0.2.2
2235
2236 Improved performance of garbage collection by changing the way
2237 we use the marking stack in the event of stack overflow during
2238 full garbage collection and by changing the way we mark roots.
2239
2240 Cleaned up ARM version by removing top of stack caching and by
2241 introducing push/pop elimination.
2242
2243 Cleaned up the way runtime functions are called to allow
2244 runtime calls with no arguments.
2245
2246 Changed Windows build options to make sure that exceptions are
2247 disabled and that optimization flags are enabled.
2248
2249 Added first version of Visual Studio project files.
2250
2251
22522008-08-06: Version 0.2.1
2253
2254 Improved performance of unary addition by avoiding runtime calls.
2255
2256 Fixed the handling of '>' and '<=' to use right-to-left conversion
2257 and left-to-right evaluation as specified by ECMA-262.
2258
2259 Fixed a branch elimination bug on the ARM platform where incorrect
2260 code was generated because of overly aggressive branch
2261 elimination.
2262
2263 Improved performance of code that repeatedly assigns the same
2264 function to the same property of different objects with the same
2265 map.
2266
2267 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
2268 no longer expects DEBUG to be defined.
2269
2270 Added platform-nullos.cc to serve as the basis for new platform
2271 implementations.
2272
2273
22742008-07-30: Version 0.2.0
2275
2276 Changed all text files to have native svn:eol-style.
2277
2278 Added a few samples and support for building them. The samples
2279 include a simple shell that can be used to benchmark and test V8.
2280
2281 Changed V8::GetVersion to return the version as a string.
2282
2283 Added source for lazily loaded scripts to snapshots and made
2284 serialization non-destructive.
2285
2286 Improved ARM support by fixing the write barrier code to use
2287 aligned loads and stores and by removing premature locals
2288 optimization that relied on broken support for callee-saved
2289 registers (removed).
2290
2291 Refactored the code for marking live objects during garbage
2292 collection and the code for allocating objects in paged
2293 spaces. Introduced an abstraction for the map word of a heap-
2294 allocated object and changed the memory allocator to allocate
2295 executable memory only for spaces that may contain code objects.
2296
2297 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
2298 they can be used by debugging and logging modules. Added
2299 thread-safe message queues for dealing with debugger events.
2300
2301 Fixed the source code reported by toString for certain builtin
2302 empty functions and made sure that the prototype property of a
2303 function is enumerable.
2304
2305 Improved performance of converting values to condition flags in
2306 generated code.
2307
2308 Merged disassembler-{arch} files.
2309
2310
23112008-07-28: Version 0.1.4
2312
2313 Added support for storing JavaScript stack traces in a stack
2314 allocated buffer to make it visible in shallow core dumps.
2315 Controlled by the --preallocate-message-memory flag which is
2316 disabled by default.
2317
2318
23192008-07-25: Version 0.1.3
2320
2321 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
2322 map transitions would count as properties.
2323
2324 Allowed aliased eval invocations by treating them as evals in the
2325 global context. This may change in the future.
2326
2327 Added support for accessing the last entered context through the
2328 API and renamed Context::Current to Context::GetCurrent and
2329 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
2330
2331 Fixed bug in the debugger that would cause the debugger scripts to
2332 be recursively loaded and changed all disabling of interrupts to
2333 be block-structured.
2334
2335 Made snapshot data read-only to allow it to be more easily shared
2336 across multiple users of V8 when linked as a shared library.
2337
2338
23392008-07-16: Version 0.1.2
2340
2341 Fixed building on Mac OS X by recognizing i386 and friends as
2342 IA-32 platforms.
2343
2344 Added propagation of stack overflow exceptions that occur while
2345 compiling nested functions.
2346
2347 Improved debugger with support for recursive break points and
2348 handling of exceptions that occur in the debugger JavaScript code.
2349
2350 Renamed GetInternal to GetInternalField and SetInternal to
2351 SetInternalField in the API and moved InternalFieldCount and
2352 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
2353
2354
23552008-07-09: Version 0.1.1
2356
2357 Fixed bug in stack overflow check code for IA-32 targets where a
2358 non-tagged value in register eax was pushed to the stack.
2359
2360 Fixed potential quadratic behavior when converting strings to
2361 numbers.
2362
2363 Fixed bug where the return value from Object::SetProperty could
2364 end up being the property holder instead of the written value.
2365
2366 Improved debugger support by allowing nested break points and by
2367 dealing with stack-overflows when compiling functions before
2368 setting break points in them.
2369
2370
23712008-07-03: Version 0.1.0
2372
2373 Initial export.
2374