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