blob: c81d7a7376ee6c30b67c68541b4d0c8902ec8f08 [file] [log] [blame]
Ben Murdochb0fe1622011-05-05 13:52:32 +010012010-12-21: Version 3.0.4
2
3 Added Date::ResetCache() to the API so that the cached values in the
4 Date object can be reset to allow live DST / timezone changes.
5
6 Extended existing support for printing (while debugging) the contents
7 of objects. Added support for printing objects from release builds.
8
9 Fixed V8 issues 989, 1006, and 1007.
10
11
122010-12-17: Version 3.0.3
13
14 Reapplied all changes for version 3.0.1.
15
16 Improved debugger protocol for remote debugging.
17
18 Added experimental support for using gyp to generate build files
19 for V8.
20
21 Fixed implementation of String::Write in the API (issue 975).
22
23
242010-12-15: Version 3.0.2
25
26 Revert version 3.0.1 and patch 3.0.1.1.
27
28
292010-12-13: Version 3.0.1
30
31 Added support for an experimental internationalization API as an
32 extension. This extension is disabled by default but can be enabled
33 when building V8. The ECMAScript internationalization strawman is
34 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
35
36 Made RegExp character class parsing stricter. This mirrors a change
37 to RegExp parsing in WebKit.
38
39 Fixed a bug in Object.defineProperty when used to change attributes
40 of an existing property. It incorrectly set the property value to
41 undefined (issue 965).
42
43 Fixed several different compilation failures on various platforms
44 caused by the 3.0.0 release.
45
46 Optimized Math.pow so it can work on unboxed doubles.
47
48 Sped up quoting of JSON strings by removing one traversal of the
49 string.
50
51
522010-12-07: Version 3.0.0
53
54 Improved performance by (partially) addressing issue 957 on
55 IA-32. Still needs more work for the other architectures.
56
57
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800582010-11-29: Version 2.5.9
59
60 Fixed crashes during GC caused by partially initialize heap
61 objects.
62
63 Fixed bug in process sample that caused memory leaks.
64
65 Improved performance on ARM by implementing missing stubs and
66 inlining.
67
68 Improved heap profiler support.
69
70 Added separate seeding on Windows of the random number generator
71 used internally by the compiler (issue 936).
72
73 Exposed API for getting the name of the function used to construct
74 an object.
75
76 Fixed date parser to handle one and two digit millisecond
77 values (issue 944).
78
79 Fixed number parsing to disallow space between sign and
80 digits (issue 946).
81
82
832010-11-23: Version 2.5.8
84
85 Removed dependency on Gay's dtoa.
86
87 Improved heap profiler precision and speed.
88
89 Reduced overhead of callback invocations on ARM.
90
91
922010-11-18: Version 2.5.7
93
94 Fixed obscure evaluation order bug (issue 931).
95
96 Split the random number state between JavaScript and the private API.
97
98 Fixed performance bug causing GCs when generating stack traces on
99 code from very large scripts.
100
101 Fixed bug in parser that allowed (foo):42 as a labelled statement
102 (issue 918).
103
104 Provide more accurate results about used heap size via
105 GetHeapStatistics.
106
107 Allow build-time customization of the max semispace size.
108
109 Made String.prototype.split honor limit when separator is empty
110 (issue 929).
111
112 Added missing failure check after expecting an identifier in
113 preparser (Chromium issue 62639).
114
115
Russell Brenner90bac252010-11-18 13:33:46 -08001162010-11-10: Version 2.5.6
117
118 Added support for VFP rounding modes to the ARM simulator.
119
120 Fixed multiplication overflow bug (issue 927).
121
122 Added a limit for the amount of executable memory (issue 925).
123
124
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001252010-11-08: Version 2.5.5
126
127 Added more aggressive GC of external objects in near out-of-memory
128 situations.
129
130 Fixed a bug that gave the incorrect result for String.split called
131 on the empty string (issue 924).
132
133
1342010-11-03: Version 2.5.4
135
136 Improved V8 VFPv3 runtime detection to address issue 914.
137
138
1392010-11-01: Version 2.5.3
140
141 Fixed a bug that prevents constants from overwriting function values
142 in object literals (issue 907).
143
144 Fixed a bug with reporting of impossible nested calls of DOM functions
145 (issue http://crbug.com/60753).
146
147
John Reck59135872010-11-02 12:39:01 -07001482010-10-27: Version 2.5.2
149
150 Improved sampler resolution on Linux.
151
152 Allowed forcing the use of a simulator from the build script
153 independently of the host architecture.
154
155 Fixed FreeBSD port (Issue 912).
156
157 Made windows-tick-processor respect D8_PATH.
158
159 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
160
161
Ben Murdochf87a2032010-10-22 12:50:53 +01001622010-10-20: Version 2.5.1
163
164 Fixed bug causing spurious out of memory exceptions
165 (issue http://crbug.com/54580).
166
167 Fixed compilation error on Solaris platform (issue 901).
168
169 Fixed error in strtod (string to floating point number conversion)
170 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
171
172 Adjusted randomized allocations of executable memory to have 64k
173 granularity (issue http://crbug.com/56036).
174
175 Supported profiling using kernel perf_events on linux. Added ll_prof
176 script to tools and --ll-prof flag to V8.
177
178
1792010-10-18: Version 2.5.0
180
181 Fixed bug in cache handling of lastIndex on global regexps
182 (issue http://crbug.com/58740).
183
184 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
185 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
Ben Murdochb0fe1622011-05-05 13:52:32 +0100186 from Hewlett-Packard Development Company, LP).
Ben Murdochf87a2032010-10-22 12:50:53 +0100187
188 Fixed compilation error on ARM with gcc 4.4 (issue 894).
189
190
1912010-10-13: Version 2.4.9
192
193 Fixed a bug in the handling of conditional expressions in test
194 contexts in compiler for top-level code.
195
196 Added "//@ sourceURL" information to the StackTrace API.
197
198 Exposed RegExp construction through the API.
199
200
2012010-10-04: Version 2.4.8
202
203 Fixed a bug in ResumeProfilerEx causing it to not always write out the
204 whole snapshot (issue 868).
205
206 Performance improvements on all platforms.
207
208
2092010-09-30: Version 2.4.7
210
211 Changed the command-line flag --max-new-space-size to be in kB and the
212 flag --max-old-space-size to be in MB (previously they were in bytes).
213
214 Added Debug::CancelDebugBreak to the debugger API.
215
216 Fixed a bug in getters for negative numeric property names
217 (https://bugs.webkit.org/show_bug.cgi?id=46689).
218
219 Performance improvements on all platforms.
220
221
Kristian Monsen0d5e1162010-09-30 15:31:59 +01002222010-09-27: Version 2.4.6
Ben Murdochf87a2032010-10-22 12:50:53 +0100223
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100224 Fixed assertion failure related to copy-on-write arrays (issue 876).
225
226 Fixed build failure of 64-bit V8 on Windows.
227
228 Fixed a bug in RegExp (issue http://crbug.com/52801).
229
230 Improved the profiler's coverage to cover more functions (issue 858).
231
232 Fixed error in shift operators on 64-bit V8
233 (issue http://crbug.com/54521).
234
235
2362010-09-22: Version 2.4.5
Ben Murdochf87a2032010-10-22 12:50:53 +0100237
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100238 Changed the RegExp benchmark to exercise the regexp engine on different
239 inputs by scrambling the input strings.
240
241 Fixed a bug in keyed loads on strings.
242
243 Fixed a bug with loading global function prototypes.
244
245 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
246
247 Performance improvements on all platforms.
248
249
2502010-09-15: Version 2.4.4
251
252 Fixed bug with hangs on very large sparse arrays.
253
254 Now tries harder to free up memory when running out of space.
255
256 Added heap snapshots to JSON format to API.
257
258 Recalibrated benchmarks.
259
260
Steve Block59151502010-09-22 15:07:15 +01002612010-09-13: Version 2.4.3
262
263 Made Date.parse properly handle TZ offsets (issue 857).
264
265 Performance improvements on all platforms.
266
267
Iain Merrick9ac36c92010-09-13 15:29:50 +01002682010-09-08: Version 2.4.2
269
270 Fixed GC crash bug.
271
272 Fixed stack corruption bug.
273
274 Fixed compilation for newer C++ compilers that found Operand(0)
275 ambiguous.
276
277
2782010-09-06: Version 2.4.1
279
280 Added the ability for an embedding application to receive a callback
281 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
282 (V8::RemoveMemoryAllocationCallback) from the OS.
283
284 Fixed several JSON bugs (including issue 855).
285
286 Fixed memory overrun crash bug triggered during V8's tick-based
287 profiling.
288
289 Performance improvements on all platforms.
290
291
Kristian Monsen80d68ea2010-09-08 11:05:35 +01002922010-09-01: Version 2.4.0
293
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100294 Fixed bug in Object.freeze and Object.seal when Array.prototype or
295 Object.prototype are changed (issue 842).
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100296
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100297 Updated Array.splice to follow Safari and Firefox when called
Iain Merrick9ac36c92010-09-13 15:29:50 +0100298 with zero arguments.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100299
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100300 Fixed a missing live register when breaking at keyed loads on ARM.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100301
Iain Merrick9ac36c92010-09-13 15:29:50 +0100302 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100303
304
3052010-08-25: Version 2.3.11
306
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100307 Fixed bug in RegExp related to copy-on-write arrays.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100308
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100309 Refactored tools/test.py script, including the introduction of
Iain Merrick9ac36c92010-09-13 15:29:50 +0100310 VARIANT_FLAGS that allows specification of sets of flags with which
311 all tests should be run.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100312
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100313 Fixed a bug in the handling of debug breaks in CallIC.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100314
Iain Merrick9ac36c92010-09-13 15:29:50 +0100315 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100316
317
Steve Block791712a2010-08-27 10:21:07 +01003182010-08-23: Version 2.3.10
319
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100320 Fixed bug in bitops on ARM.
Steve Block791712a2010-08-27 10:21:07 +0100321
322 Build fixes for unusual compilers.
323
324 Track high water mark for RWX memory.
325
326 Performance improvements on all platforms.
327
328
Iain Merrick75681382010-08-19 15:07:18 +01003292010-08-18: Version 2.3.9
330
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100331 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
Iain Merrick75681382010-08-19 15:07:18 +0100332
333 Removed specialized handling of GCC 4.4 (issue 830).
334
Iain Merrick9ac36c92010-09-13 15:29:50 +0100335 Fixed DST cache to take into account the suspension of DST in
Iain Merrick75681382010-08-19 15:07:18 +0100336 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
337
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100338 Performance improvements on all platforms.
Iain Merrick75681382010-08-19 15:07:18 +0100339
340
3412010-08-16: Version 2.3.8
342
343 Fixed build with strict aliasing on GCC 4.4 (issue 463).
344
345 Fixed issue with incorrect handling of custom valueOf methods on
346 string wrappers (issue 760).
347
348 Fixed compilation for ARMv4 (issue 590).
349
350 Improved performance.
351
352
3532010-08-11: Version 2.3.7
354
355 Reduced size of heap snapshots produced by heap profiler (issue 783).
356
357 Introduced v8::Value::IsRegExp method.
358
359 Fixed CPU profiler crash in start / stop sequence when non-existent
360 name is passed (issue http://crbug.com/51594).
361
362 Introduced new indexed property query callbacks API (issue 816). This
363 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
364 by default.
365
366 Removed support for object literal get/set with number/string
367 property name.
368
369 Fixed handling of JSObject::elements in CalculateNetworkSize
370 (issue 822).
371
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100372 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
Iain Merrick75681382010-08-19 15:07:18 +0100373
374
Ben Murdochbb769b22010-08-11 14:56:33 +01003752010-08-09: Version 2.3.6
376
Iain Merrick75681382010-08-19 15:07:18 +0100377 RegExp literals create a new object every time they are evaluated
378 (issue 704).
Ben Murdochbb769b22010-08-11 14:56:33 +0100379
Iain Merrick75681382010-08-19 15:07:18 +0100380 Object.seal and Object.freeze return the modified object (issue 809).
Ben Murdochbb769b22010-08-11 14:56:33 +0100381
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100382 Fixed building using GCC 4.4.4.
Ben Murdochbb769b22010-08-11 14:56:33 +0100383
384
3852010-08-04: Version 2.3.5
386
387 Added support for ES5 property names. Object initialisers and
388 dot-notation property access now allows keywords. Also allowed
389 non-identifiers after "get" or "set" in an object initialiser.
390
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100391 Randomized the addresses of allocated executable memory on Windows.
Ben Murdochbb769b22010-08-11 14:56:33 +0100392
393
3942010-08-02: Version 2.3.4
395
396 Fixed problems in implementation of ES5 function.prototype.bind.
397
398 Fixed error when using apply with arguments object on ARM (issue 784).
399
400 Added setting of global flags to debugger protocol.
401
402 Fixed an error affecting cached results of sin and cos (issue 792).
403
404 Removed memory leak from a boundary case where V8 is not initialized.
405
406 Fixed issue where debugger could set breakpoints outside the body
407 of a function.
408
409 Fixed issue in debugger when using both live edit and step in features.
410
411 Added Number-letter (Nl) category to Unicode tables. These characters
412 can now be used in identifiers.
413
414 Fixed an assert failure on X64 (issue 806).
415
416 Performance improvements on all platforms.
417
418
Kristian Monsen50ef84f2010-07-29 15:18:00 +01004192010-07-26: Version 2.3.3
420
421 Fixed error when building the d8 shell in a fresh checkout.
422
423 Implemented Function.prototype.bind (ES5 15.3.4.5).
424
425 Fixed an error in inlined stores on ia32.
426
427 Fixed an error when setting a breakpoint at the end of a function
428 that does not end with a newline character.
429
430 Performance improvements on all platforms.
431
432
4332010-07-21: Version 2.3.2
434
435 Fixed compiler warnings when building with LLVM.
436
437 Fixed a bug with for-in applied to strings (issue 785).
438
439 Performance improvements on all platforms.
440
441
Ben Murdoch3bec4d22010-07-22 14:51:16 +01004422010-07-19: Version 2.3.1
443
444 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
445
446 Fixed bug related to code flushing while compiling a lazy
447 compilable function (issue http://crbug.com/49099).
448
449 Performance improvements on all platforms.
450
451
4522010-07-15: Version 2.3.0
453
454 Added ES5 Object.seal and Object.isSealed.
455
456 Added debugger API for scheduling debugger commands from a
457 separate thread.
458
459
4602010-07-14: Version 2.2.24
461
462 Added API for capturing stack traces for uncaught exceptions.
463
464 Fixed crash bug when preparsing from a non-external V8 string
465 (issue 775).
466
467 Fixed JSON.parse bug causing input not to be converted to string
468 (issue 764).
469
470 Added ES5 Object.freeze and Object.isFrozen.
471
472 Performance improvements on all platforms.
473
474
Leon Clarkeac952652010-07-15 11:15:24 +01004752010-07-07: Version 2.2.23
476
477 API change: Convert Unicode code points outside the basic multilingual
478 plane to the replacement character. Previous behavior was to silently
479 truncate the value to 16 bits.
480
481 Fixed crash: handle all flat string types in regexp replace.
482
483 Prevent invalid pre-parsing data passed in through the API from
484 crashing V8.
485
486 Performance improvements on all platforms.
487
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100488
Steve Block8defd9f2010-07-08 12:39:36 +01004892010-07-05: Version 2.2.22
490
491 Added ES5 Object.isExtensible and Object.preventExtensions.
492
493 Enabled building V8 as a DLL.
494
495 Fixed a bug in date code where -0 was not interpreted as 0
496 (issue 736).
497
498 Performance improvements on all platforms.
499
500
5012010-06-30: Version 2.2.21
502
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100503 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
Steve Block8defd9f2010-07-08 12:39:36 +0100504
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100505 Updated JSON.stringify to floor the space parameter (issue 753).
Steve Block8defd9f2010-07-08 12:39:36 +0100506
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100507 Updated the Mozilla test expectations to the newest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100508
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100509 Updated the ES5 Conformance Test expectations to the latest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100510
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100511 Updated the V8 benchmark suite.
Steve Block8defd9f2010-07-08 12:39:36 +0100512
513 Provide actual breakpoints locations in response to setBreakpoint
514 and listBreakpoints requests.
515
516
5172010-06-28: Version 2.2.20
518
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100519 Fixed bug with for-in on x64 platform (issue 748).
Steve Block8defd9f2010-07-08 12:39:36 +0100520
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100521 Fixed crash bug on x64 platform (issue 756).
Steve Block8defd9f2010-07-08 12:39:36 +0100522
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100523 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
Steve Block8defd9f2010-07-08 12:39:36 +0100524
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100525 Fixed a bug on ARM that caused the result of 1 << x to be
Steve Block8defd9f2010-07-08 12:39:36 +0100526 miscalculated for some inputs.
527
528 Performance improvements on all platforms.
529
530
Kristian Monsen9dcf7e22010-06-28 14:14:28 +01005312010-06-23: Version 2.2.19
532
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100533 Fixed bug that causes the build to break when profillingsupport=off
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100534 (issue 738).
535
536 Added expose-externalize-string flag for testing extensions.
537
538 Resolve linker issues with using V8 as a DLL causing a number of
539 problems with unresolved symbols.
540
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100541 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100542 defined.
543
544 Performance improvements on all platforms.
545
546
5472010-06-16: Version 2.2.18
548
549 Added API functions to retrieve information on indexed properties
550 managed by the embedding layer. Fixes bug 737.
551
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100552 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100553
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100554 Added heap profiling to the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100555
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100556 Removed old named property query from the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100557
558 Incremental performance improvements.
559
560
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01005612010-06-14: Version 2.2.17
562
563 Improved debugger support for stepping out of functions.
564
565 Incremental performance improvements.
566
567
5682010-06-09: Version 2.2.16
569
Steve Block8defd9f2010-07-08 12:39:36 +0100570 Removed the SetExternalStringDiposeCallback API. Changed the
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100571 disposal of external string resources to call a virtual Dispose
572 method on the resource.
573
Steve Block8defd9f2010-07-08 12:39:36 +0100574 Added support for more precise break points when debugging and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100575 stepping.
576
577 Memory usage improvements on all platforms.
578
579
5802010-06-07: Version 2.2.15
581
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100582 Added an API to control the disposal of external string resources.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100583
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100584 Added missing initialization of a couple of variables which makes
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100585 some compilers complaint when compiling with -Werror.
586
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100587 Improved performance on all platforms.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100588
589
5902010-06-02: Version 2.2.14
591
592 Fixed a crash in code generated for String.charCodeAt.
593
594 Fixed a compilation issue with some GCC versions (issue 727).
595
596 Performance optimizations on x64 and ARM platforms.
597
598
5992010-05-31: Version 2.2.13
600
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100601 Implemented Object.getOwnPropertyDescriptor for element indices and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100602 strings (issue 599).
603
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100604 Fixed bug for windows 64 bit C calls from generated code.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100605
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100606 Added new scons flag unalignedaccesses for arm builds.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100607
608 Performance improvements on all platforms.
609
610
Leon Clarkef7060e22010-06-03 12:02:55 +01006112010-05-26: Version 2.2.12
612
613 Allowed accessors to be defined on objects rather than just object
614 templates.
615
616 Changed the ScriptData API.
617
618
6192010-05-21: Version 2.2.11
620
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100621 Fixed crash bug in liveedit on 64 bit.
Leon Clarkef7060e22010-06-03 12:02:55 +0100622
623 Use 'full compiler' when debugging is active. This should increase
624 the density of possible break points, making single step more fine
625 grained. This will only take effect for functions compiled after
626 debugging has been started, so recompilation of all functions is
627 required to get the full effect. IA32 and x64 only for now.
628
629 Misc. fixes to the Solaris build.
630
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100631 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
Leon Clarkef7060e22010-06-03 12:02:55 +0100632
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100633 Added filtering of CPU profiles by security context.
Leon Clarkef7060e22010-06-03 12:02:55 +0100634
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100635 Fixed crash bug on ARM when running without VFP2 or VFP3.
Leon Clarkef7060e22010-06-03 12:02:55 +0100636
637 Incremental performance improvements in all backends.
638
639
Kristian Monsen25f61362010-05-21 11:50:48 +01006402010-05-17: Version 2.2.10
641
642 Performance improvements in the x64 and ARM backends.
643
644
6452010-05-10: Version 2.2.9
646
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100647 Allowed Object.create to be called with a function (issue 697).
Kristian Monsen25f61362010-05-21 11:50:48 +0100648
649 Fixed bug with Date.parse returning a non-NaN value when called on a
650 non date string (issue 696).
651
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100652 Allowed unaligned memory accesses on ARM targets that support it (by
Leon Clarkef7060e22010-06-03 12:02:55 +0100653 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
Kristian Monsen25f61362010-05-21 11:50:48 +0100654
655 C++ API for retrieving JavaScript stack trace information.
656
657
Steve Block6ded16b2010-05-10 14:33:55 +01006582010-05-05: Version 2.2.8
659
660 Performance improvements in the x64 and ARM backends.
661
662
6632010-05-03: Version 2.2.7
664
665 Added support for ES5 date time string format to Date.parse.
666
667 Performance improvements in the x64 backend.
668
669
6702010-04-28: Version 2.2.6
671
672 Added "amd64" as recognized architecture in scons build script
673 (by Ryan Dahl <coldredlemur@gmail.com>).
674
675 Fixed bug in String search and replace with very simple RegExps.
676
677 Fixed bug in RegExp containing "\b^".
678
679 Performance improvements on all platforms.
680
681
6822010-04-26: Version 2.2.5
683
684 Various performance improvements (especially for ARM and x64)
685
686 Fixed bug in CPU profiling (http://crbug.com/42137)
687
688 Fixed a bug with the natives cache.
689
690 Fixed two bugs in the ARM code generator that can cause
691 wrong calculations.
692
693 Fixed a bug that may cause a wrong result for shift operations.
694
695
6962010-04-21: Version 2.2.4
697
698 Fixed warnings on arm on newer GCC versions.
699
700 Fixed a number of minor bugs.
701
702 Performance improvements on all platforms.
703
704
7052010-04-14: Version 2.2.3
706
707 Added stack command and mem command to ARM simulator debugger.
708
709 Fixed scons snapshot and ARM build, and Windows X64 build issues.
710
711 Performance improvements on all platforms.
712
713
7142010-04-12: Version 2.2.2
715
716 Introduced new profiler API.
717
718 Fixed random number generator to produce full 32 random bits.
719
720
7212010-04-06: Version 2.2.1
722
723 Debugger improvements.
724
725 Fixed minor bugs.
726
727
7282010-03-29: Version 2.2.0
729
730 Fixed a few minor bugs.
731
732 Performance improvements for string operations.
733
734
7352010-03-26: Version 2.1.10
736
737 Fixed scons build issues.
738
739 Fixed a couple of minor bugs.
740
741
7422010-03-25: Version 2.1.9
743
744 Added API support for reattaching a global object to a context.
745
746 Extended debugger API with access to the internal debugger context.
747
748 Fixed Chromium crashes (issues http://crbug.com/39128 and
749 http://crbug.com/39160)
750
751
7522010-03-24: Version 2.1.8
753
754 Added fine-grained garbage collection callbacks to the API.
755
756 Performance improvements on all platforms.
757
758
7592010-03-22: Version 2.1.7
760
761 Fixed issue 650.
762
763 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
764
765 Performance improvements for arithmetic operations.
766
767 Performance improvements for string operations.
768
769 Print script name and line number information in stack trace.
770
771
7722010-03-17: Version 2.1.6
773
774 Performance improvements for arithmetic operations.
775
776 Performance improvements for string operations.
777
778
7792010-03-10: Version 2.1.4
780
781 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
782
783 Performance improvements on all platforms.
784
785
7862010-03-10: Version 2.1.3
787
788 Added API method for context-disposal notifications.
789
790 Added API method for accessing elements by integer index.
791
792 Added missing implementation of Uint32::Value and Value::IsUint32
793 API methods.
794
795 Added IsExecutionTerminating API method.
796
797 Disabled strict aliasing for GCC 4.4.
798
799 Fixed string-concatenation bug (issue 636).
800
801 Performance improvements on all platforms.
802
803
Andrei Popescu402d9372010-02-26 13:31:12 +00008042010-02-23: Version 2.1.2
805
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100806 Fixed a crash bug caused by wrong assert.
Andrei Popescu402d9372010-02-26 13:31:12 +0000807
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100808 Fixed a bug with register names on 64-bit V8 (issue 615).
Andrei Popescu402d9372010-02-26 13:31:12 +0000809
810 Performance improvements on all platforms.
811
Steve Block6ded16b2010-05-10 14:33:55 +0100812
Andrei Popescu402d9372010-02-26 13:31:12 +00008132010-02-19: Version 2.1.1
814
815 [ES5] Implemented Object.defineProperty.
816
817 Improved profiler support.
818
819 Added SetPrototype method in the public V8 API.
820
821 Added GetScriptOrigin and GetScriptLineNumber methods to Function
822 objects in the API.
823
824 Performance improvements on all platforms.
825
826
Leon Clarke4515c472010-02-03 11:58:03 +00008272010-02-03: Version 2.1.0
828
829 Values are now always wrapped in objects when used as a receiver.
830 (issue 223).
831
832 [ES5] Implemented Object.getOwnPropertyNames.
833
834 [ES5] Restrict JSON.parse to only accept strings that conforms to the
835 JSON grammar.
836
837 Improvement of debugger agent (issue 549 and 554).
838
839 Fixed problem with skipped stack frame in profiles (issue 553).
840
841 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
842 <ry@tinyclouds.org>.
843
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100844 Fixed a bug that Math.round() returns incorrect results for huge
Leon Clarke4515c472010-02-03 11:58:03 +0000845 integers.
846
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100847 Fixed enumeration order for objects created from some constructor
Leon Clarke4515c472010-02-03 11:58:03 +0000848 functions (isue http://crbug.com/3867).
849
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100850 Fixed arithmetic on some integer constants (issue 580).
Leon Clarke4515c472010-02-03 11:58:03 +0000851
852 Numerous performance improvements including porting of previous IA-32
853 optimizations to x64 and ARM architectures.
854
855
Leon Clarkee46be812010-01-19 14:06:41 +00008562010-01-14: Version 2.0.6
857
858 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
859 GetOwnProperty, FromPropertyDescriptor.
860
861 Fixed Mac x64 build errors.
862
863 Improved performance of some math and string operations.
864
865 Improved performance of some regexp operations.
866
867 Improved performance of context creation.
868
869 Improved performance of hash tables.
870
871
8722009-12-18: Version 2.0.5
873
874 Extended to upper limit of map space to allow for 7 times as many map
875 to be allocated (issue 524).
876
877 Improved performance of code using closures.
878
879 Improved performance of some binary operations involving doubles.
880
881
8822009-12-16: Version 2.0.4
883
884 Added ECMAScript 5 Object.create.
885
886 Improved performance of Math.max and Math.min.
887
888 Optimized adding of strings on 64-bit platforms.
889
890 Improved handling of external strings by using a separate table
891 instead of weak handles. This improves garbage collection
892 performance and uses less memory.
893
894 Changed code generation for object and array literals in toplevel
895 code to be more compact by doing more work in the runtime.
896
897 Fixed a crash bug triggered when garbage collection happened during
898 generation of a callback load inline cache stub.
899
900 Fixed crash bug sometimes triggered when local variables shadowed
901 parameters in functions that used the arguments object.
902
903
Steve Blockd0582a62009-12-15 09:54:21 +00009042009-12-03: Version 2.0.3
905
906 Optimized handling and adding of strings, for-in and Array.join.
907
908 Heap serialization is now non-destructive.
909
910 Improved profiler support with information on time spend in C++
911 callbacks registered through the API.
912
913 Added commands to the debugger protocol for starting/stopping
914 profiling.
915
916 Enabled the non-optimizing compiler for top-level code.
917
918 Changed the API to only allow strings to be set as data objects on
919 Contexts and scripts to avoid potentially keeping global objects
920 around for too long (issue 528).
921
922 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
923
924 Fixed bugs.
925
926
9272009-11-24: Version 2.0.2
928
929 Improved profiler support.
930
931 Fixed bug that broke compilation of d8 with readline support.
932
933
9342009-11-20: Version 2.0.1
935
936 Fixed crash bug in String.prototype.replace.
937
938 Reverted a change which caused Chromium interactive ui test
939 failures.
940
Leon Clarkee46be812010-01-19 14:06:41 +0000941
Steve Blockd0582a62009-12-15 09:54:21 +00009422009-11-18: Version 2.0.0
943
944 Added support for VFP on ARM.
945
946 Added TryCatch::ReThrow method to the API.
947
948 Reduced the size of snapshots and improved the snapshot load time.
949
950 Improved heap profiler support.
951
952 64-bit version now supported on Windows.
953
954 Fixed a number of debugger issues.
955
956 Fixed bugs.
957
958
9592009-10-29: Version 1.3.18
960
961 Reverted a change which caused crashes in RegExp replace.
962
963 Reverted a change which caused Chromium ui_tests failure.
964
965
9662009-10-28: Version 1.3.17
967
968 Added API method to get simple heap statistics.
969
970 Improved heap profiler support.
971
972 Fixed the implementation of the resource constraint API so it
973 works when using snapshots.
974
975 Fixed a number of issues in the Windows 64-bit version.
976
977 Optimized calls to API getters.
978
979 Added valgrind notification on code modification to the 64-bit version.
980
981 Fixed issue where we logged shared library addresses on Windows at
982 startup and never used them.
983
984
Steve Block3ce2e202009-11-05 08:53:23 +00009852009-10-16: Version 1.3.16
Leon Clarkee46be812010-01-19 14:06:41 +0000986
Steve Block3ce2e202009-11-05 08:53:23 +0000987 X64: Convert smis to holding 32 bits of payload.
988
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100989 Introduced v8::Integer::NewFromUnsigned method.
Steve Block3ce2e202009-11-05 08:53:23 +0000990
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100991 Added missing null check in Context::GetCurrent.
Steve Block3ce2e202009-11-05 08:53:23 +0000992
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100993 Added trim, trimLeft and trimRight methods to String
Steve Block3ce2e202009-11-05 08:53:23 +0000994 Patch by Jan de Mooij <jandemooij@gmail.com>
995
996 Implement ES5 Array.isArray
997 Patch by Jan de Mooij <jandemooij@gmail.com>
998
999 Skip access checks for hidden properties.
1000
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001001 Added String::Concat(Handle<String> left, Handle<String> right) to the
1002 V8 API.
Steve Block3ce2e202009-11-05 08:53:23 +00001003
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001004 Fixed GYP-based builds of V8.
Steve Block3ce2e202009-11-05 08:53:23 +00001005
1006
10072009-10-07: Version 1.3.15
1008
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001009 Expanded the maximum size of the code space to 512MB for 64-bit mode.
Steve Block3ce2e202009-11-05 08:53:23 +00001010
1011 Fixed a crash bug happening when starting profiling (issue
1012 http://crbug.com/23768).
1013
1014
10152009-10-07: Version 1.3.14
1016
1017 Added GetRealNamedProperty to the API to lookup real properties
1018 located on the object or in the prototype chain skipping any
1019 interceptors.
1020
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001021 Fixed the stack limits setting API to work correctly with threads. The
Steve Block3ce2e202009-11-05 08:53:23 +00001022 stack limit now needs to be set to each thread thich is used with V8.
1023
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001024 Removed the high-priority flag from IdleNotification()
Steve Block3ce2e202009-11-05 08:53:23 +00001025
1026 Ensure V8 is initialized before locking and unlocking threads.
1027
1028 Implemented a new JavaScript minifier for compressing the source of
Steve Blockd0582a62009-12-15 09:54:21 +00001029 the built-in JavaScript. This removes non-Open Source code from Douglas
Steve Block3ce2e202009-11-05 08:53:23 +00001030 Crockford from the project.
1031
1032 Added a missing optimization in StringCharAt.
1033
1034 Fixed some flaky socket tests.
1035
1036 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
1037 in 64-bit mode.
1038
1039 Fixed memory leaks in the thread management code.
1040
1041 Fixed the result of assignment to a pixel array. The assigned value
1042 is now the result.
1043
1044 Error reporting for invalid left-hand sides in for-in statements, pre-
1045 and postfix count expressions, and assignments now matches the JSC
1046 behavior in Safari 4.
1047
1048 Follow the spec in disallowing function declarations without a name.
1049
1050 Always allocate code objects within a 2 GB range. On x64 architecture
1051 this is used to use near calls (32-bit displacement) in Code objects.
1052
1053 Optimized array construction ported to x64 and ARM architectures.
1054
1055 [ES5] Changed Object.keys to return strings for element indices.
1056
1057
Steve Blocka7e24c12009-10-30 11:49:00 +000010582009-09-23: Version 1.3.13
1059
1060 Fixed uninitialized memory problem.
1061
1062 Improved heap profiler support.
1063
1064
10652009-09-22: Version 1.3.12
1066
1067 Changed behavior of |function|.toString() on built-in functions to
1068 be compatible with other implementations. Patch by Jan de Mooij.
1069
1070 Added Object::IsDirty in the API.
1071
1072 Optimized array construction; it is now handled purely in native
1073 code.
1074
1075 [ES5] Made properties of the arguments array enumerable.
1076
1077 [ES5] Added test suite adapter for the es5conform test suite.
1078
1079 [ES5] Added Object.keys function.
1080
1081
10822009-09-15: Version 1.3.11
1083
1084 Fixed crash in error reporting during bootstrapping.
1085
1086 Optimized generated IA32 math code by using SSE2 instructions when
1087 available.
1088
1089 Implemented missing pieces of debugger infrastructure on ARM. The
1090 debugger is now fully functional on ARM.
1091
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001092 Made 'hidden' the default visibility for gcc.
Steve Blocka7e24c12009-10-30 11:49:00 +00001093
1094
10952009-09-09: Version 1.3.10
1096
1097 Fixed profiler on Mac in 64-bit mode.
1098
1099 Optimized creation of objects from simple constructor functions on
1100 ARM.
1101
1102 Fixed a number of debugger issues.
1103
1104 Reduced the amount of memory consumed by V8.
1105
1106
11072009-09-02: Version 1.3.9
1108
1109 Optimized stack guard checks on ARM.
1110
1111 Optimized API operations by inlining more in the API.
1112
1113 Optimized creation of objects from simple constructor functions.
1114
1115 Enabled a number of missing optimizations in the 64-bit port.
1116
1117 Implemented native-code support for regular expressions on ARM.
1118
1119 Stopped using the 'sahf' instruction on 64-bit machines that do
1120 not support it.
1121
1122 Fixed a bug in the support for forceful termination of JavaScript
1123 execution.
1124
1125
11262009-08-26: Version 1.3.8
1127
1128 Changed the handling of idle notifications to allow idle
1129 notifications when V8 has not yet been initialized.
1130
1131 Fixed ARM simulator compilation problem on Windows.
Leon Clarkee46be812010-01-19 14:06:41 +00001132
Steve Blocka7e24c12009-10-30 11:49:00 +00001133
11342009-08-25: Version 1.3.7
1135
1136 Reduced the size of generated code on ARM platforms by reducing
1137 the size of constant pools.
1138
1139 Changed build files to not include the 'ENV' user environment
1140 variable in the build environment.
1141
1142 Changed the handling of idle notifications.
1143
1144
11452009-08-21: Version 1.3.6
1146
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001147 Added support for forceful termination of JavaScript execution.
Steve Blocka7e24c12009-10-30 11:49:00 +00001148
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001149 Added low memory notification to the API. The embedding host can signal
Steve Blocka7e24c12009-10-30 11:49:00 +00001150 a low memory situation to V8.
1151
1152 Changed the handling of global handles (persistent handles in the API
1153 sense) to avoid issues regarding allocation of new global handles
1154 during weak handle callbacks.
1155
1156 Changed the growth policy of the young space.
1157
1158 Fixed a GC issue introduced in version 1.3.5.
1159
1160
11612009-08-19: Version 1.3.5
1162
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001163 Optimized initialization of some arrays in the builtins.
Steve Blocka7e24c12009-10-30 11:49:00 +00001164
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001165 Fixed mac-nm script to support filenames with spaces.
Steve Blocka7e24c12009-10-30 11:49:00 +00001166
1167 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
1168
1169 Changed typeof RegExp from 'object' to 'function' for compatibility.
1170 Fixed bug where regexps were not callable across contexts.
1171
1172 Added context independent script compilation to the API.
1173
1174 Added API call to get the stack trace for an exception.
1175
1176 Added API for getting object mirrors.
1177
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001178 Made sure that SSE3 instructions are used whenever possible even when
Steve Blocka7e24c12009-10-30 11:49:00 +00001179 running off a snapshot generated without using SSE3 instructions.
1180
1181 Tweaked the handling of the initial size and growth policy of the heap.
1182
1183 Added native code generation for RegExp to 64-bit version.
1184
1185 Added JavaScript debugger support to 64-bit version.
1186
1187
11882009-08-13: Version 1.3.4
1189
1190 Added a readline() command to the d8 shell.
1191
1192 Fixed bug in json parsing.
1193
1194 Added idle notification to the API and reduced memory on idle
1195 notifications.
1196
1197
11982009-08-12: Version 1.3.3
1199
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001200 Fixed issue 417: incorrect %t placeholder expansion.
Steve Blocka7e24c12009-10-30 11:49:00 +00001201
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001202 Added .gitignore file similar to Chromium's one.
Steve Blocka7e24c12009-10-30 11:49:00 +00001203
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001204 Fixed SConstruct file to build with new logging code for Android.
Steve Blocka7e24c12009-10-30 11:49:00 +00001205
1206 API: added function to find instance of template in prototype
1207 chain. Inlined Object::IsInstanceOf.
1208
1209 Land change to notify valgrind when we modify code on x86.
1210
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001211 Added api call to determine whether a string can be externalized.
Steve Blocka7e24c12009-10-30 11:49:00 +00001212
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001213 Added a write() command to d8.
Steve Blocka7e24c12009-10-30 11:49:00 +00001214
1215
12162009-08-05: Version 1.3.2
1217
1218 Started new compiler infrastructure for two-pass compilation using a
1219 control flow graph constructed from the AST.
1220
1221 Profiler stack sampling for X64.
1222
1223 Safe handling of NaN to Posix platform-dependent time functions.
1224
1225 Added a new profiler control API to unify controlling various aspects
1226 of profiling.
1227
1228 Fixed issue 392.
1229
1230
12312009-07-30: Version 1.3.1
1232
1233 Speed improvements to accessors and interceptors.
1234
1235 Added support for capturing stack information on custom errors.
1236
1237 Added support for morphing an object into a pixel array where its
1238 indexed properties are stored in an external byte array. Values written
1239 are always clamped to the 0..255 interval.
1240
1241 Profiler on x64 now handles C/C++ functions from shared libraries.
1242
1243 Changed the debugger to avoid stepping into function.call/apply if the
1244 function is a built-in.
1245
1246 Initial implementation of constructor heap profile for JS objects.
Leon Clarkee46be812010-01-19 14:06:41 +00001247
Steve Blocka7e24c12009-10-30 11:49:00 +00001248 More fine grained control of profiling aspects through the API.
Leon Clarkee46be812010-01-19 14:06:41 +00001249
Steve Blocka7e24c12009-10-30 11:49:00 +00001250 Optimized the called as constructor check for API calls.
1251
1252
12532009-07-27: Version 1.3.0
1254
1255 Allowed RegExp objects to be called as functions (issue 132).
1256
1257 Fixed issue where global property cells would escape after
1258 detaching the global object; see http://crbug.com/16276.
1259
1260 Added support for stepping into setters and getters in the
1261 debugger.
1262
1263 Changed the debugger to avoid stopping in its own JavaScript code
1264 and in the code of built-in functions.
1265
1266 Fixed issue 345 by avoiding duplicate escaping labels.
1267
1268 Fixed ARM code generator crash in short-circuited boolean
1269 expressions and added regression tests.
1270
1271 Added an external allocation limit to avoid issues where small V8
1272 objects would hold on to large amounts of external memory without
1273 causing garbage collections.
Leon Clarkee46be812010-01-19 14:06:41 +00001274
1275 Finished more of the inline caching stubs for x64 targets.
Steve Blocka7e24c12009-10-30 11:49:00 +00001276
1277
12782009-07-13: Version 1.2.14
1279
1280 Added separate paged heap space for global property cells and
1281 avoid updating the write barrier when storing into them.
1282
1283 Improved peep-hole optimization on ARM platforms by not emitting
1284 unnecessary debug information.
1285
1286 Re-enabled ICs for loads and calls that skip a global object
1287 during lookup through the prototype chain.
1288
1289 Allowed access through global proxies to use ICs.
1290
1291 Fixed issue 401.
1292
1293
12942009-07-09: Version 1.2.13
1295
1296 Fixed issue 397, issue 398, and issue 399.
1297
1298 Added support for breakpoint groups.
1299
1300 Fixed bugs introduced with the new global object representation.
1301
1302 Fixed a few bugs in the ARM code generator.
1303
1304
13052009-07-06: Version 1.2.12
1306
1307 Added stack traces collection to Error objects accessible through
1308 the e.stack property.
1309
1310 Changed RegExp parser to use a recursive data structure instead of
1311 stack-based recursion.
1312
1313 Optimized Date object construction and string concatenation.
1314
1315 Improved performance of div, mod, and mul on ARM platforms.
1316
1317
13182009-07-02: Version 1.2.11
1319
1320 Improved performance on IA-32 and ARM.
1321
1322 Fixed profiler sampler implementation on Mac OS X.
1323
1324 Changed the representation of global objects to improve
1325 performance of adding a lot of new properties.
1326
1327
13282009-06-29: Version 1.2.10
1329
1330 Improved debugger support.
1331
1332 Fixed bug in exception message reporting (issue 390).
1333
1334 Improved overall performance.
1335
1336
13372009-06-23: Version 1.2.9
1338
1339 Improved math performance on ARM.
1340
1341 Fixed profiler name-inference bug.
1342
1343 Fixed handling of shared libraries in the profiler tick processor
1344 scripts.
1345
1346 Fixed handling of tests that time out in the test scripts.
1347
1348 Fixed compilation on MacOS X version 10.4.
1349
1350 Fixed two bugs in the regular expression engine.
1351
1352 Fixed a bug in the string type inference.
1353
1354 Fixed a bug in the handling of 'constant function' properties.
Leon Clarkee46be812010-01-19 14:06:41 +00001355
Steve Blocka7e24c12009-10-30 11:49:00 +00001356 Improved overall performance.
Leon Clarkee46be812010-01-19 14:06:41 +00001357
Steve Blocka7e24c12009-10-30 11:49:00 +00001358
13592009-06-16: Version 1.2.8
1360
1361 Optimized math on ARM platforms.
1362
1363 Fixed two crash bugs in the handling of getters and setters.
1364
1365 Improved the debugger support by adding scope chain information.
1366
1367 Improved the profiler support by compressing log data transmitted
1368 to clients.
1369
1370 Improved overall performance.
1371
1372
13732009-06-08: Version 1.2.7
1374
1375 Improved debugger and profiler support.
1376
1377 Reduced compilation time by improving the handling of deferred
1378 code.
1379
1380 Optimized interceptor accesses where the property is on the object
1381 on which the interceptors is attached.
1382
1383 Fixed compilation problem on GCC 4.4 by changing the stack
1384 alignment to 16 bytes.
1385
1386 Fixed handle creation to follow stric aliasing rules.
1387
1388 Fixed compilation on FreeBSD.
1389
1390 Introduced API for forcing the deletion of a property ignoring
1391 interceptors and attributes.
1392
1393
13942009-05-29: Version 1.2.6
1395
1396 Added a histogram recording hit rates at different levels of the
1397 compilation cache.
1398
1399 Added stack overflow check for the RegExp analysis phase. Previously a
1400 very long regexp graph could overflow the stack with recursive calls.
1401
1402 Use a dynamic buffer when collecting log events in memory.
1403
1404 Added start/stop events to the profiler log.
1405
1406 Fixed infinite loop which could happen when setting a debug break while
1407 executing a RegExp compiled to native code.
1408
1409 Fixed handling of lastIndexOf called with negative index (issue 351).
1410
1411 Fixed irregular crash in profiler test (issue 358).
1412
1413 Fixed compilation issues with some versions of gcc.
1414
1415
14162009-05-26: Version 1.2.5
1417
1418 Fixed bug in initial boundary check for Boyer-Moore text
1419 search (issue 349).
1420
1421 Fixed compilation issues with MinGW and gcc 4.3+ and added support
1422 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
1423 Craig Schlenter.
1424
1425 Added a script cache to the debugger.
1426
1427 Optimized compilation performance by improving internal data
1428 structures and avoiding expensive property load optimizations for
1429 code that's infrequently executed.
1430
1431 Exposed the calling JavaScript context through the static API
1432 function Context::GetCalling().
1433
1434
14352009-05-18: Version 1.2.4
1436
1437 Improved performance of floating point number allocation for ARM
1438 platforms.
1439
1440 Fixed crash when using the instanceof operator on functions with
1441 number values in their prototype chain (issue 341).
1442
1443 Optimized virtual frame operations in the code generator to speed
1444 up compilation time and allocated the frames in the zone.
1445
1446 Made the representation of virtual frames and jump targets in the
1447 code generator much more compact.
1448
1449 Avoided linear search for non-locals in scope code when resolving
1450 variables inside with and eval scopes.
1451
1452 Optimized lexical scanner by dealing with whitespace as part of
1453 the token scanning instead of as a separate step before it.
1454
1455 Changed the scavenging collector so that promoted objects do not
1456 reside in the old generation while their remembered set is being
1457 swept for pointers into the young generation.
1458
1459 Fixed numeric overflow handling when compiling count operations.
1460
1461
14622009-05-11: Version 1.2.3
1463
1464 Fixed bug in reporting of out-of-memory situations.
1465
1466 Introduced hidden prototypes on certain builtin prototype objects
1467 such as String.prototype to emulate JSC's behavior of restoring
1468 the original function when deleting functions from those prototype
1469 objects.
1470
1471 Fixed crash bug in the register allocator.
1472
1473
14742009-05-04: Version 1.2.2
1475
1476 Fixed bug in array sorting for sparse arrays (issue 326).
1477
1478 Added support for adding a soname when building a shared library
1479 on Linux (issue 151).
1480
1481 Fixed bug caused by morphing internal ASCII strings to external
1482 two-byte strings. Slices over ASCII strings have to forward ASCII
1483 checks to the underlying buffer string.
1484
1485 Allowed API call-as-function handlers to be called as
1486 constructors.
1487
1488 Fixed a crash bug where an external string was disposed but a
1489 slice of the external string survived as a symbol.
1490
1491
14922009-04-27: Version 1.2.1
1493
1494 Added EcmaScript 5 JSON object.
1495
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001496 Fixed bug in preemption support on ARM.
Steve Blocka7e24c12009-10-30 11:49:00 +00001497
1498
14992009-04-23: Version 1.2.0
1500
1501 Optimized floating-point operations on ARM.
1502
1503 Added a number of extensions to the debugger API.
1504
1505 Changed the enumeration order for unsigned integer keys to always
1506 be numerical order.
1507
1508 Added a "read" extension to the shell sample.
1509
1510 Added support for Array.prototype.reduce and
1511 Array.prototype.reduceRight.
1512
1513 Added an option to the SCons build to control Microsoft Visual C++
1514 link-time code generation.
1515
1516 Fixed a number of bugs (in particular issue 315, issue 316,
1517 issue 317 and issue 318).
1518
1519
15202009-04-15: Version 1.1.10
1521
1522 Fixed crash bug that occurred when loading a const variable in the
1523 presence of eval.
1524
1525 Allowed using with and eval in registered extensions in debug mode
1526 by fixing bogus assert.
1527
1528 Fixed the source position for function returns to enable the
1529 debugger to break there.
1530
1531
15322009-04-14: Version 1.1.9
1533
1534 Made the stack traversal code in the profiler robust by avoiding
1535 to look into the heap.
1536
1537 Added name inferencing for anonymous functions to facilitate
1538 debugging and profiling.
1539
1540 Re-enabled stats timers in the developer shell (d8).
1541
1542 Fixed issue 303 by avoiding to shortcut cons-symbols.
1543
1544
15452009-04-11: Version 1.1.8
1546
1547 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
1548
1549 Fixed step-in handling for Function.prototype.apply and call in
1550 the debugger (issue 269).
1551
1552 Fixed v8::Object::DeleteHiddenValue to not bail out when there
1553 are no hidden properties.
1554
1555 Added workaround for crash bug, where external symbol table
1556 entries with deleted resources would lead to NPEs when looking
1557 up in the symbol table.
1558
1559
15602009-04-07: Version 1.1.7
1561
1562 Added support for easily importing additional environment
1563 variables into the SCons build.
1564
1565 Optimized strict equality checks.
1566
1567 Fixed crash in indexed setters on objects without a corresponding
1568 getter (issue 298).
1569
1570 Re-enabled script compilation cache.
1571
1572
15732009-04-01: Version 1.1.6
1574
1575 Reverted an unsafe code generator change.
1576
1577
15782009-04-01: Version 1.1.5
1579
1580 Fixed bug that caused function literals to not be optimized as
1581 much as other functions.
1582
1583 Improved profiler support.
1584
1585 Fixed a crash bug in connection with debugger unloading.
1586
1587 Fixed a crash bug in the code generator caused by losing the
1588 information that a frame element was copied.
1589
1590 Fixed an exception propagation bug that could cause non-null
1591 return values when exceptions were thrown.
1592
1593
15942009-03-30: Version 1.1.4
1595
1596 Optimized String.prototype.match.
1597
1598 Improved the stack information in profiles.
1599
1600 Fixed bug in ARM port making it possible to compile the runtime
1601 system for thumb mode again.
1602
1603 Implemented a number of optimizations in the code generator.
1604
1605 Fixed a number of memory leaks in tests.
1606
1607 Fixed crash bug in connection with script source code and external
1608 strings.
1609
1610
16112009-03-24: Version 1.1.3
1612
1613 Fixed assertion failures in compilation of loop conditions.
1614
1615 Removed STL dependency from developer shell (d8).
1616
1617 Added infrastructure for protecting the V8 heap from corruption
1618 caused by memory modifications from the outside.
1619
1620
16212009-03-24: Version 1.1.2
1622
1623 Improved frame merge code generated by the code generator.
1624
1625 Optimized String.prototype.replace.
1626
1627 Implemented __defineGetter__ and __defineSetter__ for properties
1628 with integer keys on non-array objects.
1629
1630 Improved debugger and profiler support.
1631
1632 Fixed a number of portability issues to allow compilation for
1633 smaller ARM devices.
1634
1635 Exposed object cloning through the API.
1636
1637 Implemented hidden properties. This is used to expose an identity
1638 hash for objects through the API.
1639
1640 Implemented restarting of regular expressions if their input
1641 string changes representation during preemption.
1642
1643 Fixed a code generator bug that could cause assignments in loops
1644 to be ignored if using continue to break out of the loop (issue
1645 284).
1646
1647
16482009-03-12: Version 1.1.1
1649
1650 Fixed an assertion in the new compiler to take stack overflow
1651 exceptions into account.
1652
1653 Removed exception propagation code that could cause crashes.
1654
1655 Fixed minor bug in debugger line number computations.
1656
1657 8-byte align the C stack on Linux and Windows to speed up floating
1658 point computations.
1659
1660
16612009-03-12: Version 1.1.0
1662
1663 Improved code generation infrastructure by doing simple register
1664 allocation and constant folding and propagation.
1665
1666 Optimized regular expression matching by avoiding to create
1667 intermediate string arrays and by flattening nested array
1668 representations of RegExp data.
1669
1670 Traverse a few stack frames when recording profiler samples to
1671 include partial call graphs in the profiling output.
1672
1673 Added support for using OProfile to profile generated code.
1674
1675 Added remote debugging support to the D8 developer shell.
1676
1677 Optimized creation of nested literals like JSON objects.
1678
1679 Fixed a bug in garbage collecting unused maps and turned it on by
1680 default (--collect-maps).
1681
1682 Added support for running tests under Valgrind.
1683
1684
16852009-02-27: Version 1.0.3
1686
1687 Optimized double-to-integer conversions in bit operations by using
1688 SSE3 instructions if available.
1689
1690 Optimized initialization sequences that store to multiple
1691 properties of the same object.
1692
1693 Changed the D8 debugger frontend to use JSON messages.
1694
1695 Force garbage collections when disposing contexts.
1696
1697 Align code objects at 32-byte boundaries.
1698
1699
17002009-02-25: Version 1.0.2
1701
1702 Improved profiling support by performing simple call stack
1703 sampling for ticks and by fixing a bug in the logging of code
1704 addresses.
1705
1706 Fixed a number of debugger issues.
1707
1708 Optimized code that uses eval.
1709
1710 Fixed a couple of bugs in the regular expression engine.
1711
1712 Reduced the size of generated code for certain regular expressions.
1713
1714 Removed JSCRE completely.
1715
1716 Fixed issue where test could not be run if there was a dot in the
1717 checkout path.
1718
1719
17202009-02-13: Version 1.0.1
1721
1722 Fixed two crash-bugs in irregexp (issue 231 and 233).
1723
1724 Fixed a number of minor bugs (issue 87, 227 and 228).
1725
1726 Added support for morphing strings to external strings on demand
1727 to avoid having to create copies in the embedding code.
1728
1729 Removed experimental support for external symbol callbacks.
1730
1731
17322009-02-09: Version 1.0.0
1733
1734 Fixed crash-bug in the code generation for case independent 16 bit
1735 backreferences.
1736
1737 Made shells more robust in the presence of string conversion
1738 failures (issue 224).
1739
1740 Fixed a potential infinite loop when attempting to resolve
1741 eval (issue 221).
1742
1743 Miscellaneous fixes to the new regular expression engine.
1744
1745 Reduced binary by stripping unneeded text from JavaScript library and
1746 minifying some JavaScript files.
1747
1748
17492009-01-27: Version 0.4.9
1750
1751 Enabled new regular expression engine.
1752
1753 Made a number of changes to the debugger protocol.
1754
1755 Fixed a number of bugs in the preemption support.
1756
1757 Added -p option to the developer shell to run files in parallel
1758 using preemption.
1759
1760 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
1761 193, 198 and 201).
1762
1763 Fixed a number of bugs in the serialization/deserialization
1764 support for the ARM platform.
1765
1766
17672009-01-19: Version 0.4.8.1
1768
1769 Minor patch to debugger support.
1770
1771
17722009-01-16: Version 0.4.8
1773
1774 Fixed string length bug on ARM (issue 171).
1775
1776 Made most methods in the API const.
1777
1778 Optimized object literals by improving data locality.
1779
1780 Fixed bug that caused incomplete functions to be cached in case of
1781 stack overflow exceptions.
1782
1783 Fixed bugs that caused catch variables and variables introduced by
1784 eval to behave incorrectly when using accessors (issues 186, 190
1785 and 191).
1786
1787
17882009-01-06: Version 0.4.7
1789
1790 Minor bugfixes and optimizations.
1791
1792 Added command line debugger to D8 shell.
1793
1794 Fixed subtle bug that caused the wrong 'this' to be used when
1795 calling a caught function in a catch clause.
1796
1797 Inline array loads within loops directly in the code instead of
1798 always calling a stub.
1799
1800
18012008-12-11: Version 0.4.6
1802
1803 Fixed exception reporting bug where certain exceptions were
1804 incorrectly reported as uncaught.
1805
1806 Improved the memory allocation strategy used during compilation to
1807 make running out of memory when compiling huge scripts less
1808 likely.
1809
1810 Optimized String.replace by avoiding the construction of certain
1811 sub strings.
1812
1813 Fixed bug in code generation for large switch statements on ARM.
1814
1815 Fixed bug that caused V8 to change the global object template
1816 passed in by the user.
1817
1818 Changed the API for creating object groups used during garbage
1819 collection. Entire object groups are now passed to V8 instead of
1820 individual members of the groups.
1821
1822
18232008-12-03: Version 0.4.5
1824
1825 Added experimental API support for allocating V8 symbols as
1826 external strings.
1827
1828 Fixed bugs in debugging support on ARM.
1829
1830 Changed eval implementation to correctly detect whether or not a
1831 call to eval is aliased.
1832
1833 Fixed bug caused by a combination of the compilation cache and
1834 dictionary probing in native code. The bug caused us to sometimes
1835 call functions that had not yet been compiled.
1836
1837 Added platform support for FreeBSD.
1838
1839 Added support for building V8 on Windows with either the shared or
1840 static version of MSVCRT
1841
1842 Added the v8::jscre namespace around the jscre functions to avoid
1843 link errors (duplicate symbols) when building Google Chrome.
1844
1845 Added support for calling a JavaScript function with the current
1846 debugger execution context as its argument to the debugger
1847 interface.
1848
1849 Changed the type of names of counters from wchar_t to char.
1850
1851 Changed the Windows system call used to compute daylight savings
1852 time. The system call that we used to use became four times
1853 slower on WinXP SP3.
1854
1855 Added support in the d8 developer shell for memory-mapped counters
1856 and added a stats-viewer tool.
1857
1858 Fixed bug in upper/lower case mappings (issue 149).
1859
1860
18612008-11-17: Version 0.4.4
1862
1863 Reduced code size by using shorter instruction encoding when
1864 possible.
1865
1866 Added a --help option to the shell sample and to the d8 shell.
1867
1868 Added visual studio project files for building the ARM simulator.
1869
1870 Fixed a number of ARM simulator issues.
1871
1872 Fixed bug in out-of-memory handling on ARM.
1873
1874 Implemented shell support for passing arguments to a script from
1875 the command line.
1876
1877 Fixed bug in date code that made certain date functions return -0
1878 instead of 0 for dates before the epoch.
1879
1880 Restricted applications of eval so it can only be used in the
1881 context of the associated global object.
1882
1883 Treat byte-order marks as whitespace characters.
1884
1885
18862008-11-04: Version 0.4.3
1887
1888 Added support for API accessors that prohibit overwriting by
1889 accessors defined in JavaScript code by using __defineGetter__ and
1890 __defineSetter__.
1891
1892 Improved handling of conditionals in test status files.
1893
1894 Introduced access control in propertyIsEnumerable.
1895
1896 Improved performance of some string operations by caching
1897 information about the type of the string between operations.
1898
1899 Fixed bug in fast-case code for switch statements that only have
1900 integer labels.
1901
1902
19032008-10-30: Version 0.4.2
1904
1905 Improved performance of Array.prototype.concat by moving the
1906 implementation to C++ (issue 123).
1907
1908 Fixed heap growth policy to avoid growing old space to its maximum
1909 capacity before doing a garbage collection and fixed issue that
1910 would lead to artificial out of memory situations (issue 129).
1911
1912 Fixed Date.prototype.toLocaleDateString to return the date in the
1913 same format as WebKit.
1914
1915 Added missing initialization checks to debugger API.
1916
1917 Added removing of unused maps during GC.
1918
1919
19202008-10-28: Version 0.4.1
1921
1922 Added caching of RegExp data in compilation cache.
1923
1924 Added Visual Studio project file for d8 shell.
1925
1926 Fixed function call performance regression introduced in version
1927 0.4.0 when splitting the global object in two parts (issue 120).
1928
1929 Fixed issue 131 by checking for empty handles before throwing and
1930 reporting exceptions.
1931
1932
19332008-10-23: Version 0.4.0
1934
1935 Split the global object into two parts: The state holding global
1936 object and the global object proxy.
1937
1938 Fixed bug that affected the value of an assignment to an element
1939 in certain cases (issue 116).
1940
1941 Added GetPropertyNames functionality (issue 33) and extra Date
1942 functions (issue 77) to the API.
1943
1944 Changed WeakReferenceCallback to take a Persistent<Value> instead
1945 of a Persistent<Object> (issue 101).
1946
1947 Fixed issues with message reporting for exceptions in try-finally
1948 blocks (issues 73 and 75).
1949
1950 Optimized flattening of strings and string equality checking.
1951
1952 Improved Boyer-Moore implementation for faster indexOf operations.
1953
1954 Added development shell (d8) which includes counters and
1955 completion support.
1956
1957 Fixed problem with the receiver passed to functions called from
1958 eval (issue 124).
1959
1960
19612008-10-16: Version 0.3.5
1962
1963 Improved string hash-code distribution by excluding bit-field bits
1964 from the hash-code.
1965
1966 Changed string search algorithm used in indexOf from KMP to
1967 Boyer-Moore.
1968
1969 Improved the generated code for the instanceof operator.
1970
1971 Improved performance of slow-case string equality checks by
1972 specializing the code based on the string representation.
1973
1974 Improve the handling of out-of-memory situations (issue 70).
1975
1976 Improved performance of strict equality checks.
1977
1978 Improved profiler output to make it easier to see anonymous
1979 functions.
1980
1981 Improved performance of slow-case keyed loads.
1982
1983 Improved property access performance by allocating a number of
1984 properties in the front object.
1985
1986 Changed the toString behavior on the built-in object constructors
1987 to print [native code] instead of the actual source. Some web
1988 applications do not like constructors with complex toString
1989 results.
1990
1991
19922008-10-06: Version 0.3.4
1993
1994 Changed Array.prototype.sort to use quick sort.
1995
1996 Fixed code generation issue where leaving a finally block with
1997 break or continue would accumulate elements on the expression
1998 stack (issue 86).
1999
2000 Made sure that the name accessor on functions returns the expected
2001 names for builtin JavaScript functions and C++ callback functions.
2002
2003 Added fast case code for extending the property storage array of
2004 JavaScript objects.
2005
2006 Ported switch statement optimizations introduced in version 0.3.3
2007 to the ARM code generator.
2008
2009 Allowed GCC to use strict-aliasing rules when compiling.
2010
2011 Improved performance of arguments object allocation by taking care
2012 of arguments adaptor frames in the generated code.
2013
2014 Updated the V8 benchmark suite to version 2.
2015
2016
20172008-09-25: Version 0.3.3
2018
2019 Improved handling of relocation information to enable more
2020 peep-hole optimizations.
2021
2022 Optimized switch statements where all labels are constant small
2023 integers.
2024
2025 Optimized String.prototype.indexOf for common cases.
2026
2027 Fixed more build issues (issue 80).
2028
2029 Fixed a couple of profiler issues.
2030
2031 Fixed bug where the body of a function created using the Function
2032 constructor was not allowed to end with a single-line comment
2033 (issue 85).
2034
2035 Improved handling of object literals by canonicalizing object
2036 literal maps. This will allow JSON objects with the same set of
2037 properties to share the same map making inline caching work better
2038 for JSON objects.
2039
2040
20412008-09-17: Version 0.3.2
2042
2043 Generalized the EvalCache into a CompilationCache and enabled it
2044 for scripts too. The current strategy is to retire all entries
2045 whenever a mark-sweep collection is started.
2046
2047 Fixed bug where switch statements containing only a default case
2048 would lead to an unbalanced stack (issue 69).
2049
2050 Fixed bug that made access to the function in a named function
2051 expression impossible in certain situations (issue 24).
2052
2053 Fixed even more build issues.
2054
2055 Optimized calling conventions on ARM. The conventions on ARM and
2056 IA-32 now match.
2057
2058 Removed static initializers for flags and counters.
2059
2060 Improved inline caching behavior for uncommon cases where lazily
2061 loading Date and RegExp code could force certain code paths go
2062 megamorphic.
2063
2064 Removed arguments adaption for builtins written in C++. This
2065 makes Array.prototype.push and Array.prototype.pop slightly
2066 faster.
2067
2068
20692008-09-11: Version 0.3.1
2070
2071 Fixed a number of build issues.
2072
2073 Fixed problem with missing I-cache flusing on ARM.
2074
2075 Changed space layout in memory management by splitting up
2076 code space into old data space and code space.
2077
2078 Added utf-8 conversion support to the API (issue 57).
2079
2080 Optimized repeated calls to eval with the same strings. These
2081 repeated calls are common in web applications.
2082
2083 Added Xcode project file.
2084
2085 Optimized a couple of Array operation.
2086
2087 Fixed parser bug by checking for end-of-string when parsing break
2088 and continue (issue 35).
2089
2090 Fixed problem where asian characters were not categorized as
2091 letters.
2092
2093 Fixed bug that disallowed calling functions fetched from an array
2094 using a string as an array index (issue 32).
2095
2096 Fixed bug where the internal field count on object templates were
2097 sometimes ignored (issue 54).
2098
2099 Added -f option to the shell sample for compatibility with other
2100 engines (issue 18).
2101
2102 Added source info to TryCatches in the API.
2103
2104 Fixed problem where the seed for the random number generator was
2105 clipped in a double to unsigned int conversion.
2106
2107 Fixed bug where cons string symbols were sometimes converted to
2108 non-symbol flat strings during GC.
2109
2110 Fixed bug in error reporting when attempting to convert null to an
2111 object.
2112
2113
21142008-09-04: Version 0.3.0
2115
2116 Added support for running tests on the ARM simulator.
2117
2118 Fixed bug in the 'in' operator where negative indices were not
2119 treated correctly.
2120
2121 Fixed build issues on gcc-4.3.1.
2122
2123 Changed Date.prototype.toLocaleTimeString to not print the
2124 timezone part of the time.
2125
2126 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
2127 with user code.
2128
2129
21302008-09-02: Version 0.2.5
2131
2132 Renamed the top level directory 'public' to 'include'.
2133
2134 Added 'env' option to the SCons build scripts to support
2135 overriding the ENV part of the build environment. This is mostly
2136 to support Windows builds in cases where SCons cannot find the
2137 correct paths to the Windows SDK, as these paths cannot be passed
2138 through shell environment variables.
2139
2140 Enabled "Buffer Security Check" on for the Windows SCons build and
2141 added the linker option /OPT:ICF as an optimization.
2142
2143 Added the V8 benchmark suite to the repository.
2144
2145
21462008-09-01: Version 0.2.4
2147
2148 Included mjsunit JavaScript test suite and C++ unit tests.
2149
2150 Changed the shell sample to not print the result of executing a
2151 script provided on the command line.
2152
2153 Fixed issue when building samples on Windows using a shared V8
2154 library. Added visibility option on Linux build which makes the
2155 generated library 18% smaller.
2156
2157 Changed build system to accept multiple build modes in one build
2158 and generate separate objects, libraries and executables for each
2159 mode.
2160
2161 Removed deferred negation optimization (a * -b => -(a * b)) since
2162 this visibly changes operand conversion order.
2163
2164 Improved parsing performance by introducing stack guard in
2165 preparsing. Without a stack guard preparsing always bails out
2166 with stack overflow.
2167
2168 Changed shell sample to take flags directly from the command-line.
2169 Added API call that implements this.
2170
2171 Added load, quit and version functions to the shell sample so it's
2172 easier to run benchmarks and tests.
2173
2174 Fixed issue with building samples and cctests on 64-bit machines.
2175
2176 Fixed bug in the runtime system where the prototype chain was not
2177 always searched for a setter when setting a property that does not
2178 exist locally.
2179
2180
21812008-08-14: Version 0.2.3
2182
2183 Improved performance of garbage collection by moving the
2184 function that updates pointers during compacting collection
2185 into the updating visitor. This gives the compiler a better
2186 chance to inline and avoid a function call per (potential)
2187 pointer.
2188
2189 Extended the shell sample with a --runtime-flags option.
2190
2191 Added Visual Studio project files for the shell.cc and
2192 process.cc samples.
2193
2194
21952008-08-13: Version 0.2.2
2196
2197 Improved performance of garbage collection by changing the way
2198 we use the marking stack in the event of stack overflow during
2199 full garbage collection and by changing the way we mark roots.
2200
2201 Cleaned up ARM version by removing top of stack caching and by
2202 introducing push/pop elimination.
2203
2204 Cleaned up the way runtime functions are called to allow
2205 runtime calls with no arguments.
2206
2207 Changed Windows build options to make sure that exceptions are
2208 disabled and that optimization flags are enabled.
2209
2210 Added first version of Visual Studio project files.
2211
2212
22132008-08-06: Version 0.2.1
2214
2215 Improved performance of unary addition by avoiding runtime calls.
2216
2217 Fixed the handling of '>' and '<=' to use right-to-left conversion
2218 and left-to-right evaluation as specified by ECMA-262.
2219
2220 Fixed a branch elimination bug on the ARM platform where incorrect
2221 code was generated because of overly aggressive branch
2222 elimination.
2223
2224 Improved performance of code that repeatedly assigns the same
2225 function to the same property of different objects with the same
2226 map.
2227
2228 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
2229 no longer expects DEBUG to be defined.
2230
2231 Added platform-nullos.cc to serve as the basis for new platform
2232 implementations.
2233
2234
22352008-07-30: Version 0.2.0
2236
2237 Changed all text files to have native svn:eol-style.
2238
2239 Added a few samples and support for building them. The samples
2240 include a simple shell that can be used to benchmark and test V8.
2241
2242 Changed V8::GetVersion to return the version as a string.
2243
2244 Added source for lazily loaded scripts to snapshots and made
2245 serialization non-destructive.
2246
2247 Improved ARM support by fixing the write barrier code to use
2248 aligned loads and stores and by removing premature locals
2249 optimization that relied on broken support for callee-saved
2250 registers (removed).
2251
2252 Refactored the code for marking live objects during garbage
2253 collection and the code for allocating objects in paged
2254 spaces. Introduced an abstraction for the map word of a heap-
2255 allocated object and changed the memory allocator to allocate
2256 executable memory only for spaces that may contain code objects.
2257
2258 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
2259 they can be used by debugging and logging modules. Added
2260 thread-safe message queues for dealing with debugger events.
2261
2262 Fixed the source code reported by toString for certain builtin
2263 empty functions and made sure that the prototype property of a
2264 function is enumerable.
2265
2266 Improved performance of converting values to condition flags in
2267 generated code.
2268
2269 Merged disassembler-{arch} files.
2270
2271
22722008-07-28: Version 0.1.4
2273
2274 Added support for storing JavaScript stack traces in a stack
2275 allocated buffer to make it visible in shallow core dumps.
2276 Controlled by the --preallocate-message-memory flag which is
2277 disabled by default.
2278
2279
22802008-07-25: Version 0.1.3
2281
2282 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
2283 map transitions would count as properties.
2284
2285 Allowed aliased eval invocations by treating them as evals in the
2286 global context. This may change in the future.
2287
2288 Added support for accessing the last entered context through the
2289 API and renamed Context::Current to Context::GetCurrent and
2290 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
2291
2292 Fixed bug in the debugger that would cause the debugger scripts to
2293 be recursively loaded and changed all disabling of interrupts to
2294 be block-structured.
2295
2296 Made snapshot data read-only to allow it to be more easily shared
2297 across multiple users of V8 when linked as a shared library.
2298
2299
23002008-07-16: Version 0.1.2
2301
2302 Fixed building on Mac OS X by recognizing i386 and friends as
2303 IA-32 platforms.
2304
2305 Added propagation of stack overflow exceptions that occur while
2306 compiling nested functions.
2307
2308 Improved debugger with support for recursive break points and
2309 handling of exceptions that occur in the debugger JavaScript code.
2310
2311 Renamed GetInternal to GetInternalField and SetInternal to
2312 SetInternalField in the API and moved InternalFieldCount and
2313 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
2314
2315
23162008-07-09: Version 0.1.1
2317
2318 Fixed bug in stack overflow check code for IA-32 targets where a
2319 non-tagged value in register eax was pushed to the stack.
2320
2321 Fixed potential quadratic behavior when converting strings to
2322 numbers.
2323
2324 Fixed bug where the return value from Object::SetProperty could
2325 end up being the property holder instead of the written value.
2326
2327 Improved debugger support by allowing nested break points and by
2328 dealing with stack-overflows when compiling functions before
2329 setting break points in them.
2330
2331
23322008-07-03: Version 0.1.0
2333
2334 Initial export.
2335