blob: c9ff2978d5bc38a074a9af6495cb56d631b73815 [file] [log] [blame]
Ben Murdochb8e0da22011-05-16 14:20:40 +010012011-01-19: Version 3.0.9
2
3 Added basic GDB JIT Interface integration.
4
5 Make invalid break/continue statements a syntax error instead of a
6 runtime error.
7
8
92011-01-17: Version 3.0.8
10
11 Exposed heap size limit to the heap statistics gathered by
12 the GetHeapStatistics API.
13
14 Wrapped external pointers more carefully (issue 1037).
15
16 Hardened the implementation of error objects to avoid setters
17 intercepting the properties set then throwing an error.
18
19 Avoided trashing the FPSCR when calculating Math.floor on ARM.
20
21 Performance improvements on the IA32 platform.
22
23
242011-01-10: Version 3.0.7
Ben Murdoch086aeea2011-05-13 15:57:08 +010025
26 Stopped calling inherited setters when creating object literals
27 (issue 1015).
28
29 Changed interpretation of malformed \c? escapes in RegExp to match
30 JSC.
31
32 Enhanced the command-line debugger interface and fixed some minor
33 bugs in the debugger.
34
35 Performance improvements on the IA32 platform.
36
37
Ben Murdochb8e0da22011-05-16 14:20:40 +0100382011-01-05: Version 3.0.6
Steve Block9fac8402011-05-12 15:51:54 +010039
Ben Murdoch086aeea2011-05-13 15:57:08 +010040 Allowed getters and setters on JSArray elements (issue 900).
Steve Block9fac8402011-05-12 15:51:54 +010041
42 Stopped JSON objects from hitting inherited setters (part of
Ben Murdoch086aeea2011-05-13 15:57:08 +010043 issue 1015).
Steve Block9fac8402011-05-12 15:51:54 +010044
45 Allowed numbers and strings as names of getters/setters in object
Ben Murdoch086aeea2011-05-13 15:57:08 +010046 initializer (issue 820).
Steve Block9fac8402011-05-12 15:51:54 +010047
48 Added use_system_v8 option to gyp (off by default), to make it easier
49 for Linux distributions to ship with system-provided V8 library.
50
Ben Murdoch086aeea2011-05-13 15:57:08 +010051 Exported external array data accessors (issue 1016).
Steve Block9fac8402011-05-12 15:51:54 +010052
53 Added labelled thread names to help with debugging (on Linux).
54
55
562011-01-03: Version 3.0.5
57
58 Fixed a couple of cast errors for gcc-3.4.3.
59
60 Performance improvements in GC and IA32 code generator.
61
62
Ben Murdochb0fe1622011-05-05 13:52:32 +0100632010-12-21: Version 3.0.4
64
65 Added Date::ResetCache() to the API so that the cached values in the
66 Date object can be reset to allow live DST / timezone changes.
67
68 Extended existing support for printing (while debugging) the contents
69 of objects. Added support for printing objects from release builds.
70
71 Fixed V8 issues 989, 1006, and 1007.
72
73
742010-12-17: Version 3.0.3
75
76 Reapplied all changes for version 3.0.1.
77
78 Improved debugger protocol for remote debugging.
79
80 Added experimental support for using gyp to generate build files
81 for V8.
82
83 Fixed implementation of String::Write in the API (issue 975).
84
85
862010-12-15: Version 3.0.2
87
88 Revert version 3.0.1 and patch 3.0.1.1.
89
90
912010-12-13: Version 3.0.1
92
93 Added support for an experimental internationalization API as an
94 extension. This extension is disabled by default but can be enabled
95 when building V8. The ECMAScript internationalization strawman is
96 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
97
98 Made RegExp character class parsing stricter. This mirrors a change
99 to RegExp parsing in WebKit.
100
101 Fixed a bug in Object.defineProperty when used to change attributes
102 of an existing property. It incorrectly set the property value to
103 undefined (issue 965).
104
105 Fixed several different compilation failures on various platforms
106 caused by the 3.0.0 release.
107
108 Optimized Math.pow so it can work on unboxed doubles.
109
110 Sped up quoting of JSON strings by removing one traversal of the
111 string.
112
113
1142010-12-07: Version 3.0.0
115
116 Improved performance by (partially) addressing issue 957 on
117 IA-32. Still needs more work for the other architectures.
118
119
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08001202010-11-29: Version 2.5.9
121
122 Fixed crashes during GC caused by partially initialize heap
123 objects.
124
125 Fixed bug in process sample that caused memory leaks.
126
127 Improved performance on ARM by implementing missing stubs and
128 inlining.
129
130 Improved heap profiler support.
131
132 Added separate seeding on Windows of the random number generator
133 used internally by the compiler (issue 936).
134
135 Exposed API for getting the name of the function used to construct
136 an object.
137
138 Fixed date parser to handle one and two digit millisecond
139 values (issue 944).
140
141 Fixed number parsing to disallow space between sign and
142 digits (issue 946).
143
144
1452010-11-23: Version 2.5.8
146
147 Removed dependency on Gay's dtoa.
148
149 Improved heap profiler precision and speed.
150
151 Reduced overhead of callback invocations on ARM.
152
153
1542010-11-18: Version 2.5.7
155
156 Fixed obscure evaluation order bug (issue 931).
157
158 Split the random number state between JavaScript and the private API.
159
160 Fixed performance bug causing GCs when generating stack traces on
161 code from very large scripts.
162
163 Fixed bug in parser that allowed (foo):42 as a labelled statement
164 (issue 918).
165
166 Provide more accurate results about used heap size via
167 GetHeapStatistics.
168
169 Allow build-time customization of the max semispace size.
170
171 Made String.prototype.split honor limit when separator is empty
172 (issue 929).
173
174 Added missing failure check after expecting an identifier in
175 preparser (Chromium issue 62639).
176
177
Russell Brenner90bac252010-11-18 13:33:46 -08001782010-11-10: Version 2.5.6
179
180 Added support for VFP rounding modes to the ARM simulator.
181
182 Fixed multiplication overflow bug (issue 927).
183
184 Added a limit for the amount of executable memory (issue 925).
185
186
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001872010-11-08: Version 2.5.5
188
189 Added more aggressive GC of external objects in near out-of-memory
190 situations.
191
192 Fixed a bug that gave the incorrect result for String.split called
193 on the empty string (issue 924).
194
195
1962010-11-03: Version 2.5.4
197
198 Improved V8 VFPv3 runtime detection to address issue 914.
199
200
2012010-11-01: Version 2.5.3
202
203 Fixed a bug that prevents constants from overwriting function values
204 in object literals (issue 907).
205
206 Fixed a bug with reporting of impossible nested calls of DOM functions
207 (issue http://crbug.com/60753).
208
209
John Reck59135872010-11-02 12:39:01 -07002102010-10-27: Version 2.5.2
211
212 Improved sampler resolution on Linux.
213
214 Allowed forcing the use of a simulator from the build script
215 independently of the host architecture.
216
Ben Murdoch086aeea2011-05-13 15:57:08 +0100217 Fixed FreeBSD port (issue 912).
John Reck59135872010-11-02 12:39:01 -0700218
219 Made windows-tick-processor respect D8_PATH.
220
221 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
222
223
Ben Murdochf87a2032010-10-22 12:50:53 +01002242010-10-20: Version 2.5.1
225
226 Fixed bug causing spurious out of memory exceptions
227 (issue http://crbug.com/54580).
228
229 Fixed compilation error on Solaris platform (issue 901).
230
231 Fixed error in strtod (string to floating point number conversion)
232 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
233
234 Adjusted randomized allocations of executable memory to have 64k
235 granularity (issue http://crbug.com/56036).
236
237 Supported profiling using kernel perf_events on linux. Added ll_prof
238 script to tools and --ll-prof flag to V8.
239
240
2412010-10-18: Version 2.5.0
242
243 Fixed bug in cache handling of lastIndex on global regexps
244 (issue http://crbug.com/58740).
245
246 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
247 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
Ben Murdochb0fe1622011-05-05 13:52:32 +0100248 from Hewlett-Packard Development Company, LP).
Ben Murdochf87a2032010-10-22 12:50:53 +0100249
250 Fixed compilation error on ARM with gcc 4.4 (issue 894).
251
252
2532010-10-13: Version 2.4.9
254
255 Fixed a bug in the handling of conditional expressions in test
256 contexts in compiler for top-level code.
257
258 Added "//@ sourceURL" information to the StackTrace API.
259
260 Exposed RegExp construction through the API.
261
262
2632010-10-04: Version 2.4.8
264
265 Fixed a bug in ResumeProfilerEx causing it to not always write out the
266 whole snapshot (issue 868).
267
268 Performance improvements on all platforms.
269
270
2712010-09-30: Version 2.4.7
272
273 Changed the command-line flag --max-new-space-size to be in kB and the
274 flag --max-old-space-size to be in MB (previously they were in bytes).
275
276 Added Debug::CancelDebugBreak to the debugger API.
277
278 Fixed a bug in getters for negative numeric property names
279 (https://bugs.webkit.org/show_bug.cgi?id=46689).
280
281 Performance improvements on all platforms.
282
283
Kristian Monsen0d5e1162010-09-30 15:31:59 +01002842010-09-27: Version 2.4.6
Ben Murdochf87a2032010-10-22 12:50:53 +0100285
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100286 Fixed assertion failure related to copy-on-write arrays (issue 876).
287
288 Fixed build failure of 64-bit V8 on Windows.
289
290 Fixed a bug in RegExp (issue http://crbug.com/52801).
291
292 Improved the profiler's coverage to cover more functions (issue 858).
293
294 Fixed error in shift operators on 64-bit V8
295 (issue http://crbug.com/54521).
296
297
2982010-09-22: Version 2.4.5
Ben Murdochf87a2032010-10-22 12:50:53 +0100299
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100300 Changed the RegExp benchmark to exercise the regexp engine on different
301 inputs by scrambling the input strings.
302
303 Fixed a bug in keyed loads on strings.
304
305 Fixed a bug with loading global function prototypes.
306
307 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
308
309 Performance improvements on all platforms.
310
311
3122010-09-15: Version 2.4.4
313
314 Fixed bug with hangs on very large sparse arrays.
315
316 Now tries harder to free up memory when running out of space.
317
318 Added heap snapshots to JSON format to API.
319
320 Recalibrated benchmarks.
321
322
Steve Block59151502010-09-22 15:07:15 +01003232010-09-13: Version 2.4.3
324
325 Made Date.parse properly handle TZ offsets (issue 857).
326
327 Performance improvements on all platforms.
328
329
Iain Merrick9ac36c92010-09-13 15:29:50 +01003302010-09-08: Version 2.4.2
331
332 Fixed GC crash bug.
333
334 Fixed stack corruption bug.
335
336 Fixed compilation for newer C++ compilers that found Operand(0)
337 ambiguous.
338
339
3402010-09-06: Version 2.4.1
341
342 Added the ability for an embedding application to receive a callback
343 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
344 (V8::RemoveMemoryAllocationCallback) from the OS.
345
346 Fixed several JSON bugs (including issue 855).
347
348 Fixed memory overrun crash bug triggered during V8's tick-based
349 profiling.
350
351 Performance improvements on all platforms.
352
353
Kristian Monsen80d68ea2010-09-08 11:05:35 +01003542010-09-01: Version 2.4.0
355
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100356 Fixed bug in Object.freeze and Object.seal when Array.prototype or
357 Object.prototype are changed (issue 842).
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100358
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100359 Updated Array.splice to follow Safari and Firefox when called
Iain Merrick9ac36c92010-09-13 15:29:50 +0100360 with zero arguments.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100361
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100362 Fixed a missing live register when breaking at keyed loads on ARM.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100363
Iain Merrick9ac36c92010-09-13 15:29:50 +0100364 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100365
366
3672010-08-25: Version 2.3.11
368
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100369 Fixed bug in RegExp related to copy-on-write arrays.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100370
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100371 Refactored tools/test.py script, including the introduction of
Iain Merrick9ac36c92010-09-13 15:29:50 +0100372 VARIANT_FLAGS that allows specification of sets of flags with which
373 all tests should be run.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100374
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100375 Fixed a bug in the handling of debug breaks in CallIC.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100376
Iain Merrick9ac36c92010-09-13 15:29:50 +0100377 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100378
379
Steve Block791712a2010-08-27 10:21:07 +01003802010-08-23: Version 2.3.10
381
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100382 Fixed bug in bitops on ARM.
Steve Block791712a2010-08-27 10:21:07 +0100383
384 Build fixes for unusual compilers.
385
386 Track high water mark for RWX memory.
387
388 Performance improvements on all platforms.
389
390
Iain Merrick75681382010-08-19 15:07:18 +01003912010-08-18: Version 2.3.9
392
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100393 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
Iain Merrick75681382010-08-19 15:07:18 +0100394
395 Removed specialized handling of GCC 4.4 (issue 830).
396
Iain Merrick9ac36c92010-09-13 15:29:50 +0100397 Fixed DST cache to take into account the suspension of DST in
Iain Merrick75681382010-08-19 15:07:18 +0100398 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
399
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100400 Performance improvements on all platforms.
Iain Merrick75681382010-08-19 15:07:18 +0100401
402
4032010-08-16: Version 2.3.8
404
405 Fixed build with strict aliasing on GCC 4.4 (issue 463).
406
407 Fixed issue with incorrect handling of custom valueOf methods on
408 string wrappers (issue 760).
409
410 Fixed compilation for ARMv4 (issue 590).
411
412 Improved performance.
413
414
4152010-08-11: Version 2.3.7
416
417 Reduced size of heap snapshots produced by heap profiler (issue 783).
418
419 Introduced v8::Value::IsRegExp method.
420
421 Fixed CPU profiler crash in start / stop sequence when non-existent
422 name is passed (issue http://crbug.com/51594).
423
424 Introduced new indexed property query callbacks API (issue 816). This
425 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
426 by default.
427
428 Removed support for object literal get/set with number/string
429 property name.
430
431 Fixed handling of JSObject::elements in CalculateNetworkSize
432 (issue 822).
433
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100434 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
Iain Merrick75681382010-08-19 15:07:18 +0100435
436
Ben Murdochbb769b22010-08-11 14:56:33 +01004372010-08-09: Version 2.3.6
438
Iain Merrick75681382010-08-19 15:07:18 +0100439 RegExp literals create a new object every time they are evaluated
440 (issue 704).
Ben Murdochbb769b22010-08-11 14:56:33 +0100441
Iain Merrick75681382010-08-19 15:07:18 +0100442 Object.seal and Object.freeze return the modified object (issue 809).
Ben Murdochbb769b22010-08-11 14:56:33 +0100443
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100444 Fixed building using GCC 4.4.4.
Ben Murdochbb769b22010-08-11 14:56:33 +0100445
446
4472010-08-04: Version 2.3.5
448
449 Added support for ES5 property names. Object initialisers and
450 dot-notation property access now allows keywords. Also allowed
451 non-identifiers after "get" or "set" in an object initialiser.
452
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100453 Randomized the addresses of allocated executable memory on Windows.
Ben Murdochbb769b22010-08-11 14:56:33 +0100454
455
4562010-08-02: Version 2.3.4
457
458 Fixed problems in implementation of ES5 function.prototype.bind.
459
460 Fixed error when using apply with arguments object on ARM (issue 784).
461
462 Added setting of global flags to debugger protocol.
463
464 Fixed an error affecting cached results of sin and cos (issue 792).
465
466 Removed memory leak from a boundary case where V8 is not initialized.
467
468 Fixed issue where debugger could set breakpoints outside the body
469 of a function.
470
471 Fixed issue in debugger when using both live edit and step in features.
472
473 Added Number-letter (Nl) category to Unicode tables. These characters
474 can now be used in identifiers.
475
476 Fixed an assert failure on X64 (issue 806).
477
478 Performance improvements on all platforms.
479
480
Kristian Monsen50ef84f2010-07-29 15:18:00 +01004812010-07-26: Version 2.3.3
482
483 Fixed error when building the d8 shell in a fresh checkout.
484
485 Implemented Function.prototype.bind (ES5 15.3.4.5).
486
487 Fixed an error in inlined stores on ia32.
488
489 Fixed an error when setting a breakpoint at the end of a function
490 that does not end with a newline character.
491
492 Performance improvements on all platforms.
493
494
4952010-07-21: Version 2.3.2
496
497 Fixed compiler warnings when building with LLVM.
498
499 Fixed a bug with for-in applied to strings (issue 785).
500
501 Performance improvements on all platforms.
502
503
Ben Murdoch3bec4d22010-07-22 14:51:16 +01005042010-07-19: Version 2.3.1
505
506 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
507
508 Fixed bug related to code flushing while compiling a lazy
509 compilable function (issue http://crbug.com/49099).
510
511 Performance improvements on all platforms.
512
513
5142010-07-15: Version 2.3.0
515
516 Added ES5 Object.seal and Object.isSealed.
517
518 Added debugger API for scheduling debugger commands from a
519 separate thread.
520
521
5222010-07-14: Version 2.2.24
523
524 Added API for capturing stack traces for uncaught exceptions.
525
526 Fixed crash bug when preparsing from a non-external V8 string
527 (issue 775).
528
529 Fixed JSON.parse bug causing input not to be converted to string
530 (issue 764).
531
532 Added ES5 Object.freeze and Object.isFrozen.
533
534 Performance improvements on all platforms.
535
536
Leon Clarkeac952652010-07-15 11:15:24 +01005372010-07-07: Version 2.2.23
538
539 API change: Convert Unicode code points outside the basic multilingual
540 plane to the replacement character. Previous behavior was to silently
541 truncate the value to 16 bits.
542
543 Fixed crash: handle all flat string types in regexp replace.
544
545 Prevent invalid pre-parsing data passed in through the API from
546 crashing V8.
547
548 Performance improvements on all platforms.
549
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100550
Steve Block8defd9f2010-07-08 12:39:36 +01005512010-07-05: Version 2.2.22
552
553 Added ES5 Object.isExtensible and Object.preventExtensions.
554
555 Enabled building V8 as a DLL.
556
557 Fixed a bug in date code where -0 was not interpreted as 0
558 (issue 736).
559
560 Performance improvements on all platforms.
561
562
5632010-06-30: Version 2.2.21
564
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100565 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
Steve Block8defd9f2010-07-08 12:39:36 +0100566
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100567 Updated JSON.stringify to floor the space parameter (issue 753).
Steve Block8defd9f2010-07-08 12:39:36 +0100568
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100569 Updated the Mozilla test expectations to the newest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100570
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100571 Updated the ES5 Conformance Test expectations to the latest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100572
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100573 Updated the V8 benchmark suite.
Steve Block8defd9f2010-07-08 12:39:36 +0100574
575 Provide actual breakpoints locations in response to setBreakpoint
576 and listBreakpoints requests.
577
578
5792010-06-28: Version 2.2.20
580
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100581 Fixed bug with for-in on x64 platform (issue 748).
Steve Block8defd9f2010-07-08 12:39:36 +0100582
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100583 Fixed crash bug on x64 platform (issue 756).
Steve Block8defd9f2010-07-08 12:39:36 +0100584
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100585 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
Steve Block8defd9f2010-07-08 12:39:36 +0100586
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100587 Fixed a bug on ARM that caused the result of 1 << x to be
Steve Block8defd9f2010-07-08 12:39:36 +0100588 miscalculated for some inputs.
589
590 Performance improvements on all platforms.
591
592
Kristian Monsen9dcf7e22010-06-28 14:14:28 +01005932010-06-23: Version 2.2.19
594
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100595 Fixed bug that causes the build to break when profillingsupport=off
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100596 (issue 738).
597
598 Added expose-externalize-string flag for testing extensions.
599
600 Resolve linker issues with using V8 as a DLL causing a number of
601 problems with unresolved symbols.
602
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100603 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100604 defined.
605
606 Performance improvements on all platforms.
607
608
6092010-06-16: Version 2.2.18
610
611 Added API functions to retrieve information on indexed properties
612 managed by the embedding layer. Fixes bug 737.
613
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100614 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100615
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100616 Added heap profiling to the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100617
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100618 Removed old named property query from the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100619
620 Incremental performance improvements.
621
622
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01006232010-06-14: Version 2.2.17
624
625 Improved debugger support for stepping out of functions.
626
627 Incremental performance improvements.
628
629
6302010-06-09: Version 2.2.16
631
Steve Block8defd9f2010-07-08 12:39:36 +0100632 Removed the SetExternalStringDiposeCallback API. Changed the
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100633 disposal of external string resources to call a virtual Dispose
634 method on the resource.
635
Steve Block8defd9f2010-07-08 12:39:36 +0100636 Added support for more precise break points when debugging and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100637 stepping.
638
639 Memory usage improvements on all platforms.
640
641
6422010-06-07: Version 2.2.15
643
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100644 Added an API to control the disposal of external string resources.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100645
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100646 Added missing initialization of a couple of variables which makes
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100647 some compilers complaint when compiling with -Werror.
648
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100649 Improved performance on all platforms.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100650
651
6522010-06-02: Version 2.2.14
653
654 Fixed a crash in code generated for String.charCodeAt.
655
656 Fixed a compilation issue with some GCC versions (issue 727).
657
658 Performance optimizations on x64 and ARM platforms.
659
660
6612010-05-31: Version 2.2.13
662
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100663 Implemented Object.getOwnPropertyDescriptor for element indices and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100664 strings (issue 599).
665
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100666 Fixed bug for windows 64 bit C calls from generated code.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100667
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100668 Added new scons flag unalignedaccesses for arm builds.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100669
670 Performance improvements on all platforms.
671
672
Leon Clarkef7060e22010-06-03 12:02:55 +01006732010-05-26: Version 2.2.12
674
675 Allowed accessors to be defined on objects rather than just object
676 templates.
677
678 Changed the ScriptData API.
679
680
6812010-05-21: Version 2.2.11
682
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100683 Fixed crash bug in liveedit on 64 bit.
Leon Clarkef7060e22010-06-03 12:02:55 +0100684
685 Use 'full compiler' when debugging is active. This should increase
686 the density of possible break points, making single step more fine
687 grained. This will only take effect for functions compiled after
688 debugging has been started, so recompilation of all functions is
689 required to get the full effect. IA32 and x64 only for now.
690
691 Misc. fixes to the Solaris build.
692
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100693 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
Leon Clarkef7060e22010-06-03 12:02:55 +0100694
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100695 Added filtering of CPU profiles by security context.
Leon Clarkef7060e22010-06-03 12:02:55 +0100696
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100697 Fixed crash bug on ARM when running without VFP2 or VFP3.
Leon Clarkef7060e22010-06-03 12:02:55 +0100698
699 Incremental performance improvements in all backends.
700
701
Kristian Monsen25f61362010-05-21 11:50:48 +01007022010-05-17: Version 2.2.10
703
704 Performance improvements in the x64 and ARM backends.
705
706
7072010-05-10: Version 2.2.9
708
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100709 Allowed Object.create to be called with a function (issue 697).
Kristian Monsen25f61362010-05-21 11:50:48 +0100710
711 Fixed bug with Date.parse returning a non-NaN value when called on a
712 non date string (issue 696).
713
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100714 Allowed unaligned memory accesses on ARM targets that support it (by
Leon Clarkef7060e22010-06-03 12:02:55 +0100715 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
Kristian Monsen25f61362010-05-21 11:50:48 +0100716
717 C++ API for retrieving JavaScript stack trace information.
718
719
Steve Block6ded16b2010-05-10 14:33:55 +01007202010-05-05: Version 2.2.8
721
722 Performance improvements in the x64 and ARM backends.
723
724
7252010-05-03: Version 2.2.7
726
727 Added support for ES5 date time string format to Date.parse.
728
729 Performance improvements in the x64 backend.
730
731
7322010-04-28: Version 2.2.6
733
734 Added "amd64" as recognized architecture in scons build script
735 (by Ryan Dahl <coldredlemur@gmail.com>).
736
737 Fixed bug in String search and replace with very simple RegExps.
738
739 Fixed bug in RegExp containing "\b^".
740
741 Performance improvements on all platforms.
742
743
7442010-04-26: Version 2.2.5
745
746 Various performance improvements (especially for ARM and x64)
747
748 Fixed bug in CPU profiling (http://crbug.com/42137)
749
750 Fixed a bug with the natives cache.
751
752 Fixed two bugs in the ARM code generator that can cause
753 wrong calculations.
754
755 Fixed a bug that may cause a wrong result for shift operations.
756
757
7582010-04-21: Version 2.2.4
759
760 Fixed warnings on arm on newer GCC versions.
761
762 Fixed a number of minor bugs.
763
764 Performance improvements on all platforms.
765
766
7672010-04-14: Version 2.2.3
768
769 Added stack command and mem command to ARM simulator debugger.
770
771 Fixed scons snapshot and ARM build, and Windows X64 build issues.
772
773 Performance improvements on all platforms.
774
775
7762010-04-12: Version 2.2.2
777
778 Introduced new profiler API.
779
780 Fixed random number generator to produce full 32 random bits.
781
782
7832010-04-06: Version 2.2.1
784
785 Debugger improvements.
786
787 Fixed minor bugs.
788
789
7902010-03-29: Version 2.2.0
791
792 Fixed a few minor bugs.
793
794 Performance improvements for string operations.
795
796
7972010-03-26: Version 2.1.10
798
799 Fixed scons build issues.
800
801 Fixed a couple of minor bugs.
802
803
8042010-03-25: Version 2.1.9
805
806 Added API support for reattaching a global object to a context.
807
808 Extended debugger API with access to the internal debugger context.
809
810 Fixed Chromium crashes (issues http://crbug.com/39128 and
811 http://crbug.com/39160)
812
813
8142010-03-24: Version 2.1.8
815
816 Added fine-grained garbage collection callbacks to the API.
817
818 Performance improvements on all platforms.
819
820
8212010-03-22: Version 2.1.7
822
823 Fixed issue 650.
824
825 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
826
827 Performance improvements for arithmetic operations.
828
829 Performance improvements for string operations.
830
831 Print script name and line number information in stack trace.
832
833
8342010-03-17: Version 2.1.6
835
836 Performance improvements for arithmetic operations.
837
838 Performance improvements for string operations.
839
840
8412010-03-10: Version 2.1.4
842
843 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
844
845 Performance improvements on all platforms.
846
847
8482010-03-10: Version 2.1.3
849
850 Added API method for context-disposal notifications.
851
852 Added API method for accessing elements by integer index.
853
854 Added missing implementation of Uint32::Value and Value::IsUint32
855 API methods.
856
857 Added IsExecutionTerminating API method.
858
859 Disabled strict aliasing for GCC 4.4.
860
861 Fixed string-concatenation bug (issue 636).
862
863 Performance improvements on all platforms.
864
865
Andrei Popescu402d9372010-02-26 13:31:12 +00008662010-02-23: Version 2.1.2
867
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100868 Fixed a crash bug caused by wrong assert.
Andrei Popescu402d9372010-02-26 13:31:12 +0000869
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100870 Fixed a bug with register names on 64-bit V8 (issue 615).
Andrei Popescu402d9372010-02-26 13:31:12 +0000871
872 Performance improvements on all platforms.
873
Steve Block6ded16b2010-05-10 14:33:55 +0100874
Andrei Popescu402d9372010-02-26 13:31:12 +00008752010-02-19: Version 2.1.1
876
877 [ES5] Implemented Object.defineProperty.
878
879 Improved profiler support.
880
881 Added SetPrototype method in the public V8 API.
882
883 Added GetScriptOrigin and GetScriptLineNumber methods to Function
884 objects in the API.
885
886 Performance improvements on all platforms.
887
888
Leon Clarke4515c472010-02-03 11:58:03 +00008892010-02-03: Version 2.1.0
890
891 Values are now always wrapped in objects when used as a receiver.
892 (issue 223).
893
894 [ES5] Implemented Object.getOwnPropertyNames.
895
896 [ES5] Restrict JSON.parse to only accept strings that conforms to the
897 JSON grammar.
898
899 Improvement of debugger agent (issue 549 and 554).
900
901 Fixed problem with skipped stack frame in profiles (issue 553).
902
903 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
904 <ry@tinyclouds.org>.
905
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100906 Fixed a bug that Math.round() returns incorrect results for huge
Leon Clarke4515c472010-02-03 11:58:03 +0000907 integers.
908
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100909 Fixed enumeration order for objects created from some constructor
Leon Clarke4515c472010-02-03 11:58:03 +0000910 functions (isue http://crbug.com/3867).
911
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100912 Fixed arithmetic on some integer constants (issue 580).
Leon Clarke4515c472010-02-03 11:58:03 +0000913
914 Numerous performance improvements including porting of previous IA-32
915 optimizations to x64 and ARM architectures.
916
917
Leon Clarkee46be812010-01-19 14:06:41 +00009182010-01-14: Version 2.0.6
919
920 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
921 GetOwnProperty, FromPropertyDescriptor.
922
923 Fixed Mac x64 build errors.
924
925 Improved performance of some math and string operations.
926
927 Improved performance of some regexp operations.
928
929 Improved performance of context creation.
930
931 Improved performance of hash tables.
932
933
9342009-12-18: Version 2.0.5
935
936 Extended to upper limit of map space to allow for 7 times as many map
937 to be allocated (issue 524).
938
939 Improved performance of code using closures.
940
941 Improved performance of some binary operations involving doubles.
942
943
9442009-12-16: Version 2.0.4
945
946 Added ECMAScript 5 Object.create.
947
948 Improved performance of Math.max and Math.min.
949
950 Optimized adding of strings on 64-bit platforms.
951
952 Improved handling of external strings by using a separate table
953 instead of weak handles. This improves garbage collection
954 performance and uses less memory.
955
956 Changed code generation for object and array literals in toplevel
957 code to be more compact by doing more work in the runtime.
958
959 Fixed a crash bug triggered when garbage collection happened during
960 generation of a callback load inline cache stub.
961
962 Fixed crash bug sometimes triggered when local variables shadowed
963 parameters in functions that used the arguments object.
964
965
Steve Blockd0582a62009-12-15 09:54:21 +00009662009-12-03: Version 2.0.3
967
968 Optimized handling and adding of strings, for-in and Array.join.
969
970 Heap serialization is now non-destructive.
971
972 Improved profiler support with information on time spend in C++
973 callbacks registered through the API.
974
975 Added commands to the debugger protocol for starting/stopping
976 profiling.
977
978 Enabled the non-optimizing compiler for top-level code.
979
980 Changed the API to only allow strings to be set as data objects on
981 Contexts and scripts to avoid potentially keeping global objects
982 around for too long (issue 528).
983
984 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
985
986 Fixed bugs.
987
988
9892009-11-24: Version 2.0.2
990
991 Improved profiler support.
992
993 Fixed bug that broke compilation of d8 with readline support.
994
995
9962009-11-20: Version 2.0.1
997
998 Fixed crash bug in String.prototype.replace.
999
1000 Reverted a change which caused Chromium interactive ui test
1001 failures.
1002
Leon Clarkee46be812010-01-19 14:06:41 +00001003
Steve Blockd0582a62009-12-15 09:54:21 +000010042009-11-18: Version 2.0.0
1005
1006 Added support for VFP on ARM.
1007
1008 Added TryCatch::ReThrow method to the API.
1009
1010 Reduced the size of snapshots and improved the snapshot load time.
1011
1012 Improved heap profiler support.
1013
1014 64-bit version now supported on Windows.
1015
1016 Fixed a number of debugger issues.
1017
1018 Fixed bugs.
1019
1020
10212009-10-29: Version 1.3.18
1022
1023 Reverted a change which caused crashes in RegExp replace.
1024
1025 Reverted a change which caused Chromium ui_tests failure.
1026
1027
10282009-10-28: Version 1.3.17
1029
1030 Added API method to get simple heap statistics.
1031
1032 Improved heap profiler support.
1033
1034 Fixed the implementation of the resource constraint API so it
1035 works when using snapshots.
1036
1037 Fixed a number of issues in the Windows 64-bit version.
1038
1039 Optimized calls to API getters.
1040
1041 Added valgrind notification on code modification to the 64-bit version.
1042
1043 Fixed issue where we logged shared library addresses on Windows at
1044 startup and never used them.
1045
1046
Steve Block3ce2e202009-11-05 08:53:23 +000010472009-10-16: Version 1.3.16
Leon Clarkee46be812010-01-19 14:06:41 +00001048
Steve Block3ce2e202009-11-05 08:53:23 +00001049 X64: Convert smis to holding 32 bits of payload.
1050
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001051 Introduced v8::Integer::NewFromUnsigned method.
Steve Block3ce2e202009-11-05 08:53:23 +00001052
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001053 Added missing null check in Context::GetCurrent.
Steve Block3ce2e202009-11-05 08:53:23 +00001054
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001055 Added trim, trimLeft and trimRight methods to String
Steve Block3ce2e202009-11-05 08:53:23 +00001056 Patch by Jan de Mooij <jandemooij@gmail.com>
1057
1058 Implement ES5 Array.isArray
1059 Patch by Jan de Mooij <jandemooij@gmail.com>
1060
1061 Skip access checks for hidden properties.
1062
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001063 Added String::Concat(Handle<String> left, Handle<String> right) to the
1064 V8 API.
Steve Block3ce2e202009-11-05 08:53:23 +00001065
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001066 Fixed GYP-based builds of V8.
Steve Block3ce2e202009-11-05 08:53:23 +00001067
1068
10692009-10-07: Version 1.3.15
1070
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001071 Expanded the maximum size of the code space to 512MB for 64-bit mode.
Steve Block3ce2e202009-11-05 08:53:23 +00001072
1073 Fixed a crash bug happening when starting profiling (issue
1074 http://crbug.com/23768).
1075
1076
10772009-10-07: Version 1.3.14
1078
1079 Added GetRealNamedProperty to the API to lookup real properties
1080 located on the object or in the prototype chain skipping any
1081 interceptors.
1082
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001083 Fixed the stack limits setting API to work correctly with threads. The
Steve Block3ce2e202009-11-05 08:53:23 +00001084 stack limit now needs to be set to each thread thich is used with V8.
1085
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001086 Removed the high-priority flag from IdleNotification()
Steve Block3ce2e202009-11-05 08:53:23 +00001087
1088 Ensure V8 is initialized before locking and unlocking threads.
1089
1090 Implemented a new JavaScript minifier for compressing the source of
Steve Blockd0582a62009-12-15 09:54:21 +00001091 the built-in JavaScript. This removes non-Open Source code from Douglas
Steve Block3ce2e202009-11-05 08:53:23 +00001092 Crockford from the project.
1093
1094 Added a missing optimization in StringCharAt.
1095
1096 Fixed some flaky socket tests.
1097
1098 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
1099 in 64-bit mode.
1100
1101 Fixed memory leaks in the thread management code.
1102
1103 Fixed the result of assignment to a pixel array. The assigned value
1104 is now the result.
1105
1106 Error reporting for invalid left-hand sides in for-in statements, pre-
1107 and postfix count expressions, and assignments now matches the JSC
1108 behavior in Safari 4.
1109
1110 Follow the spec in disallowing function declarations without a name.
1111
1112 Always allocate code objects within a 2 GB range. On x64 architecture
1113 this is used to use near calls (32-bit displacement) in Code objects.
1114
1115 Optimized array construction ported to x64 and ARM architectures.
1116
1117 [ES5] Changed Object.keys to return strings for element indices.
1118
1119
Steve Blocka7e24c12009-10-30 11:49:00 +000011202009-09-23: Version 1.3.13
1121
1122 Fixed uninitialized memory problem.
1123
1124 Improved heap profiler support.
1125
1126
11272009-09-22: Version 1.3.12
1128
1129 Changed behavior of |function|.toString() on built-in functions to
1130 be compatible with other implementations. Patch by Jan de Mooij.
1131
1132 Added Object::IsDirty in the API.
1133
1134 Optimized array construction; it is now handled purely in native
1135 code.
1136
1137 [ES5] Made properties of the arguments array enumerable.
1138
1139 [ES5] Added test suite adapter for the es5conform test suite.
1140
1141 [ES5] Added Object.keys function.
1142
1143
11442009-09-15: Version 1.3.11
1145
1146 Fixed crash in error reporting during bootstrapping.
1147
1148 Optimized generated IA32 math code by using SSE2 instructions when
1149 available.
1150
1151 Implemented missing pieces of debugger infrastructure on ARM. The
1152 debugger is now fully functional on ARM.
1153
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001154 Made 'hidden' the default visibility for gcc.
Steve Blocka7e24c12009-10-30 11:49:00 +00001155
1156
11572009-09-09: Version 1.3.10
1158
1159 Fixed profiler on Mac in 64-bit mode.
1160
1161 Optimized creation of objects from simple constructor functions on
1162 ARM.
1163
1164 Fixed a number of debugger issues.
1165
1166 Reduced the amount of memory consumed by V8.
1167
1168
11692009-09-02: Version 1.3.9
1170
1171 Optimized stack guard checks on ARM.
1172
1173 Optimized API operations by inlining more in the API.
1174
1175 Optimized creation of objects from simple constructor functions.
1176
1177 Enabled a number of missing optimizations in the 64-bit port.
1178
1179 Implemented native-code support for regular expressions on ARM.
1180
1181 Stopped using the 'sahf' instruction on 64-bit machines that do
1182 not support it.
1183
1184 Fixed a bug in the support for forceful termination of JavaScript
1185 execution.
1186
1187
11882009-08-26: Version 1.3.8
1189
1190 Changed the handling of idle notifications to allow idle
1191 notifications when V8 has not yet been initialized.
1192
1193 Fixed ARM simulator compilation problem on Windows.
Leon Clarkee46be812010-01-19 14:06:41 +00001194
Steve Blocka7e24c12009-10-30 11:49:00 +00001195
11962009-08-25: Version 1.3.7
1197
1198 Reduced the size of generated code on ARM platforms by reducing
1199 the size of constant pools.
1200
1201 Changed build files to not include the 'ENV' user environment
1202 variable in the build environment.
1203
1204 Changed the handling of idle notifications.
1205
1206
12072009-08-21: Version 1.3.6
1208
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001209 Added support for forceful termination of JavaScript execution.
Steve Blocka7e24c12009-10-30 11:49:00 +00001210
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001211 Added low memory notification to the API. The embedding host can signal
Steve Blocka7e24c12009-10-30 11:49:00 +00001212 a low memory situation to V8.
1213
1214 Changed the handling of global handles (persistent handles in the API
1215 sense) to avoid issues regarding allocation of new global handles
1216 during weak handle callbacks.
1217
1218 Changed the growth policy of the young space.
1219
1220 Fixed a GC issue introduced in version 1.3.5.
1221
1222
12232009-08-19: Version 1.3.5
1224
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001225 Optimized initialization of some arrays in the builtins.
Steve Blocka7e24c12009-10-30 11:49:00 +00001226
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001227 Fixed mac-nm script to support filenames with spaces.
Steve Blocka7e24c12009-10-30 11:49:00 +00001228
1229 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
1230
1231 Changed typeof RegExp from 'object' to 'function' for compatibility.
1232 Fixed bug where regexps were not callable across contexts.
1233
1234 Added context independent script compilation to the API.
1235
1236 Added API call to get the stack trace for an exception.
1237
1238 Added API for getting object mirrors.
1239
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001240 Made sure that SSE3 instructions are used whenever possible even when
Steve Blocka7e24c12009-10-30 11:49:00 +00001241 running off a snapshot generated without using SSE3 instructions.
1242
1243 Tweaked the handling of the initial size and growth policy of the heap.
1244
1245 Added native code generation for RegExp to 64-bit version.
1246
1247 Added JavaScript debugger support to 64-bit version.
1248
1249
12502009-08-13: Version 1.3.4
1251
1252 Added a readline() command to the d8 shell.
1253
1254 Fixed bug in json parsing.
1255
1256 Added idle notification to the API and reduced memory on idle
1257 notifications.
1258
1259
12602009-08-12: Version 1.3.3
1261
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001262 Fixed issue 417: incorrect %t placeholder expansion.
Steve Blocka7e24c12009-10-30 11:49:00 +00001263
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001264 Added .gitignore file similar to Chromium's one.
Steve Blocka7e24c12009-10-30 11:49:00 +00001265
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001266 Fixed SConstruct file to build with new logging code for Android.
Steve Blocka7e24c12009-10-30 11:49:00 +00001267
1268 API: added function to find instance of template in prototype
1269 chain. Inlined Object::IsInstanceOf.
1270
1271 Land change to notify valgrind when we modify code on x86.
1272
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001273 Added api call to determine whether a string can be externalized.
Steve Blocka7e24c12009-10-30 11:49:00 +00001274
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001275 Added a write() command to d8.
Steve Blocka7e24c12009-10-30 11:49:00 +00001276
1277
12782009-08-05: Version 1.3.2
1279
1280 Started new compiler infrastructure for two-pass compilation using a
1281 control flow graph constructed from the AST.
1282
1283 Profiler stack sampling for X64.
1284
1285 Safe handling of NaN to Posix platform-dependent time functions.
1286
1287 Added a new profiler control API to unify controlling various aspects
1288 of profiling.
1289
1290 Fixed issue 392.
1291
1292
12932009-07-30: Version 1.3.1
1294
1295 Speed improvements to accessors and interceptors.
1296
1297 Added support for capturing stack information on custom errors.
1298
1299 Added support for morphing an object into a pixel array where its
1300 indexed properties are stored in an external byte array. Values written
1301 are always clamped to the 0..255 interval.
1302
1303 Profiler on x64 now handles C/C++ functions from shared libraries.
1304
1305 Changed the debugger to avoid stepping into function.call/apply if the
1306 function is a built-in.
1307
1308 Initial implementation of constructor heap profile for JS objects.
Leon Clarkee46be812010-01-19 14:06:41 +00001309
Steve Blocka7e24c12009-10-30 11:49:00 +00001310 More fine grained control of profiling aspects through the API.
Leon Clarkee46be812010-01-19 14:06:41 +00001311
Steve Blocka7e24c12009-10-30 11:49:00 +00001312 Optimized the called as constructor check for API calls.
1313
1314
13152009-07-27: Version 1.3.0
1316
1317 Allowed RegExp objects to be called as functions (issue 132).
1318
1319 Fixed issue where global property cells would escape after
1320 detaching the global object; see http://crbug.com/16276.
1321
1322 Added support for stepping into setters and getters in the
1323 debugger.
1324
1325 Changed the debugger to avoid stopping in its own JavaScript code
1326 and in the code of built-in functions.
1327
1328 Fixed issue 345 by avoiding duplicate escaping labels.
1329
1330 Fixed ARM code generator crash in short-circuited boolean
1331 expressions and added regression tests.
1332
1333 Added an external allocation limit to avoid issues where small V8
1334 objects would hold on to large amounts of external memory without
1335 causing garbage collections.
Leon Clarkee46be812010-01-19 14:06:41 +00001336
1337 Finished more of the inline caching stubs for x64 targets.
Steve Blocka7e24c12009-10-30 11:49:00 +00001338
1339
13402009-07-13: Version 1.2.14
1341
1342 Added separate paged heap space for global property cells and
1343 avoid updating the write barrier when storing into them.
1344
1345 Improved peep-hole optimization on ARM platforms by not emitting
1346 unnecessary debug information.
1347
1348 Re-enabled ICs for loads and calls that skip a global object
1349 during lookup through the prototype chain.
1350
1351 Allowed access through global proxies to use ICs.
1352
1353 Fixed issue 401.
1354
1355
13562009-07-09: Version 1.2.13
1357
1358 Fixed issue 397, issue 398, and issue 399.
1359
1360 Added support for breakpoint groups.
1361
1362 Fixed bugs introduced with the new global object representation.
1363
1364 Fixed a few bugs in the ARM code generator.
1365
1366
13672009-07-06: Version 1.2.12
1368
1369 Added stack traces collection to Error objects accessible through
1370 the e.stack property.
1371
1372 Changed RegExp parser to use a recursive data structure instead of
1373 stack-based recursion.
1374
1375 Optimized Date object construction and string concatenation.
1376
1377 Improved performance of div, mod, and mul on ARM platforms.
1378
1379
13802009-07-02: Version 1.2.11
1381
1382 Improved performance on IA-32 and ARM.
1383
1384 Fixed profiler sampler implementation on Mac OS X.
1385
1386 Changed the representation of global objects to improve
1387 performance of adding a lot of new properties.
1388
1389
13902009-06-29: Version 1.2.10
1391
1392 Improved debugger support.
1393
1394 Fixed bug in exception message reporting (issue 390).
1395
1396 Improved overall performance.
1397
1398
13992009-06-23: Version 1.2.9
1400
1401 Improved math performance on ARM.
1402
1403 Fixed profiler name-inference bug.
1404
1405 Fixed handling of shared libraries in the profiler tick processor
1406 scripts.
1407
1408 Fixed handling of tests that time out in the test scripts.
1409
1410 Fixed compilation on MacOS X version 10.4.
1411
1412 Fixed two bugs in the regular expression engine.
1413
1414 Fixed a bug in the string type inference.
1415
1416 Fixed a bug in the handling of 'constant function' properties.
Leon Clarkee46be812010-01-19 14:06:41 +00001417
Steve Blocka7e24c12009-10-30 11:49:00 +00001418 Improved overall performance.
Leon Clarkee46be812010-01-19 14:06:41 +00001419
Steve Blocka7e24c12009-10-30 11:49:00 +00001420
14212009-06-16: Version 1.2.8
1422
1423 Optimized math on ARM platforms.
1424
1425 Fixed two crash bugs in the handling of getters and setters.
1426
1427 Improved the debugger support by adding scope chain information.
1428
1429 Improved the profiler support by compressing log data transmitted
1430 to clients.
1431
1432 Improved overall performance.
1433
1434
14352009-06-08: Version 1.2.7
1436
1437 Improved debugger and profiler support.
1438
1439 Reduced compilation time by improving the handling of deferred
1440 code.
1441
1442 Optimized interceptor accesses where the property is on the object
1443 on which the interceptors is attached.
1444
1445 Fixed compilation problem on GCC 4.4 by changing the stack
1446 alignment to 16 bytes.
1447
1448 Fixed handle creation to follow stric aliasing rules.
1449
1450 Fixed compilation on FreeBSD.
1451
1452 Introduced API for forcing the deletion of a property ignoring
1453 interceptors and attributes.
1454
1455
14562009-05-29: Version 1.2.6
1457
1458 Added a histogram recording hit rates at different levels of the
1459 compilation cache.
1460
1461 Added stack overflow check for the RegExp analysis phase. Previously a
1462 very long regexp graph could overflow the stack with recursive calls.
1463
1464 Use a dynamic buffer when collecting log events in memory.
1465
1466 Added start/stop events to the profiler log.
1467
1468 Fixed infinite loop which could happen when setting a debug break while
1469 executing a RegExp compiled to native code.
1470
1471 Fixed handling of lastIndexOf called with negative index (issue 351).
1472
1473 Fixed irregular crash in profiler test (issue 358).
1474
1475 Fixed compilation issues with some versions of gcc.
1476
1477
14782009-05-26: Version 1.2.5
1479
1480 Fixed bug in initial boundary check for Boyer-Moore text
1481 search (issue 349).
1482
1483 Fixed compilation issues with MinGW and gcc 4.3+ and added support
1484 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
1485 Craig Schlenter.
1486
1487 Added a script cache to the debugger.
1488
1489 Optimized compilation performance by improving internal data
1490 structures and avoiding expensive property load optimizations for
1491 code that's infrequently executed.
1492
1493 Exposed the calling JavaScript context through the static API
1494 function Context::GetCalling().
1495
1496
14972009-05-18: Version 1.2.4
1498
1499 Improved performance of floating point number allocation for ARM
1500 platforms.
1501
1502 Fixed crash when using the instanceof operator on functions with
1503 number values in their prototype chain (issue 341).
1504
1505 Optimized virtual frame operations in the code generator to speed
1506 up compilation time and allocated the frames in the zone.
1507
1508 Made the representation of virtual frames and jump targets in the
1509 code generator much more compact.
1510
1511 Avoided linear search for non-locals in scope code when resolving
1512 variables inside with and eval scopes.
1513
1514 Optimized lexical scanner by dealing with whitespace as part of
1515 the token scanning instead of as a separate step before it.
1516
1517 Changed the scavenging collector so that promoted objects do not
1518 reside in the old generation while their remembered set is being
1519 swept for pointers into the young generation.
1520
1521 Fixed numeric overflow handling when compiling count operations.
1522
1523
15242009-05-11: Version 1.2.3
1525
1526 Fixed bug in reporting of out-of-memory situations.
1527
1528 Introduced hidden prototypes on certain builtin prototype objects
1529 such as String.prototype to emulate JSC's behavior of restoring
1530 the original function when deleting functions from those prototype
1531 objects.
1532
1533 Fixed crash bug in the register allocator.
1534
1535
15362009-05-04: Version 1.2.2
1537
1538 Fixed bug in array sorting for sparse arrays (issue 326).
1539
1540 Added support for adding a soname when building a shared library
1541 on Linux (issue 151).
1542
1543 Fixed bug caused by morphing internal ASCII strings to external
1544 two-byte strings. Slices over ASCII strings have to forward ASCII
1545 checks to the underlying buffer string.
1546
1547 Allowed API call-as-function handlers to be called as
1548 constructors.
1549
1550 Fixed a crash bug where an external string was disposed but a
1551 slice of the external string survived as a symbol.
1552
1553
15542009-04-27: Version 1.2.1
1555
1556 Added EcmaScript 5 JSON object.
1557
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001558 Fixed bug in preemption support on ARM.
Steve Blocka7e24c12009-10-30 11:49:00 +00001559
1560
15612009-04-23: Version 1.2.0
1562
1563 Optimized floating-point operations on ARM.
1564
1565 Added a number of extensions to the debugger API.
1566
1567 Changed the enumeration order for unsigned integer keys to always
1568 be numerical order.
1569
1570 Added a "read" extension to the shell sample.
1571
1572 Added support for Array.prototype.reduce and
1573 Array.prototype.reduceRight.
1574
1575 Added an option to the SCons build to control Microsoft Visual C++
1576 link-time code generation.
1577
1578 Fixed a number of bugs (in particular issue 315, issue 316,
1579 issue 317 and issue 318).
1580
1581
15822009-04-15: Version 1.1.10
1583
1584 Fixed crash bug that occurred when loading a const variable in the
1585 presence of eval.
1586
1587 Allowed using with and eval in registered extensions in debug mode
1588 by fixing bogus assert.
1589
1590 Fixed the source position for function returns to enable the
1591 debugger to break there.
1592
1593
15942009-04-14: Version 1.1.9
1595
1596 Made the stack traversal code in the profiler robust by avoiding
1597 to look into the heap.
1598
1599 Added name inferencing for anonymous functions to facilitate
1600 debugging and profiling.
1601
1602 Re-enabled stats timers in the developer shell (d8).
1603
1604 Fixed issue 303 by avoiding to shortcut cons-symbols.
1605
1606
16072009-04-11: Version 1.1.8
1608
1609 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
1610
1611 Fixed step-in handling for Function.prototype.apply and call in
1612 the debugger (issue 269).
1613
1614 Fixed v8::Object::DeleteHiddenValue to not bail out when there
1615 are no hidden properties.
1616
1617 Added workaround for crash bug, where external symbol table
1618 entries with deleted resources would lead to NPEs when looking
1619 up in the symbol table.
1620
1621
16222009-04-07: Version 1.1.7
1623
1624 Added support for easily importing additional environment
1625 variables into the SCons build.
1626
1627 Optimized strict equality checks.
1628
1629 Fixed crash in indexed setters on objects without a corresponding
1630 getter (issue 298).
1631
1632 Re-enabled script compilation cache.
1633
1634
16352009-04-01: Version 1.1.6
1636
1637 Reverted an unsafe code generator change.
1638
1639
16402009-04-01: Version 1.1.5
1641
1642 Fixed bug that caused function literals to not be optimized as
1643 much as other functions.
1644
1645 Improved profiler support.
1646
1647 Fixed a crash bug in connection with debugger unloading.
1648
1649 Fixed a crash bug in the code generator caused by losing the
1650 information that a frame element was copied.
1651
1652 Fixed an exception propagation bug that could cause non-null
1653 return values when exceptions were thrown.
1654
1655
16562009-03-30: Version 1.1.4
1657
1658 Optimized String.prototype.match.
1659
1660 Improved the stack information in profiles.
1661
1662 Fixed bug in ARM port making it possible to compile the runtime
1663 system for thumb mode again.
1664
1665 Implemented a number of optimizations in the code generator.
1666
1667 Fixed a number of memory leaks in tests.
1668
1669 Fixed crash bug in connection with script source code and external
1670 strings.
1671
1672
16732009-03-24: Version 1.1.3
1674
1675 Fixed assertion failures in compilation of loop conditions.
1676
1677 Removed STL dependency from developer shell (d8).
1678
1679 Added infrastructure for protecting the V8 heap from corruption
1680 caused by memory modifications from the outside.
1681
1682
16832009-03-24: Version 1.1.2
1684
1685 Improved frame merge code generated by the code generator.
1686
1687 Optimized String.prototype.replace.
1688
1689 Implemented __defineGetter__ and __defineSetter__ for properties
1690 with integer keys on non-array objects.
1691
1692 Improved debugger and profiler support.
1693
1694 Fixed a number of portability issues to allow compilation for
1695 smaller ARM devices.
1696
1697 Exposed object cloning through the API.
1698
1699 Implemented hidden properties. This is used to expose an identity
1700 hash for objects through the API.
1701
1702 Implemented restarting of regular expressions if their input
1703 string changes representation during preemption.
1704
1705 Fixed a code generator bug that could cause assignments in loops
1706 to be ignored if using continue to break out of the loop (issue
1707 284).
1708
1709
17102009-03-12: Version 1.1.1
1711
1712 Fixed an assertion in the new compiler to take stack overflow
1713 exceptions into account.
1714
1715 Removed exception propagation code that could cause crashes.
1716
1717 Fixed minor bug in debugger line number computations.
1718
1719 8-byte align the C stack on Linux and Windows to speed up floating
1720 point computations.
1721
1722
17232009-03-12: Version 1.1.0
1724
1725 Improved code generation infrastructure by doing simple register
1726 allocation and constant folding and propagation.
1727
1728 Optimized regular expression matching by avoiding to create
1729 intermediate string arrays and by flattening nested array
1730 representations of RegExp data.
1731
1732 Traverse a few stack frames when recording profiler samples to
1733 include partial call graphs in the profiling output.
1734
1735 Added support for using OProfile to profile generated code.
1736
1737 Added remote debugging support to the D8 developer shell.
1738
1739 Optimized creation of nested literals like JSON objects.
1740
1741 Fixed a bug in garbage collecting unused maps and turned it on by
1742 default (--collect-maps).
1743
1744 Added support for running tests under Valgrind.
1745
1746
17472009-02-27: Version 1.0.3
1748
1749 Optimized double-to-integer conversions in bit operations by using
1750 SSE3 instructions if available.
1751
1752 Optimized initialization sequences that store to multiple
1753 properties of the same object.
1754
1755 Changed the D8 debugger frontend to use JSON messages.
1756
1757 Force garbage collections when disposing contexts.
1758
1759 Align code objects at 32-byte boundaries.
1760
1761
17622009-02-25: Version 1.0.2
1763
1764 Improved profiling support by performing simple call stack
1765 sampling for ticks and by fixing a bug in the logging of code
1766 addresses.
1767
1768 Fixed a number of debugger issues.
1769
1770 Optimized code that uses eval.
1771
1772 Fixed a couple of bugs in the regular expression engine.
1773
1774 Reduced the size of generated code for certain regular expressions.
1775
1776 Removed JSCRE completely.
1777
1778 Fixed issue where test could not be run if there was a dot in the
1779 checkout path.
1780
1781
17822009-02-13: Version 1.0.1
1783
1784 Fixed two crash-bugs in irregexp (issue 231 and 233).
1785
1786 Fixed a number of minor bugs (issue 87, 227 and 228).
1787
1788 Added support for morphing strings to external strings on demand
1789 to avoid having to create copies in the embedding code.
1790
1791 Removed experimental support for external symbol callbacks.
1792
1793
17942009-02-09: Version 1.0.0
1795
1796 Fixed crash-bug in the code generation for case independent 16 bit
1797 backreferences.
1798
1799 Made shells more robust in the presence of string conversion
1800 failures (issue 224).
1801
1802 Fixed a potential infinite loop when attempting to resolve
1803 eval (issue 221).
1804
1805 Miscellaneous fixes to the new regular expression engine.
1806
1807 Reduced binary by stripping unneeded text from JavaScript library and
1808 minifying some JavaScript files.
1809
1810
18112009-01-27: Version 0.4.9
1812
1813 Enabled new regular expression engine.
1814
1815 Made a number of changes to the debugger protocol.
1816
1817 Fixed a number of bugs in the preemption support.
1818
1819 Added -p option to the developer shell to run files in parallel
1820 using preemption.
1821
1822 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
1823 193, 198 and 201).
1824
1825 Fixed a number of bugs in the serialization/deserialization
1826 support for the ARM platform.
1827
1828
18292009-01-19: Version 0.4.8.1
1830
1831 Minor patch to debugger support.
1832
1833
18342009-01-16: Version 0.4.8
1835
1836 Fixed string length bug on ARM (issue 171).
1837
1838 Made most methods in the API const.
1839
1840 Optimized object literals by improving data locality.
1841
1842 Fixed bug that caused incomplete functions to be cached in case of
1843 stack overflow exceptions.
1844
1845 Fixed bugs that caused catch variables and variables introduced by
1846 eval to behave incorrectly when using accessors (issues 186, 190
1847 and 191).
1848
1849
18502009-01-06: Version 0.4.7
1851
1852 Minor bugfixes and optimizations.
1853
1854 Added command line debugger to D8 shell.
1855
1856 Fixed subtle bug that caused the wrong 'this' to be used when
1857 calling a caught function in a catch clause.
1858
1859 Inline array loads within loops directly in the code instead of
1860 always calling a stub.
1861
1862
18632008-12-11: Version 0.4.6
1864
1865 Fixed exception reporting bug where certain exceptions were
1866 incorrectly reported as uncaught.
1867
1868 Improved the memory allocation strategy used during compilation to
1869 make running out of memory when compiling huge scripts less
1870 likely.
1871
1872 Optimized String.replace by avoiding the construction of certain
1873 sub strings.
1874
1875 Fixed bug in code generation for large switch statements on ARM.
1876
1877 Fixed bug that caused V8 to change the global object template
1878 passed in by the user.
1879
1880 Changed the API for creating object groups used during garbage
1881 collection. Entire object groups are now passed to V8 instead of
1882 individual members of the groups.
1883
1884
18852008-12-03: Version 0.4.5
1886
1887 Added experimental API support for allocating V8 symbols as
1888 external strings.
1889
1890 Fixed bugs in debugging support on ARM.
1891
1892 Changed eval implementation to correctly detect whether or not a
1893 call to eval is aliased.
1894
1895 Fixed bug caused by a combination of the compilation cache and
1896 dictionary probing in native code. The bug caused us to sometimes
1897 call functions that had not yet been compiled.
1898
1899 Added platform support for FreeBSD.
1900
1901 Added support for building V8 on Windows with either the shared or
1902 static version of MSVCRT
1903
1904 Added the v8::jscre namespace around the jscre functions to avoid
1905 link errors (duplicate symbols) when building Google Chrome.
1906
1907 Added support for calling a JavaScript function with the current
1908 debugger execution context as its argument to the debugger
1909 interface.
1910
1911 Changed the type of names of counters from wchar_t to char.
1912
1913 Changed the Windows system call used to compute daylight savings
1914 time. The system call that we used to use became four times
1915 slower on WinXP SP3.
1916
1917 Added support in the d8 developer shell for memory-mapped counters
1918 and added a stats-viewer tool.
1919
1920 Fixed bug in upper/lower case mappings (issue 149).
1921
1922
19232008-11-17: Version 0.4.4
1924
1925 Reduced code size by using shorter instruction encoding when
1926 possible.
1927
1928 Added a --help option to the shell sample and to the d8 shell.
1929
1930 Added visual studio project files for building the ARM simulator.
1931
1932 Fixed a number of ARM simulator issues.
1933
1934 Fixed bug in out-of-memory handling on ARM.
1935
1936 Implemented shell support for passing arguments to a script from
1937 the command line.
1938
1939 Fixed bug in date code that made certain date functions return -0
1940 instead of 0 for dates before the epoch.
1941
1942 Restricted applications of eval so it can only be used in the
1943 context of the associated global object.
1944
1945 Treat byte-order marks as whitespace characters.
1946
1947
19482008-11-04: Version 0.4.3
1949
1950 Added support for API accessors that prohibit overwriting by
1951 accessors defined in JavaScript code by using __defineGetter__ and
1952 __defineSetter__.
1953
1954 Improved handling of conditionals in test status files.
1955
1956 Introduced access control in propertyIsEnumerable.
1957
1958 Improved performance of some string operations by caching
1959 information about the type of the string between operations.
1960
1961 Fixed bug in fast-case code for switch statements that only have
1962 integer labels.
1963
1964
19652008-10-30: Version 0.4.2
1966
1967 Improved performance of Array.prototype.concat by moving the
1968 implementation to C++ (issue 123).
1969
1970 Fixed heap growth policy to avoid growing old space to its maximum
1971 capacity before doing a garbage collection and fixed issue that
1972 would lead to artificial out of memory situations (issue 129).
1973
1974 Fixed Date.prototype.toLocaleDateString to return the date in the
1975 same format as WebKit.
1976
1977 Added missing initialization checks to debugger API.
1978
1979 Added removing of unused maps during GC.
1980
1981
19822008-10-28: Version 0.4.1
1983
1984 Added caching of RegExp data in compilation cache.
1985
1986 Added Visual Studio project file for d8 shell.
1987
1988 Fixed function call performance regression introduced in version
1989 0.4.0 when splitting the global object in two parts (issue 120).
1990
1991 Fixed issue 131 by checking for empty handles before throwing and
1992 reporting exceptions.
1993
1994
19952008-10-23: Version 0.4.0
1996
1997 Split the global object into two parts: The state holding global
1998 object and the global object proxy.
1999
2000 Fixed bug that affected the value of an assignment to an element
2001 in certain cases (issue 116).
2002
2003 Added GetPropertyNames functionality (issue 33) and extra Date
2004 functions (issue 77) to the API.
2005
2006 Changed WeakReferenceCallback to take a Persistent<Value> instead
2007 of a Persistent<Object> (issue 101).
2008
2009 Fixed issues with message reporting for exceptions in try-finally
2010 blocks (issues 73 and 75).
2011
2012 Optimized flattening of strings and string equality checking.
2013
2014 Improved Boyer-Moore implementation for faster indexOf operations.
2015
2016 Added development shell (d8) which includes counters and
2017 completion support.
2018
2019 Fixed problem with the receiver passed to functions called from
2020 eval (issue 124).
2021
2022
20232008-10-16: Version 0.3.5
2024
2025 Improved string hash-code distribution by excluding bit-field bits
2026 from the hash-code.
2027
2028 Changed string search algorithm used in indexOf from KMP to
2029 Boyer-Moore.
2030
2031 Improved the generated code for the instanceof operator.
2032
2033 Improved performance of slow-case string equality checks by
2034 specializing the code based on the string representation.
2035
2036 Improve the handling of out-of-memory situations (issue 70).
2037
2038 Improved performance of strict equality checks.
2039
2040 Improved profiler output to make it easier to see anonymous
2041 functions.
2042
2043 Improved performance of slow-case keyed loads.
2044
2045 Improved property access performance by allocating a number of
2046 properties in the front object.
2047
2048 Changed the toString behavior on the built-in object constructors
2049 to print [native code] instead of the actual source. Some web
2050 applications do not like constructors with complex toString
2051 results.
2052
2053
20542008-10-06: Version 0.3.4
2055
2056 Changed Array.prototype.sort to use quick sort.
2057
2058 Fixed code generation issue where leaving a finally block with
2059 break or continue would accumulate elements on the expression
2060 stack (issue 86).
2061
2062 Made sure that the name accessor on functions returns the expected
2063 names for builtin JavaScript functions and C++ callback functions.
2064
2065 Added fast case code for extending the property storage array of
2066 JavaScript objects.
2067
2068 Ported switch statement optimizations introduced in version 0.3.3
2069 to the ARM code generator.
2070
2071 Allowed GCC to use strict-aliasing rules when compiling.
2072
2073 Improved performance of arguments object allocation by taking care
2074 of arguments adaptor frames in the generated code.
2075
2076 Updated the V8 benchmark suite to version 2.
2077
2078
20792008-09-25: Version 0.3.3
2080
2081 Improved handling of relocation information to enable more
2082 peep-hole optimizations.
2083
2084 Optimized switch statements where all labels are constant small
2085 integers.
2086
2087 Optimized String.prototype.indexOf for common cases.
2088
2089 Fixed more build issues (issue 80).
2090
2091 Fixed a couple of profiler issues.
2092
2093 Fixed bug where the body of a function created using the Function
2094 constructor was not allowed to end with a single-line comment
2095 (issue 85).
2096
2097 Improved handling of object literals by canonicalizing object
2098 literal maps. This will allow JSON objects with the same set of
2099 properties to share the same map making inline caching work better
2100 for JSON objects.
2101
2102
21032008-09-17: Version 0.3.2
2104
2105 Generalized the EvalCache into a CompilationCache and enabled it
2106 for scripts too. The current strategy is to retire all entries
2107 whenever a mark-sweep collection is started.
2108
2109 Fixed bug where switch statements containing only a default case
2110 would lead to an unbalanced stack (issue 69).
2111
2112 Fixed bug that made access to the function in a named function
2113 expression impossible in certain situations (issue 24).
2114
2115 Fixed even more build issues.
2116
2117 Optimized calling conventions on ARM. The conventions on ARM and
2118 IA-32 now match.
2119
2120 Removed static initializers for flags and counters.
2121
2122 Improved inline caching behavior for uncommon cases where lazily
2123 loading Date and RegExp code could force certain code paths go
2124 megamorphic.
2125
2126 Removed arguments adaption for builtins written in C++. This
2127 makes Array.prototype.push and Array.prototype.pop slightly
2128 faster.
2129
2130
21312008-09-11: Version 0.3.1
2132
2133 Fixed a number of build issues.
2134
2135 Fixed problem with missing I-cache flusing on ARM.
2136
2137 Changed space layout in memory management by splitting up
2138 code space into old data space and code space.
2139
2140 Added utf-8 conversion support to the API (issue 57).
2141
2142 Optimized repeated calls to eval with the same strings. These
2143 repeated calls are common in web applications.
2144
2145 Added Xcode project file.
2146
2147 Optimized a couple of Array operation.
2148
2149 Fixed parser bug by checking for end-of-string when parsing break
2150 and continue (issue 35).
2151
2152 Fixed problem where asian characters were not categorized as
2153 letters.
2154
2155 Fixed bug that disallowed calling functions fetched from an array
2156 using a string as an array index (issue 32).
2157
2158 Fixed bug where the internal field count on object templates were
2159 sometimes ignored (issue 54).
2160
2161 Added -f option to the shell sample for compatibility with other
2162 engines (issue 18).
2163
2164 Added source info to TryCatches in the API.
2165
2166 Fixed problem where the seed for the random number generator was
2167 clipped in a double to unsigned int conversion.
2168
2169 Fixed bug where cons string symbols were sometimes converted to
2170 non-symbol flat strings during GC.
2171
2172 Fixed bug in error reporting when attempting to convert null to an
2173 object.
2174
2175
21762008-09-04: Version 0.3.0
2177
2178 Added support for running tests on the ARM simulator.
2179
2180 Fixed bug in the 'in' operator where negative indices were not
2181 treated correctly.
2182
2183 Fixed build issues on gcc-4.3.1.
2184
2185 Changed Date.prototype.toLocaleTimeString to not print the
2186 timezone part of the time.
2187
2188 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
2189 with user code.
2190
2191
21922008-09-02: Version 0.2.5
2193
2194 Renamed the top level directory 'public' to 'include'.
2195
2196 Added 'env' option to the SCons build scripts to support
2197 overriding the ENV part of the build environment. This is mostly
2198 to support Windows builds in cases where SCons cannot find the
2199 correct paths to the Windows SDK, as these paths cannot be passed
2200 through shell environment variables.
2201
2202 Enabled "Buffer Security Check" on for the Windows SCons build and
2203 added the linker option /OPT:ICF as an optimization.
2204
2205 Added the V8 benchmark suite to the repository.
2206
2207
22082008-09-01: Version 0.2.4
2209
2210 Included mjsunit JavaScript test suite and C++ unit tests.
2211
2212 Changed the shell sample to not print the result of executing a
2213 script provided on the command line.
2214
2215 Fixed issue when building samples on Windows using a shared V8
2216 library. Added visibility option on Linux build which makes the
2217 generated library 18% smaller.
2218
2219 Changed build system to accept multiple build modes in one build
2220 and generate separate objects, libraries and executables for each
2221 mode.
2222
2223 Removed deferred negation optimization (a * -b => -(a * b)) since
2224 this visibly changes operand conversion order.
2225
2226 Improved parsing performance by introducing stack guard in
2227 preparsing. Without a stack guard preparsing always bails out
2228 with stack overflow.
2229
2230 Changed shell sample to take flags directly from the command-line.
2231 Added API call that implements this.
2232
2233 Added load, quit and version functions to the shell sample so it's
2234 easier to run benchmarks and tests.
2235
2236 Fixed issue with building samples and cctests on 64-bit machines.
2237
2238 Fixed bug in the runtime system where the prototype chain was not
2239 always searched for a setter when setting a property that does not
2240 exist locally.
2241
2242
22432008-08-14: Version 0.2.3
2244
2245 Improved performance of garbage collection by moving the
2246 function that updates pointers during compacting collection
2247 into the updating visitor. This gives the compiler a better
2248 chance to inline and avoid a function call per (potential)
2249 pointer.
2250
2251 Extended the shell sample with a --runtime-flags option.
2252
2253 Added Visual Studio project files for the shell.cc and
2254 process.cc samples.
2255
2256
22572008-08-13: Version 0.2.2
2258
2259 Improved performance of garbage collection by changing the way
2260 we use the marking stack in the event of stack overflow during
2261 full garbage collection and by changing the way we mark roots.
2262
2263 Cleaned up ARM version by removing top of stack caching and by
2264 introducing push/pop elimination.
2265
2266 Cleaned up the way runtime functions are called to allow
2267 runtime calls with no arguments.
2268
2269 Changed Windows build options to make sure that exceptions are
2270 disabled and that optimization flags are enabled.
2271
2272 Added first version of Visual Studio project files.
2273
2274
22752008-08-06: Version 0.2.1
2276
2277 Improved performance of unary addition by avoiding runtime calls.
2278
2279 Fixed the handling of '>' and '<=' to use right-to-left conversion
2280 and left-to-right evaluation as specified by ECMA-262.
2281
2282 Fixed a branch elimination bug on the ARM platform where incorrect
2283 code was generated because of overly aggressive branch
2284 elimination.
2285
2286 Improved performance of code that repeatedly assigns the same
2287 function to the same property of different objects with the same
2288 map.
2289
2290 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
2291 no longer expects DEBUG to be defined.
2292
2293 Added platform-nullos.cc to serve as the basis for new platform
2294 implementations.
2295
2296
22972008-07-30: Version 0.2.0
2298
2299 Changed all text files to have native svn:eol-style.
2300
2301 Added a few samples and support for building them. The samples
2302 include a simple shell that can be used to benchmark and test V8.
2303
2304 Changed V8::GetVersion to return the version as a string.
2305
2306 Added source for lazily loaded scripts to snapshots and made
2307 serialization non-destructive.
2308
2309 Improved ARM support by fixing the write barrier code to use
2310 aligned loads and stores and by removing premature locals
2311 optimization that relied on broken support for callee-saved
2312 registers (removed).
2313
2314 Refactored the code for marking live objects during garbage
2315 collection and the code for allocating objects in paged
2316 spaces. Introduced an abstraction for the map word of a heap-
2317 allocated object and changed the memory allocator to allocate
2318 executable memory only for spaces that may contain code objects.
2319
2320 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
2321 they can be used by debugging and logging modules. Added
2322 thread-safe message queues for dealing with debugger events.
2323
2324 Fixed the source code reported by toString for certain builtin
2325 empty functions and made sure that the prototype property of a
2326 function is enumerable.
2327
2328 Improved performance of converting values to condition flags in
2329 generated code.
2330
2331 Merged disassembler-{arch} files.
2332
2333
23342008-07-28: Version 0.1.4
2335
2336 Added support for storing JavaScript stack traces in a stack
2337 allocated buffer to make it visible in shallow core dumps.
2338 Controlled by the --preallocate-message-memory flag which is
2339 disabled by default.
2340
2341
23422008-07-25: Version 0.1.3
2343
2344 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
2345 map transitions would count as properties.
2346
2347 Allowed aliased eval invocations by treating them as evals in the
2348 global context. This may change in the future.
2349
2350 Added support for accessing the last entered context through the
2351 API and renamed Context::Current to Context::GetCurrent and
2352 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
2353
2354 Fixed bug in the debugger that would cause the debugger scripts to
2355 be recursively loaded and changed all disabling of interrupts to
2356 be block-structured.
2357
2358 Made snapshot data read-only to allow it to be more easily shared
2359 across multiple users of V8 when linked as a shared library.
2360
2361
23622008-07-16: Version 0.1.2
2363
2364 Fixed building on Mac OS X by recognizing i386 and friends as
2365 IA-32 platforms.
2366
2367 Added propagation of stack overflow exceptions that occur while
2368 compiling nested functions.
2369
2370 Improved debugger with support for recursive break points and
2371 handling of exceptions that occur in the debugger JavaScript code.
2372
2373 Renamed GetInternal to GetInternalField and SetInternal to
2374 SetInternalField in the API and moved InternalFieldCount and
2375 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
2376
2377
23782008-07-09: Version 0.1.1
2379
2380 Fixed bug in stack overflow check code for IA-32 targets where a
2381 non-tagged value in register eax was pushed to the stack.
2382
2383 Fixed potential quadratic behavior when converting strings to
2384 numbers.
2385
2386 Fixed bug where the return value from Object::SetProperty could
2387 end up being the property holder instead of the written value.
2388
2389 Improved debugger support by allowing nested break points and by
2390 dealing with stack-overflows when compiling functions before
2391 setting break points in them.
2392
2393
23942008-07-03: Version 0.1.0
2395
2396 Initial export.
2397