blob: fecc5913206f85c982f7d472428a9048cf218efa [file] [log] [blame]
danno@chromium.orge78f9fc2011-12-21 08:29:34 +000012011-12-21: Version 3.8.2
2
3 Add max optimization flag to v8 gyp build to ensure V8 is always built
4 fully optimized in Chrome.
5
6 MIPS: Bring MIPS to parity with other platforms.
7
8 Optimizations and stability improvements on all platforms.
9
10
ricow@chromium.org7ad65222011-12-19 12:13:11 +0000112011-12-19: Version 3.8.1
12
13 Fixed GCC 4.7 warnings. Patch from Tobias Burnus.
14
15 Stability improvements on all platforms.
16
17
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +0000182011-12-13: Version 3.8.0
19
20 Fixed handling of arrays in DefineOwnProperty. (issue 1756)
21
22 Sync parser and preparser on do-while and return statements.
23 (issue 1856)
24
25 Fixed another corner case for DefineOwnProperty on arrays (issue 1756).
26
27 Stability and performance improvements on all platforms.
28
29
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +0000302011-12-01: Version 3.7.12
31
32 Increase tick interval for the android platform.
33
34 Fix a bug in the register allocator. (chromium:105112)
35
36 Fix handling of recompiling code. (chromium:105375, v8:1782)
37
38 Start incremental marking on idle notification. (v8:1458)
39
40 Build fixes for various platforms.
41
42 Various performance improvements.
43
44
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +0000452011-11-29: Version 3.7.11
46
47 Fixed bug when generating padding to ensure space for lazy
48 deoptimization.
49 (issue 1846)
50
51 Further reduced pause times due to GC.
52
53 Stability and performance improvements on all platforms.
54
55
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +0000562011-11-23: Version 3.7.10
57
58 Set maximum length of FixedArray in terms of elements instead an
59 absolute number of bytes.
60 (Chromium issue 103103)
61
62 Stability and performance improvements on all platforms.
63
64
652011-11-21: Version 3.7.9
66
67 Removed exit-time destructors.
68
69 Stability and performance improvements on all platforms.
70
71
ricow@chromium.org27bf2882011-11-17 08:34:43 +0000722011-11-17: Version 3.7.8
73
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +000074 Removed hidden prototype from builtins, i.e., deleting an overridden
ricow@chromium.org27bf2882011-11-17 08:34:43 +000075 function on builtins will not make the original function reappear.
76
77 Added NetBSD support for scons build.
78
79 Performance improvements on all platforms.
80
81
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000822011-11-14: Version 3.7.7
83
84 Fix missing fast property accessors in heap snapshots.
85 (issue 1818)
86
87
danno@chromium.org2c456792011-11-11 12:00:53 +0000882011-11-11: Version 3.7.6
89
90 Fixed filtering of store buffer for large object pages.
91 (issue 1817)
92
93 Fixed generated hash function on all platforms.
94 (issue 1808)
95
96 Fixed Heap::Shrink to ensure that it does not free pages that are
97 still in use.
98 (Chromium issue 100414)
99
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000100 Stability and performance improvements on all platforms.
danno@chromium.org2c456792011-11-11 12:00:53 +0000101
102
danno@chromium.orgc612e022011-11-10 11:38:15 +00001032011-11-10: Version 3.7.5
104
105 Added initial gyp infrastructure for MIPS.
106
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000107 Implemented performance improvements to the incremental garbage
danno@chromium.orgc612e022011-11-10 11:38:15 +0000108 collector.
109
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000110 Added optimizations and stability improvements on all platforms.
danno@chromium.orgc612e022011-11-10 11:38:15 +0000111
112
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +00001132011-11-07: Version 3.7.4
114
115 Proper "libv8.so.3.7.4" SONAME for Linux shared library (issue 1786).
116
117 Fix Harmony sets and maps to allow null and undefined as keys
118 (still hidden behind --harmony flag) (issue 1622).
119
120 Implement VirtualMemory on FreeBSD to fix build (issue 1807).
121
122 Enable VFP instructions for Android.
123
124 Fix error handling in Date.prototype.toISOString (issue 1792).
125
126 Bug fixes and performance improvements for all platforms.
127
128 Not officially supported but noteworthy: Crankshaft for MIPS :-)
129
130
erik.corry@gmail.combecbc522011-10-28 07:45:20 +00001312011-10-28: Version 3.7.3
132
133 Slight deoptimization as a workaround for issue with jslint: Issue
134 1789.
135
136
erik.corry@gmail.com6e28b562011-10-27 14:20:17 +00001372011-10-27: Version 3.7.2
138
139 Fix bug in deoptimization. Known issue with jslint: Issue 1789.
140
141
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +00001422011-10-26: Version 3.7.1
143
144 Achieved 33% speedup in debug-mode tests.
145
146 Removed special casing of calls to RegExp test and exec methods with no
147 argument. Now matches new JSC behaviour. crbug.com/75740.
148
149 Return the empty string on cyclic references in toString (ES5
150 conformance).
151
152 Fixed bug triggered by JSBeautifier. crbug.com/100409.
153
154 Made Math.random state per-context instead of per-process (issue 864).
155
156 Fixed stack traces to skip native functions.
157
158 Make snapshots (new contexts) smaller and faster.
159
160 Fixed handling of Function.apply for non-array arguments.
161
162 Fixed evaluation order in defineProperties to match FireFox.
163
164 Fixed handling of non-object receivers for array builtins,
165 crbug.com/100702.
166
167 Multiple fixes to improve compliance with test262.
168
169 Fixed compatibility with older Android releases.
170
171 Fixed compilation with gcc-4.5.3.
172
173 Improved performance of WriteUtf8, issue 1665.
174
175 Made native syntax an early error in the preparser.
176
177 Fixed issues 793 and 893 relating to Function.prototype.bind.
178
179 Improved let, const, Set and Map support and other Harmony features
180 (behind the --harmony flag).
181
182 Changed evaluation order for > and <= to match ES5 instead of ES3.
183
184 Bug fixes and performance improvements on all platforms.
185
186
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +00001872011-10-13: Version 3.7.0
188
189 Fixed array handling for Object.defineOwnProperty (ES5 conformance).
190
191 Fixed issue 1757 (string slices of external strings).
192
193 Fixed issue 1759 (ARM).
194
195 Added flag --noclever-optimizations to disable some things that
196 caused trouble in the past.
197
198 Added flag --stress-compaction for testing.
199
200 Added flag --harmony to activate all experimental Harmony features.
201
202
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +00002032011-10-10: Version 3.6.6
204
205 Added a GC pause visualization tool.
206
207 Added presubmit=no and werror=no flags to Makefile.
208
209 ES5/Test262 conformance improvements.
210
211 Fixed compilation issues with GCC 4.5.x (issue 1743).
212
213 Bug fixes and performance improvements on all platforms.
214
215
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +00002162011-10-05: Version 3.6.5
217
218 New incremental garbage collector.
219
220 Removed the hard heap size limit (soft heap size limit is still
221 700/1400Mbytes by default).
222
223 Implemented ES5 generic Array.prototype.toString (Issue 1361).
224
225 V8 now allows surrogate pair codes in decodeURIComponent (Issue 1415).
226
227 Fixed x64 RegExp start-of-string bug (Issues 1746, 1748).
228
229 Fixed propertyIsEnumerable for numeric properties (Issue 1692).
230
231 Fixed the MinGW and Windows 2000 builds.
232
233 Fixed "Prototype chain is not searched if named property handler does
234 not set a property" (Issue 1636).
235
236 Made the RegExp.prototype object be a RegExp object (Issue 1217).
237
238 Disallowed future reserved words as labels in strict mode.
239
240 Fixed string split to correctly coerce the separator to a string
241 (Issue 1711).
242
243 API: Added an optional source length field to the Extension
244 constructor.
245
246 API: Added Debug::DisableAgent to match existing Debug::EnableAgent
247 (Issue 1573).
248
249 Added "native" target to Makefile for the benefit of Linux distros.
250
251 Fixed: debugger stops stepping outside evaluate (Issue 1639).
252
253 More work on ES-Harmony proxies. Still hidden behind a flag.
254
255 Bug fixes and performance improvements on all platforms.
256
257
lrn@chromium.org34e60782011-09-15 07:25:40 +00002582011-09-15: Version 3.6.4
259
260 Fixed d8's broken readline history.
261
262 Removed the need for code delete events in CPU profiler (Issue 1466).
263
264 Fixed debugger stepping next with trycatch recursion (Issue 1639).
265
266 Fixing parallel execution in d8 (with -p) and some memory leaks.
267
268 Support for precise stepping in functions compiled before debugging was
269 started (step 1).
270
271
kmillikin@chromium.org83e16822011-09-13 08:21:47 +00002722011-09-13: Version 3.6.3
273
274 Implemented better support of typed arrays in the d8 shell.
275
276 Bug fixes and performance improvements on all platforms.
277
278
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002792011-09-08: Version 3.6.2
280
281 Added "dependencies" target to top-level Makefile.
282
283 Added ability to turn profiler on/off in d8.
284
285 Added "soname_version" parameter to common.gypi, v8.gyp, and Makefile.
286
287 Fixed several crash bugs.
288
289
jkummerow@chromium.org486075a2011-09-07 12:44:28 +00002902011-09-07: Version 3.6.1
291
292 Fixed a bug in abrupt exit from with or catch inside finally.
293
294 Fixed possible crash in FixedDoubleArray::Initialize() (Chromium
295 issue 95113).
296
297 Fixed a bug in Page::GetRegionMaskForSpan (Chromium issue 94425).
298
299 Fixed a few clang warnings (which -Werror treated as errors).
300
301 Performance improvements on all platforms.
302
303
fschneider@chromium.org1805e212011-09-05 10:49:12 +00003042011-09-05: Version 3.6.0
305
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000306 Fixed a bug when optimizing named function expression (issue 1647).
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000307
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000308 Fixed a bug when optimizing f.call.apply (issue 1650).
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000309
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000310 Made arguments and caller always be null on native functions
311 (issues 1548 and 1643).
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000312
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000313 Fixed issue 1648 (cross-compiling x64 targeting ia32).
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000314
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000315 Fixed issue 371 (d8 printing of strings containing \0).
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000316
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000317 Fixed order of evaluation in arguments to parseInt (issue 1649).
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000318
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000319 Fixed a problem with large heap snapshots in Chrome DevTools
320 (issue 1658, chromium issue 89268).
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000321
ricow@chromium.org55ee8072011-09-08 16:33:10 +0000322 Upped default maximum heap size from 512M to 700M.
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000323
324
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +00003252011-08-31: Version 3.5.10
326
327 Added dependency of v8_base on WinSocket2 Windows library in
328 the GYP-build.
329
330 Various bugfixes.
331
332
ricow@chromium.org4668a2c2011-08-29 10:41:00 +00003332011-08-29: Version 3.5.9
334
335 Made FromPropertyDescriptor not trigger inherited setters.
336
337 Fixed .gyp files to work on the ARM simulator.
338
339 Fixed shared library build warnings for MSVS.
340
341
ricow@chromium.orgddd545c2011-08-24 12:02:41 +00003422011-08-24: Version 3.5.8
343
344 Added V8EXPORT attributes for v8::Array::CheckCast and
345 v8::Number::CheckCast.
346
347 Made a slight API change enabling opting out from null termination
348 in String::Write*().
349
350 Fixed arm build for gcc-4.6.
351
352
rossberg@chromium.org28a37082011-08-22 11:03:23 +00003532011-08-22: Version 3.5.7
354
355 Make scanner handle invalid unicode escapes in identifiers correctly.
356
357 Make regexp flag parsing stricter.
358
359 Fix several memory leaks.
360
361
danno@chromium.orgb6451162011-08-17 14:33:23 +00003622011-08-17: Version 3.5.6
363
364 Fixed issue that could cause crashes when running with --heap-stats.
365
366 Fixed compilation on Linux 2.6.9 and older.
367
368 Fixed live-object-list to work with isolates.
369
370 Fixed memory leaks in zones and isolates.
371
372 Fixed a performance regression for TypedArrays on x64.
373
374 Stability improvements on all platforms.
375
376
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +00003772011-08-15: Version 3.5.5
378
379 Fixed bugs involving negative zero and the optimizing compiler.
380
381 Fixed optimized version of Function.apply(x, arguments). (issue 1592)
382
383 Eliminated uses of deprecated ARM instructions.
384
385 Sped up Math.floor by using SSE 4.1 roundsd instruction on ia32.
386
387 Removed restriction on the size of disassembled code that is printed.
388
389
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +00003902011-08-10: Version 3.5.4
391
392 Added a preliminary implementation of ES Harmony weak maps. Weak
393 maps can be enabled by the flag --harmony-weakmaps.
394
395 Introduced a toplevel Makefile to support GYP-based building. GYP
396 can be obtained from http://gyp.googlecode.com.
397
398 Fixed a bug in the length property of functions created by
399 Function.prototype.bind.
400
401 Reduced malloc heap allocation on process startup.
402
403 Several important code generation bug fixes.
404
405 Performance improvements on all platforms.
406
407
lrn@chromium.orgd4e9e222011-08-03 12:01:58 +00004082011-08-03: Version 3.5.3
409
410 MIPS: Port of fix to ClassOf check from ARM.
411 Patch from Paul Lind <plind44@gmail.com>.
412
413 Stopped using mprotect on Cygwin.
414 Avoided uninitialized member warning on gcc 4.3.4
415 Both patches by Bert Belder.
416
417 Bug fixes and performance improvements on all platforms.
418
419
vegorov@chromium.org7943d462011-08-01 11:41:52 +00004202011-08-01: Version 3.5.2
421
422 Performance improvements on all platforms.
423
424
ricow@chromium.org2c99e282011-07-28 09:15:17 +00004252011-07-28: Version 3.5.1
426
427 Fixed setting the readonly flag on the prototype property using the
428 API call FunctionTemplate::SetPrototypeAttributes (issue 1539).
429
430 Changed the tools/test.py script to use d8 instead of shell for
431 testing.
432
433 Fixed crash in ToBooleanStub when GC happens during invocation.
434
435 Enabled automatic unboxing of double arrays.
436
437 Performance improvements on all platforms.
438
439
ricow@chromium.org9fa09672011-07-25 11:05:35 +00004402011-07-25: Version 3.5.0
441
442 Implemented Object.prototype.{hasOwnProperty, propertyIsEnumerable} for
443 proxies.
444
445 Removed logging to memory support.
446
447 Bugfixes and performance work.
448
449
rossberg@chromium.org717967f2011-07-20 13:44:42 +00004502011-07-20: Version 3.4.14
451
452 Fix the debugger for strict-mode functions. (Chromium issue 89236)
453
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +0000454 Add GetPropertyAttribute method for Object in the API. (Patch by
ricow@chromium.org9fa09672011-07-25 11:05:35 +0000455 Peter Varga)
rossberg@chromium.org717967f2011-07-20 13:44:42 +0000456
457 Fix -Wunused-but-set-variable for gcc-4.6 on x64. (Issue 1291)
458
459
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +00004602011-07-18: Version 3.4.13
461
462 Improved debugger support to allow inspection of optimized frames (issue
463 1140).
464
465 Fixed a bug in prototype transitions cache clearing introduced by r8165.
466
467 Fixed shortcutting bug in HInferRepresentation. Patch by Andy Wingo.
468
469 Fixed a memory leak in sample/shell.cc (dispose semaphores).
470
471 Simplified HClampToUint8. Patch by Andy Wingo.
472
473 Exposed APIs for detecting boxed primitives, native errors. Patch by
474 Luke Zarko.
475
476 Added map check for COW elements to crankshaft array handling code
477 (issue 1560).
478
479 Sample shell and (a light version of) D8 links against a shared library
480 now.
481
482 Fixed bug in array filter and reduce functions (issue 1559).
483
484 Avoid TLS load in AstNode constructor.
485
486 Introduced a random entropy source which can optionally be provided at
487 initialization. (Chromium issue 89462).
488
489
whesse@chromium.org030d38e2011-07-13 13:23:34 +00004902011-07-13: Version 3.4.12
491
492 Added --prof profiling option to d8 shell.
493
494 Fixed a bug where reading a directory in d8 shell hangs (issue 1533).
495
496 Fixed a potential assertion failure in const declarations.
497
498 Fixed an assertion failure in descriptor arrays (issue 1526).
499
500 Enabled fast thread-local storage by default on supported platforms.
501
502 Improved reporting of source position for global variable loads
503 (issue 1527).
504
505
sgjesse@chromium.org6db88712011-07-11 11:41:22 +00005062011-07-11: Version 3.4.11
507
508 Fixed MinGW32 build.
509
510 Fixed a GC bug with RegExp code flushing.
511
512 Implemented Object.defineProperty for proxies.
513
514 Fixed a bug in for/in iteration of arguments objects (issue 1531).
515
516 Added debugger support for inspecting optimized frames (issue 1140).
517
518 Allowed JSObject::PreventExtensions to work for arguments objects.
519
520 Bugfixes and performance work.
521
522
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +00005232011-07-06: Version 3.4.10
524
525 Fixed debugger not breaking on certain "if" statements (issue 1523).
526
527 Fixed assertion failure in runtime profiler when running on IA32
528 without snapshot (issue 1522).
529
530 Fixed ABI for API calls on IA32 (for clang compatibility).
531
532 Introduced code flushing of RegExp code to free memory used by
533 RegExps sooner.
534
535 Fixed linux-tick-processor built wrong version of v8 (issue 1532).
536
537 Fixed assertion failure in v8::TryCache::StackTrace (issue 1529).
538
539 Performance improvements on all platforms.
540
541
ricow@chromium.org4f693d62011-07-04 14:01:31 +00005422011-07-04: Version 3.4.9
543
544 Added support for debugger inspection of locals in optimized frames
545 (issue 1140).
546
547 Fixed SConstruct to pass correct defines to samples/preparser when
548 building with library=shared.
549
550 Made date parser handle ES5 Date Time Strings correctly (issue 1498).
551
552 Fixed a bug in Object.defineProperty on the arguments object.
553
554 Performance improvements on all platforms.
555
556
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00005572011-06-29: Version 3.4.8
558
559 Ensure 16-byte stack alignment on Solaris (issue 1505).
560
sgjesse@chromium.org6db88712011-07-11 11:41:22 +0000561 Fix "illegal access" when calling parseInt with a radix
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000562 that is not a smi. (issue 1246).
563
564
ager@chromium.org04921a82011-06-27 13:21:41 +00005652011-06-27: Version 3.4.7
566
567 Fixed 64-bit build on FreeBSD.
568
569 Added API to set the property attributes for the prototype
570 property on functions created from FunctionTemplates.
571
572 Bugfixes and performance work.
573
574
lrn@chromium.orgac2828d2011-06-23 06:29:21 +00005752011-06-22: Version 3.4.6
576
577 Lowered limit on code space for systems with low memory supply.
578
579 Allowed compiling v8_shell with the 'host' toolset (issue 82437).
580
581 Extended setBreakpoint API to accept partial script name (issue 1418).
582
583 Made multi-line comments not count when deciding whether the '-->'
584 comment starter is first on a line. This matches Safari.
585
586 Made handling of non-array recievers in Array length setter correct
587 (issue 1491).
588
589 Added ability to heap profiler to iterate over snapshot's node
590 (issue 1481).
591
592
whesse@chromium.org7b260152011-06-20 15:33:18 +00005932011-06-20: Version 3.4.5
594
595 Fixed issues 794, 1097, 1215(partial), 1417, 1435, 1472, 1473,
596 1476, and 1477.
597
598 Improved code generation for !0 and !1.
599
600 Reduced memory usage for regular expressions with nested qualifiers.
601 (issue 1472)
602
603 Fixed V8 to count line terminators in multi-line comments.
604 (Chromium issue 86431)
605
606 Fixed disassembler=on option for release-mode builds. (issue 1473)
607
608 Performance improvements on all platforms.
609
610
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00006112011-06-15: Version 3.4.4
612
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000613 Added snapshot compression support and --stress-opt flag to d8.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000614
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000615 Improved performance of try/catch.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000616
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000617 Several GYP-related changes: Added support for building Xcode project
618 files. Make the ARM simulator build with GYP again. Generate Makefiles
619 for all architectures on Linux.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000620
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000621 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the
622 receiver for strict mode callbacks. (issue 1436)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000623
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000624 Fixed a bug where an array load was incorrectly hoisted by GVN.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000625
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000626 Handle 'undefined' correctly when === has been specialized for doubles.
627 (issue 1434)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000628
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000629 Corrected the limit of local variables in an optimized function from 64
630 to 63.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000631
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000632 Correctly set ReadOnly flag on indexed properties when using the API Set
633 method. (issue 1470)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000634
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000635 Give the correct error message when Object.isExtensible is called on a
636 non-object. (issue 1452)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000637
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000638 Added GetOwnPropertyNames method for Object in the API. Patch by Peter
639 Varga.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000640
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000641 Do not redefine properties unneccesarily in seal and freeze. (issue
642 1447)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000643
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000644 IsExecutionTerminating has an Isolate parameter now.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000645
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000646 Distinguish keyed loads with a symbol key from fast elements loads,
647 avoiding some useless deoptimizations. (issue 1471)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000648
649
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00006502011-06-08: Version 3.4.3
erik.corry@gmail.com8a177112011-06-08 07:23:54 +0000651
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000652 Clear the global thread table when an isolate is disposed
653 (issue 1433).
erik.corry@gmail.com8a177112011-06-08 07:23:54 +0000654
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000655 Converted time zone name to UTF8 on Windows (issue 1290).
656
657 Limited the number of arguments in a function call to 32766
658 (issue 1413).
659
660 Compress sources of JS libraries in addition to the snapshot.
661
662 Fixed a bug in Lithium environment iteration.
663
664 Performance improvements on all platforms.
erik.corry@gmail.com8a177112011-06-08 07:23:54 +0000665
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000666
erik.corry@gmail.comd6076d92011-06-06 09:39:18 +00006672011-06-06: Version 3.4.2
668
669 More work on ES-Harmony proxies. Still hidden behind a flag.
670
671 Fixed some crash bugs and improved performance.
672
673 Fixed building with gdb debugging support.
674
675 Do not install SIGPROF handler until it is needed.
676
677 Added DateTimeFormat to i18n API.
678
679 Fixed compilation on OpenBSD.
680
681 Take the ulimit into account when sizing the heap. OpenBSD users
682 may still have to increase the default ulimit to run heavy pages in
683 the browser.
684
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000685
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00006862011-06-01: Version 3.4.1
687
688 Fixed JSON stringify issue with arrays.
689
690 Changed calls to JS builtins to be passed undefined when called with
691 implicit receiver.
692
693 Implemented the set trap for Harmony proxies. Proxies still need to
694 be enabled with the --harmony-proxies flag.
695
696
ricow@chromium.orgc54d3652011-05-30 09:20:16 +00006972011-05-30: Version 3.4.0
698
699 Changed calls to undefined property setters to not throw (issue 1355).
700
701 Made RegExp objects not callable.
702
703 Fixed issues on special case large JSON strings in new json parser
704 (issues http://crbug.com/83877 and http://crbug.com/84186).
705
706 Performance improvements on all platforms.
707
708
danno@chromium.org40cb8782011-05-25 07:58:50 +00007092011-05-25: Version 3.3.10
710
711 Fixed calls of strict mode function with an implicit receiver.
712
713 Fixed fast handling of arrays to properly deal with changes to the
714 Object prototype (issue 1403).
715
716 Changed strict mode poison pill to be the same type error function
717 (issue 1387).
718
719 Fixed a debug crash in arguments object handling (issue 1227).
720
721 Fixed a bug in deoptimization on x64 (issue 1404).
722
723 Performance improvements and bug fixes on all platforms.
724
725
ager@chromium.orgea91cc52011-05-23 06:06:11 +00007262011-05-23: Version 3.3.9
727
728 Added DateTimeFormat class to experimental i18n API.
729
730 Extended preparser to give early errors for some strict mode
731 restrictions.
732
733 Removed legacy execScript function from V8.
734
735 Extended isolate API with the ability to add embedder-specific
736 data to an isolate.
737
738 Added basic support for polymorphic loads from JS and external
739 arrays.
740
741 Fixed bug in handling of switch statements in the optimizing
742 compiler.
743
744
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00007452011-05-18: Version 3.3.8
746
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000747 Added MarkIndependent to the persistent handle API. Independent
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +0000748 handles are independent of all other persistent handles and can be
749 garbage collected more frequently.
750
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000751 Implemented the get trap for Harmony proxies. Proxies are enabled
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +0000752 with the --harmony-proxies flag.
753
754 Performance improvements and bug fixes on all platforms.
755
756
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00007572011-05-16: Version 3.3.7
758
759 Updated MIPS infrastructure files.
760
761 Performance improvements and bug fixes on all platforms.
762
763
karlklose@chromium.org83a47282011-05-11 11:54:09 +00007642011-05-11: Version 3.3.6
765
766 Updated MIPS infrastructure files.
767
768 Added method IsCallable for Object to the API.
769 Patch by Peter Varga.
770
771
lrn@chromium.org1c092762011-05-09 09:42:16 +00007722011-05-09: Version 3.3.5
773
774 Fixed build on FreeBSD. Patch by Akinori MUSHA.
775
776 Added check that receiver is JSObject on API calls.
777
778 Implemented CallAsConstructor method for Object in the API (Issue 1348).
779 Patch by Peter Varga.
780
781 Added CallAsFunction method to the Object class in the API (Issue 1336).
782 Patch by Peter Varga.
783
784 Added per-isolate locking and unlocking.
785
786 Fixed bug in x64 >>> operator (Issue 1359).
787
788
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +00007892011-05-04: Version 3.3.4
790
791 Implemented API to disallow code generation from strings for a context
792 (issue 1258).
793
794 Fixed bug with whitespaces in parseInt (issue 955).
795
796 Fixed bug with == comparison of Date objects (issue 1356).
797
798 Added GYP variables for ARM code generation:
799 v8_can_use_vfp_instructions, v8_can_use_unaligned_accesses
800 and v8_use_arm_eabi_hardfloat.
801
802
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +00008032011-05-02: Version 3.3.3
804
805 Added support for generating Visual Studio solution and project files
806 using GYP.
807
808 Implemented support for ARM EABI calling convention variation where
809 floating-point arguments are passed in registers (hardfloat).
810
811 Added Object::HasOwnProperty() to the API.
812
813 Added support for compressing startup data to reduce binary size. This
814 includes build time support and an API for the embedder to decompress
815 the startup data before initializing V8.
816
817 Reduced the profiling hooks overhead from >400% to 25% when using
818 ll_prof.
819
820 Performance improvements and bug fixes on all platforms.
821
822
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +00008232011-04-27: Version 3.3.2
824
825 Fixed crash bug on ARM with no VFP3 hardware.
826
827 Fixed compilation of V8 without debugger support.
828
829 Improved performance on JSLint.
830
831 Added support Float64 WebGL arrays.
832
833 Fixed crash bug in regexp replace.
834
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000835
ricow@chromium.orgdcebac02011-04-20 09:44:50 +00008362011-04-20: Version 3.3.1
837
838 Reduced V8 binary size by removing virtual functions from hydrogen.
839
840 Fixed crash bug on x64.
841
842 Performance improvements on ARM and IA32.
843
844
danno@chromium.org160a7b02011-04-18 15:51:38 +00008452011-04-18: Version 3.3.0
846
847 Fixed bug in floating point rounding in Crankshaft on ARM
848 (issue 958)
849
850 Fixed a number of issues with running without VFPv3 support on ARM
851 (issue 1315)
852
853 Introduced v8Locale.Collator, a partial implementation of Collator
854 per last ECMAScript meeting + mailing list.
855
856 Minor performance improvements and bug fixes.
857
858
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +00008592011-04-13: Version 3.2.10
860
861 Fixed bug in external float arrays on ARM (issue 1323).
862
863 Minor performance improvements and bug fixes.
864
865
karlklose@chromium.org44bc7082011-04-11 12:33:05 +00008662011-04-11: Version 3.2.9
867
868 Removed support for ABI prior to EABI on ARM.
869
870 Fixed multiple crash bugs.
871
872 Added GCMole to the repository, a simple static analysis tool that
873 searches for GC-unsafe evaluation order dependent callsites.
874
875 Made preparser API be exported in shared libraries.
876
877 Fixed multiple issues in EcmaScript 5 strict mode implementation.
878
879 Fixed mutable __proto__ property if object is not extensible
880 (Issue 1309).
881
882 Fixed auto suspension of the sampler thread.
883
884
vegorov@chromium.org74f333b2011-04-06 11:17:46 +00008852011-04-06: Version 3.2.8
886
887 Exposed WebGL typed array constructors in the shell sample.
888
889 Performance improvements on all platforms.
890
891
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00008922011-04-04: Version 3.2.7
893
894 Disabled the original 'classic' V8 code generator. Crankshaft is
895 now the default on all platforms.
896
897 Changed the heap profiler to use more descriptive names.
898
899 Performance and stability improvements to isolates on all platforms.
900
901
lrn@chromium.org7516f052011-03-30 08:52:27 +00009022011-03-30: Version 3.2.6
903
904 Fixed xcode build warning in shell.cc (out of order initialization).
905
906 Fixed null-pointer dereference in the compiler when running without
907 SSE3 support (Chromium issue 77654).
908
909 Fixed x64 compilation error due to some dead code. (Issue 1286)
910
911 Introduced scons target to build the preparser stand-alone example.
912
913 Made FreeBSD build and pass all tests.
914
915
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00009162011-03-28: Version 3.2.5
917
lrn@chromium.org7516f052011-03-30 08:52:27 +0000918 Fixed build with Irregexp interpreter (issue 1266).
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000919
920 Added Crankshaft support for external arrays.
921
922 Fixed two potential crash bugs.
923
924
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00009252011-03-23: Version 3.2.4
926
927 Added isolates which allows several V8 instances in the same process.
928 This is controlled through the new Isolate class in the API.
929
930 Implemented more of EcmaScript 5 strict mode.
931
932 Reduced the time it takes to make detailed heap snapshot.
933
934 Added a number of commands to the ARM simulator and enhanced the ARM
935 disassembler.
936
937
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +00009382011-03-17: Version 3.2.3
939
940 Fixed a number of crash bugs.
941
942 Fixed Array::New(length) to return an array with a length (issue 1256).
943
944 Fixed FreeBSD build.
945
946 Changed __defineGetter__ to not throw (matching the behavior of Safari).
947
948 Implemented more of EcmaScript 5 strict mode.
949
950 Improved Crankshaft performance on all platforms.
951
952
whesse@chromium.orgb08986c2011-03-14 16:13:42 +00009532011-03-14: Version 3.2.2
954
955 Fixed a number of crash and correctness bugs.
956
957 Improved Crankshaft performance on all platforms.
958
959 Fixed Crankshaft on Solaris/Illumos.
960
961
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00009622011-03-10: Version 3.2.1
963
964 Fixed a number of crash bugs.
965
966 Improved Crankshaft for x64 and ARM.
967
968 Implemented more of EcmaScript 5 strict mode.
969
970
karlklose@chromium.org8f806e82011-03-07 14:06:08 +00009712011-03-07: Version 3.2.0
972
973 Fixed a number of crash bugs.
974
975 Turned on Crankshaft by default on x64 and ARM.
976
977 Improved Crankshaft for x64 and ARM.
978
979 Implemented more of EcmaScript 5 strict mode.
980
981
ager@chromium.org9ee27ae2011-03-02 13:43:26 +00009822011-03-02: Version 3.1.8
983
984 Fixed a number of crash bugs.
985
986 Improved Crankshaft for x64 and ARM.
987
988 Implemented more of EcmaScript 5 strict mode.
989
990 Fixed issue with unaligned reads and writes on ARM.
991
992 Improved heap profiler support.
993
994
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +00009952011-02-28: Version 3.1.7
996
997 Fixed a number of crash bugs.
998
999 Improved Crankshaft for x64 and ARM.
1000
ager@chromium.org9ee27ae2011-03-02 13:43:26 +00001001 Fixed implementation of indexOf/lastIndexOf for sparse
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +00001002 arrays (http://crbug.com/73940).
1003
1004 Fixed bug in map space compaction (http://crbug.com/59688).
1005
1006 Added support for direct getter accessors calls on ARM.
1007
1008
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000010092011-02-24: Version 3.1.6
1010
1011 Fixed a number of crash bugs.
1012
1013 Added support for Cygwin (issue 64).
1014
1015 Improved Crankshaft for x64 and ARM.
1016
1017 Added Crankshaft support for stores to pixel arrays.
1018
1019 Fixed issue in CPU profiler with Crankshaft.
1020
1021
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +000010222011-02-16: Version 3.1.5
1023
1024 Change RegExp parsing to disallow /(*)/.
1025
1026 Added GDB JIT support for ARM.
1027
1028 Fixed several crash bugs.
1029
1030 Performance improvements on the IA32 platform.
1031
1032
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +000010332011-02-14: Version 3.1.4
1034
1035 Fixed incorrect compare of prototypes of the global object (issue
1036 1082).
1037
1038 Fixed a bug in optimizing calls to global functions (issue 1106).
1039
1040 Made optimized Function.prototype.apply safe for non-JSObject first
1041 arguments (issue 1128).
1042
1043 Fixed an error related to element accessors on Object.prototype and
1044 parser errors (issue 1130).
1045
1046 Fixed a bug in sorting an array with large array indices (issue 1131).
1047
1048 Properly treat exceptions thrown while compiling (issue 1132).
1049
1050 Fixed bug in register requirements for function.apply (issue 1133).
1051
1052 Fixed a representation change bug in the Hydrogen graph construction
1053 (issue 1134).
1054
1055 Fixed the semantics of delete on parameters (issue 1136).
1056
1057 Fixed a optimizer bug related to moving instructions with side effects
1058 (issue 1138).
1059
1060 Added support for the global object in Object.keys (issue 1150).
1061
1062 Fixed incorrect value for Math.LOG10E
1063 (issue http://code.google.com/p/chromium/issues/detail?id=72555)
1064
1065 Performance improvements on the IA32 platform.
1066
1067 Implement assignment to undefined reference in ES5 Strict Mode.
1068
1069
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +000010702011-02-09: Version 3.1.3
1071
1072 Fixed a bug triggered by functions with huge numbers of declared
1073 arguments.
1074
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00001075 Fixed zap value aliasing a real object - debug mode only (issue 866).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00001076
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00001077 Fixed issue where Array.prototype.__proto__ had been set to null
1078 (issue 1121).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00001079
1080 Fixed stability bugs in Crankshaft for x86.
1081
1082
ricow@chromium.org83aa5492011-02-07 12:42:56 +000010832011-02-07: Version 3.1.2
1084
1085 Added better security checks when accessing properties via
1086 Object.getOwnPropertyDescriptor.
1087
1088 Fixed bug in Object.defineProperty and related access bugs (issues
1089 992, 1083 and 1092).
1090
1091 Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease
1092 copyright notice generation for embedders.
1093
1094
kmillikin@chromium.org31b12772011-02-02 16:08:26 +000010952011-02-02: Version 3.1.1
1096
1097 Perform security checks before fetching the value in
1098 Object.getOwnPropertyDescriptor.
1099
1100 Fixed a bug in Array.prototype.splice triggered by passing no
1101 arguments.
1102
1103 Fixed bugs in -0 in arithmetic and in Math.pow.
1104
1105 Fixed bugs in the register allocator and in switching from optimized
1106 to unoptimized code.
1107
1108
11092011-01-31: Version 3.1.0
1110
whesse@chromium.org7a392b32011-01-31 11:30:36 +00001111 Performance improvements on all platforms.
1112
1113
ager@chromium.org378b34e2011-01-28 08:04:38 +000011142011-01-28: Version 3.0.12
1115
1116 Added support for strict mode parameter and object property
1117 validation.
1118
1119 Fixed a couple of crash bugs.
1120
1121
ager@chromium.org0ee099b2011-01-25 14:06:47 +000011222011-01-25: Version 3.0.11
1123
1124 Fixed a bug in deletion of lookup slots that could cause global
1125 variables to be accidentally deleted (http://crbug.com/70066).
1126
1127 Added support for strict mode octal literal verification.
1128
1129 Fixed a couple of crash bugs (issues 1070 and 1071).
1130
1131
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +000011322011-01-24: Version 3.0.10
1133
1134 Fixed External::Wrap for 64-bit addresses (issue 1037).
1135
ager@chromium.org0ee099b2011-01-25 14:06:47 +00001136 Fixed incorrect .arguments variable proxy handling in the full
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00001137 code generator (issue 1060).
1138
1139 Introduced partial strict mode support.
1140
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00001141 Changed formatting of recursive error messages to match Firefox and
1142 Safari (issue http://crbug.com/70334).
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00001143
1144 Fixed incorrect rounding for float-to-integer conversions for external
ager@chromium.org0ee099b2011-01-25 14:06:47 +00001145 array types, which implement the Typed Array spec
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00001146 (issue http://crbug.com/50972).
1147
1148 Performance improvements on the IA32 platform.
1149
1150
erik.corry@gmail.com0511e242011-01-19 11:11:08 +000011512011-01-19: Version 3.0.9
1152
1153 Added basic GDB JIT Interface integration.
1154
1155 Make invalid break/continue statements a syntax error instead of a
1156 runtime error.
1157
1158
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000011592011-01-17: Version 3.0.8
1160
1161 Exposed heap size limit to the heap statistics gathered by
erik.corry@gmail.com0511e242011-01-19 11:11:08 +00001162 the GetHeapStatistics API.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00001163
1164 Wrapped external pointers more carefully (issue 1037).
1165
1166 Hardened the implementation of error objects to avoid setters
1167 intercepting the properties set then throwing an error.
1168
1169 Avoided trashing the FPSCR when calculating Math.floor on ARM.
1170
1171 Performance improvements on the IA32 platform.
1172
1173
11742011-01-10: Version 3.0.7
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00001175
1176 Stopped calling inherited setters when creating object literals
1177 (issue 1015).
1178
1179 Changed interpretation of malformed \c? escapes in RegExp to match
1180 JSC.
1181
1182 Enhanced the command-line debugger interface and fixed some minor
1183 bugs in the debugger.
1184
1185 Performance improvements on the IA32 platform.
1186
1187
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000011882011-01-05: Version 3.0.6
lrn@chromium.org5d00b602011-01-05 09:51:43 +00001189
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00001190 Allowed getters and setters on JSArray elements (issue 900).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00001191
1192 Stopped JSON objects from hitting inherited setters (part of
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00001193 issue 1015).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00001194
1195 Allowed numbers and strings as names of getters/setters in object
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00001196 initializer (issue 820).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00001197
1198 Added use_system_v8 option to gyp (off by default), to make it easier
1199 for Linux distributions to ship with system-provided V8 library.
1200
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00001201 Exported external array data accessors (issue 1016).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00001202
1203 Added labelled thread names to help with debugging (on Linux).
1204
1205
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +000012062011-01-03: Version 3.0.5
1207
1208 Fixed a couple of cast errors for gcc-3.4.3.
1209
1210 Performance improvements in GC and IA32 code generator.
1211
1212
whesse@chromium.org023421e2010-12-21 12:19:12 +000012132010-12-21: Version 3.0.4
1214
1215 Added Date::ResetCache() to the API so that the cached values in the
1216 Date object can be reset to allow live DST / timezone changes.
1217
1218 Extended existing support for printing (while debugging) the contents
1219 of objects. Added support for printing objects from release builds.
1220
1221 Fixed V8 issues 989, 1006, and 1007.
1222
1223
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000012242010-12-17: Version 3.0.3
1225
1226 Reapplied all changes for version 3.0.1.
1227
1228 Improved debugger protocol for remote debugging.
1229
1230 Added experimental support for using gyp to generate build files
1231 for V8.
1232
1233 Fixed implementation of String::Write in the API (issue 975).
1234
1235
lrn@chromium.org8541d772010-12-15 12:05:09 +000012362010-12-15: Version 3.0.2
1237
1238 Revert version 3.0.1 and patch 3.0.1.1.
1239
1240
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +000012412010-12-13: Version 3.0.1
1242
1243 Added support for an experimental internationalization API as an
1244 extension. This extension is disabled by default but can be enabled
1245 when building V8. The ECMAScript internationalization strawman is
1246 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
1247
1248 Made RegExp character class parsing stricter. This mirrors a change
1249 to RegExp parsing in WebKit.
1250
1251 Fixed a bug in Object.defineProperty when used to change attributes
1252 of an existing property. It incorrectly set the property value to
1253 undefined (issue 965).
1254
1255 Fixed several different compilation failures on various platforms
1256 caused by the 3.0.0 release.
1257
1258 Optimized Math.pow so it can work on unboxed doubles.
1259
1260 Sped up quoting of JSON strings by removing one traversal of the
1261 string.
1262
1263
kasperl@chromium.orga5551262010-12-07 12:49:48 +000012642010-12-07: Version 3.0.0
1265
1266 Improved performance by (partially) addressing issue 957 on
1267 IA-32. Still needs more work for the other architectures.
1268
1269
ager@chromium.orgbeb25712010-11-29 08:02:25 +000012702010-11-29: Version 2.5.9
1271
1272 Fixed crashes during GC caused by partially initialize heap
1273 objects.
1274
1275 Fixed bug in process sample that caused memory leaks.
1276
1277 Improved performance on ARM by implementing missing stubs and
1278 inlining.
1279
1280 Improved heap profiler support.
1281
1282 Added separate seeding on Windows of the random number generator
1283 used internally by the compiler (issue 936).
1284
1285 Exposed API for getting the name of the function used to construct
1286 an object.
1287
1288 Fixed date parser to handle one and two digit millisecond
1289 values (issue 944).
1290
1291 Fixed number parsing to disallow space between sign and
1292 digits (issue 946).
1293
1294
vegorov@chromium.org21b5e952010-11-23 10:24:40 +000012952010-11-23: Version 2.5.8
1296
1297 Removed dependency on Gay's dtoa.
1298
1299 Improved heap profiler precision and speed.
1300
1301 Reduced overhead of callback invocations on ARM.
1302
1303
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000013042010-11-18: Version 2.5.7
1305
1306 Fixed obscure evaluation order bug (issue 931).
1307
1308 Split the random number state between JavaScript and the private API.
1309
1310 Fixed performance bug causing GCs when generating stack traces on
1311 code from very large scripts.
1312
1313 Fixed bug in parser that allowed (foo):42 as a labelled statement
1314 (issue 918).
1315
1316 Provide more accurate results about used heap size via
1317 GetHeapStatistics.
1318
1319 Allow build-time customization of the max semispace size.
1320
1321 Made String.prototype.split honor limit when separator is empty
1322 (issue 929).
1323
1324 Added missing failure check after expecting an identifier in
1325 preparser (Chromium issue 62639).
1326
1327
ager@chromium.org01fe7df2010-11-10 11:59:11 +000013282010-11-10: Version 2.5.6
1329
1330 Added support for VFP rounding modes to the ARM simulator.
1331
1332 Fixed multiplication overflow bug (issue 927).
1333
1334 Added a limit for the amount of executable memory (issue 925).
1335
1336
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +000013372010-11-08: Version 2.5.5
1338
1339 Added more aggressive GC of external objects in near out-of-memory
1340 situations.
1341
1342 Fixed a bug that gave the incorrect result for String.split called
1343 on the empty string (issue 924).
1344
1345
lrn@chromium.orgfa943b72010-11-03 08:14:36 +000013462010-11-03: Version 2.5.4
1347
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +00001348 Improved V8 VFPv3 runtime detection to address issue 914.
lrn@chromium.orgfa943b72010-11-03 08:14:36 +00001349
1350
fschneider@chromium.orge03fb642010-11-01 12:34:09 +000013512010-11-01: Version 2.5.3
1352
1353 Fixed a bug that prevents constants from overwriting function values
1354 in object literals (issue 907).
1355
1356 Fixed a bug with reporting of impossible nested calls of DOM functions
1357 (issue http://crbug.com/60753).
1358
1359
lrn@chromium.org303ada72010-10-27 09:33:13 +000013602010-10-27: Version 2.5.2
1361
1362 Improved sampler resolution on Linux.
1363
1364 Allowed forcing the use of a simulator from the build script
1365 independently of the host architecture.
1366
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00001367 Fixed FreeBSD port (issue 912).
lrn@chromium.org303ada72010-10-27 09:33:13 +00001368
1369 Made windows-tick-processor respect D8_PATH.
1370
1371 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
1372
1373
whesse@chromium.org4a5224e2010-10-20 12:37:07 +000013742010-10-20: Version 2.5.1
1375
1376 Fixed bug causing spurious out of memory exceptions
1377 (issue http://crbug.com/54580).
1378
1379 Fixed compilation error on Solaris platform (issue 901).
1380
1381 Fixed error in strtod (string to floating point number conversion)
1382 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
1383
1384 Adjusted randomized allocations of executable memory to have 64k
1385 granularity (issue http://crbug.com/56036).
1386
1387 Supported profiling using kernel perf_events on linux. Added ll_prof
1388 script to tools and --ll-prof flag to V8.
1389
1390
vegorov@chromium.org42841962010-10-18 11:18:59 +000013912010-10-18: Version 2.5.0
1392
1393 Fixed bug in cache handling of lastIndex on global regexps
1394 (issue http://crbug.com/58740).
1395
1396 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
1397 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +00001398 from Hewlett-Packard Development Company, LP).
vegorov@chromium.org42841962010-10-18 11:18:59 +00001399
1400 Fixed compilation error on ARM with gcc 4.4 (issue 894).
1401
1402
14032010-10-13: Version 2.4.9
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00001404
1405 Fixed a bug in the handling of conditional expressions in test
1406 contexts in compiler for top-level code.
1407
1408 Added "//@ sourceURL" information to the StackTrace API.
1409
1410 Exposed RegExp construction through the API.
1411
1412
ricow@chromium.orgeb7c1442010-10-04 08:54:21 +000014132010-10-04: Version 2.4.8
1414
1415 Fixed a bug in ResumeProfilerEx causing it to not always write out the
1416 whole snapshot (issue 868).
1417
1418 Performance improvements on all platforms.
1419
1420
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +000014212010-09-30: Version 2.4.7
1422
1423 Changed the command-line flag --max-new-space-size to be in kB and the
1424 flag --max-old-space-size to be in MB (previously they were in bytes).
1425
1426 Added Debug::CancelDebugBreak to the debugger API.
1427
1428 Fixed a bug in getters for negative numeric property names
1429 (https://bugs.webkit.org/show_bug.cgi?id=46689).
1430
1431 Performance improvements on all platforms.
1432
1433
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000014342010-09-27: Version 2.4.6
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00001435
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00001436 Fixed assertion failure related to copy-on-write arrays (issue 876).
1437
1438 Fixed build failure of 64-bit V8 on Windows.
1439
1440 Fixed a bug in RegExp (issue http://crbug.com/52801).
1441
1442 Improved the profiler's coverage to cover more functions (issue 858).
1443
1444 Fixed error in shift operators on 64-bit V8
1445 (issue http://crbug.com/54521).
1446
1447
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000014482010-09-22: Version 2.4.5
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00001449
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001450 Changed the RegExp benchmark to exercise the regexp engine on different
1451 inputs by scrambling the input strings.
1452
1453 Fixed a bug in keyed loads on strings.
1454
1455 Fixed a bug with loading global function prototypes.
1456
1457 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
1458
1459 Performance improvements on all platforms.
1460
1461
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +000014622010-09-15: Version 2.4.4
1463
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001464 Fixed bug with hangs on very large sparse arrays.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00001465
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001466 Now tries harder to free up memory when running out of space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00001467
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001468 Added heap snapshots to JSON format to API.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00001469
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001470 Recalibrated benchmarks.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00001471
1472
sgjesse@chromium.org2ec107f2010-09-13 09:19:46 +000014732010-09-13: Version 2.4.3
1474
1475 Made Date.parse properly handle TZ offsets (issue 857).
1476
1477 Performance improvements on all platforms.
1478
1479
ager@chromium.org5b2fbee2010-09-08 06:38:15 +000014802010-09-08: Version 2.4.2
1481
1482 Fixed GC crash bug.
1483
1484 Fixed stack corruption bug.
1485
1486 Fixed compilation for newer C++ compilers that found Operand(0)
1487 ambiguous.
1488
1489
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +000014902010-09-06: Version 2.4.1
1491
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001492 Added the ability for an embedding application to receive a callback
1493 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
1494 (V8::RemoveMemoryAllocationCallback) from the OS.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001495
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001496 Fixed several JSON bugs (including issue 855).
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001497
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001498 Fixed memory overrun crash bug triggered during V8's tick-based
1499 profiling.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001500
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001501 Performance improvements on all platforms.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001502
1503
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000015042010-09-01: Version 2.4.0
1505
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001506 Fixed bug in Object.freeze and Object.seal when Array.prototype or
1507 Object.prototype are changed (issue 842).
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001508
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001509 Updated Array.splice to follow Safari and Firefox when called
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001510 with zero arguments.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001511
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001512 Fixed a missing live register when breaking at keyed loads on ARM.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001513
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001514 Performance improvements on all platforms.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001515
1516
ricow@chromium.org65fae842010-08-25 15:26:24 +000015172010-08-25: Version 2.3.11
1518
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001519 Fixed bug in RegExp related to copy-on-write arrays.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001520
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001521 Refactored tools/test.py script, including the introduction of
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001522 VARIANT_FLAGS that allows specification of sets of flags with which
1523 all tests should be run.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001524
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001525 Fixed a bug in the handling of debug breaks in CallIC.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001526
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001527 Performance improvements on all platforms.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001528
1529
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000015302010-08-23: Version 2.3.10
1531
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001532 Fixed bug in bitops on ARM.
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001533
1534 Build fixes for unusual compilers.
1535
1536 Track high water mark for RWX memory.
1537
1538 Performance improvements on all platforms.
1539
1540
ricow@chromium.org0b9f8502010-08-18 07:45:01 +000015412010-08-18: Version 2.3.9
1542
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001543 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00001544
1545 Removed specialized handling of GCC 4.4 (issue 830).
1546
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001547 Fixed DST cache to take into account the suspension of DST in
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00001548 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
1549
ricow@chromium.org65fae842010-08-25 15:26:24 +00001550 Performance improvements on all platforms.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00001551
1552
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000015532010-08-16: Version 2.3.8
1554
1555 Fixed build with strict aliasing on GCC 4.4 (issue 463).
1556
1557 Fixed issue with incorrect handling of custom valueOf methods on
1558 string wrappers (issue 760).
1559
1560 Fixed compilation for ARMv4 (issue 590).
1561
1562 Improved performance.
1563
1564
vegorov@chromium.org26c16f82010-08-11 13:41:03 +000015652010-08-11: Version 2.3.7
1566
1567 Reduced size of heap snapshots produced by heap profiler (issue 783).
1568
1569 Introduced v8::Value::IsRegExp method.
1570
1571 Fixed CPU profiler crash in start / stop sequence when non-existent
1572 name is passed (issue http://crbug.com/51594).
1573
1574 Introduced new indexed property query callbacks API (issue 816). This
1575 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
1576 by default.
1577
1578 Removed support for object literal get/set with number/string
1579 property name.
1580
1581 Fixed handling of JSObject::elements in CalculateNetworkSize
1582 (issue 822).
1583
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001584 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00001585
1586
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000015872010-08-09: Version 2.3.6
1588
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00001589 RegExp literals create a new object every time they are evaluated
1590 (issue 704).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00001591
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00001592 Object.seal and Object.freeze return the modified object (issue 809).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00001593
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001594 Fixed building using GCC 4.4.4.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00001595
1596
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +000015972010-08-04: Version 2.3.5
1598
1599 Added support for ES5 property names. Object initialisers and
1600 dot-notation property access now allows keywords. Also allowed
1601 non-identifiers after "get" or "set" in an object initialiser.
1602
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001603 Randomized the addresses of allocated executable memory on Windows.
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +00001604
1605
whesse@chromium.orge90029b2010-08-02 11:52:17 +000016062010-08-02: Version 2.3.4
1607
1608 Fixed problems in implementation of ES5 function.prototype.bind.
1609
1610 Fixed error when using apply with arguments object on ARM (issue 784).
1611
1612 Added setting of global flags to debugger protocol.
1613
1614 Fixed an error affecting cached results of sin and cos (issue 792).
1615
1616 Removed memory leak from a boundary case where V8 is not initialized.
1617
1618 Fixed issue where debugger could set breakpoints outside the body
1619 of a function.
1620
1621 Fixed issue in debugger when using both live edit and step in features.
1622
1623 Added Number-letter (Nl) category to Unicode tables. These characters
1624 can now be used in identifiers.
1625
1626 Fixed an assert failure on X64 (issue 806).
1627
1628 Performance improvements on all platforms.
1629
1630
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +000016312010-07-26: Version 2.3.3
1632
1633 Fixed error when building the d8 shell in a fresh checkout.
1634
1635 Implemented Function.prototype.bind (ES5 15.3.4.5).
1636
1637 Fixed an error in inlined stores on ia32.
1638
1639 Fixed an error when setting a breakpoint at the end of a function
1640 that does not end with a newline character.
1641
1642 Performance improvements on all platforms.
1643
1644
fschneider@chromium.orged78ffd2010-07-21 11:05:19 +000016452010-07-21: Version 2.3.2
1646
1647 Fixed compiler warnings when building with LLVM.
1648
1649 Fixed a bug with for-in applied to strings (issue 785).
1650
1651 Performance improvements on all platforms.
1652
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00001653
ricow@chromium.org4980dff2010-07-19 08:33:45 +000016542010-07-19: Version 2.3.1
1655
1656 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
1657
1658 Fixed bug related to code flushing while compiling a lazy
1659 compilable function (issue http://crbug.com/49099).
1660
1661 Performance improvements on all platforms.
1662
1663
ager@chromium.orgb5737492010-07-15 09:29:43 +000016642010-07-15: Version 2.3.0
1665
1666 Added ES5 Object.seal and Object.isSealed.
1667
1668 Added debugger API for scheduling debugger commands from a
1669 separate thread.
1670
1671
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +000016722010-07-14: Version 2.2.24
1673
1674 Added API for capturing stack traces for uncaught exceptions.
1675
1676 Fixed crash bug when preparsing from a non-external V8 string
1677 (issue 775).
1678
1679 Fixed JSON.parse bug causing input not to be converted to string
1680 (issue 764).
1681
1682 Added ES5 Object.freeze and Object.isFrozen.
1683
1684 Performance improvements on all platforms.
1685
1686
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000016872010-07-07: Version 2.2.23
1688
1689 API change: Convert Unicode code points outside the basic multilingual
1690 plane to the replacement character. Previous behavior was to silently
1691 truncate the value to 16 bits.
1692
1693 Fixed crash: handle all flat string types in regexp replace.
1694
1695 Prevent invalid pre-parsing data passed in through the API from
1696 crashing V8.
1697
1698 Performance improvements on all platforms.
1699
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001700
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000017012010-07-05: Version 2.2.22
1702
1703 Added ES5 Object.isExtensible and Object.preventExtensions.
1704
1705 Enabled building V8 as a DLL.
1706
1707 Fixed a bug in date code where -0 was not interpreted as 0
1708 (issue 736).
1709
1710 Performance improvements on all platforms.
1711
1712
lrn@chromium.org32d961d2010-06-30 09:09:34 +000017132010-06-30: Version 2.2.21
1714
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001715 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001716
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001717 Updated JSON.stringify to floor the space parameter (issue 753).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001718
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001719 Updated the Mozilla test expectations to the newest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001720
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001721 Updated the ES5 Conformance Test expectations to the latest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001722
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001723 Updated the V8 benchmark suite.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001724
1725 Provide actual breakpoints locations in response to setBreakpoint
1726 and listBreakpoints requests.
1727
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001728
fschneider@chromium.org40b9da32010-06-28 11:29:21 +000017292010-06-28: Version 2.2.20
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001730
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001731 Fixed bug with for-in on x64 platform (issue 748).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001732
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001733 Fixed crash bug on x64 platform (issue 756).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001734
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001735 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001736
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001737 Fixed a bug on ARM that caused the result of 1 << x to be
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001738 miscalculated for some inputs.
1739
1740 Performance improvements on all platforms.
1741
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001742
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000017432010-06-23: Version 2.2.19
1744
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001745 Fixed bug that causes the build to break when profillingsupport=off
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00001746 (issue 738).
1747
1748 Added expose-externalize-string flag for testing extensions.
1749
1750 Resolve linker issues with using V8 as a DLL causing a number of
1751 problems with unresolved symbols.
1752
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001753 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00001754 defined.
1755
1756 Performance improvements on all platforms.
1757
1758
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000017592010-06-16: Version 2.2.18
1760
1761 Added API functions to retrieve information on indexed properties
1762 managed by the embedding layer. Fixes bug 737.
1763
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001764 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001765
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001766 Added heap profiling to the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001767
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001768 Removed old named property query from the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001769
1770 Incremental performance improvements.
1771
1772
ager@chromium.org2cc82ae2010-06-14 07:35:38 +000017732010-06-14: Version 2.2.17
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001774
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00001775 Improved debugger support for stepping out of functions.
1776
1777 Incremental performance improvements.
1778
1779
17802010-06-09: Version 2.2.16
1781
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001782 Removed the SetExternalStringDiposeCallback API. Changed the
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001783 disposal of external string resources to call a virtual Dispose
1784 method on the resource.
1785
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001786 Added support for more precise break points when debugging and
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001787 stepping.
1788
1789 Memory usage improvements on all platforms.
1790
1791
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000017922010-06-07: Version 2.2.15
1793
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001794 Added an API to control the disposal of external string resources.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001795
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001796 Added missing initialization of a couple of variables which makes
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001797 some compilers complaint when compiling with -Werror.
1798
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001799 Improved performance on all platforms.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001800
1801
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +000018022010-06-02: Version 2.2.14
1803
1804 Fixed a crash in code generated for String.charCodeAt.
1805
1806 Fixed a compilation issue with some GCC versions (issue 727).
1807
1808 Performance optimizations on x64 and ARM platforms.
1809
1810
ricow@chromium.org30ce4112010-05-31 10:38:25 +000018112010-05-31: Version 2.2.13
1812
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001813 Implemented Object.getOwnPropertyDescriptor for element indices and
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001814 strings (issue 599).
1815
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001816 Fixed bug for windows 64 bit C calls from generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001817
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001818 Added new scons flag unalignedaccesses for arm builds.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001819
1820 Performance improvements on all platforms.
1821
1822
kmillikin@chromium.org9155e252010-05-26 13:27:57 +000018232010-05-26: Version 2.2.12
1824
1825 Allowed accessors to be defined on objects rather than just object
1826 templates.
1827
1828 Changed the ScriptData API.
1829
1830
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000018312010-05-21: Version 2.2.11
1832
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001833 Fixed crash bug in liveedit on 64 bit.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001834
1835 Use 'full compiler' when debugging is active. This should increase
1836 the density of possible break points, making single step more fine
1837 grained. This will only take effect for functions compiled after
1838 debugging has been started, so recompilation of all functions is
1839 required to get the full effect. IA32 and x64 only for now.
1840
1841 Misc. fixes to the Solaris build.
1842
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001843 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001844
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001845 Added filtering of CPU profiles by security context.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001846
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001847 Fixed crash bug on ARM when running without VFP2 or VFP3.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001848
1849 Incremental performance improvements in all backends.
1850
1851
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000018522010-05-17: Version 2.2.10
1853
1854 Performance improvements in the x64 and ARM backends.
1855
1856
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000018572010-05-10: Version 2.2.9
1858
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001859 Allowed Object.create to be called with a function (issue 697).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001860
1861 Fixed bug with Date.parse returning a non-NaN value when called on a
1862 non date string (issue 696).
1863
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001864 Allowed unaligned memory accesses on ARM targets that support it (by
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001865 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001866
1867 C++ API for retrieving JavaScript stack trace information.
1868
1869
ager@chromium.orgac091b72010-05-05 07:34:42 +000018702010-05-05: Version 2.2.8
1871
1872 Performance improvements in the x64 and ARM backends.
1873
1874
kmillikin@chromium.org4111b802010-05-03 10:34:42 +000018752010-05-03: Version 2.2.7
1876
1877 Added support for ES5 date time string format to Date.parse.
1878
1879 Performance improvements in the x64 backend.
1880
1881
lrn@chromium.orgc34f5802010-04-28 12:53:43 +000018822010-04-28: Version 2.2.6
1883
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001884 Added "amd64" as recognized architecture in scons build script
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001885 (by Ryan Dahl <coldredlemur@gmail.com>).
1886
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001887 Fixed bug in String search and replace with very simple RegExps.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001888
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001889 Fixed bug in RegExp containing "\b^".
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001890
1891 Performance improvements on all platforms.
1892
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001893
fschneider@chromium.org013f3e12010-04-26 13:27:52 +000018942010-04-26: Version 2.2.5
1895
1896 Various performance improvements (especially for ARM and x64)
1897
1898 Fixed bug in CPU profiling (http://crbug.com/42137)
1899
1900 Fixed a bug with the natives cache.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001901
1902 Fixed two bugs in the ARM code generator that can cause
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001903 wrong calculations.
1904
1905 Fixed a bug that may cause a wrong result for shift operations.
1906
1907
19082010-04-21: Version 2.2.4
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00001909
1910 Fixed warnings on arm on newer GCC versions.
1911
1912 Fixed a number of minor bugs.
1913
1914 Performance improvements on all platforms.
1915
1916
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +000019172010-04-14: Version 2.2.3
1918
1919 Added stack command and mem command to ARM simulator debugger.
1920
1921 Fixed scons snapshot and ARM build, and Windows X64 build issues.
1922
1923 Performance improvements on all platforms.
1924
1925
ager@chromium.org357bf652010-04-12 11:30:10 +000019262010-04-12: Version 2.2.2
1927
1928 Introduced new profiler API.
1929
1930 Fixed random number generator to produce full 32 random bits.
1931
1932
lrn@chromium.org25156de2010-04-06 13:10:27 +000019332010-04-06: Version 2.2.1
1934
1935 Debugger improvements.
1936
1937 Fixed minor bugs.
1938
1939
ricow@chromium.orgaa1b6162010-03-29 07:44:58 +000019402010-03-29: Version 2.2.0
1941
1942 Fixed a few minor bugs.
1943
1944 Performance improvements for string operations.
1945
1946
ager@chromium.orgb26c50a2010-03-26 09:27:16 +000019472010-03-26: Version 2.1.10
1948
1949 Fixed scons build issues.
1950
1951 Fixed a couple of minor bugs.
1952
1953
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +000019542010-03-25: Version 2.1.9
1955
1956 Added API support for reattaching a global object to a context.
1957
1958 Extended debugger API with access to the internal debugger context.
1959
1960 Fixed Chromium crashes (issues http://crbug.com/39128 and
1961 http://crbug.com/39160)
1962
1963
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000019642010-03-24: Version 2.1.8
1965
1966 Added fine-grained garbage collection callbacks to the API.
1967
1968 Performance improvements on all platforms.
1969
1970
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000019712010-03-22: Version 2.1.7
1972
1973 Fixed issue 650.
1974
1975 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
fschneider@chromium.org086aac62010-03-17 13:18:24 +00001976
1977 Performance improvements for arithmetic operations.
1978
1979 Performance improvements for string operations.
1980
whesse@chromium.orgcec079d2010-03-22 14:44:04 +00001981 Print script name and line number information in stack trace.
1982
1983
19842010-03-17: Version 2.1.6
1985
1986 Performance improvements for arithmetic operations.
1987
1988 Performance improvements for string operations.
1989
1990
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000019912010-03-10: Version 2.1.4
1992
1993 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
1994
1995 Performance improvements on all platforms.
1996
1997
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000019982010-03-10: Version 2.1.3
1999
2000 Added API method for context-disposal notifications.
2001
2002 Added API method for accessing elements by integer index.
2003
2004 Added missing implementation of Uint32::Value and Value::IsUint32
2005 API methods.
2006
2007 Added IsExecutionTerminating API method.
2008
2009 Disabled strict aliasing for GCC 4.4.
2010
2011 Fixed string-concatenation bug (issue 636).
2012
2013 Performance improvements on all platforms.
2014
2015
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +000020162010-02-23: Version 2.1.2
2017
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002018 Fixed a crash bug caused by wrong assert.
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00002019
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002020 Fixed a bug with register names on 64-bit V8 (issue 615).
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00002021
2022 Performance improvements on all platforms.
2023
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00002024
ager@chromium.org5c838252010-02-19 08:53:10 +000020252010-02-19: Version 2.1.1
2026
2027 [ES5] Implemented Object.defineProperty.
2028
2029 Improved profiler support.
2030
2031 Added SetPrototype method in the public V8 API.
2032
2033 Added GetScriptOrigin and GetScriptLineNumber methods to Function
2034 objects in the API.
2035
2036 Performance improvements on all platforms.
2037
2038
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000020392010-02-03: Version 2.1.0
2040
2041 Values are now always wrapped in objects when used as a receiver.
2042 (issue 223).
2043
2044 [ES5] Implemented Object.getOwnPropertyNames.
2045
2046 [ES5] Restrict JSON.parse to only accept strings that conforms to the
2047 JSON grammar.
2048
2049 Improvement of debugger agent (issue 549 and 554).
2050
2051 Fixed problem with skipped stack frame in profiles (issue 553).
2052
2053 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
2054 <ry@tinyclouds.org>.
2055
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002056 Fixed a bug that Math.round() returns incorrect results for huge
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002057 integers.
2058
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002059 Fixed enumeration order for objects created from some constructor
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002060 functions (isue http://crbug.com/3867).
2061
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002062 Fixed arithmetic on some integer constants (issue 580).
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00002063
2064 Numerous performance improvements including porting of previous IA-32
2065 optimizations to x64 and ARM architectures.
2066
2067
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000020682010-01-14: Version 2.0.6
2069
2070 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
2071 GetOwnProperty, FromPropertyDescriptor.
2072
2073 Fixed Mac x64 build errors.
2074
2075 Improved performance of some math and string operations.
2076
2077 Improved performance of some regexp operations.
2078
2079 Improved performance of context creation.
2080
2081 Improved performance of hash tables.
2082
2083
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000020842009-12-18: Version 2.0.5
2085
2086 Extended to upper limit of map space to allow for 7 times as many map
2087 to be allocated (issue 524).
2088
2089 Improved performance of code using closures.
2090
2091 Improved performance of some binary operations involving doubles.
2092
2093
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000020942009-12-16: Version 2.0.4
2095
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00002096 Added ECMAScript 5 Object.create.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002097
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00002098 Improved performance of Math.max and Math.min.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002099
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00002100 Optimized adding of strings on 64-bit platforms.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002101
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00002102 Improved handling of external strings by using a separate table
2103 instead of weak handles. This improves garbage collection
2104 performance and uses less memory.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002105
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00002106 Changed code generation for object and array literals in toplevel
2107 code to be more compact by doing more work in the runtime.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002108
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00002109 Fixed a crash bug triggered when garbage collection happened during
2110 generation of a callback load inline cache stub.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002111
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00002112 Fixed crash bug sometimes triggered when local variables shadowed
2113 parameters in functions that used the arguments object.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002114
2115
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +000021162009-12-03: Version 2.0.3
2117
2118 Optimized handling and adding of strings, for-in and Array.join.
2119
2120 Heap serialization is now non-destructive.
2121
2122 Improved profiler support with information on time spend in C++
2123 callbacks registered through the API.
2124
2125 Added commands to the debugger protocol for starting/stopping
2126 profiling.
2127
2128 Enabled the non-optimizing compiler for top-level code.
2129
2130 Changed the API to only allow strings to be set as data objects on
2131 Contexts and scripts to avoid potentially keeping global objects
2132 around for too long (issue 528).
2133
2134 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
2135
2136 Fixed bugs.
2137
2138
ager@chromium.org01beca72009-11-24 14:29:16 +000021392009-11-24: Version 2.0.2
2140
2141 Improved profiler support.
2142
2143 Fixed bug that broke compilation of d8 with readline support.
2144
2145
ager@chromium.org6141cbe2009-11-20 12:14:52 +000021462009-11-20: Version 2.0.1
2147
2148 Fixed crash bug in String.prototype.replace.
2149
2150 Reverted a change which caused Chromium interactive ui test
2151 failures.
2152
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002153
ager@chromium.orgc4c92722009-11-18 14:12:51 +000021542009-11-18: Version 2.0.0
2155
2156 Added support for VFP on ARM.
2157
2158 Added TryCatch::ReThrow method to the API.
2159
2160 Reduced the size of snapshots and improved the snapshot load time.
2161
2162 Improved heap profiler support.
2163
2164 64-bit version now supported on Windows.
2165
2166 Fixed a number of debugger issues.
2167
2168 Fixed bugs.
2169
2170
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +000021712009-10-29: Version 1.3.18
2172
2173 Reverted a change which caused crashes in RegExp replace.
2174
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00002175 Reverted a change which caused Chromium ui_tests failure.
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +00002176
2177
ager@chromium.org3811b432009-10-28 14:53:37 +000021782009-10-28: Version 1.3.17
2179
2180 Added API method to get simple heap statistics.
2181
2182 Improved heap profiler support.
2183
2184 Fixed the implementation of the resource constraint API so it
2185 works when using snapshots.
2186
2187 Fixed a number of issues in the Windows 64-bit version.
2188
2189 Optimized calls to API getters.
2190
2191 Added valgrind notification on code modification to the 64-bit version.
2192
2193 Fixed issue where we logged shared library addresses on Windows at
2194 startup and never used them.
2195
2196
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000021972009-10-16: Version 1.3.16
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002198
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002199 X64: Convert smis to holding 32 bits of payload.
2200
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002201 Introduced v8::Integer::NewFromUnsigned method.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002202
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002203 Added missing null check in Context::GetCurrent.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002204
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002205 Added trim, trimLeft and trimRight methods to String
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002206 Patch by Jan de Mooij <jandemooij@gmail.com>
2207
2208 Implement ES5 Array.isArray
2209 Patch by Jan de Mooij <jandemooij@gmail.com>
2210
2211 Skip access checks for hidden properties.
2212
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002213 Added String::Concat(Handle<String> left, Handle<String> right) to the
2214 V8 API.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002215
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002216 Fixed GYP-based builds of V8.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00002217
2218
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +000022192009-10-07: Version 1.3.15
2220
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002221 Expanded the maximum size of the code space to 512MB for 64-bit mode.
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +00002222
2223 Fixed a crash bug happening when starting profiling (issue
2224 http://crbug.com/23768).
2225
2226
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000022272009-10-07: Version 1.3.14
2228
2229 Added GetRealNamedProperty to the API to lookup real properties
2230 located on the object or in the prototype chain skipping any
2231 interceptors.
2232
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002233 Fixed the stack limits setting API to work correctly with threads. The
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002234 stack limit now needs to be set to each thread thich is used with V8.
2235
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002236 Removed the high-priority flag from IdleNotification()
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002237
2238 Ensure V8 is initialized before locking and unlocking threads.
2239
2240 Implemented a new JavaScript minifier for compressing the source of
ager@chromium.org3811b432009-10-28 14:53:37 +00002241 the built-in JavaScript. This removes non-Open Source code from Douglas
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00002242 Crockford from the project.
2243
2244 Added a missing optimization in StringCharAt.
2245
2246 Fixed some flaky socket tests.
2247
2248 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
2249 in 64-bit mode.
2250
2251 Fixed memory leaks in the thread management code.
2252
2253 Fixed the result of assignment to a pixel array. The assigned value
2254 is now the result.
2255
2256 Error reporting for invalid left-hand sides in for-in statements, pre-
2257 and postfix count expressions, and assignments now matches the JSC
2258 behavior in Safari 4.
2259
2260 Follow the spec in disallowing function declarations without a name.
2261
2262 Always allocate code objects within a 2 GB range. On x64 architecture
2263 this is used to use near calls (32-bit displacement) in Code objects.
2264
2265 Optimized array construction ported to x64 and ARM architectures.
2266
2267 [ES5] Changed Object.keys to return strings for element indices.
2268
2269
ager@chromium.org68e7ab72009-09-23 09:40:39 +000022702009-09-23: Version 1.3.13
2271
2272 Fixed uninitialized memory problem.
2273
2274 Improved heap profiler support.
2275
2276
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000022772009-09-22: Version 1.3.12
2278
2279 Changed behavior of |function|.toString() on built-in functions to
2280 be compatible with other implementations. Patch by Jan de Mooij.
2281
2282 Added Object::IsDirty in the API.
2283
2284 Optimized array construction; it is now handled purely in native
2285 code.
2286
2287 [ES5] Made properties of the arguments array enumerable.
2288
2289 [ES5] Added test suite adapter for the es5conform test suite.
2290
2291 [ES5] Added Object.keys function.
2292
ager@chromium.org68e7ab72009-09-23 09:40:39 +00002293
ager@chromium.org4af710e2009-09-15 12:20:11 +000022942009-09-15: Version 1.3.11
2295
2296 Fixed crash in error reporting during bootstrapping.
2297
2298 Optimized generated IA32 math code by using SSE2 instructions when
2299 available.
2300
2301 Implemented missing pieces of debugger infrastructure on ARM. The
2302 debugger is now fully functional on ARM.
2303
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002304 Made 'hidden' the default visibility for gcc.
ager@chromium.org4af710e2009-09-15 12:20:11 +00002305
2306
ager@chromium.orga1645e22009-09-09 19:27:10 +000023072009-09-09: Version 1.3.10
2308
2309 Fixed profiler on Mac in 64-bit mode.
2310
2311 Optimized creation of objects from simple constructor functions on
2312 ARM.
2313
2314 Fixed a number of debugger issues.
2315
2316 Reduced the amount of memory consumed by V8.
2317
2318
ager@chromium.org18ad94b2009-09-02 08:22:29 +000023192009-09-02: Version 1.3.9
2320
2321 Optimized stack guard checks on ARM.
2322
2323 Optimized API operations by inlining more in the API.
2324
2325 Optimized creation of objects from simple constructor functions.
2326
2327 Enabled a number of missing optimizations in the 64-bit port.
2328
2329 Implemented native-code support for regular expressions on ARM.
2330
2331 Stopped using the 'sahf' instruction on 64-bit machines that do
2332 not support it.
2333
2334 Fixed a bug in the support for forceful termination of JavaScript
2335 execution.
2336
2337
ager@chromium.org96c75b52009-08-26 09:13:16 +000023382009-08-26: Version 1.3.8
2339
2340 Changed the handling of idle notifications to allow idle
2341 notifications when V8 has not yet been initialized.
2342
2343 Fixed ARM simulator compilation problem on Windows.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002344
ager@chromium.org96c75b52009-08-26 09:13:16 +00002345
ager@chromium.orgab99eea2009-08-25 07:05:41 +000023462009-08-25: Version 1.3.7
2347
2348 Reduced the size of generated code on ARM platforms by reducing
2349 the size of constant pools.
2350
2351 Changed build files to not include the 'ENV' user environment
2352 variable in the build environment.
2353
2354 Changed the handling of idle notifications.
2355
2356
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +000023572009-08-21: Version 1.3.6
2358
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002359 Added support for forceful termination of JavaScript execution.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00002360
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002361 Added low memory notification to the API. The embedding host can signal
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00002362 a low memory situation to V8.
2363
2364 Changed the handling of global handles (persistent handles in the API
2365 sense) to avoid issues regarding allocation of new global handles
2366 during weak handle callbacks.
2367
2368 Changed the growth policy of the young space.
2369
2370 Fixed a GC issue introduced in version 1.3.5.
2371
2372
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000023732009-08-19: Version 1.3.5
2374
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002375 Optimized initialization of some arrays in the builtins.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00002376
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002377 Fixed mac-nm script to support filenames with spaces.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00002378
2379 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
2380
2381 Changed typeof RegExp from 'object' to 'function' for compatibility.
2382 Fixed bug where regexps were not callable across contexts.
2383
2384 Added context independent script compilation to the API.
2385
2386 Added API call to get the stack trace for an exception.
2387
2388 Added API for getting object mirrors.
2389
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002390 Made sure that SSE3 instructions are used whenever possible even when
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00002391 running off a snapshot generated without using SSE3 instructions.
2392
2393 Tweaked the handling of the initial size and growth policy of the heap.
2394
2395 Added native code generation for RegExp to 64-bit version.
2396
2397 Added JavaScript debugger support to 64-bit version.
2398
2399
ager@chromium.orgadd848f2009-08-13 12:44:13 +000024002009-08-13: Version 1.3.4
2401
2402 Added a readline() command to the d8 shell.
2403
2404 Fixed bug in json parsing.
2405
2406 Added idle notification to the API and reduced memory on idle
2407 notifications.
2408
2409
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +000024102009-08-12: Version 1.3.3
2411
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002412 Fixed issue 417: incorrect %t placeholder expansion.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002413
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002414 Added .gitignore file similar to Chromium's one.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002415
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002416 Fixed SConstruct file to build with new logging code for Android.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002417
2418 API: added function to find instance of template in prototype
2419 chain. Inlined Object::IsInstanceOf.
2420
2421 Land change to notify valgrind when we modify code on x86.
2422
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002423 Added api call to determine whether a string can be externalized.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002424
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002425 Added a write() command to d8.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00002426
2427
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +000024282009-08-05: Version 1.3.2
2429
2430 Started new compiler infrastructure for two-pass compilation using a
2431 control flow graph constructed from the AST.
2432
2433 Profiler stack sampling for X64.
2434
2435 Safe handling of NaN to Posix platform-dependent time functions.
2436
2437 Added a new profiler control API to unify controlling various aspects
2438 of profiling.
2439
2440 Fixed issue 392.
2441
2442
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000024432009-07-30: Version 1.3.1
2444
2445 Speed improvements to accessors and interceptors.
2446
2447 Added support for capturing stack information on custom errors.
2448
2449 Added support for morphing an object into a pixel array where its
2450 indexed properties are stored in an external byte array. Values written
2451 are always clamped to the 0..255 interval.
2452
2453 Profiler on x64 now handles C/C++ functions from shared libraries.
2454
2455 Changed the debugger to avoid stepping into function.call/apply if the
2456 function is a built-in.
2457
2458 Initial implementation of constructor heap profile for JS objects.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002459
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00002460 More fine grained control of profiling aspects through the API.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002461
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00002462 Optimized the called as constructor check for API calls.
2463
2464
kasperl@chromium.orge959c182009-07-27 08:59:04 +000024652009-07-27: Version 1.3.0
2466
2467 Allowed RegExp objects to be called as functions (issue 132).
2468
2469 Fixed issue where global property cells would escape after
2470 detaching the global object; see http://crbug.com/16276.
2471
2472 Added support for stepping into setters and getters in the
2473 debugger.
2474
2475 Changed the debugger to avoid stopping in its own JavaScript code
2476 and in the code of built-in functions.
2477
2478 Fixed issue 345 by avoiding duplicate escaping labels.
2479
2480 Fixed ARM code generator crash in short-circuited boolean
2481 expressions and added regression tests.
2482
2483 Added an external allocation limit to avoid issues where small V8
2484 objects would hold on to large amounts of external memory without
2485 causing garbage collections.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002486
2487 Finished more of the inline caching stubs for x64 targets.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00002488
2489
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000024902009-07-13: Version 1.2.14
2491
2492 Added separate paged heap space for global property cells and
2493 avoid updating the write barrier when storing into them.
2494
2495 Improved peep-hole optimization on ARM platforms by not emitting
2496 unnecessary debug information.
2497
2498 Re-enabled ICs for loads and calls that skip a global object
2499 during lookup through the prototype chain.
2500
2501 Allowed access through global proxies to use ICs.
2502
2503 Fixed issue 401.
2504
2505
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000025062009-07-09: Version 1.2.13
2507
2508 Fixed issue 397, issue 398, and issue 399.
2509
2510 Added support for breakpoint groups.
2511
2512 Fixed bugs introduced with the new global object representation.
2513
2514 Fixed a few bugs in the ARM code generator.
2515
2516
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000025172009-07-06: Version 1.2.12
2518
2519 Added stack traces collection to Error objects accessible through
2520 the e.stack property.
2521
2522 Changed RegExp parser to use a recursive data structure instead of
2523 stack-based recursion.
2524
2525 Optimized Date object construction and string concatenation.
2526
2527 Improved performance of div, mod, and mul on ARM platforms.
2528
2529
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000025302009-07-02: Version 1.2.11
2531
2532 Improved performance on IA-32 and ARM.
2533
2534 Fixed profiler sampler implementation on Mac OS X.
2535
2536 Changed the representation of global objects to improve
2537 performance of adding a lot of new properties.
2538
2539
ager@chromium.org3e875802009-06-29 08:26:34 +000025402009-06-29: Version 1.2.10
2541
2542 Improved debugger support.
2543
2544 Fixed bug in exception message reporting (issue 390).
2545
2546 Improved overall performance.
2547
2548
ager@chromium.org5aa501c2009-06-23 07:57:28 +000025492009-06-23: Version 1.2.9
2550
2551 Improved math performance on ARM.
2552
2553 Fixed profiler name-inference bug.
2554
2555 Fixed handling of shared libraries in the profiler tick processor
2556 scripts.
2557
2558 Fixed handling of tests that time out in the test scripts.
2559
2560 Fixed compilation on MacOS X version 10.4.
2561
2562 Fixed two bugs in the regular expression engine.
2563
2564 Fixed a bug in the string type inference.
2565
2566 Fixed a bug in the handling of 'constant function' properties.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002567
ager@chromium.org5aa501c2009-06-23 07:57:28 +00002568 Improved overall performance.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002569
ager@chromium.org5aa501c2009-06-23 07:57:28 +00002570
ager@chromium.orgeadaf222009-06-16 09:43:10 +000025712009-06-16: Version 1.2.8
2572
2573 Optimized math on ARM platforms.
2574
2575 Fixed two crash bugs in the handling of getters and setters.
2576
2577 Improved the debugger support by adding scope chain information.
2578
2579 Improved the profiler support by compressing log data transmitted
2580 to clients.
2581
2582 Improved overall performance.
2583
2584
ager@chromium.orge2902be2009-06-08 12:21:35 +000025852009-06-08: Version 1.2.7
2586
2587 Improved debugger and profiler support.
2588
2589 Reduced compilation time by improving the handling of deferred
2590 code.
2591
2592 Optimized interceptor accesses where the property is on the object
2593 on which the interceptors is attached.
2594
2595 Fixed compilation problem on GCC 4.4 by changing the stack
2596 alignment to 16 bytes.
2597
2598 Fixed handle creation to follow stric aliasing rules.
2599
2600 Fixed compilation on FreeBSD.
2601
2602 Introduced API for forcing the deletion of a property ignoring
2603 interceptors and attributes.
2604
2605
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +000026062009-05-29: Version 1.2.6
2607
2608 Added a histogram recording hit rates at different levels of the
2609 compilation cache.
2610
2611 Added stack overflow check for the RegExp analysis phase. Previously a
2612 very long regexp graph could overflow the stack with recursive calls.
2613
2614 Use a dynamic buffer when collecting log events in memory.
2615
2616 Added start/stop events to the profiler log.
2617
2618 Fixed infinite loop which could happen when setting a debug break while
2619 executing a RegExp compiled to native code.
2620
2621 Fixed handling of lastIndexOf called with negative index (issue 351).
2622
2623 Fixed irregular crash in profiler test (issue 358).
2624
2625 Fixed compilation issues with some versions of gcc.
2626
2627
kasperl@chromium.org71affb52009-05-26 05:44:31 +000026282009-05-26: Version 1.2.5
2629
2630 Fixed bug in initial boundary check for Boyer-Moore text
2631 search (issue 349).
2632
2633 Fixed compilation issues with MinGW and gcc 4.3+ and added support
2634 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
2635 Craig Schlenter.
2636
2637 Added a script cache to the debugger.
2638
2639 Optimized compilation performance by improving internal data
2640 structures and avoiding expensive property load optimizations for
2641 code that's infrequently executed.
2642
2643 Exposed the calling JavaScript context through the static API
2644 function Context::GetCalling().
2645
2646
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000026472009-05-18: Version 1.2.4
2648
2649 Improved performance of floating point number allocation for ARM
2650 platforms.
2651
2652 Fixed crash when using the instanceof operator on functions with
2653 number values in their prototype chain (issue 341).
2654
2655 Optimized virtual frame operations in the code generator to speed
2656 up compilation time and allocated the frames in the zone.
2657
2658 Made the representation of virtual frames and jump targets in the
2659 code generator much more compact.
2660
2661 Avoided linear search for non-locals in scope code when resolving
2662 variables inside with and eval scopes.
2663
2664 Optimized lexical scanner by dealing with whitespace as part of
2665 the token scanning instead of as a separate step before it.
2666
2667 Changed the scavenging collector so that promoted objects do not
2668 reside in the old generation while their remembered set is being
2669 swept for pointers into the young generation.
2670
2671 Fixed numeric overflow handling when compiling count operations.
2672
2673
ager@chromium.org9085a012009-05-11 19:22:57 +000026742009-05-11: Version 1.2.3
2675
2676 Fixed bug in reporting of out-of-memory situations.
2677
2678 Introduced hidden prototypes on certain builtin prototype objects
2679 such as String.prototype to emulate JSC's behavior of restoring
2680 the original function when deleting functions from those prototype
2681 objects.
2682
2683 Fixed crash bug in the register allocator.
2684
2685
ager@chromium.org5ec48922009-05-05 07:25:34 +000026862009-05-04: Version 1.2.2
2687
2688 Fixed bug in array sorting for sparse arrays (issue 326).
2689
2690 Added support for adding a soname when building a shared library
2691 on Linux (issue 151).
2692
2693 Fixed bug caused by morphing internal ASCII strings to external
2694 two-byte strings. Slices over ASCII strings have to forward ASCII
2695 checks to the underlying buffer string.
2696
2697 Allowed API call-as-function handlers to be called as
2698 constructors.
2699
2700 Fixed a crash bug where an external string was disposed but a
2701 slice of the external string survived as a symbol.
2702
2703
ager@chromium.org3a37e9b2009-04-27 09:26:21 +000027042009-04-27: Version 1.2.1
2705
2706 Added EcmaScript 5 JSON object.
2707
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002708 Fixed bug in preemption support on ARM.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00002709
2710
ager@chromium.org65dad4b2009-04-23 08:48:43 +000027112009-04-23: Version 1.2.0
2712
2713 Optimized floating-point operations on ARM.
2714
2715 Added a number of extensions to the debugger API.
2716
2717 Changed the enumeration order for unsigned integer keys to always
2718 be numerical order.
2719
2720 Added a "read" extension to the shell sample.
2721
2722 Added support for Array.prototype.reduce and
2723 Array.prototype.reduceRight.
2724
2725 Added an option to the SCons build to control Microsoft Visual C++
2726 link-time code generation.
2727
2728 Fixed a number of bugs (in particular issue 315, issue 316,
2729 issue 317 and issue 318).
2730
2731
kasperl@chromium.org2d18d102009-04-15 13:27:32 +000027322009-04-15: Version 1.1.10
2733
2734 Fixed crash bug that occurred when loading a const variable in the
2735 presence of eval.
2736
2737 Allowed using with and eval in registered extensions in debug mode
2738 by fixing bogus assert.
2739
2740 Fixed the source position for function returns to enable the
2741 debugger to break there.
2742
2743
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +000027442009-04-14: Version 1.1.9
2745
2746 Made the stack traversal code in the profiler robust by avoiding
2747 to look into the heap.
2748
2749 Added name inferencing for anonymous functions to facilitate
2750 debugging and profiling.
2751
2752 Re-enabled stats timers in the developer shell (d8).
2753
2754 Fixed issue 303 by avoiding to shortcut cons-symbols.
2755
2756
kasperl@chromium.orgacae3782009-04-11 09:17:08 +000027572009-04-11: Version 1.1.8
2758
2759 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
2760
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002761 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00002762 the debugger (issue 269).
2763
2764 Fixed v8::Object::DeleteHiddenValue to not bail out when there
2765 are no hidden properties.
2766
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002767 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00002768 entries with deleted resources would lead to NPEs when looking
2769 up in the symbol table.
2770
2771
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +000027722009-04-07: Version 1.1.7
2773
2774 Added support for easily importing additional environment
2775 variables into the SCons build.
2776
2777 Optimized strict equality checks.
2778
2779 Fixed crash in indexed setters on objects without a corresponding
2780 getter (issue 298).
2781
2782 Re-enabled script compilation cache.
2783
2784
ager@chromium.org8682a592009-04-01 10:47:14 +000027852009-04-01: Version 1.1.6
2786
2787 Reverted an unsafe code generator change.
2788
2789
ager@chromium.org71daaf62009-04-01 07:22:49 +000027902009-04-01: Version 1.1.5
2791
2792 Fixed bug that caused function literals to not be optimized as
2793 much as other functions.
2794
2795 Improved profiler support.
2796
2797 Fixed a crash bug in connection with debugger unloading.
2798
2799 Fixed a crash bug in the code generator caused by losing the
2800 information that a frame element was copied.
2801
2802 Fixed an exception propagation bug that could cause non-null
2803 return values when exceptions were thrown.
2804
2805
ager@chromium.org41826e72009-03-30 13:30:57 +000028062009-03-30: Version 1.1.4
2807
2808 Optimized String.prototype.match.
2809
2810 Improved the stack information in profiles.
2811
2812 Fixed bug in ARM port making it possible to compile the runtime
2813 system for thumb mode again.
2814
2815 Implemented a number of optimizations in the code generator.
2816
2817 Fixed a number of memory leaks in tests.
2818
2819 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00002820 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +00002821
2822
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +000028232009-03-24: Version 1.1.3
2824
2825 Fixed assertion failures in compilation of loop conditions.
2826
2827 Removed STL dependency from developer shell (d8).
2828
2829 Added infrastructure for protecting the V8 heap from corruption
2830 caused by memory modifications from the outside.
2831
2832
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000028332009-03-24: Version 1.1.2
2834
2835 Improved frame merge code generated by the code generator.
2836
2837 Optimized String.prototype.replace.
2838
2839 Implemented __defineGetter__ and __defineSetter__ for properties
2840 with integer keys on non-array objects.
2841
2842 Improved debugger and profiler support.
2843
2844 Fixed a number of portability issues to allow compilation for
2845 smaller ARM devices.
2846
2847 Exposed object cloning through the API.
2848
2849 Implemented hidden properties. This is used to expose an identity
2850 hash for objects through the API.
2851
2852 Implemented restarting of regular expressions if their input
2853 string changes representation during preemption.
2854
2855 Fixed a code generator bug that could cause assignments in loops
2856 to be ignored if using continue to break out of the loop (issue
2857 284).
2858
2859
ager@chromium.org3a6061e2009-03-12 14:24:36 +000028602009-03-12: Version 1.1.1
2861
2862 Fixed an assertion in the new compiler to take stack overflow
2863 exceptions into account.
2864
2865 Removed exception propagation code that could cause crashes.
2866
2867 Fixed minor bug in debugger line number computations.
2868
2869 8-byte align the C stack on Linux and Windows to speed up floating
2870 point computations.
2871
2872
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000028732009-03-12: Version 1.1.0
2874
2875 Improved code generation infrastructure by doing simple register
2876 allocation and constant folding and propagation.
2877
2878 Optimized regular expression matching by avoiding to create
2879 intermediate string arrays and by flattening nested array
2880 representations of RegExp data.
2881
2882 Traverse a few stack frames when recording profiler samples to
2883 include partial call graphs in the profiling output.
2884
2885 Added support for using OProfile to profile generated code.
2886
2887 Added remote debugging support to the D8 developer shell.
2888
2889 Optimized creation of nested literals like JSON objects.
2890
2891 Fixed a bug in garbage collecting unused maps and turned it on by
2892 default (--collect-maps).
2893
2894 Added support for running tests under Valgrind.
2895
2896
kasperl@chromium.org061ef742009-02-27 12:16:20 +000028972009-02-27: Version 1.0.3
2898
2899 Optimized double-to-integer conversions in bit operations by using
2900 SSE3 instructions if available.
2901
2902 Optimized initialization sequences that store to multiple
2903 properties of the same object.
2904
2905 Changed the D8 debugger frontend to use JSON messages.
2906
2907 Force garbage collections when disposing contexts.
2908
2909 Align code objects at 32-byte boundaries.
2910
2911
ager@chromium.org381abbb2009-02-25 13:23:22 +000029122009-02-25: Version 1.0.2
2913
2914 Improved profiling support by performing simple call stack
2915 sampling for ticks and by fixing a bug in the logging of code
2916 addresses.
2917
2918 Fixed a number of debugger issues.
2919
2920 Optimized code that uses eval.
2921
2922 Fixed a couple of bugs in the regular expression engine.
2923
2924 Reduced the size of generated code for certain regular expressions.
2925
2926 Removed JSCRE completely.
2927
2928 Fixed issue where test could not be run if there was a dot in the
2929 checkout path.
2930
2931
ager@chromium.org6f10e412009-02-13 10:11:16 +000029322009-02-13: Version 1.0.1
2933
2934 Fixed two crash-bugs in irregexp (issue 231 and 233).
2935
2936 Fixed a number of minor bugs (issue 87, 227 and 228).
2937
2938 Added support for morphing strings to external strings on demand
2939 to avoid having to create copies in the embedding code.
2940
2941 Removed experimental support for external symbol callbacks.
2942
2943
iposva@chromium.org245aa852009-02-10 00:49:54 +000029442009-02-09: Version 1.0.0
2945
2946 Fixed crash-bug in the code generation for case independent 16 bit
2947 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +00002948
iposva@chromium.org245aa852009-02-10 00:49:54 +00002949 Made shells more robust in the presence of string conversion
2950 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +00002951
iposva@chromium.org245aa852009-02-10 00:49:54 +00002952 Fixed a potential infinite loop when attempting to resolve
2953 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +00002954
iposva@chromium.org245aa852009-02-10 00:49:54 +00002955 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +00002956
iposva@chromium.org245aa852009-02-10 00:49:54 +00002957 Reduced binary by stripping unneeded text from JavaScript library and
2958 minifying some JavaScript files.
2959
2960
ager@chromium.orgddb913d2009-01-27 10:01:48 +000029612009-01-27: Version 0.4.9
2962
2963 Enabled new regular expression engine.
2964
2965 Made a number of changes to the debugger protocol.
2966
2967 Fixed a number of bugs in the preemption support.
2968
2969 Added -p option to the developer shell to run files in parallel
2970 using preemption.
2971
2972 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
2973 193, 198 and 201).
2974
2975 Fixed a number of bugs in the serialization/deserialization
2976 support for the ARM platform.
2977
2978
sgjesse@chromium.org715915b2009-01-19 16:08:47 +000029792009-01-19: Version 0.4.8.1
2980
2981 Minor patch to debugger support.
2982
2983
ager@chromium.org32912102009-01-16 10:38:43 +000029842009-01-16: Version 0.4.8
2985
2986 Fixed string length bug on ARM (issue 171).
2987
2988 Made most methods in the API const.
2989
2990 Optimized object literals by improving data locality.
2991
2992 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00002993 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +00002994
2995 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00002996 eval to behave incorrectly when using accessors (issues 186, 190
2997 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +00002998
2999
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000030002009-01-06: Version 0.4.7
3001
ager@chromium.org32912102009-01-16 10:38:43 +00003002 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003003
ager@chromium.org32912102009-01-16 10:38:43 +00003004 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003005
ager@chromium.org32912102009-01-16 10:38:43 +00003006 Fixed subtle bug that caused the wrong 'this' to be used when
3007 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003008
ager@chromium.org32912102009-01-16 10:38:43 +00003009 Inline array loads within loops directly in the code instead of
3010 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003011
ager@chromium.org32912102009-01-16 10:38:43 +00003012
ager@chromium.org8bb60582008-12-11 12:02:20 +000030132008-12-11: Version 0.4.6
3014
3015 Fixed exception reporting bug where certain exceptions were
3016 incorrectly reported as uncaught.
3017
3018 Improved the memory allocation strategy used during compilation to
3019 make running out of memory when compiling huge scripts less
3020 likely.
3021
3022 Optimized String.replace by avoiding the construction of certain
3023 sub strings.
3024
3025 Fixed bug in code generation for large switch statements on ARM.
3026
3027 Fixed bug that caused V8 to change the global object template
3028 passed in by the user.
3029
3030 Changed the API for creating object groups used during garbage
3031 collection. Entire object groups are now passed to V8 instead of
3032 individual members of the groups.
3033
ager@chromium.org32912102009-01-16 10:38:43 +00003034
ager@chromium.orga74f0da2008-12-03 16:05:52 +000030352008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +00003036
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003037 Added experimental API support for allocating V8 symbols as
3038 external strings.
3039
3040 Fixed bugs in debugging support on ARM.
3041
3042 Changed eval implementation to correctly detect whether or not a
3043 call to eval is aliased.
3044
3045 Fixed bug caused by a combination of the compilation cache and
3046 dictionary probing in native code. The bug caused us to sometimes
3047 call functions that had not yet been compiled.
3048
3049 Added platform support for FreeBSD.
3050
3051 Added support for building V8 on Windows with either the shared or
3052 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +00003053
iposva@chromium.org96f667e2008-11-26 23:48:02 +00003054 Added the v8::jscre namespace around the jscre functions to avoid
3055 link errors (duplicate symbols) when building Google Chrome.
3056
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003057 Added support for calling a JavaScript function with the current
3058 debugger execution context as its argument to the debugger
3059 interface.
3060
3061 Changed the type of names of counters from wchar_t to char.
3062
3063 Changed the Windows system call used to compute daylight savings
3064 time. The system call that we used to use became four times
3065 slower on WinXP SP3.
3066
3067 Added support in the d8 developer shell for memory-mapped counters
3068 and added a stats-viewer tool.
3069
3070 Fixed bug in upper/lower case mappings (issue 149).
3071
iposva@chromium.org96f667e2008-11-26 23:48:02 +00003072
ager@chromium.org3bf7b912008-11-17 09:09:45 +000030732008-11-17: Version 0.4.4
3074
3075 Reduced code size by using shorter instruction encoding when
3076 possible.
3077
3078 Added a --help option to the shell sample and to the d8 shell.
3079
3080 Added visual studio project files for building the ARM simulator.
3081
3082 Fixed a number of ARM simulator issues.
3083
3084 Fixed bug in out-of-memory handling on ARM.
3085
3086 Implemented shell support for passing arguments to a script from
3087 the command line.
3088
3089 Fixed bug in date code that made certain date functions return -0
3090 instead of 0 for dates before the epoch.
3091
3092 Restricted applications of eval so it can only be used in the
3093 context of the associated global object.
3094
3095 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +00003096
3097
ager@chromium.org870a0b62008-11-04 11:43:05 +000030982008-11-04: Version 0.4.3
3099
3100 Added support for API accessors that prohibit overwriting by
3101 accessors defined in JavaScript code by using __defineGetter__ and
3102 __defineSetter__.
3103
3104 Improved handling of conditionals in test status files.
3105
3106 Introduced access control in propertyIsEnumerable.
3107
3108 Improved performance of some string operations by caching
3109 information about the type of the string between operations.
3110
3111 Fixed bug in fast-case code for switch statements that only have
3112 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +00003113
ager@chromium.org870a0b62008-11-04 11:43:05 +00003114
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000031152008-10-30: Version 0.4.2
3116
3117 Improved performance of Array.prototype.concat by moving the
3118 implementation to C++ (issue 123).
3119
3120 Fixed heap growth policy to avoid growing old space to its maximum
3121 capacity before doing a garbage collection and fixed issue that
3122 would lead to artificial out of memory situations (issue 129).
3123
3124 Fixed Date.prototype.toLocaleDateString to return the date in the
3125 same format as WebKit.
3126
3127 Added missing initialization checks to debugger API.
3128
3129 Added removing of unused maps during GC.
3130
3131
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000031322008-10-28: Version 0.4.1
3133
3134 Added caching of RegExp data in compilation cache.
3135
3136 Added Visual Studio project file for d8 shell.
3137
3138 Fixed function call performance regression introduced in version
3139 0.4.0 when splitting the global object in two parts (issue 120).
3140
3141 Fixed issue 131 by checking for empty handles before throwing and
3142 reporting exceptions.
3143
3144
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000031452008-10-23: Version 0.4.0
3146
3147 Split the global object into two parts: The state holding global
3148 object and the global object proxy.
3149
3150 Fixed bug that affected the value of an assignment to an element
3151 in certain cases (issue 116).
3152
3153 Added GetPropertyNames functionality (issue 33) and extra Date
3154 functions (issue 77) to the API.
3155
3156 Changed WeakReferenceCallback to take a Persistent<Value> instead
3157 of a Persistent<Object> (issue 101).
3158
3159 Fixed issues with message reporting for exceptions in try-finally
3160 blocks (issues 73 and 75).
3161
ager@chromium.org32912102009-01-16 10:38:43 +00003162 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00003163
3164 Improved Boyer-Moore implementation for faster indexOf operations.
3165
3166 Added development shell (d8) which includes counters and
3167 completion support.
3168
3169 Fixed problem with the receiver passed to functions called from
3170 eval (issue 124).
3171
3172
ager@chromium.org7c537e22008-10-16 08:43:32 +000031732008-10-16: Version 0.3.5
3174
3175 Improved string hash-code distribution by excluding bit-field bits
3176 from the hash-code.
3177
3178 Changed string search algorithm used in indexOf from KMP to
3179 Boyer-Moore.
3180
3181 Improved the generated code for the instanceof operator.
3182
3183 Improved performance of slow-case string equality checks by
3184 specializing the code based on the string representation.
3185
3186 Improve the handling of out-of-memory situations (issue 70).
3187
3188 Improved performance of strict equality checks.
3189
3190 Improved profiler output to make it easier to see anonymous
3191 functions.
3192
3193 Improved performance of slow-case keyed loads.
3194
3195 Improved property access performance by allocating a number of
3196 properties in the front object.
3197
3198 Changed the toString behavior on the built-in object constructors
3199 to print [native code] instead of the actual source. Some web
3200 applications do not like constructors with complex toString
3201 results.
ager@chromium.org32912102009-01-16 10:38:43 +00003202
ager@chromium.org7c537e22008-10-16 08:43:32 +00003203
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000032042008-10-06: Version 0.3.4
3205
3206 Changed Array.prototype.sort to use quick sort.
3207
3208 Fixed code generation issue where leaving a finally block with
3209 break or continue would accumulate elements on the expression
3210 stack (issue 86).
3211
3212 Made sure that the name accessor on functions returns the expected
3213 names for builtin JavaScript functions and C++ callback functions.
3214
3215 Added fast case code for extending the property storage array of
3216 JavaScript objects.
3217
3218 Ported switch statement optimizations introduced in version 0.3.3
3219 to the ARM code generator.
3220
3221 Allowed GCC to use strict-aliasing rules when compiling.
3222
3223 Improved performance of arguments object allocation by taking care
3224 of arguments adaptor frames in the generated code.
3225
3226 Updated the V8 benchmark suite to version 2.
3227
3228
ager@chromium.org236ad962008-09-25 09:45:57 +000032292008-09-25: Version 0.3.3
3230
3231 Improved handling of relocation information to enable more
3232 peep-hole optimizations.
3233
3234 Optimized switch statements where all labels are constant small
3235 integers.
3236
3237 Optimized String.prototype.indexOf for common cases.
3238
3239 Fixed more build issues (issue 80).
3240
3241 Fixed a couple of profiler issues.
3242
3243 Fixed bug where the body of a function created using the Function
3244 constructor was not allowed to end with a single-line comment
3245 (issue 85).
3246
3247 Improved handling of object literals by canonicalizing object
3248 literal maps. This will allow JSON objects with the same set of
3249 properties to share the same map making inline caching work better
3250 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +00003251
ager@chromium.org236ad962008-09-25 09:45:57 +00003252
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000032532008-09-17: Version 0.3.2
3254
3255 Generalized the EvalCache into a CompilationCache and enabled it
3256 for scripts too. The current strategy is to retire all entries
3257 whenever a mark-sweep collection is started.
3258
3259 Fixed bug where switch statements containing only a default case
3260 would lead to an unbalanced stack (issue 69).
3261
3262 Fixed bug that made access to the function in a named function
3263 expression impossible in certain situations (issue 24).
3264
3265 Fixed even more build issues.
3266
3267 Optimized calling conventions on ARM. The conventions on ARM and
3268 IA-32 now match.
3269
3270 Removed static initializers for flags and counters.
3271
3272 Improved inline caching behavior for uncommon cases where lazily
3273 loading Date and RegExp code could force certain code paths go
3274 megamorphic.
3275
3276 Removed arguments adaption for builtins written in C++. This
3277 makes Array.prototype.push and Array.prototype.pop slightly
3278 faster.
3279
3280
ager@chromium.org9258b6b2008-09-11 09:11:10 +000032812008-09-11: Version 0.3.1
3282
3283 Fixed a number of build issues.
3284
3285 Fixed problem with missing I-cache flusing on ARM.
3286
3287 Changed space layout in memory management by splitting up
3288 code space into old data space and code space.
3289
3290 Added utf-8 conversion support to the API (issue 57).
3291
3292 Optimized repeated calls to eval with the same strings. These
3293 repeated calls are common in web applications.
3294
3295 Added Xcode project file.
3296
3297 Optimized a couple of Array operation.
3298
3299 Fixed parser bug by checking for end-of-string when parsing break
3300 and continue (issue 35).
3301
3302 Fixed problem where asian characters were not categorized as
3303 letters.
3304
3305 Fixed bug that disallowed calling functions fetched from an array
3306 using a string as an array index (issue 32).
3307
3308 Fixed bug where the internal field count on object templates were
3309 sometimes ignored (issue 54).
3310
3311 Added -f option to the shell sample for compatibility with other
3312 engines (issue 18).
3313
3314 Added source info to TryCatches in the API.
3315
3316 Fixed problem where the seed for the random number generator was
3317 clipped in a double to unsigned int conversion.
3318
3319 Fixed bug where cons string symbols were sometimes converted to
3320 non-symbol flat strings during GC.
3321
3322 Fixed bug in error reporting when attempting to convert null to an
3323 object.
ager@chromium.org32912102009-01-16 10:38:43 +00003324
3325
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000033262008-09-04: Version 0.3.0
3327
3328 Added support for running tests on the ARM simulator.
3329
3330 Fixed bug in the 'in' operator where negative indices were not
3331 treated correctly.
3332
3333 Fixed build issues on gcc-4.3.1.
3334
3335 Changed Date.prototype.toLocaleTimeString to not print the
3336 timezone part of the time.
3337
3338 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
3339 with user code.
3340
3341
v8.team.kasperl727e9952008-09-02 14:56:44 +000033422008-09-02: Version 0.2.5
3343
3344 Renamed the top level directory 'public' to 'include'.
3345
3346 Added 'env' option to the SCons build scripts to support
3347 overriding the ENV part of the build environment. This is mostly
3348 to support Windows builds in cases where SCons cannot find the
3349 correct paths to the Windows SDK, as these paths cannot be passed
3350 through shell environment variables.
3351
3352 Enabled "Buffer Security Check" on for the Windows SCons build and
3353 added the linker option /OPT:ICF as an optimization.
3354
3355 Added the V8 benchmark suite to the repository.
3356
3357
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000033582008-09-01: Version 0.2.4
3359
3360 Included mjsunit JavaScript test suite and C++ unit tests.
3361
3362 Changed the shell sample to not print the result of executing a
3363 script provided on the command line.
3364
3365 Fixed issue when building samples on Windows using a shared V8
3366 library. Added visibility option on Linux build which makes the
3367 generated library 18% smaller.
3368
3369 Changed build system to accept multiple build modes in one build
3370 and generate separate objects, libraries and executables for each
3371 mode.
3372
3373 Removed deferred negation optimization (a * -b => -(a * b)) since
3374 this visibly changes operand conversion order.
3375
3376 Improved parsing performance by introducing stack guard in
3377 preparsing. Without a stack guard preparsing always bails out
3378 with stack overflow.
3379
3380 Changed shell sample to take flags directly from the command-line.
3381 Added API call that implements this.
3382
3383 Added load, quit and version functions to the shell sample so it's
3384 easier to run benchmarks and tests.
3385
3386 Fixed issue with building samples and cctests on 64-bit machines.
3387
3388 Fixed bug in the runtime system where the prototype chain was not
3389 always searched for a setter when setting a property that does not
3390 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +00003391
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00003392
mads.s.agercbaa0602008-08-14 13:41:48 +000033932008-08-14: Version 0.2.3
3394
3395 Improved performance of garbage collection by moving the
3396 function that updates pointers during compacting collection
3397 into the updating visitor. This gives the compiler a better
3398 chance to inline and avoid a function call per (potential)
3399 pointer.
3400
3401 Extended the shell sample with a --runtime-flags option.
3402
3403 Added Visual Studio project files for the shell.cc and
3404 process.cc samples.
3405
3406
34072008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +00003408
3409 Improved performance of garbage collection by changing the way
3410 we use the marking stack in the event of stack overflow during
3411 full garbage collection and by changing the way we mark roots.
3412
3413 Cleaned up ARM version by removing top of stack caching and by
3414 introducing push/pop elimination.
3415
3416 Cleaned up the way runtime functions are called to allow
3417 runtime calls with no arguments.
3418
3419 Changed Windows build options to make sure that exceptions are
3420 disabled and that optimization flags are enabled.
3421
3422 Added first version of Visual Studio project files.
3423
3424
mads.s.agercbaa0602008-08-14 13:41:48 +000034252008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00003426
3427 Improved performance of unary addition by avoiding runtime calls.
3428
3429 Fixed the handling of '>' and '<=' to use right-to-left conversion
3430 and left-to-right evaluation as specified by ECMA-262.
3431
3432 Fixed a branch elimination bug on the ARM platform where incorrect
3433 code was generated because of overly aggressive branch
3434 elimination.
3435
3436 Improved performance of code that repeatedly assigns the same
3437 function to the same property of different objects with the same
3438 map.
3439
3440 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
3441 no longer expects DEBUG to be defined.
3442
3443 Added platform-nullos.cc to serve as the basis for new platform
3444 implementations.
3445
mads.s.ager31e71382008-08-13 09:32:07 +00003446
mads.s.agercbaa0602008-08-14 13:41:48 +000034472008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +00003448
3449 Changed all text files to have native svn:eol-style.
3450
3451 Added a few samples and support for building them. The samples
3452 include a simple shell that can be used to benchmark and test V8.
3453
3454 Changed V8::GetVersion to return the version as a string.
3455
3456 Added source for lazily loaded scripts to snapshots and made
3457 serialization non-destructive.
3458
3459 Improved ARM support by fixing the write barrier code to use
3460 aligned loads and stores and by removing premature locals
3461 optimization that relied on broken support for callee-saved
3462 registers (removed).
3463
3464 Refactored the code for marking live objects during garbage
3465 collection and the code for allocating objects in paged
3466 spaces. Introduced an abstraction for the map word of a heap-
3467 allocated object and changed the memory allocator to allocate
3468 executable memory only for spaces that may contain code objects.
3469
3470 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
3471 they can be used by debugging and logging modules. Added
3472 thread-safe message queues for dealing with debugger events.
3473
3474 Fixed the source code reported by toString for certain builtin
3475 empty functions and made sure that the prototype property of a
3476 function is enumerable.
3477
3478 Improved performance of converting values to condition flags in
3479 generated code.
3480
3481 Merged disassembler-{arch} files.
3482
3483
mads.s.agercbaa0602008-08-14 13:41:48 +000034842008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +00003485
3486 Added support for storing JavaScript stack traces in a stack
3487 allocated buffer to make it visible in shallow core dumps.
3488 Controlled by the --preallocate-message-memory flag which is
3489 disabled by default.
3490
3491
mads.s.agercbaa0602008-08-14 13:41:48 +000034922008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00003493
3494 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
3495 map transitions would count as properties.
3496
3497 Allowed aliased eval invocations by treating them as evals in the
3498 global context. This may change in the future.
3499
3500 Added support for accessing the last entered context through the
3501 API and renamed Context::Current to Context::GetCurrent and
3502 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
3503
3504 Fixed bug in the debugger that would cause the debugger scripts to
3505 be recursively loaded and changed all disabling of interrupts to
3506 be block-structured.
3507
3508 Made snapshot data read-only to allow it to be more easily shared
3509 across multiple users of V8 when linked as a shared library.
3510
3511
mads.s.agercbaa0602008-08-14 13:41:48 +000035122008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00003513
3514 Fixed building on Mac OS X by recognizing i386 and friends as
3515 IA-32 platforms.
3516
3517 Added propagation of stack overflow exceptions that occur while
3518 compiling nested functions.
3519
3520 Improved debugger with support for recursive break points and
3521 handling of exceptions that occur in the debugger JavaScript code.
3522
3523 Renamed GetInternal to GetInternalField and SetInternal to
3524 SetInternalField in the API and moved InternalFieldCount and
3525 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
3526
3527
mads.s.agercbaa0602008-08-14 13:41:48 +000035282008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00003529
3530 Fixed bug in stack overflow check code for IA-32 targets where a
3531 non-tagged value in register eax was pushed to the stack.
3532
3533 Fixed potential quadratic behavior when converting strings to
3534 numbers.
3535
3536 Fixed bug where the return value from Object::SetProperty could
3537 end up being the property holder instead of the written value.
3538
3539 Improved debugger support by allowing nested break points and by
3540 dealing with stack-overflows when compiling functions before
3541 setting break points in them.
3542
3543
mads.s.agercbaa0602008-08-14 13:41:48 +000035442008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003545
kasper.lundbd3ec4e2008-07-09 11:06:54 +00003546 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003547
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003548# Local Variables:
3549# mode:text
3550# End: