blob: c89ec311fd68e519edc1fcb5924eb971a64e2b77 [file] [log] [blame]
Steve Block9fac8402011-05-12 15:51:54 +010012010-01-05: Version 3.0.6
2
3 Allowed getters and setters on JSArray elements (Issue 900).
4
5 Stopped JSON objects from hitting inherited setters (part of
6 Issue 1015).
7
8 Allowed numbers and strings as names of getters/setters in object
9 initializer (Issue 820).
10
11 Added use_system_v8 option to gyp (off by default), to make it easier
12 for Linux distributions to ship with system-provided V8 library.
13
14 Exported external array data accessors (Issue 1016).
15
16 Added labelled thread names to help with debugging (on Linux).
17
18
192011-01-03: Version 3.0.5
20
21 Fixed a couple of cast errors for gcc-3.4.3.
22
23 Performance improvements in GC and IA32 code generator.
24
25
Ben Murdochb0fe1622011-05-05 13:52:32 +0100262010-12-21: Version 3.0.4
27
28 Added Date::ResetCache() to the API so that the cached values in the
29 Date object can be reset to allow live DST / timezone changes.
30
31 Extended existing support for printing (while debugging) the contents
32 of objects. Added support for printing objects from release builds.
33
34 Fixed V8 issues 989, 1006, and 1007.
35
36
372010-12-17: Version 3.0.3
38
39 Reapplied all changes for version 3.0.1.
40
41 Improved debugger protocol for remote debugging.
42
43 Added experimental support for using gyp to generate build files
44 for V8.
45
46 Fixed implementation of String::Write in the API (issue 975).
47
48
492010-12-15: Version 3.0.2
50
51 Revert version 3.0.1 and patch 3.0.1.1.
52
53
542010-12-13: Version 3.0.1
55
56 Added support for an experimental internationalization API as an
57 extension. This extension is disabled by default but can be enabled
58 when building V8. The ECMAScript internationalization strawman is
59 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
60
61 Made RegExp character class parsing stricter. This mirrors a change
62 to RegExp parsing in WebKit.
63
64 Fixed a bug in Object.defineProperty when used to change attributes
65 of an existing property. It incorrectly set the property value to
66 undefined (issue 965).
67
68 Fixed several different compilation failures on various platforms
69 caused by the 3.0.0 release.
70
71 Optimized Math.pow so it can work on unboxed doubles.
72
73 Sped up quoting of JSON strings by removing one traversal of the
74 string.
75
76
772010-12-07: Version 3.0.0
78
79 Improved performance by (partially) addressing issue 957 on
80 IA-32. Still needs more work for the other architectures.
81
82
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800832010-11-29: Version 2.5.9
84
85 Fixed crashes during GC caused by partially initialize heap
86 objects.
87
88 Fixed bug in process sample that caused memory leaks.
89
90 Improved performance on ARM by implementing missing stubs and
91 inlining.
92
93 Improved heap profiler support.
94
95 Added separate seeding on Windows of the random number generator
96 used internally by the compiler (issue 936).
97
98 Exposed API for getting the name of the function used to construct
99 an object.
100
101 Fixed date parser to handle one and two digit millisecond
102 values (issue 944).
103
104 Fixed number parsing to disallow space between sign and
105 digits (issue 946).
106
107
1082010-11-23: Version 2.5.8
109
110 Removed dependency on Gay's dtoa.
111
112 Improved heap profiler precision and speed.
113
114 Reduced overhead of callback invocations on ARM.
115
116
1172010-11-18: Version 2.5.7
118
119 Fixed obscure evaluation order bug (issue 931).
120
121 Split the random number state between JavaScript and the private API.
122
123 Fixed performance bug causing GCs when generating stack traces on
124 code from very large scripts.
125
126 Fixed bug in parser that allowed (foo):42 as a labelled statement
127 (issue 918).
128
129 Provide more accurate results about used heap size via
130 GetHeapStatistics.
131
132 Allow build-time customization of the max semispace size.
133
134 Made String.prototype.split honor limit when separator is empty
135 (issue 929).
136
137 Added missing failure check after expecting an identifier in
138 preparser (Chromium issue 62639).
139
140
Russell Brenner90bac252010-11-18 13:33:46 -08001412010-11-10: Version 2.5.6
142
143 Added support for VFP rounding modes to the ARM simulator.
144
145 Fixed multiplication overflow bug (issue 927).
146
147 Added a limit for the amount of executable memory (issue 925).
148
149
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001502010-11-08: Version 2.5.5
151
152 Added more aggressive GC of external objects in near out-of-memory
153 situations.
154
155 Fixed a bug that gave the incorrect result for String.split called
156 on the empty string (issue 924).
157
158
1592010-11-03: Version 2.5.4
160
161 Improved V8 VFPv3 runtime detection to address issue 914.
162
163
1642010-11-01: Version 2.5.3
165
166 Fixed a bug that prevents constants from overwriting function values
167 in object literals (issue 907).
168
169 Fixed a bug with reporting of impossible nested calls of DOM functions
170 (issue http://crbug.com/60753).
171
172
John Reck59135872010-11-02 12:39:01 -07001732010-10-27: Version 2.5.2
174
175 Improved sampler resolution on Linux.
176
177 Allowed forcing the use of a simulator from the build script
178 independently of the host architecture.
179
180 Fixed FreeBSD port (Issue 912).
181
182 Made windows-tick-processor respect D8_PATH.
183
184 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
185
186
Ben Murdochf87a2032010-10-22 12:50:53 +01001872010-10-20: Version 2.5.1
188
189 Fixed bug causing spurious out of memory exceptions
190 (issue http://crbug.com/54580).
191
192 Fixed compilation error on Solaris platform (issue 901).
193
194 Fixed error in strtod (string to floating point number conversion)
195 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
196
197 Adjusted randomized allocations of executable memory to have 64k
198 granularity (issue http://crbug.com/56036).
199
200 Supported profiling using kernel perf_events on linux. Added ll_prof
201 script to tools and --ll-prof flag to V8.
202
203
2042010-10-18: Version 2.5.0
205
206 Fixed bug in cache handling of lastIndex on global regexps
207 (issue http://crbug.com/58740).
208
209 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
210 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
Ben Murdochb0fe1622011-05-05 13:52:32 +0100211 from Hewlett-Packard Development Company, LP).
Ben Murdochf87a2032010-10-22 12:50:53 +0100212
213 Fixed compilation error on ARM with gcc 4.4 (issue 894).
214
215
2162010-10-13: Version 2.4.9
217
218 Fixed a bug in the handling of conditional expressions in test
219 contexts in compiler for top-level code.
220
221 Added "//@ sourceURL" information to the StackTrace API.
222
223 Exposed RegExp construction through the API.
224
225
2262010-10-04: Version 2.4.8
227
228 Fixed a bug in ResumeProfilerEx causing it to not always write out the
229 whole snapshot (issue 868).
230
231 Performance improvements on all platforms.
232
233
2342010-09-30: Version 2.4.7
235
236 Changed the command-line flag --max-new-space-size to be in kB and the
237 flag --max-old-space-size to be in MB (previously they were in bytes).
238
239 Added Debug::CancelDebugBreak to the debugger API.
240
241 Fixed a bug in getters for negative numeric property names
242 (https://bugs.webkit.org/show_bug.cgi?id=46689).
243
244 Performance improvements on all platforms.
245
246
Kristian Monsen0d5e1162010-09-30 15:31:59 +01002472010-09-27: Version 2.4.6
Ben Murdochf87a2032010-10-22 12:50:53 +0100248
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100249 Fixed assertion failure related to copy-on-write arrays (issue 876).
250
251 Fixed build failure of 64-bit V8 on Windows.
252
253 Fixed a bug in RegExp (issue http://crbug.com/52801).
254
255 Improved the profiler's coverage to cover more functions (issue 858).
256
257 Fixed error in shift operators on 64-bit V8
258 (issue http://crbug.com/54521).
259
260
2612010-09-22: Version 2.4.5
Ben Murdochf87a2032010-10-22 12:50:53 +0100262
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100263 Changed the RegExp benchmark to exercise the regexp engine on different
264 inputs by scrambling the input strings.
265
266 Fixed a bug in keyed loads on strings.
267
268 Fixed a bug with loading global function prototypes.
269
270 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
271
272 Performance improvements on all platforms.
273
274
2752010-09-15: Version 2.4.4
276
277 Fixed bug with hangs on very large sparse arrays.
278
279 Now tries harder to free up memory when running out of space.
280
281 Added heap snapshots to JSON format to API.
282
283 Recalibrated benchmarks.
284
285
Steve Block59151502010-09-22 15:07:15 +01002862010-09-13: Version 2.4.3
287
288 Made Date.parse properly handle TZ offsets (issue 857).
289
290 Performance improvements on all platforms.
291
292
Iain Merrick9ac36c92010-09-13 15:29:50 +01002932010-09-08: Version 2.4.2
294
295 Fixed GC crash bug.
296
297 Fixed stack corruption bug.
298
299 Fixed compilation for newer C++ compilers that found Operand(0)
300 ambiguous.
301
302
3032010-09-06: Version 2.4.1
304
305 Added the ability for an embedding application to receive a callback
306 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
307 (V8::RemoveMemoryAllocationCallback) from the OS.
308
309 Fixed several JSON bugs (including issue 855).
310
311 Fixed memory overrun crash bug triggered during V8's tick-based
312 profiling.
313
314 Performance improvements on all platforms.
315
316
Kristian Monsen80d68ea2010-09-08 11:05:35 +01003172010-09-01: Version 2.4.0
318
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100319 Fixed bug in Object.freeze and Object.seal when Array.prototype or
320 Object.prototype are changed (issue 842).
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100321
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100322 Updated Array.splice to follow Safari and Firefox when called
Iain Merrick9ac36c92010-09-13 15:29:50 +0100323 with zero arguments.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100324
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100325 Fixed a missing live register when breaking at keyed loads on ARM.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100326
Iain Merrick9ac36c92010-09-13 15:29:50 +0100327 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100328
329
3302010-08-25: Version 2.3.11
331
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100332 Fixed bug in RegExp related to copy-on-write arrays.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100333
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100334 Refactored tools/test.py script, including the introduction of
Iain Merrick9ac36c92010-09-13 15:29:50 +0100335 VARIANT_FLAGS that allows specification of sets of flags with which
336 all tests should be run.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100337
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100338 Fixed a bug in the handling of debug breaks in CallIC.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100339
Iain Merrick9ac36c92010-09-13 15:29:50 +0100340 Performance improvements on all platforms.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100341
342
Steve Block791712a2010-08-27 10:21:07 +01003432010-08-23: Version 2.3.10
344
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100345 Fixed bug in bitops on ARM.
Steve Block791712a2010-08-27 10:21:07 +0100346
347 Build fixes for unusual compilers.
348
349 Track high water mark for RWX memory.
350
351 Performance improvements on all platforms.
352
353
Iain Merrick75681382010-08-19 15:07:18 +01003542010-08-18: Version 2.3.9
355
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100356 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
Iain Merrick75681382010-08-19 15:07:18 +0100357
358 Removed specialized handling of GCC 4.4 (issue 830).
359
Iain Merrick9ac36c92010-09-13 15:29:50 +0100360 Fixed DST cache to take into account the suspension of DST in
Iain Merrick75681382010-08-19 15:07:18 +0100361 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
362
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100363 Performance improvements on all platforms.
Iain Merrick75681382010-08-19 15:07:18 +0100364
365
3662010-08-16: Version 2.3.8
367
368 Fixed build with strict aliasing on GCC 4.4 (issue 463).
369
370 Fixed issue with incorrect handling of custom valueOf methods on
371 string wrappers (issue 760).
372
373 Fixed compilation for ARMv4 (issue 590).
374
375 Improved performance.
376
377
3782010-08-11: Version 2.3.7
379
380 Reduced size of heap snapshots produced by heap profiler (issue 783).
381
382 Introduced v8::Value::IsRegExp method.
383
384 Fixed CPU profiler crash in start / stop sequence when non-existent
385 name is passed (issue http://crbug.com/51594).
386
387 Introduced new indexed property query callbacks API (issue 816). This
388 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
389 by default.
390
391 Removed support for object literal get/set with number/string
392 property name.
393
394 Fixed handling of JSObject::elements in CalculateNetworkSize
395 (issue 822).
396
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100397 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
Iain Merrick75681382010-08-19 15:07:18 +0100398
399
Ben Murdochbb769b22010-08-11 14:56:33 +01004002010-08-09: Version 2.3.6
401
Iain Merrick75681382010-08-19 15:07:18 +0100402 RegExp literals create a new object every time they are evaluated
403 (issue 704).
Ben Murdochbb769b22010-08-11 14:56:33 +0100404
Iain Merrick75681382010-08-19 15:07:18 +0100405 Object.seal and Object.freeze return the modified object (issue 809).
Ben Murdochbb769b22010-08-11 14:56:33 +0100406
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100407 Fixed building using GCC 4.4.4.
Ben Murdochbb769b22010-08-11 14:56:33 +0100408
409
4102010-08-04: Version 2.3.5
411
412 Added support for ES5 property names. Object initialisers and
413 dot-notation property access now allows keywords. Also allowed
414 non-identifiers after "get" or "set" in an object initialiser.
415
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100416 Randomized the addresses of allocated executable memory on Windows.
Ben Murdochbb769b22010-08-11 14:56:33 +0100417
418
4192010-08-02: Version 2.3.4
420
421 Fixed problems in implementation of ES5 function.prototype.bind.
422
423 Fixed error when using apply with arguments object on ARM (issue 784).
424
425 Added setting of global flags to debugger protocol.
426
427 Fixed an error affecting cached results of sin and cos (issue 792).
428
429 Removed memory leak from a boundary case where V8 is not initialized.
430
431 Fixed issue where debugger could set breakpoints outside the body
432 of a function.
433
434 Fixed issue in debugger when using both live edit and step in features.
435
436 Added Number-letter (Nl) category to Unicode tables. These characters
437 can now be used in identifiers.
438
439 Fixed an assert failure on X64 (issue 806).
440
441 Performance improvements on all platforms.
442
443
Kristian Monsen50ef84f2010-07-29 15:18:00 +01004442010-07-26: Version 2.3.3
445
446 Fixed error when building the d8 shell in a fresh checkout.
447
448 Implemented Function.prototype.bind (ES5 15.3.4.5).
449
450 Fixed an error in inlined stores on ia32.
451
452 Fixed an error when setting a breakpoint at the end of a function
453 that does not end with a newline character.
454
455 Performance improvements on all platforms.
456
457
4582010-07-21: Version 2.3.2
459
460 Fixed compiler warnings when building with LLVM.
461
462 Fixed a bug with for-in applied to strings (issue 785).
463
464 Performance improvements on all platforms.
465
466
Ben Murdoch3bec4d22010-07-22 14:51:16 +01004672010-07-19: Version 2.3.1
468
469 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
470
471 Fixed bug related to code flushing while compiling a lazy
472 compilable function (issue http://crbug.com/49099).
473
474 Performance improvements on all platforms.
475
476
4772010-07-15: Version 2.3.0
478
479 Added ES5 Object.seal and Object.isSealed.
480
481 Added debugger API for scheduling debugger commands from a
482 separate thread.
483
484
4852010-07-14: Version 2.2.24
486
487 Added API for capturing stack traces for uncaught exceptions.
488
489 Fixed crash bug when preparsing from a non-external V8 string
490 (issue 775).
491
492 Fixed JSON.parse bug causing input not to be converted to string
493 (issue 764).
494
495 Added ES5 Object.freeze and Object.isFrozen.
496
497 Performance improvements on all platforms.
498
499
Leon Clarkeac952652010-07-15 11:15:24 +01005002010-07-07: Version 2.2.23
501
502 API change: Convert Unicode code points outside the basic multilingual
503 plane to the replacement character. Previous behavior was to silently
504 truncate the value to 16 bits.
505
506 Fixed crash: handle all flat string types in regexp replace.
507
508 Prevent invalid pre-parsing data passed in through the API from
509 crashing V8.
510
511 Performance improvements on all platforms.
512
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100513
Steve Block8defd9f2010-07-08 12:39:36 +01005142010-07-05: Version 2.2.22
515
516 Added ES5 Object.isExtensible and Object.preventExtensions.
517
518 Enabled building V8 as a DLL.
519
520 Fixed a bug in date code where -0 was not interpreted as 0
521 (issue 736).
522
523 Performance improvements on all platforms.
524
525
5262010-06-30: Version 2.2.21
527
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100528 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
Steve Block8defd9f2010-07-08 12:39:36 +0100529
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100530 Updated JSON.stringify to floor the space parameter (issue 753).
Steve Block8defd9f2010-07-08 12:39:36 +0100531
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100532 Updated the Mozilla test expectations to the newest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100533
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100534 Updated the ES5 Conformance Test expectations to the latest version.
Steve Block8defd9f2010-07-08 12:39:36 +0100535
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100536 Updated the V8 benchmark suite.
Steve Block8defd9f2010-07-08 12:39:36 +0100537
538 Provide actual breakpoints locations in response to setBreakpoint
539 and listBreakpoints requests.
540
541
5422010-06-28: Version 2.2.20
543
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100544 Fixed bug with for-in on x64 platform (issue 748).
Steve Block8defd9f2010-07-08 12:39:36 +0100545
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100546 Fixed crash bug on x64 platform (issue 756).
Steve Block8defd9f2010-07-08 12:39:36 +0100547
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100548 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
Steve Block8defd9f2010-07-08 12:39:36 +0100549
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100550 Fixed a bug on ARM that caused the result of 1 << x to be
Steve Block8defd9f2010-07-08 12:39:36 +0100551 miscalculated for some inputs.
552
553 Performance improvements on all platforms.
554
555
Kristian Monsen9dcf7e22010-06-28 14:14:28 +01005562010-06-23: Version 2.2.19
557
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100558 Fixed bug that causes the build to break when profillingsupport=off
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100559 (issue 738).
560
561 Added expose-externalize-string flag for testing extensions.
562
563 Resolve linker issues with using V8 as a DLL causing a number of
564 problems with unresolved symbols.
565
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100566 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100567 defined.
568
569 Performance improvements on all platforms.
570
571
5722010-06-16: Version 2.2.18
573
574 Added API functions to retrieve information on indexed properties
575 managed by the embedding layer. Fixes bug 737.
576
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100577 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100578
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100579 Added heap profiling to the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100580
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100581 Removed old named property query from the API.
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100582
583 Incremental performance improvements.
584
585
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01005862010-06-14: Version 2.2.17
587
588 Improved debugger support for stepping out of functions.
589
590 Incremental performance improvements.
591
592
5932010-06-09: Version 2.2.16
594
Steve Block8defd9f2010-07-08 12:39:36 +0100595 Removed the SetExternalStringDiposeCallback API. Changed the
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100596 disposal of external string resources to call a virtual Dispose
597 method on the resource.
598
Steve Block8defd9f2010-07-08 12:39:36 +0100599 Added support for more precise break points when debugging and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100600 stepping.
601
602 Memory usage improvements on all platforms.
603
604
6052010-06-07: Version 2.2.15
606
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100607 Added an API to control the disposal of external string resources.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100608
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100609 Added missing initialization of a couple of variables which makes
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100610 some compilers complaint when compiling with -Werror.
611
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100612 Improved performance on all platforms.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100613
614
6152010-06-02: Version 2.2.14
616
617 Fixed a crash in code generated for String.charCodeAt.
618
619 Fixed a compilation issue with some GCC versions (issue 727).
620
621 Performance optimizations on x64 and ARM platforms.
622
623
6242010-05-31: Version 2.2.13
625
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100626 Implemented Object.getOwnPropertyDescriptor for element indices and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100627 strings (issue 599).
628
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100629 Fixed bug for windows 64 bit C calls from generated code.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100630
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100631 Added new scons flag unalignedaccesses for arm builds.
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100632
633 Performance improvements on all platforms.
634
635
Leon Clarkef7060e22010-06-03 12:02:55 +01006362010-05-26: Version 2.2.12
637
638 Allowed accessors to be defined on objects rather than just object
639 templates.
640
641 Changed the ScriptData API.
642
643
6442010-05-21: Version 2.2.11
645
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100646 Fixed crash bug in liveedit on 64 bit.
Leon Clarkef7060e22010-06-03 12:02:55 +0100647
648 Use 'full compiler' when debugging is active. This should increase
649 the density of possible break points, making single step more fine
650 grained. This will only take effect for functions compiled after
651 debugging has been started, so recompilation of all functions is
652 required to get the full effect. IA32 and x64 only for now.
653
654 Misc. fixes to the Solaris build.
655
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100656 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
Leon Clarkef7060e22010-06-03 12:02:55 +0100657
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100658 Added filtering of CPU profiles by security context.
Leon Clarkef7060e22010-06-03 12:02:55 +0100659
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100660 Fixed crash bug on ARM when running without VFP2 or VFP3.
Leon Clarkef7060e22010-06-03 12:02:55 +0100661
662 Incremental performance improvements in all backends.
663
664
Kristian Monsen25f61362010-05-21 11:50:48 +01006652010-05-17: Version 2.2.10
666
667 Performance improvements in the x64 and ARM backends.
668
669
6702010-05-10: Version 2.2.9
671
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100672 Allowed Object.create to be called with a function (issue 697).
Kristian Monsen25f61362010-05-21 11:50:48 +0100673
674 Fixed bug with Date.parse returning a non-NaN value when called on a
675 non date string (issue 696).
676
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100677 Allowed unaligned memory accesses on ARM targets that support it (by
Leon Clarkef7060e22010-06-03 12:02:55 +0100678 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
Kristian Monsen25f61362010-05-21 11:50:48 +0100679
680 C++ API for retrieving JavaScript stack trace information.
681
682
Steve Block6ded16b2010-05-10 14:33:55 +01006832010-05-05: Version 2.2.8
684
685 Performance improvements in the x64 and ARM backends.
686
687
6882010-05-03: Version 2.2.7
689
690 Added support for ES5 date time string format to Date.parse.
691
692 Performance improvements in the x64 backend.
693
694
6952010-04-28: Version 2.2.6
696
697 Added "amd64" as recognized architecture in scons build script
698 (by Ryan Dahl <coldredlemur@gmail.com>).
699
700 Fixed bug in String search and replace with very simple RegExps.
701
702 Fixed bug in RegExp containing "\b^".
703
704 Performance improvements on all platforms.
705
706
7072010-04-26: Version 2.2.5
708
709 Various performance improvements (especially for ARM and x64)
710
711 Fixed bug in CPU profiling (http://crbug.com/42137)
712
713 Fixed a bug with the natives cache.
714
715 Fixed two bugs in the ARM code generator that can cause
716 wrong calculations.
717
718 Fixed a bug that may cause a wrong result for shift operations.
719
720
7212010-04-21: Version 2.2.4
722
723 Fixed warnings on arm on newer GCC versions.
724
725 Fixed a number of minor bugs.
726
727 Performance improvements on all platforms.
728
729
7302010-04-14: Version 2.2.3
731
732 Added stack command and mem command to ARM simulator debugger.
733
734 Fixed scons snapshot and ARM build, and Windows X64 build issues.
735
736 Performance improvements on all platforms.
737
738
7392010-04-12: Version 2.2.2
740
741 Introduced new profiler API.
742
743 Fixed random number generator to produce full 32 random bits.
744
745
7462010-04-06: Version 2.2.1
747
748 Debugger improvements.
749
750 Fixed minor bugs.
751
752
7532010-03-29: Version 2.2.0
754
755 Fixed a few minor bugs.
756
757 Performance improvements for string operations.
758
759
7602010-03-26: Version 2.1.10
761
762 Fixed scons build issues.
763
764 Fixed a couple of minor bugs.
765
766
7672010-03-25: Version 2.1.9
768
769 Added API support for reattaching a global object to a context.
770
771 Extended debugger API with access to the internal debugger context.
772
773 Fixed Chromium crashes (issues http://crbug.com/39128 and
774 http://crbug.com/39160)
775
776
7772010-03-24: Version 2.1.8
778
779 Added fine-grained garbage collection callbacks to the API.
780
781 Performance improvements on all platforms.
782
783
7842010-03-22: Version 2.1.7
785
786 Fixed issue 650.
787
788 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
789
790 Performance improvements for arithmetic operations.
791
792 Performance improvements for string operations.
793
794 Print script name and line number information in stack trace.
795
796
7972010-03-17: Version 2.1.6
798
799 Performance improvements for arithmetic operations.
800
801 Performance improvements for string operations.
802
803
8042010-03-10: Version 2.1.4
805
806 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
807
808 Performance improvements on all platforms.
809
810
8112010-03-10: Version 2.1.3
812
813 Added API method for context-disposal notifications.
814
815 Added API method for accessing elements by integer index.
816
817 Added missing implementation of Uint32::Value and Value::IsUint32
818 API methods.
819
820 Added IsExecutionTerminating API method.
821
822 Disabled strict aliasing for GCC 4.4.
823
824 Fixed string-concatenation bug (issue 636).
825
826 Performance improvements on all platforms.
827
828
Andrei Popescu402d9372010-02-26 13:31:12 +00008292010-02-23: Version 2.1.2
830
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100831 Fixed a crash bug caused by wrong assert.
Andrei Popescu402d9372010-02-26 13:31:12 +0000832
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100833 Fixed a bug with register names on 64-bit V8 (issue 615).
Andrei Popescu402d9372010-02-26 13:31:12 +0000834
835 Performance improvements on all platforms.
836
Steve Block6ded16b2010-05-10 14:33:55 +0100837
Andrei Popescu402d9372010-02-26 13:31:12 +00008382010-02-19: Version 2.1.1
839
840 [ES5] Implemented Object.defineProperty.
841
842 Improved profiler support.
843
844 Added SetPrototype method in the public V8 API.
845
846 Added GetScriptOrigin and GetScriptLineNumber methods to Function
847 objects in the API.
848
849 Performance improvements on all platforms.
850
851
Leon Clarke4515c472010-02-03 11:58:03 +00008522010-02-03: Version 2.1.0
853
854 Values are now always wrapped in objects when used as a receiver.
855 (issue 223).
856
857 [ES5] Implemented Object.getOwnPropertyNames.
858
859 [ES5] Restrict JSON.parse to only accept strings that conforms to the
860 JSON grammar.
861
862 Improvement of debugger agent (issue 549 and 554).
863
864 Fixed problem with skipped stack frame in profiles (issue 553).
865
866 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
867 <ry@tinyclouds.org>.
868
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100869 Fixed a bug that Math.round() returns incorrect results for huge
Leon Clarke4515c472010-02-03 11:58:03 +0000870 integers.
871
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100872 Fixed enumeration order for objects created from some constructor
Leon Clarke4515c472010-02-03 11:58:03 +0000873 functions (isue http://crbug.com/3867).
874
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100875 Fixed arithmetic on some integer constants (issue 580).
Leon Clarke4515c472010-02-03 11:58:03 +0000876
877 Numerous performance improvements including porting of previous IA-32
878 optimizations to x64 and ARM architectures.
879
880
Leon Clarkee46be812010-01-19 14:06:41 +00008812010-01-14: Version 2.0.6
882
883 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
884 GetOwnProperty, FromPropertyDescriptor.
885
886 Fixed Mac x64 build errors.
887
888 Improved performance of some math and string operations.
889
890 Improved performance of some regexp operations.
891
892 Improved performance of context creation.
893
894 Improved performance of hash tables.
895
896
8972009-12-18: Version 2.0.5
898
899 Extended to upper limit of map space to allow for 7 times as many map
900 to be allocated (issue 524).
901
902 Improved performance of code using closures.
903
904 Improved performance of some binary operations involving doubles.
905
906
9072009-12-16: Version 2.0.4
908
909 Added ECMAScript 5 Object.create.
910
911 Improved performance of Math.max and Math.min.
912
913 Optimized adding of strings on 64-bit platforms.
914
915 Improved handling of external strings by using a separate table
916 instead of weak handles. This improves garbage collection
917 performance and uses less memory.
918
919 Changed code generation for object and array literals in toplevel
920 code to be more compact by doing more work in the runtime.
921
922 Fixed a crash bug triggered when garbage collection happened during
923 generation of a callback load inline cache stub.
924
925 Fixed crash bug sometimes triggered when local variables shadowed
926 parameters in functions that used the arguments object.
927
928
Steve Blockd0582a62009-12-15 09:54:21 +00009292009-12-03: Version 2.0.3
930
931 Optimized handling and adding of strings, for-in and Array.join.
932
933 Heap serialization is now non-destructive.
934
935 Improved profiler support with information on time spend in C++
936 callbacks registered through the API.
937
938 Added commands to the debugger protocol for starting/stopping
939 profiling.
940
941 Enabled the non-optimizing compiler for top-level code.
942
943 Changed the API to only allow strings to be set as data objects on
944 Contexts and scripts to avoid potentially keeping global objects
945 around for too long (issue 528).
946
947 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
948
949 Fixed bugs.
950
951
9522009-11-24: Version 2.0.2
953
954 Improved profiler support.
955
956 Fixed bug that broke compilation of d8 with readline support.
957
958
9592009-11-20: Version 2.0.1
960
961 Fixed crash bug in String.prototype.replace.
962
963 Reverted a change which caused Chromium interactive ui test
964 failures.
965
Leon Clarkee46be812010-01-19 14:06:41 +0000966
Steve Blockd0582a62009-12-15 09:54:21 +00009672009-11-18: Version 2.0.0
968
969 Added support for VFP on ARM.
970
971 Added TryCatch::ReThrow method to the API.
972
973 Reduced the size of snapshots and improved the snapshot load time.
974
975 Improved heap profiler support.
976
977 64-bit version now supported on Windows.
978
979 Fixed a number of debugger issues.
980
981 Fixed bugs.
982
983
9842009-10-29: Version 1.3.18
985
986 Reverted a change which caused crashes in RegExp replace.
987
988 Reverted a change which caused Chromium ui_tests failure.
989
990
9912009-10-28: Version 1.3.17
992
993 Added API method to get simple heap statistics.
994
995 Improved heap profiler support.
996
997 Fixed the implementation of the resource constraint API so it
998 works when using snapshots.
999
1000 Fixed a number of issues in the Windows 64-bit version.
1001
1002 Optimized calls to API getters.
1003
1004 Added valgrind notification on code modification to the 64-bit version.
1005
1006 Fixed issue where we logged shared library addresses on Windows at
1007 startup and never used them.
1008
1009
Steve Block3ce2e202009-11-05 08:53:23 +000010102009-10-16: Version 1.3.16
Leon Clarkee46be812010-01-19 14:06:41 +00001011
Steve Block3ce2e202009-11-05 08:53:23 +00001012 X64: Convert smis to holding 32 bits of payload.
1013
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001014 Introduced v8::Integer::NewFromUnsigned method.
Steve Block3ce2e202009-11-05 08:53:23 +00001015
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001016 Added missing null check in Context::GetCurrent.
Steve Block3ce2e202009-11-05 08:53:23 +00001017
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001018 Added trim, trimLeft and trimRight methods to String
Steve Block3ce2e202009-11-05 08:53:23 +00001019 Patch by Jan de Mooij <jandemooij@gmail.com>
1020
1021 Implement ES5 Array.isArray
1022 Patch by Jan de Mooij <jandemooij@gmail.com>
1023
1024 Skip access checks for hidden properties.
1025
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001026 Added String::Concat(Handle<String> left, Handle<String> right) to the
1027 V8 API.
Steve Block3ce2e202009-11-05 08:53:23 +00001028
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001029 Fixed GYP-based builds of V8.
Steve Block3ce2e202009-11-05 08:53:23 +00001030
1031
10322009-10-07: Version 1.3.15
1033
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001034 Expanded the maximum size of the code space to 512MB for 64-bit mode.
Steve Block3ce2e202009-11-05 08:53:23 +00001035
1036 Fixed a crash bug happening when starting profiling (issue
1037 http://crbug.com/23768).
1038
1039
10402009-10-07: Version 1.3.14
1041
1042 Added GetRealNamedProperty to the API to lookup real properties
1043 located on the object or in the prototype chain skipping any
1044 interceptors.
1045
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001046 Fixed the stack limits setting API to work correctly with threads. The
Steve Block3ce2e202009-11-05 08:53:23 +00001047 stack limit now needs to be set to each thread thich is used with V8.
1048
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001049 Removed the high-priority flag from IdleNotification()
Steve Block3ce2e202009-11-05 08:53:23 +00001050
1051 Ensure V8 is initialized before locking and unlocking threads.
1052
1053 Implemented a new JavaScript minifier for compressing the source of
Steve Blockd0582a62009-12-15 09:54:21 +00001054 the built-in JavaScript. This removes non-Open Source code from Douglas
Steve Block3ce2e202009-11-05 08:53:23 +00001055 Crockford from the project.
1056
1057 Added a missing optimization in StringCharAt.
1058
1059 Fixed some flaky socket tests.
1060
1061 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
1062 in 64-bit mode.
1063
1064 Fixed memory leaks in the thread management code.
1065
1066 Fixed the result of assignment to a pixel array. The assigned value
1067 is now the result.
1068
1069 Error reporting for invalid left-hand sides in for-in statements, pre-
1070 and postfix count expressions, and assignments now matches the JSC
1071 behavior in Safari 4.
1072
1073 Follow the spec in disallowing function declarations without a name.
1074
1075 Always allocate code objects within a 2 GB range. On x64 architecture
1076 this is used to use near calls (32-bit displacement) in Code objects.
1077
1078 Optimized array construction ported to x64 and ARM architectures.
1079
1080 [ES5] Changed Object.keys to return strings for element indices.
1081
1082
Steve Blocka7e24c12009-10-30 11:49:00 +000010832009-09-23: Version 1.3.13
1084
1085 Fixed uninitialized memory problem.
1086
1087 Improved heap profiler support.
1088
1089
10902009-09-22: Version 1.3.12
1091
1092 Changed behavior of |function|.toString() on built-in functions to
1093 be compatible with other implementations. Patch by Jan de Mooij.
1094
1095 Added Object::IsDirty in the API.
1096
1097 Optimized array construction; it is now handled purely in native
1098 code.
1099
1100 [ES5] Made properties of the arguments array enumerable.
1101
1102 [ES5] Added test suite adapter for the es5conform test suite.
1103
1104 [ES5] Added Object.keys function.
1105
1106
11072009-09-15: Version 1.3.11
1108
1109 Fixed crash in error reporting during bootstrapping.
1110
1111 Optimized generated IA32 math code by using SSE2 instructions when
1112 available.
1113
1114 Implemented missing pieces of debugger infrastructure on ARM. The
1115 debugger is now fully functional on ARM.
1116
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001117 Made 'hidden' the default visibility for gcc.
Steve Blocka7e24c12009-10-30 11:49:00 +00001118
1119
11202009-09-09: Version 1.3.10
1121
1122 Fixed profiler on Mac in 64-bit mode.
1123
1124 Optimized creation of objects from simple constructor functions on
1125 ARM.
1126
1127 Fixed a number of debugger issues.
1128
1129 Reduced the amount of memory consumed by V8.
1130
1131
11322009-09-02: Version 1.3.9
1133
1134 Optimized stack guard checks on ARM.
1135
1136 Optimized API operations by inlining more in the API.
1137
1138 Optimized creation of objects from simple constructor functions.
1139
1140 Enabled a number of missing optimizations in the 64-bit port.
1141
1142 Implemented native-code support for regular expressions on ARM.
1143
1144 Stopped using the 'sahf' instruction on 64-bit machines that do
1145 not support it.
1146
1147 Fixed a bug in the support for forceful termination of JavaScript
1148 execution.
1149
1150
11512009-08-26: Version 1.3.8
1152
1153 Changed the handling of idle notifications to allow idle
1154 notifications when V8 has not yet been initialized.
1155
1156 Fixed ARM simulator compilation problem on Windows.
Leon Clarkee46be812010-01-19 14:06:41 +00001157
Steve Blocka7e24c12009-10-30 11:49:00 +00001158
11592009-08-25: Version 1.3.7
1160
1161 Reduced the size of generated code on ARM platforms by reducing
1162 the size of constant pools.
1163
1164 Changed build files to not include the 'ENV' user environment
1165 variable in the build environment.
1166
1167 Changed the handling of idle notifications.
1168
1169
11702009-08-21: Version 1.3.6
1171
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001172 Added support for forceful termination of JavaScript execution.
Steve Blocka7e24c12009-10-30 11:49:00 +00001173
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001174 Added low memory notification to the API. The embedding host can signal
Steve Blocka7e24c12009-10-30 11:49:00 +00001175 a low memory situation to V8.
1176
1177 Changed the handling of global handles (persistent handles in the API
1178 sense) to avoid issues regarding allocation of new global handles
1179 during weak handle callbacks.
1180
1181 Changed the growth policy of the young space.
1182
1183 Fixed a GC issue introduced in version 1.3.5.
1184
1185
11862009-08-19: Version 1.3.5
1187
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001188 Optimized initialization of some arrays in the builtins.
Steve Blocka7e24c12009-10-30 11:49:00 +00001189
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001190 Fixed mac-nm script to support filenames with spaces.
Steve Blocka7e24c12009-10-30 11:49:00 +00001191
1192 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
1193
1194 Changed typeof RegExp from 'object' to 'function' for compatibility.
1195 Fixed bug where regexps were not callable across contexts.
1196
1197 Added context independent script compilation to the API.
1198
1199 Added API call to get the stack trace for an exception.
1200
1201 Added API for getting object mirrors.
1202
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001203 Made sure that SSE3 instructions are used whenever possible even when
Steve Blocka7e24c12009-10-30 11:49:00 +00001204 running off a snapshot generated without using SSE3 instructions.
1205
1206 Tweaked the handling of the initial size and growth policy of the heap.
1207
1208 Added native code generation for RegExp to 64-bit version.
1209
1210 Added JavaScript debugger support to 64-bit version.
1211
1212
12132009-08-13: Version 1.3.4
1214
1215 Added a readline() command to the d8 shell.
1216
1217 Fixed bug in json parsing.
1218
1219 Added idle notification to the API and reduced memory on idle
1220 notifications.
1221
1222
12232009-08-12: Version 1.3.3
1224
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001225 Fixed issue 417: incorrect %t placeholder expansion.
Steve Blocka7e24c12009-10-30 11:49:00 +00001226
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001227 Added .gitignore file similar to Chromium's one.
Steve Blocka7e24c12009-10-30 11:49:00 +00001228
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001229 Fixed SConstruct file to build with new logging code for Android.
Steve Blocka7e24c12009-10-30 11:49:00 +00001230
1231 API: added function to find instance of template in prototype
1232 chain. Inlined Object::IsInstanceOf.
1233
1234 Land change to notify valgrind when we modify code on x86.
1235
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001236 Added api call to determine whether a string can be externalized.
Steve Blocka7e24c12009-10-30 11:49:00 +00001237
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001238 Added a write() command to d8.
Steve Blocka7e24c12009-10-30 11:49:00 +00001239
1240
12412009-08-05: Version 1.3.2
1242
1243 Started new compiler infrastructure for two-pass compilation using a
1244 control flow graph constructed from the AST.
1245
1246 Profiler stack sampling for X64.
1247
1248 Safe handling of NaN to Posix platform-dependent time functions.
1249
1250 Added a new profiler control API to unify controlling various aspects
1251 of profiling.
1252
1253 Fixed issue 392.
1254
1255
12562009-07-30: Version 1.3.1
1257
1258 Speed improvements to accessors and interceptors.
1259
1260 Added support for capturing stack information on custom errors.
1261
1262 Added support for morphing an object into a pixel array where its
1263 indexed properties are stored in an external byte array. Values written
1264 are always clamped to the 0..255 interval.
1265
1266 Profiler on x64 now handles C/C++ functions from shared libraries.
1267
1268 Changed the debugger to avoid stepping into function.call/apply if the
1269 function is a built-in.
1270
1271 Initial implementation of constructor heap profile for JS objects.
Leon Clarkee46be812010-01-19 14:06:41 +00001272
Steve Blocka7e24c12009-10-30 11:49:00 +00001273 More fine grained control of profiling aspects through the API.
Leon Clarkee46be812010-01-19 14:06:41 +00001274
Steve Blocka7e24c12009-10-30 11:49:00 +00001275 Optimized the called as constructor check for API calls.
1276
1277
12782009-07-27: Version 1.3.0
1279
1280 Allowed RegExp objects to be called as functions (issue 132).
1281
1282 Fixed issue where global property cells would escape after
1283 detaching the global object; see http://crbug.com/16276.
1284
1285 Added support for stepping into setters and getters in the
1286 debugger.
1287
1288 Changed the debugger to avoid stopping in its own JavaScript code
1289 and in the code of built-in functions.
1290
1291 Fixed issue 345 by avoiding duplicate escaping labels.
1292
1293 Fixed ARM code generator crash in short-circuited boolean
1294 expressions and added regression tests.
1295
1296 Added an external allocation limit to avoid issues where small V8
1297 objects would hold on to large amounts of external memory without
1298 causing garbage collections.
Leon Clarkee46be812010-01-19 14:06:41 +00001299
1300 Finished more of the inline caching stubs for x64 targets.
Steve Blocka7e24c12009-10-30 11:49:00 +00001301
1302
13032009-07-13: Version 1.2.14
1304
1305 Added separate paged heap space for global property cells and
1306 avoid updating the write barrier when storing into them.
1307
1308 Improved peep-hole optimization on ARM platforms by not emitting
1309 unnecessary debug information.
1310
1311 Re-enabled ICs for loads and calls that skip a global object
1312 during lookup through the prototype chain.
1313
1314 Allowed access through global proxies to use ICs.
1315
1316 Fixed issue 401.
1317
1318
13192009-07-09: Version 1.2.13
1320
1321 Fixed issue 397, issue 398, and issue 399.
1322
1323 Added support for breakpoint groups.
1324
1325 Fixed bugs introduced with the new global object representation.
1326
1327 Fixed a few bugs in the ARM code generator.
1328
1329
13302009-07-06: Version 1.2.12
1331
1332 Added stack traces collection to Error objects accessible through
1333 the e.stack property.
1334
1335 Changed RegExp parser to use a recursive data structure instead of
1336 stack-based recursion.
1337
1338 Optimized Date object construction and string concatenation.
1339
1340 Improved performance of div, mod, and mul on ARM platforms.
1341
1342
13432009-07-02: Version 1.2.11
1344
1345 Improved performance on IA-32 and ARM.
1346
1347 Fixed profiler sampler implementation on Mac OS X.
1348
1349 Changed the representation of global objects to improve
1350 performance of adding a lot of new properties.
1351
1352
13532009-06-29: Version 1.2.10
1354
1355 Improved debugger support.
1356
1357 Fixed bug in exception message reporting (issue 390).
1358
1359 Improved overall performance.
1360
1361
13622009-06-23: Version 1.2.9
1363
1364 Improved math performance on ARM.
1365
1366 Fixed profiler name-inference bug.
1367
1368 Fixed handling of shared libraries in the profiler tick processor
1369 scripts.
1370
1371 Fixed handling of tests that time out in the test scripts.
1372
1373 Fixed compilation on MacOS X version 10.4.
1374
1375 Fixed two bugs in the regular expression engine.
1376
1377 Fixed a bug in the string type inference.
1378
1379 Fixed a bug in the handling of 'constant function' properties.
Leon Clarkee46be812010-01-19 14:06:41 +00001380
Steve Blocka7e24c12009-10-30 11:49:00 +00001381 Improved overall performance.
Leon Clarkee46be812010-01-19 14:06:41 +00001382
Steve Blocka7e24c12009-10-30 11:49:00 +00001383
13842009-06-16: Version 1.2.8
1385
1386 Optimized math on ARM platforms.
1387
1388 Fixed two crash bugs in the handling of getters and setters.
1389
1390 Improved the debugger support by adding scope chain information.
1391
1392 Improved the profiler support by compressing log data transmitted
1393 to clients.
1394
1395 Improved overall performance.
1396
1397
13982009-06-08: Version 1.2.7
1399
1400 Improved debugger and profiler support.
1401
1402 Reduced compilation time by improving the handling of deferred
1403 code.
1404
1405 Optimized interceptor accesses where the property is on the object
1406 on which the interceptors is attached.
1407
1408 Fixed compilation problem on GCC 4.4 by changing the stack
1409 alignment to 16 bytes.
1410
1411 Fixed handle creation to follow stric aliasing rules.
1412
1413 Fixed compilation on FreeBSD.
1414
1415 Introduced API for forcing the deletion of a property ignoring
1416 interceptors and attributes.
1417
1418
14192009-05-29: Version 1.2.6
1420
1421 Added a histogram recording hit rates at different levels of the
1422 compilation cache.
1423
1424 Added stack overflow check for the RegExp analysis phase. Previously a
1425 very long regexp graph could overflow the stack with recursive calls.
1426
1427 Use a dynamic buffer when collecting log events in memory.
1428
1429 Added start/stop events to the profiler log.
1430
1431 Fixed infinite loop which could happen when setting a debug break while
1432 executing a RegExp compiled to native code.
1433
1434 Fixed handling of lastIndexOf called with negative index (issue 351).
1435
1436 Fixed irregular crash in profiler test (issue 358).
1437
1438 Fixed compilation issues with some versions of gcc.
1439
1440
14412009-05-26: Version 1.2.5
1442
1443 Fixed bug in initial boundary check for Boyer-Moore text
1444 search (issue 349).
1445
1446 Fixed compilation issues with MinGW and gcc 4.3+ and added support
1447 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
1448 Craig Schlenter.
1449
1450 Added a script cache to the debugger.
1451
1452 Optimized compilation performance by improving internal data
1453 structures and avoiding expensive property load optimizations for
1454 code that's infrequently executed.
1455
1456 Exposed the calling JavaScript context through the static API
1457 function Context::GetCalling().
1458
1459
14602009-05-18: Version 1.2.4
1461
1462 Improved performance of floating point number allocation for ARM
1463 platforms.
1464
1465 Fixed crash when using the instanceof operator on functions with
1466 number values in their prototype chain (issue 341).
1467
1468 Optimized virtual frame operations in the code generator to speed
1469 up compilation time and allocated the frames in the zone.
1470
1471 Made the representation of virtual frames and jump targets in the
1472 code generator much more compact.
1473
1474 Avoided linear search for non-locals in scope code when resolving
1475 variables inside with and eval scopes.
1476
1477 Optimized lexical scanner by dealing with whitespace as part of
1478 the token scanning instead of as a separate step before it.
1479
1480 Changed the scavenging collector so that promoted objects do not
1481 reside in the old generation while their remembered set is being
1482 swept for pointers into the young generation.
1483
1484 Fixed numeric overflow handling when compiling count operations.
1485
1486
14872009-05-11: Version 1.2.3
1488
1489 Fixed bug in reporting of out-of-memory situations.
1490
1491 Introduced hidden prototypes on certain builtin prototype objects
1492 such as String.prototype to emulate JSC's behavior of restoring
1493 the original function when deleting functions from those prototype
1494 objects.
1495
1496 Fixed crash bug in the register allocator.
1497
1498
14992009-05-04: Version 1.2.2
1500
1501 Fixed bug in array sorting for sparse arrays (issue 326).
1502
1503 Added support for adding a soname when building a shared library
1504 on Linux (issue 151).
1505
1506 Fixed bug caused by morphing internal ASCII strings to external
1507 two-byte strings. Slices over ASCII strings have to forward ASCII
1508 checks to the underlying buffer string.
1509
1510 Allowed API call-as-function handlers to be called as
1511 constructors.
1512
1513 Fixed a crash bug where an external string was disposed but a
1514 slice of the external string survived as a symbol.
1515
1516
15172009-04-27: Version 1.2.1
1518
1519 Added EcmaScript 5 JSON object.
1520
Kristian Monsen0d5e1162010-09-30 15:31:59 +01001521 Fixed bug in preemption support on ARM.
Steve Blocka7e24c12009-10-30 11:49:00 +00001522
1523
15242009-04-23: Version 1.2.0
1525
1526 Optimized floating-point operations on ARM.
1527
1528 Added a number of extensions to the debugger API.
1529
1530 Changed the enumeration order for unsigned integer keys to always
1531 be numerical order.
1532
1533 Added a "read" extension to the shell sample.
1534
1535 Added support for Array.prototype.reduce and
1536 Array.prototype.reduceRight.
1537
1538 Added an option to the SCons build to control Microsoft Visual C++
1539 link-time code generation.
1540
1541 Fixed a number of bugs (in particular issue 315, issue 316,
1542 issue 317 and issue 318).
1543
1544
15452009-04-15: Version 1.1.10
1546
1547 Fixed crash bug that occurred when loading a const variable in the
1548 presence of eval.
1549
1550 Allowed using with and eval in registered extensions in debug mode
1551 by fixing bogus assert.
1552
1553 Fixed the source position for function returns to enable the
1554 debugger to break there.
1555
1556
15572009-04-14: Version 1.1.9
1558
1559 Made the stack traversal code in the profiler robust by avoiding
1560 to look into the heap.
1561
1562 Added name inferencing for anonymous functions to facilitate
1563 debugging and profiling.
1564
1565 Re-enabled stats timers in the developer shell (d8).
1566
1567 Fixed issue 303 by avoiding to shortcut cons-symbols.
1568
1569
15702009-04-11: Version 1.1.8
1571
1572 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
1573
1574 Fixed step-in handling for Function.prototype.apply and call in
1575 the debugger (issue 269).
1576
1577 Fixed v8::Object::DeleteHiddenValue to not bail out when there
1578 are no hidden properties.
1579
1580 Added workaround for crash bug, where external symbol table
1581 entries with deleted resources would lead to NPEs when looking
1582 up in the symbol table.
1583
1584
15852009-04-07: Version 1.1.7
1586
1587 Added support for easily importing additional environment
1588 variables into the SCons build.
1589
1590 Optimized strict equality checks.
1591
1592 Fixed crash in indexed setters on objects without a corresponding
1593 getter (issue 298).
1594
1595 Re-enabled script compilation cache.
1596
1597
15982009-04-01: Version 1.1.6
1599
1600 Reverted an unsafe code generator change.
1601
1602
16032009-04-01: Version 1.1.5
1604
1605 Fixed bug that caused function literals to not be optimized as
1606 much as other functions.
1607
1608 Improved profiler support.
1609
1610 Fixed a crash bug in connection with debugger unloading.
1611
1612 Fixed a crash bug in the code generator caused by losing the
1613 information that a frame element was copied.
1614
1615 Fixed an exception propagation bug that could cause non-null
1616 return values when exceptions were thrown.
1617
1618
16192009-03-30: Version 1.1.4
1620
1621 Optimized String.prototype.match.
1622
1623 Improved the stack information in profiles.
1624
1625 Fixed bug in ARM port making it possible to compile the runtime
1626 system for thumb mode again.
1627
1628 Implemented a number of optimizations in the code generator.
1629
1630 Fixed a number of memory leaks in tests.
1631
1632 Fixed crash bug in connection with script source code and external
1633 strings.
1634
1635
16362009-03-24: Version 1.1.3
1637
1638 Fixed assertion failures in compilation of loop conditions.
1639
1640 Removed STL dependency from developer shell (d8).
1641
1642 Added infrastructure for protecting the V8 heap from corruption
1643 caused by memory modifications from the outside.
1644
1645
16462009-03-24: Version 1.1.2
1647
1648 Improved frame merge code generated by the code generator.
1649
1650 Optimized String.prototype.replace.
1651
1652 Implemented __defineGetter__ and __defineSetter__ for properties
1653 with integer keys on non-array objects.
1654
1655 Improved debugger and profiler support.
1656
1657 Fixed a number of portability issues to allow compilation for
1658 smaller ARM devices.
1659
1660 Exposed object cloning through the API.
1661
1662 Implemented hidden properties. This is used to expose an identity
1663 hash for objects through the API.
1664
1665 Implemented restarting of regular expressions if their input
1666 string changes representation during preemption.
1667
1668 Fixed a code generator bug that could cause assignments in loops
1669 to be ignored if using continue to break out of the loop (issue
1670 284).
1671
1672
16732009-03-12: Version 1.1.1
1674
1675 Fixed an assertion in the new compiler to take stack overflow
1676 exceptions into account.
1677
1678 Removed exception propagation code that could cause crashes.
1679
1680 Fixed minor bug in debugger line number computations.
1681
1682 8-byte align the C stack on Linux and Windows to speed up floating
1683 point computations.
1684
1685
16862009-03-12: Version 1.1.0
1687
1688 Improved code generation infrastructure by doing simple register
1689 allocation and constant folding and propagation.
1690
1691 Optimized regular expression matching by avoiding to create
1692 intermediate string arrays and by flattening nested array
1693 representations of RegExp data.
1694
1695 Traverse a few stack frames when recording profiler samples to
1696 include partial call graphs in the profiling output.
1697
1698 Added support for using OProfile to profile generated code.
1699
1700 Added remote debugging support to the D8 developer shell.
1701
1702 Optimized creation of nested literals like JSON objects.
1703
1704 Fixed a bug in garbage collecting unused maps and turned it on by
1705 default (--collect-maps).
1706
1707 Added support for running tests under Valgrind.
1708
1709
17102009-02-27: Version 1.0.3
1711
1712 Optimized double-to-integer conversions in bit operations by using
1713 SSE3 instructions if available.
1714
1715 Optimized initialization sequences that store to multiple
1716 properties of the same object.
1717
1718 Changed the D8 debugger frontend to use JSON messages.
1719
1720 Force garbage collections when disposing contexts.
1721
1722 Align code objects at 32-byte boundaries.
1723
1724
17252009-02-25: Version 1.0.2
1726
1727 Improved profiling support by performing simple call stack
1728 sampling for ticks and by fixing a bug in the logging of code
1729 addresses.
1730
1731 Fixed a number of debugger issues.
1732
1733 Optimized code that uses eval.
1734
1735 Fixed a couple of bugs in the regular expression engine.
1736
1737 Reduced the size of generated code for certain regular expressions.
1738
1739 Removed JSCRE completely.
1740
1741 Fixed issue where test could not be run if there was a dot in the
1742 checkout path.
1743
1744
17452009-02-13: Version 1.0.1
1746
1747 Fixed two crash-bugs in irregexp (issue 231 and 233).
1748
1749 Fixed a number of minor bugs (issue 87, 227 and 228).
1750
1751 Added support for morphing strings to external strings on demand
1752 to avoid having to create copies in the embedding code.
1753
1754 Removed experimental support for external symbol callbacks.
1755
1756
17572009-02-09: Version 1.0.0
1758
1759 Fixed crash-bug in the code generation for case independent 16 bit
1760 backreferences.
1761
1762 Made shells more robust in the presence of string conversion
1763 failures (issue 224).
1764
1765 Fixed a potential infinite loop when attempting to resolve
1766 eval (issue 221).
1767
1768 Miscellaneous fixes to the new regular expression engine.
1769
1770 Reduced binary by stripping unneeded text from JavaScript library and
1771 minifying some JavaScript files.
1772
1773
17742009-01-27: Version 0.4.9
1775
1776 Enabled new regular expression engine.
1777
1778 Made a number of changes to the debugger protocol.
1779
1780 Fixed a number of bugs in the preemption support.
1781
1782 Added -p option to the developer shell to run files in parallel
1783 using preemption.
1784
1785 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
1786 193, 198 and 201).
1787
1788 Fixed a number of bugs in the serialization/deserialization
1789 support for the ARM platform.
1790
1791
17922009-01-19: Version 0.4.8.1
1793
1794 Minor patch to debugger support.
1795
1796
17972009-01-16: Version 0.4.8
1798
1799 Fixed string length bug on ARM (issue 171).
1800
1801 Made most methods in the API const.
1802
1803 Optimized object literals by improving data locality.
1804
1805 Fixed bug that caused incomplete functions to be cached in case of
1806 stack overflow exceptions.
1807
1808 Fixed bugs that caused catch variables and variables introduced by
1809 eval to behave incorrectly when using accessors (issues 186, 190
1810 and 191).
1811
1812
18132009-01-06: Version 0.4.7
1814
1815 Minor bugfixes and optimizations.
1816
1817 Added command line debugger to D8 shell.
1818
1819 Fixed subtle bug that caused the wrong 'this' to be used when
1820 calling a caught function in a catch clause.
1821
1822 Inline array loads within loops directly in the code instead of
1823 always calling a stub.
1824
1825
18262008-12-11: Version 0.4.6
1827
1828 Fixed exception reporting bug where certain exceptions were
1829 incorrectly reported as uncaught.
1830
1831 Improved the memory allocation strategy used during compilation to
1832 make running out of memory when compiling huge scripts less
1833 likely.
1834
1835 Optimized String.replace by avoiding the construction of certain
1836 sub strings.
1837
1838 Fixed bug in code generation for large switch statements on ARM.
1839
1840 Fixed bug that caused V8 to change the global object template
1841 passed in by the user.
1842
1843 Changed the API for creating object groups used during garbage
1844 collection. Entire object groups are now passed to V8 instead of
1845 individual members of the groups.
1846
1847
18482008-12-03: Version 0.4.5
1849
1850 Added experimental API support for allocating V8 symbols as
1851 external strings.
1852
1853 Fixed bugs in debugging support on ARM.
1854
1855 Changed eval implementation to correctly detect whether or not a
1856 call to eval is aliased.
1857
1858 Fixed bug caused by a combination of the compilation cache and
1859 dictionary probing in native code. The bug caused us to sometimes
1860 call functions that had not yet been compiled.
1861
1862 Added platform support for FreeBSD.
1863
1864 Added support for building V8 on Windows with either the shared or
1865 static version of MSVCRT
1866
1867 Added the v8::jscre namespace around the jscre functions to avoid
1868 link errors (duplicate symbols) when building Google Chrome.
1869
1870 Added support for calling a JavaScript function with the current
1871 debugger execution context as its argument to the debugger
1872 interface.
1873
1874 Changed the type of names of counters from wchar_t to char.
1875
1876 Changed the Windows system call used to compute daylight savings
1877 time. The system call that we used to use became four times
1878 slower on WinXP SP3.
1879
1880 Added support in the d8 developer shell for memory-mapped counters
1881 and added a stats-viewer tool.
1882
1883 Fixed bug in upper/lower case mappings (issue 149).
1884
1885
18862008-11-17: Version 0.4.4
1887
1888 Reduced code size by using shorter instruction encoding when
1889 possible.
1890
1891 Added a --help option to the shell sample and to the d8 shell.
1892
1893 Added visual studio project files for building the ARM simulator.
1894
1895 Fixed a number of ARM simulator issues.
1896
1897 Fixed bug in out-of-memory handling on ARM.
1898
1899 Implemented shell support for passing arguments to a script from
1900 the command line.
1901
1902 Fixed bug in date code that made certain date functions return -0
1903 instead of 0 for dates before the epoch.
1904
1905 Restricted applications of eval so it can only be used in the
1906 context of the associated global object.
1907
1908 Treat byte-order marks as whitespace characters.
1909
1910
19112008-11-04: Version 0.4.3
1912
1913 Added support for API accessors that prohibit overwriting by
1914 accessors defined in JavaScript code by using __defineGetter__ and
1915 __defineSetter__.
1916
1917 Improved handling of conditionals in test status files.
1918
1919 Introduced access control in propertyIsEnumerable.
1920
1921 Improved performance of some string operations by caching
1922 information about the type of the string between operations.
1923
1924 Fixed bug in fast-case code for switch statements that only have
1925 integer labels.
1926
1927
19282008-10-30: Version 0.4.2
1929
1930 Improved performance of Array.prototype.concat by moving the
1931 implementation to C++ (issue 123).
1932
1933 Fixed heap growth policy to avoid growing old space to its maximum
1934 capacity before doing a garbage collection and fixed issue that
1935 would lead to artificial out of memory situations (issue 129).
1936
1937 Fixed Date.prototype.toLocaleDateString to return the date in the
1938 same format as WebKit.
1939
1940 Added missing initialization checks to debugger API.
1941
1942 Added removing of unused maps during GC.
1943
1944
19452008-10-28: Version 0.4.1
1946
1947 Added caching of RegExp data in compilation cache.
1948
1949 Added Visual Studio project file for d8 shell.
1950
1951 Fixed function call performance regression introduced in version
1952 0.4.0 when splitting the global object in two parts (issue 120).
1953
1954 Fixed issue 131 by checking for empty handles before throwing and
1955 reporting exceptions.
1956
1957
19582008-10-23: Version 0.4.0
1959
1960 Split the global object into two parts: The state holding global
1961 object and the global object proxy.
1962
1963 Fixed bug that affected the value of an assignment to an element
1964 in certain cases (issue 116).
1965
1966 Added GetPropertyNames functionality (issue 33) and extra Date
1967 functions (issue 77) to the API.
1968
1969 Changed WeakReferenceCallback to take a Persistent<Value> instead
1970 of a Persistent<Object> (issue 101).
1971
1972 Fixed issues with message reporting for exceptions in try-finally
1973 blocks (issues 73 and 75).
1974
1975 Optimized flattening of strings and string equality checking.
1976
1977 Improved Boyer-Moore implementation for faster indexOf operations.
1978
1979 Added development shell (d8) which includes counters and
1980 completion support.
1981
1982 Fixed problem with the receiver passed to functions called from
1983 eval (issue 124).
1984
1985
19862008-10-16: Version 0.3.5
1987
1988 Improved string hash-code distribution by excluding bit-field bits
1989 from the hash-code.
1990
1991 Changed string search algorithm used in indexOf from KMP to
1992 Boyer-Moore.
1993
1994 Improved the generated code for the instanceof operator.
1995
1996 Improved performance of slow-case string equality checks by
1997 specializing the code based on the string representation.
1998
1999 Improve the handling of out-of-memory situations (issue 70).
2000
2001 Improved performance of strict equality checks.
2002
2003 Improved profiler output to make it easier to see anonymous
2004 functions.
2005
2006 Improved performance of slow-case keyed loads.
2007
2008 Improved property access performance by allocating a number of
2009 properties in the front object.
2010
2011 Changed the toString behavior on the built-in object constructors
2012 to print [native code] instead of the actual source. Some web
2013 applications do not like constructors with complex toString
2014 results.
2015
2016
20172008-10-06: Version 0.3.4
2018
2019 Changed Array.prototype.sort to use quick sort.
2020
2021 Fixed code generation issue where leaving a finally block with
2022 break or continue would accumulate elements on the expression
2023 stack (issue 86).
2024
2025 Made sure that the name accessor on functions returns the expected
2026 names for builtin JavaScript functions and C++ callback functions.
2027
2028 Added fast case code for extending the property storage array of
2029 JavaScript objects.
2030
2031 Ported switch statement optimizations introduced in version 0.3.3
2032 to the ARM code generator.
2033
2034 Allowed GCC to use strict-aliasing rules when compiling.
2035
2036 Improved performance of arguments object allocation by taking care
2037 of arguments adaptor frames in the generated code.
2038
2039 Updated the V8 benchmark suite to version 2.
2040
2041
20422008-09-25: Version 0.3.3
2043
2044 Improved handling of relocation information to enable more
2045 peep-hole optimizations.
2046
2047 Optimized switch statements where all labels are constant small
2048 integers.
2049
2050 Optimized String.prototype.indexOf for common cases.
2051
2052 Fixed more build issues (issue 80).
2053
2054 Fixed a couple of profiler issues.
2055
2056 Fixed bug where the body of a function created using the Function
2057 constructor was not allowed to end with a single-line comment
2058 (issue 85).
2059
2060 Improved handling of object literals by canonicalizing object
2061 literal maps. This will allow JSON objects with the same set of
2062 properties to share the same map making inline caching work better
2063 for JSON objects.
2064
2065
20662008-09-17: Version 0.3.2
2067
2068 Generalized the EvalCache into a CompilationCache and enabled it
2069 for scripts too. The current strategy is to retire all entries
2070 whenever a mark-sweep collection is started.
2071
2072 Fixed bug where switch statements containing only a default case
2073 would lead to an unbalanced stack (issue 69).
2074
2075 Fixed bug that made access to the function in a named function
2076 expression impossible in certain situations (issue 24).
2077
2078 Fixed even more build issues.
2079
2080 Optimized calling conventions on ARM. The conventions on ARM and
2081 IA-32 now match.
2082
2083 Removed static initializers for flags and counters.
2084
2085 Improved inline caching behavior for uncommon cases where lazily
2086 loading Date and RegExp code could force certain code paths go
2087 megamorphic.
2088
2089 Removed arguments adaption for builtins written in C++. This
2090 makes Array.prototype.push and Array.prototype.pop slightly
2091 faster.
2092
2093
20942008-09-11: Version 0.3.1
2095
2096 Fixed a number of build issues.
2097
2098 Fixed problem with missing I-cache flusing on ARM.
2099
2100 Changed space layout in memory management by splitting up
2101 code space into old data space and code space.
2102
2103 Added utf-8 conversion support to the API (issue 57).
2104
2105 Optimized repeated calls to eval with the same strings. These
2106 repeated calls are common in web applications.
2107
2108 Added Xcode project file.
2109
2110 Optimized a couple of Array operation.
2111
2112 Fixed parser bug by checking for end-of-string when parsing break
2113 and continue (issue 35).
2114
2115 Fixed problem where asian characters were not categorized as
2116 letters.
2117
2118 Fixed bug that disallowed calling functions fetched from an array
2119 using a string as an array index (issue 32).
2120
2121 Fixed bug where the internal field count on object templates were
2122 sometimes ignored (issue 54).
2123
2124 Added -f option to the shell sample for compatibility with other
2125 engines (issue 18).
2126
2127 Added source info to TryCatches in the API.
2128
2129 Fixed problem where the seed for the random number generator was
2130 clipped in a double to unsigned int conversion.
2131
2132 Fixed bug where cons string symbols were sometimes converted to
2133 non-symbol flat strings during GC.
2134
2135 Fixed bug in error reporting when attempting to convert null to an
2136 object.
2137
2138
21392008-09-04: Version 0.3.0
2140
2141 Added support for running tests on the ARM simulator.
2142
2143 Fixed bug in the 'in' operator where negative indices were not
2144 treated correctly.
2145
2146 Fixed build issues on gcc-4.3.1.
2147
2148 Changed Date.prototype.toLocaleTimeString to not print the
2149 timezone part of the time.
2150
2151 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
2152 with user code.
2153
2154
21552008-09-02: Version 0.2.5
2156
2157 Renamed the top level directory 'public' to 'include'.
2158
2159 Added 'env' option to the SCons build scripts to support
2160 overriding the ENV part of the build environment. This is mostly
2161 to support Windows builds in cases where SCons cannot find the
2162 correct paths to the Windows SDK, as these paths cannot be passed
2163 through shell environment variables.
2164
2165 Enabled "Buffer Security Check" on for the Windows SCons build and
2166 added the linker option /OPT:ICF as an optimization.
2167
2168 Added the V8 benchmark suite to the repository.
2169
2170
21712008-09-01: Version 0.2.4
2172
2173 Included mjsunit JavaScript test suite and C++ unit tests.
2174
2175 Changed the shell sample to not print the result of executing a
2176 script provided on the command line.
2177
2178 Fixed issue when building samples on Windows using a shared V8
2179 library. Added visibility option on Linux build which makes the
2180 generated library 18% smaller.
2181
2182 Changed build system to accept multiple build modes in one build
2183 and generate separate objects, libraries and executables for each
2184 mode.
2185
2186 Removed deferred negation optimization (a * -b => -(a * b)) since
2187 this visibly changes operand conversion order.
2188
2189 Improved parsing performance by introducing stack guard in
2190 preparsing. Without a stack guard preparsing always bails out
2191 with stack overflow.
2192
2193 Changed shell sample to take flags directly from the command-line.
2194 Added API call that implements this.
2195
2196 Added load, quit and version functions to the shell sample so it's
2197 easier to run benchmarks and tests.
2198
2199 Fixed issue with building samples and cctests on 64-bit machines.
2200
2201 Fixed bug in the runtime system where the prototype chain was not
2202 always searched for a setter when setting a property that does not
2203 exist locally.
2204
2205
22062008-08-14: Version 0.2.3
2207
2208 Improved performance of garbage collection by moving the
2209 function that updates pointers during compacting collection
2210 into the updating visitor. This gives the compiler a better
2211 chance to inline and avoid a function call per (potential)
2212 pointer.
2213
2214 Extended the shell sample with a --runtime-flags option.
2215
2216 Added Visual Studio project files for the shell.cc and
2217 process.cc samples.
2218
2219
22202008-08-13: Version 0.2.2
2221
2222 Improved performance of garbage collection by changing the way
2223 we use the marking stack in the event of stack overflow during
2224 full garbage collection and by changing the way we mark roots.
2225
2226 Cleaned up ARM version by removing top of stack caching and by
2227 introducing push/pop elimination.
2228
2229 Cleaned up the way runtime functions are called to allow
2230 runtime calls with no arguments.
2231
2232 Changed Windows build options to make sure that exceptions are
2233 disabled and that optimization flags are enabled.
2234
2235 Added first version of Visual Studio project files.
2236
2237
22382008-08-06: Version 0.2.1
2239
2240 Improved performance of unary addition by avoiding runtime calls.
2241
2242 Fixed the handling of '>' and '<=' to use right-to-left conversion
2243 and left-to-right evaluation as specified by ECMA-262.
2244
2245 Fixed a branch elimination bug on the ARM platform where incorrect
2246 code was generated because of overly aggressive branch
2247 elimination.
2248
2249 Improved performance of code that repeatedly assigns the same
2250 function to the same property of different objects with the same
2251 map.
2252
2253 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
2254 no longer expects DEBUG to be defined.
2255
2256 Added platform-nullos.cc to serve as the basis for new platform
2257 implementations.
2258
2259
22602008-07-30: Version 0.2.0
2261
2262 Changed all text files to have native svn:eol-style.
2263
2264 Added a few samples and support for building them. The samples
2265 include a simple shell that can be used to benchmark and test V8.
2266
2267 Changed V8::GetVersion to return the version as a string.
2268
2269 Added source for lazily loaded scripts to snapshots and made
2270 serialization non-destructive.
2271
2272 Improved ARM support by fixing the write barrier code to use
2273 aligned loads and stores and by removing premature locals
2274 optimization that relied on broken support for callee-saved
2275 registers (removed).
2276
2277 Refactored the code for marking live objects during garbage
2278 collection and the code for allocating objects in paged
2279 spaces. Introduced an abstraction for the map word of a heap-
2280 allocated object and changed the memory allocator to allocate
2281 executable memory only for spaces that may contain code objects.
2282
2283 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
2284 they can be used by debugging and logging modules. Added
2285 thread-safe message queues for dealing with debugger events.
2286
2287 Fixed the source code reported by toString for certain builtin
2288 empty functions and made sure that the prototype property of a
2289 function is enumerable.
2290
2291 Improved performance of converting values to condition flags in
2292 generated code.
2293
2294 Merged disassembler-{arch} files.
2295
2296
22972008-07-28: Version 0.1.4
2298
2299 Added support for storing JavaScript stack traces in a stack
2300 allocated buffer to make it visible in shallow core dumps.
2301 Controlled by the --preallocate-message-memory flag which is
2302 disabled by default.
2303
2304
23052008-07-25: Version 0.1.3
2306
2307 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
2308 map transitions would count as properties.
2309
2310 Allowed aliased eval invocations by treating them as evals in the
2311 global context. This may change in the future.
2312
2313 Added support for accessing the last entered context through the
2314 API and renamed Context::Current to Context::GetCurrent and
2315 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
2316
2317 Fixed bug in the debugger that would cause the debugger scripts to
2318 be recursively loaded and changed all disabling of interrupts to
2319 be block-structured.
2320
2321 Made snapshot data read-only to allow it to be more easily shared
2322 across multiple users of V8 when linked as a shared library.
2323
2324
23252008-07-16: Version 0.1.2
2326
2327 Fixed building on Mac OS X by recognizing i386 and friends as
2328 IA-32 platforms.
2329
2330 Added propagation of stack overflow exceptions that occur while
2331 compiling nested functions.
2332
2333 Improved debugger with support for recursive break points and
2334 handling of exceptions that occur in the debugger JavaScript code.
2335
2336 Renamed GetInternal to GetInternalField and SetInternal to
2337 SetInternalField in the API and moved InternalFieldCount and
2338 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
2339
2340
23412008-07-09: Version 0.1.1
2342
2343 Fixed bug in stack overflow check code for IA-32 targets where a
2344 non-tagged value in register eax was pushed to the stack.
2345
2346 Fixed potential quadratic behavior when converting strings to
2347 numbers.
2348
2349 Fixed bug where the return value from Object::SetProperty could
2350 end up being the property holder instead of the written value.
2351
2352 Improved debugger support by allowing nested break points and by
2353 dealing with stack-overflows when compiling functions before
2354 setting break points in them.
2355
2356
23572008-07-03: Version 0.1.0
2358
2359 Initial export.
2360