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