blob: 5f64a3e923f7ae94ddeb1f36df77c02aec803d4d [file] [log] [blame]
mstarzinger@chromium.orgb228be02013-04-18 14:56:59 +000012013-04-18: Version 3.18.1
2
3 Removed SCons related files and deprecated test suite configurations.
4
5 Improved handling of unary plus (issue 2527).
6
7 Performance and stability improvements on all platforms.
8
9
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000102013-04-17: Version 3.18.0
11
12 Enabled pretenuring of fast literals in high promotion mode.
13
14 Removed preparser library; link preparser executable against full V8.
15
16 Fixed set-up of intrinsic's 'constructor' properties.
17 (Chromium issue 229445)
18
19 ES6 symbols: extended V8 API to support symbols (issue 2158).
20
21 Removed ARM support for VFP2.
22
23 Made __proto__ a real JavaScript accessor property.
24 (issue 1949 and issue 2606)
25
26 Performance and stability improvements on all platforms.
27
28
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +0000292013-04-04: Version 3.17.16
30
31 Stack trace API: poison stack frames below the first strict mode frame.
32 (issue 2564)
33
34 Made Isolate::GetHeapStatistics robust against half-initialized
35 isolates (Chromium issue 2591).
36
37 Finished implementation of ES6 symbols aka. private names (issue 2158).
38
39 Performance and stability improvements on all platforms.
40
41
danno@chromium.orgc99cd482013-03-21 15:26:42 +0000422013-03-21: Version 3.17.15
43
44 Rolled back API changes to maintain compatibility with older
45 3.17.x versions of V8.
46
47 Disable zapping of global handles in release mode.
48
49 Always mark the entire valid prefix of the descriptor array.
50 (Chromium issue 196331)
51
52 Use internal memcpy for CopyWords and when copying code.
53 (Chromium issue 196330)
54
55 Performance and stability improvements on all platforms.
56
57
jkummerow@chromium.org7bd87f02013-03-20 18:06:29 +0000582013-03-20: Version 3.17.14
59
60 Use internal memcpy when initializing code objects.
61 (Chromium issue 196330)
62
63 Disabled weak embedded maps because of crashes.
64 (Chromium issues 172489, 217858)
65
66 Performance and stability improvements on all platforms.
67
68
jkummerow@chromium.org4c54a2a2013-03-19 17:51:30 +0000692013-03-19: Version 3.17.13
70
71 Turned Flags into a uint32_t typedef (Chromium issue 194749).
72
73 Performance and stability improvements on all platforms.
74
75
svenpanne@chromium.org876cca82013-03-18 14:43:20 +0000762013-03-18: Version 3.17.12
77
78 Unified kMaxArguments with number of bits used to encode it.
79 (Chromium issue 211741)
80
81 Fixed detection of |handle_smi| case in
82 HOptimizedGraphBuilder::HandlePolymorphicCallNamed.
83 (Chromium issue 196583)
84
85 Performance and stability improvements on all platforms.
86
87
svenpanne@chromium.org2bda5432013-03-15 12:39:50 +0000882013-03-15: Version 3.17.11
89
90 Added a version of the v8::HandleScope constructor with an v8::Isolate
91 parameter and made AdjustAmountOfExternalAllocatedMemory an instance
92 method of v8::Isolate.
93 (issue 2487)
94
95 Fixed two register allocator bugs (off-by-one error/failure
96 propagation). (issue 2576)
97
98 Fixed huge heap snapshot when a heavily shared context has many
99 variables. (Chromium issue 145687)
100
101 Performance and stability improvements on all platforms.
102
103
ulan@chromium.org6e196bf2013-03-13 09:38:22 +00001042013-03-13: Version 3.17.10
105
106 Fixed heap snapshot creation for Harmony collections. (issue 2535)
107
108 Fixed register allocation corner case. (Chromium issue 177883)
109
110 Performance and stability improvements on all platforms.
111
112
svenpanne@chromium.org9faefa42013-03-08 13:13:16 +00001132013-03-08: Version 3.17.9
114
115 Restored Function()'s expected string representation. (issue 2470)
116
117 Enabled deprecatations (again). (issue 2487)
118
119 Avoid bool to Oddball conversions by being lazy. (issue 2491)
120
121 Added %p option to --logfile.
122
123 Hardened Function()'s parsing of function literals. (issue 2470)
124
125 ES6 symbols: Refine test for getOwnPropertyNames. (issue 2158)
126
127 Performance and stability improvements on all platforms.
128
129
ulan@chromium.org750145a2013-03-07 15:14:13 +00001302013-03-07: Version 3.17.8
131
132 Added missing license headers. (Chromium issue 98597)
133
134 Inserted missing type cast in JSON.stringify. (issue 2570)
135
136 Reverted "Send SIGPROF signals on the profiler event processor thread"
137 (issue 2571)
138
139 Fixed Array.length, String.length and Function.prototype LoadICs on x64.
140 (issue 2568)
141
142 ES6 symbols: filter symbols form for-in loops and Object.keys.
143 (issue 2158)
144
145 Properly handle misses for StoreArrayLengthStub on ia32 and x64
146 (issue 2566)
147
148 Fixed x32 handling of Atomic64. (Chromium issue chromium-os:36866)
149
150 Removed "library" variable from standalone.gypi. (Chromium issue 111541)
151
152 Fixed HCheckSmiOrInt <-> HBoundsCheck interaction wrt. representations.
153 (issue 2556)
154
155 Enabled zapping of disposed global handles in release mode.
156 (Chromium issue 176056)
157
158 Added workaround for redefinition of __proto__ property. (issue 2565)
159
160 ES6 symbols: Allow symbols as property names. (issue 2158)
161
162 Performance and stability improvements on all platforms.
163
164
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +00001652013-03-04: Version 3.17.7
166
167 Limited recursion in regexp compilation by a budget.
168 (Chromium issue 178790)
169
170 ES6 symbols: Implemented Symbol intrinsic and basic functionality
171 (issue 2158)
172
173 Performance and stability improvements on all platforms.
174
175
hpayer@chromium.org8432c912013-02-28 15:55:26 +00001762013-02-28: Version 3.17.6
177
178 Fixed materialization of arguments objects with unknown values.
179 (Chromium issue 163530)
180
181 Set default number of sweeper threads to at most four.
182
183 Performance and stability improvements on all platforms.
184
185
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +00001862013-02-27: Version 3.17.5
187
188 Made __proto__ a foreign callback on Object.prototype.
189 (issue 621, issue 1949 and issue 2441)
190
191 Performance and stability improvements on all platforms.
192
193
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00001942013-02-25: Version 3.17.4
195
196 Performance and stability improvements on all platforms.
197
198
ulan@chromium.org2e04b582013-02-21 14:06:02 +00001992013-02-21: Version 3.17.3
200
201 Performance and stability improvements on all platforms.
202
203
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +00002042013-02-19: Version 3.17.2
205
206 Removed bogus check for TOP register in deoptimizer.
207 (Chromium issue 176943)
208
209 Made the Isolate parameter mandatory for internal HandleScopes.
210 (issue 2487)
211
212 Fixed f.apply() optimization when declared arguments are mutated.
213 (issue 2539)
214
215 Performance and stability improvements on all platforms.
216
217
ulan@chromium.org6ba1fd02013-02-14 14:56:11 +00002182013-02-14: Version 3.17.1
219
220 Performance and stability improvements on all platforms.
221
222
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00002232013-02-13: Version 3.17.0
224
225 Enabled parallel sweeping.
226
227 Don't try to unlink instructions twice during GVN
228 (Chromium issue 175141)
229
230 Fixed code flusher disabling while marking incrementally.
231 (Chromium issue 173458, 168582)
232
233 Don't use TLS for space iterators.
234 (issue 2531)
235
236 Added new GetHeapStatistics API entry and deprecated old one.
237
238 Fixed DoubleStackSlot-to-DoubleStackSlot moves on ia32. Unified
239 platform-independent code.
240 (Chromium issue 173907)
241
242 Added --trace-array-abuse to help find OOB accesses.
243
244 Performance and stability improvements on all platforms.
245
246
mmassi@chromium.org2f0efde2013-02-06 14:12:58 +00002472013-02-06: Version 3.16.14
248
249 Performance and stability improvements on all platforms.
250
251
danno@chromium.org94b0d6f2013-02-04 13:33:20 +00002522013-02-04: Version 3.16.13
253
254 Tagged stubs that rely on instance types as MEGAMORPHIC.
255 (Chromium issue 173974)
256
257 Fixed clearing of dead dependent codes and verifing of weak
258 embedded maps on full GC. (Chromium issue 172488,172489)
259
260 Made the arm port build cleanly with Clang.
261
262 Performance and stability improvements on all platforms.
263
264
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +00002652013-01-31: Version 3.16.12
266
267 Performance and stability improvements on all platforms.
268
269
mstarzinger@chromium.org068ea0a2013-01-30 09:39:44 +00002702013-01-30: Version 3.16.11
271
272 Put making embedded maps in optimized code weak behind a flag.
273 (Chromium issue 172488,172489)
274
275 Performance and stability improvements on all platforms.
276
277
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +00002782013-01-25: Version 3.16.10
279
280 Avoid excessive memory usage during redundant phi elimination.
281 (issue 2510)
282
283 Fixed additional spec violations wrt RegExp.lastIndex.
284 (issue 2437)
285
286 Added Isolate parameter to Persistent class.
287 (issue 2487)
288
289 Performance and stability improvements on all platforms.
290
291
yangguo@chromium.org003650e2013-01-24 16:31:08 +00002922013-01-24: Version 3.16.9
293
294 Made embedded maps in optimized code weak.
295 (issue 2073)
296
297 Fixed corner case when JSFunction is evicted from flusher.
298 (Chromium issue 168801)
299
300 Correctly set kCanBeDivByZero flag for HMathFloorOfDiv.
301 (Chromium issue 171641)
302
303 Performance and stability improvements on all platforms.
304
305
mvstanton@chromium.org6bec0092013-01-23 13:46:53 +00003062013-01-23: Version 3.16.8
307
308 Correctly reset lastIndex in an RegExp object.
309 (Chromium issue 170856)
310
311 Added a workaround for Windows compilation problems related to V8EXPORT.
312 (issue 2507)
313
314 tools/run-tests.py: shlex.split() the value of --command-prefix
315 (Chromium issue 171553)
316
317 Fixed pattern detection for replacing shifts by rotation.
318 (Chromium issue 2499)
319
320 Performance and stability improvements on all platforms.
321
322
yangguo@chromium.org28381b42013-01-21 14:39:38 +00003232013-01-21: Version 3.16.7
324
325 Removed <(library) usage from v8.gyp.
326 (Chromium issue 111541)
327
328 Fixed out of bounds memory access in TestJSArrayForAllocationSiteInfo.
329 (Chromium issue 169928)
330
331 Performance and stability improvements on all platforms.
332
333
yangguo@chromium.org46a2a512013-01-18 16:29:40 +00003342013-01-18: Version 3.16.6
335
336 Made the Isolate parameter mandatory in Locker and Unlocker classes.
337 (issue 2487)
338
339 Avoid pointer underflow in CopyCharsUnsigned.
340 (issue 2493)
341
342 Generate shim headers when using system v8.
343 (Chromium issue 165264)
344
345 Fixed arguments materialization for inlined apply().
346 (issue 2489)
347
348 Sync'ed laziness between BuildFunctionInfo and MakeFunctionInfo.
349 (Chromium issue 147497)
350
351 Added sanity check to CodeFlusher::AddCandidate.
352 (Chromium issue 169209)
353
354 Performance and stability improvements on all platforms.
355
356
3572013-01-15: Version 3.16.5
358
359 Removed deprecated functions from V8's external API.
360
361 Prepared API for WebKit use of Latin-1.
362
363 Fixed V8 issue 2486.
364
365 Fixed Chromium issue 169723.
366
367 Performance and stability improvements on all platforms.
368
369
yangguo@chromium.org9768bf12013-01-11 14:51:07 +00003702013-01-11: Version 3.16.4
371
372 Fixed Chromium issues 168545 and 169209.
373
374 Performance and stability improvements on all platforms.
375
376
jkummerow@chromium.org59297c72013-01-09 16:32:23 +00003772013-01-09: Version 3.16.3
378
379 Improved GC performance when moving parts of a FixedArray (issue 2452).
380
381 Enabled readline on d8 while building a shared lib (issue 1781).
382
383 Fixed missing exception check in typed array constructor
384 (Chromium issue 168545).
385
386 Check for read-only-ness when preparing for array sort (issue 2419).
387
388 Performance and stability improvements on all platforms.
389
390
yangguo@chromium.org4cd70b42013-01-04 08:57:54 +00003912013-01-04: Version 3.16.2
392
393 Added Makefile options to build for the Raspberry Pi (armv7=0,
394 arm_fpu=vfp2).
395
396 Performance and stability improvements on all platforms.
397
398
ulan@chromium.org4121f232012-12-27 15:57:11 +00003992012-12-27: Version 3.16.1
400
401 Fixed x64 MathMinMax for negative untagged int32 arguments.
402 (Chromium issue 164442)
403
404 Fixed FloatingPointHelper::CheckSSE2OperandIsInt32.
405 (issue 2458)
406
407 Performance and stability improvements on all platforms.
408
409
yangguo@chromium.org9b8fc9f2012-12-21 13:47:00 +00004102012-12-21: Version 3.16.0
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000411
412 V8_Fatal now prints C++ stack trace in debug mode.
413
414 Added HTML-based tick processor.
415
416 Continued implementation of Object.observe (V8 issue 2409).
417
418 Fixed V8 issues 2243, 2340, 2393, 2399, 2457.
419
420 Fixed Chromium issues 125308, 165637, 166379, 166553.
421
422 Performance and stability improvements on all platforms.
423
424
jkummerow@chromium.org5323a9c2012-12-10 19:00:50 +00004252012-12-10: Version 3.15.11
426
427 Define CAN_USE_VFP2/3_INSTRUCTIONS based on arm_neon and arm_fpu GYP
428 flags.
429
430 Performance and stability improvements on all platforms.
431
432
rossberg@chromium.orgcddc71f2012-12-07 12:40:13 +00004332012-12-07: Version 3.15.10
434
435 Enabled optimisation of functions inside eval. (issue 2315)
436
437 Fixed spec violations in methods of Number.prototype. (issue 2443)
438
439 Added GCTracer metrics for a scavenger GC for DOM wrappers.
440
441 Performance and stability improvements on all platforms.
442
443
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +00004442012-12-06: Version 3.15.9
445
446 Fixed candidate eviction in code flusher.
447 (Chromium issue 159140)
448
449 Iterate through all arguments for side effects in Math.min/max.
450 (issue 2444)
451
452 Fixed spec violations related to regexp.lastIndex
453 (issue 2437, issue 2438)
454
455 Performance and stability improvements on all platforms.
456
457
mmassi@chromium.org49a44672012-12-04 13:52:03 +00004582012-12-04: Version 3.15.8
459
460 Enforced stack allocation of TryCatch blocks.
461 (issue 2166,chromium:152389)
462
463 Fixed external exceptions in external try-catch handlers.
464 (issue 2166)
465
466 Activated incremental code flushing by default.
467
468 Performance and stability improvements on all platforms.
469
470
svenpanne@chromium.org83130cf2012-11-30 10:13:25 +00004712012-11-30: Version 3.15.7
472
473 Activated code aging by default.
474
475 Included more information in --prof log.
476
477 Removed eager sweeping for lazy swept spaces. Try to find in
478 SlowAllocateRaw a bounded number of times a big enough memory slot.
479 (issue 2194)
480
481 Performance and stability improvements on all platforms.
482
483
danno@chromium.org1f34ad32012-11-26 14:53:56 +00004842012-11-26: Version 3.15.6
485
486 Ensure double arrays are filled with holes when extended from
487 variations of empty arrays. (Chromium issue 162085)
488
489 Performance and stability improvements on all platforms.
490
491
ulan@chromium.org8e8d8822012-11-23 14:36:46 +00004922012-11-23: Version 3.15.5
493
494 Fixed JSON.stringify for objects with interceptor handlers.
495 (Chromium issue 161028)
496
497 Fixed corner case in x64 compare stubs. (issue 2416)
498
499 Performance and stability improvements on all platforms.
500
501
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00005022012-11-16: Version 3.15.4
503
504 Fixed Array.prototype.join evaluation order. (issue 2263)
505
506 Perform CPU sampling by CPU sampling thread only iff processing thread
507 is not running. (issue 2364)
508
509 When using an Object as a set in Object.getOwnPropertyNames, null out
510 the proto. (issue 2410)
511
512 Disabled EXTRA_CHECKS in Release build.
513
514 Heap explorer: Show representation of strings.
515
516 Removed 'type' and 'arguments' properties from Error object.
517 (issue 2397)
518
519 Added atomics implementation for ThreadSanitizer v2.
520 (Chromium issue 128314)
521
522 Fixed LiveEdit crashes when object/array literal is added. (issue 2368)
523
524 Performance and stability improvements on all platforms.
525
526
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +00005272012-11-13: Version 3.15.3
528
529 Changed sample shell to send non-JS output (e.g. errors) to stderr
530 instead of stdout.
531
532 Correctly check for stack overflow even when interrupt is pending.
533 (issue 214)
534
535 Collect stack trace on stack overflow. (issue 2394)
536
537 Performance and stability improvements on all platforms.
538
539
mvstanton@chromium.orge4ac3ef2012-11-12 14:53:34 +00005402012-11-12: Version 3.15.2
541
542 Function::GetScriptOrigin supplies sourceURL when script name is
543 not available. (Chromium issue 159413)
544
545 Made formatting error message side-effect-free. (issue 2398)
546
547 Fixed length check in JSON.stringify. (Chromium issue 160010)
548
549 ES6: Added support for Set and Map clear method (issue 2400)
550
551 Fixed slack tracking when instance prototype changes.
552 (Chromium issue 157019)
553
554 Fixed disabling of code flusher while marking. (Chromium issue 159140)
555
556 Added a test case for object grouping in a scavenger GC (issue 2077)
557
558 Support shared library build of Android for v8.
559 (Chromium issue 158821)
560
561 ES6: Added support for size to Set and Map (issue 2395)
562
563 Performance and stability improvements on all platforms.
564
565
verwaest@chromium.orge4ee6de2012-11-06 12:13:00 +00005662012-11-06: Version 3.15.1
567
568 Put incremental code flushing behind a flag. (Chromium issue 159140)
569
570 Performance and stability improvements on all platforms.
571
572
danno@chromium.org72204d52012-10-31 10:02:10 +00005732012-10-31: Version 3.15.0
574
575 Loosened aligned code target requirement on ARM (issue 2380)
576
577 Fixed JSON.parse to treat leading zeros correctly.
578 (Chromium issue 158185)
579
580 Performance and stability improvements on all platforms.
581
582
rossberg@chromium.org89e18f52012-10-22 13:09:53 +00005832012-10-22: Version 3.14.5
584
585 Killed off the SCons based build.
586
587 Added a faster API for creating v8::Integer objects.
588
589 Speeded up function deoptimization by avoiding quadratic pass over
590 optimized function list. (Chromium issue 155270)
591
592 Always invoke the default Array.sort functions from builtin functions.
593 (issue 2372)
594
595 Reverted recent CPU profiler changes because they broke --prof.
596 (issue 2364)
597
598 Switched code flushing to use different JSFunction field.
599 (issue 1609)
600
601 Performance and stability improvements on all platforms.
602
603
svenpanne@chromium.orgc859c4f2012-10-15 11:51:39 +00006042012-10-15: Version 3.14.4
605
606 Allow evals for debugger even if they are prohibited in the debugee
607 context. (Chromium issue 154733)
608
609 Enabled --verify-heap in release mode (issue 2120)
610
611 Performance and stability improvements on all platforms.
612
613
jkummerow@chromium.orgc1956672012-10-11 15:57:38 +00006142012-10-11: Version 3.14.3
615
616 Use native context to retrieve ErrorMessageForCodeGenerationFromStrings
617 (Chromium issue 155076).
618
619 Bumped variable limit further to 2^17 (Chromium issue 151625).
620
621 Performance and stability improvements on all platforms.
622
623
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00006242012-10-10: Version 3.14.2
625
626 ARM: allowed VFP3 instructions when hardfloat is enabled.
627 (Chromium issue 152506)
628
629 Fixed instance_descriptors() and PushStackTraceAndDie regressions.
630 (Chromium issue 151749)
631
632 Made GDBJIT interface compile again. (issue 1804)
633
634 Fixed Accessors::FunctionGetPrototype's proto chain traversal.
635 (Chromium issue 143967)
636
637 Made sure that names of temporaries do not clash with real variables.
638 (issue 2322)
639
640 Rejected local module declarations. (Chromium issue 150628)
641
642 Rejected uses of lexical for-loop variable on the RHS. (issue 2322)
643
644 Fixed slot recording of code target patches.
645 (Chromium issue 152615,chromium:144230)
646
647 Changed the Android makefile to use GCC 4.6 instead of GCC 4.4.3.
648
649 Performance and stability improvements on all platforms.
650
651
jkummerow@chromium.org7a96c2a2012-10-01 16:24:39 +00006522012-10-01: Version 3.14.1
653
654 Don't set -m32 flag when compiling with Android ARM compiler.
655 (Chromium issue 143889)
656
657 Restore the descriptor array before returning allocation failure.
658 (Chromium issue 151750)
659
660 Lowered kMaxVirtualRegisters (v8 issue 2139, Chromium issues 123822 and
661 128252).
662
663 Pull more recent gyp in 'make dependencies'.
664
665 Made sure that the generic KeyedStoreIC changes length and element_kind
666 atomically (issue 2346).
667
668 Bumped number of allowed variables per scope to 65535, to address GWT.
669 (Chromium issue 151625)
670
671 Support sourceURL for dynamically inserted scripts (issue 2342).
672
673 Performance and stability improvements on all platforms.
674
675
ulan@chromium.org56c14af2012-09-20 12:51:09 +00006762012-09-20: Version 3.14.0
677
678 Fixed missing slot recording during clearing of CallICs.
679 (Chromium issue 144230)
680
681 Fixed LBoundsCheck on x64 to handle (stack slot + constant) correctly.
682 (Chromium issue 150729)
683
684 Fixed minus zero test. (Issue 2133)
685
686 Fixed setting array length to zero for slow elements.
687 (Chromium issue 146910)
688
689 Fixed lost arguments dropping in HLeaveInlined.
690 (Chromium issue 150545)
691
692 Fixed casting error for receiver of interceptors.
693 (Chromium issue 149912)
694
695 Throw a more descriptive exception when blocking 'eval' via CSP.
696 (Chromium issue 140191)
697
698 Fixed debugger's eval when close to stack overflow. (issue 2318)
699
700 Added checks to live edit. (issue 2297)
701
702 Switched on code compaction on incremental GCs.
703
704 Fixed caching of optimized code for OSR. (issue 2326)
705
706 Not mask exception thrown by toString in String::UtfValue etc.
707 (issue 2317)
708
709 Fixed API check for length of external arrays. (Chromium issue 148896)
710
711 Ensure correct enumeration indices in the dict (Chromium issue 148376)
712
713 Correctly initialize regexp global cache. (Chromium issue 148378)
714
715 Fixed arguments object materialization during deopt. (issue 2261)
716
717 Introduced new API to expose external string resource regardless of
718 encoding.
719
720 Fixed CHECK failure in LCodeGen::DoWrapReceiver when
721 --deopt-every-n-times flag is present
722 (Chromium issue 148389)
723
724 Fixed edge case of extension with NULL as source string.
725 (Chromium issue 144649)
726
727 Fixed array index dehoisting. (Chromium issue 141395)
728
729 Performance and stability improvements on all platforms.
730
731
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +00007322012-09-11: Version 3.13.7
733
734 Enable/disable LiveEdit using the (C++) debug API.
735
736 Performance and stability improvements on all platforms.
737
738
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00007392012-09-06: Version 3.13.6
740
741 Added validity checking to API functions and calls.
742
743 Disabled accessor inlining (Chromium issue 134609).
744
745 Fixed bug in Math.min/max in optimized code (Chromium issue 145961).
746
747 Directly use %ObjectKeys in json stringify (Chromium issue 2312).
748
749 Fixed VS2005 build (issue 2313).
750
751 Activated fixed ES5 readonly semantics by default.
752
753 Added hardfp flag to the Makefile.
754
755 Performance and stability improvements on all platforms.
756
757
yangguo@chromium.org355cfd12012-08-29 15:32:24 +00007582012-08-29: Version 3.13.5
759
760 Release stack trace data after firing Error.stack accessor.
761 (issue 2308)
762
763 Added a new API V8::SetJitCodeEventHandler to push code name and
764 location to users such as profilers.
765
766 Allocate block-scoped global bindings to global context.
767
768 Performance and stability improvements on all platforms.
769
770
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00007712012-08-28: Version 3.13.4
772
773 Print reason for disabling optimization. Kill --trace-bailout flag.
774
775 Provided option to disable full DEBUG build on Android.
776
777 Introduced global contexts to represent lexical global scope(s).
778
779 Fixed rounding in Uint8ClampedArray setter. (issue 2294)
780
781 Performance and stability improvements on all platforms.
782
783
yangguo@chromium.org08eb1962012-08-21 11:19:20 +00007842012-08-21: Version 3.13.3
785
786 Performance and stability improvements on all platforms.
787
788
7892012-08-20: Version 3.13.2
790
791 Performance and stability improvements on all platforms.
792
793
verwaest@chromium.orgde64f722012-08-16 15:44:54 +00007942012-08-16: Version 3.13.1
795
796 Performance and stability improvements on all platforms.
797
798
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +00007992012-08-10: Version 3.13.0
800
801 Added histograms for total allocated/live heap size, as well as
802 allocated size and percentage of total for map and cell space.
803
804 Fixed parseInt's octal parsing behavior (ECMA-262 Annex E 15.1.2.2).
805 (issue 1645)
806
807 Added checks for interceptors to negative lookup code in Crankshaft.
808 (Chromium issue 140473)
809
810 Made incremental marking clear ICs and type feedback cells.
811
812 Performance and stability improvements on all platforms.
813
814
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +00008152012-08-01: Version 3.12.19
816
817 Performance and stability improvements on all platforms.
818
819
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +00008202012-07-30: Version 3.12.18
821
822 Forced using bit-pattern for signed zero double. (issue 2239)
823
824 Made sure double to int conversion is correct. (issue 2260)
825
826 Performance and stability improvements on all platforms.
827
828
verwaest@chromium.orgb6d052d2012-07-27 08:03:27 +00008292012-07-27: Version 3.12.17
830
831 Always set the callee's context when calling a function from optimized
832 code.
833 (Chromium issue 138887)
834
835 Fixed building with GCC 3.x
836 (issue 2016, 2017)
837
838 Improved API calls that return empty handles.
839 (issue 2245)
840
841 Performance and stability improvements on all platforms.
842
843
danno@chromium.org129d3982012-07-25 15:01:47 +00008442012-07-25: Version 3.12.16
845
846 Performance and stability improvements on all platforms.
847
848
yangguo@chromium.org304cc332012-07-24 07:59:48 +00008492012-07-24: Version 3.12.15
850
851 Added PRESERVE_ASCII_NULL option to String::WriteAscii.
852 (issue 2252)
853
854 Added dependency to HLoadKeyed* instructions to prevent invalid
855 hoisting. (Chromium issue 137768)
856
857 Enabled building d8 for Android on Mac.
858
859 Interpret negative hexadecimal literals as NaN.
860 (issue 2240)
861
862 Expose counters in javascript when using --track-gc-object-stats.
863
864 Enabled building and testing V8 on Android IA.
865
866 Added --trace-parse flag to parser.
867
868 Performance and stability improvements on all platforms.
869
870
verwaest@chromium.org178fb152012-07-18 11:21:48 +00008712012-07-18: Version 3.12.14
872
873 Deactivated optimization of packed arrays.
874 (Chromium issue 137768)
875
876 Fixed broken accessor transition.
877 (Chromium issue 137689)
878
879 Performance and stability improvements on all platforms.
880
881
verwaest@chromium.org753aee42012-07-17 16:15:42 +00008822012-07-17: Version 3.12.13
883
884 Fixed missing tagging of stack value in finally block.
885 (Chromium issue 137496)
886
887 Added more support for heap analysis.
888
889 Performance and stability improvements on all platforms.
890
891
jkummerow@chromium.org28583c92012-07-16 11:31:55 +00008922012-07-16: Version 3.12.12
893
894 Added an option to the tickprocessor to specify the directory for lib
895 lookup.
896
897 Fixed ICs for slow objects with native accessor (Chromium issue 137002).
898
899 Fixed transcendental cache on ARM in optimized code (issue 2234).
900
901 New heap inspection tools: counters for object sizes and counts,
902 histograms for external fragmentation.
903
904 Incorporated constness into inferred interfaces (in preparation for
905 handling imports) (issue 1569).
906
907 Performance and stability improvements on all platforms.
908
909
rossberg@chromium.org657d53b2012-07-12 11:06:03 +00009102012-07-12: Version 3.12.11
911
912 Renamed "mips" arch to "mipsel" in the GYP build.
913
914 Fixed computation of call targets on prototypes in Crankshaft.
915 (Chromium issue 125148)
916
917 Removed use of __lookupGetter__ when generating stack trace.
918 (issue 1591)
919
920 Turned on ES 5.2 globals semantics by default.
921 (issue 1991, Chromium issue 80591)
922
923 Synced preparser and parser wrt syntax error in switch..case.
924 (issue 2210)
925
926 Fixed reporting of octal literals in strict mode when preparsing.
927 (issue 2220)
928
929 Fixed inline constructors for Harmony Proxy prototypes.
930 (issue 2225)
931
932 Performance and stability improvements on all platforms.
933
934
danno@chromium.org81cac2b2012-07-10 11:28:27 +00009352012-07-10: Version 3.12.10
936
937 Re-enabled and fixed issue with array bounds check elimination
938 (Chromium issue 132114).
939
940 Fixed Debug::Break crash. (Chromium issue 131642)
941
942 Added optimizing compiler support for JavaScript getters.
943
944 Performance and stability improvements on all platforms.
945
946
yangguo@chromium.org99aa4902012-07-06 16:21:55 +00009472012-07-06: Version 3.12.9
948
949 Correctly advance the scanner when scanning unicode regexp flag.
950 (Chromium issue 136084)
951
952 Fixed unhandlified code calling Harmony Proxy traps.
953 (issue 2219)
954
955 Performance and stability improvements on all platforms.
956
957
svenpanne@chromium.org619781a2012-07-05 08:22:44 +00009582012-07-05: Version 3.12.8
959
960 Implemented TypedArray.set and ArrayBuffer.slice in d8.
961
962 Performance and stability improvements on all platforms.
963
964
mstarzinger@chromium.orgc6d9cee2012-07-03 10:03:19 +00009652012-07-03: Version 3.12.7
966
967 Fixed lazy compilation for strict eval scopes.
968 (Chromium issue 135066)
969
970 Made MACOSX_DEPLOYMENT_TARGET configurable in GYP.
971 (issue 2151)
972
973 Report "hidden properties" in heap profiler for properties case.
974 (issue 2212)
975
976 Activated optimization of packed arrays by default.
977
978 Performance and stability improvements on all platforms.
979
980
yangguo@chromium.orgc74d6742012-06-29 15:15:45 +00009812012-06-29: Version 3.12.6
982
983 Cleaned up hardfp ABI detection for ARM (V8 issue 2140).
984
985 Extended TypedArray support in d8.
986
987
yangguo@chromium.org9c741c82012-06-28 15:04:22 +00009882012-06-28: Version 3.12.5
989
990 Fixed lazy parsing heuristics to respect outer scope.
991 (Chromium issue 135008)
992
993 Allow using test-wrapper-gypbuild.py on Windows when no python
994 interpreter is registered.
995
996 Performance and stability improvements on all platforms.
997
998
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +00009992012-06-27: Version 3.12.4
1000
1001 Removed -fomit-frame-pointer flag from Release builds to make
1002 the stack walkable by TCMalloc (Chromium issue 133723).
1003
1004 Ported r7868 (constant masking) to x64 (issue 1374).
1005
1006 Expose more detailed memory statistics (issue 2201).
1007
1008 Fixed Harmony Maps and WeakMaps for undefined values
1009 (Chromium issue 132744).
1010
1011 Correctly throw reference error in strict mode with ICs disabled
1012 (issue 2119).
1013
1014 Performance and stability improvements on all platforms.
1015
1016
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +000010172012-06-25: Version 3.12.3
1018
1019 Reverted r11835 'Unify promotion and allocation limit computation' due
1020 to V8 Splay performance regression on Mac. (Chromium issue 134183)
1021
1022 Fixed sharing of literal boilerplates for optimized code. (issue 2193)
1023
1024 Performance and stability improvements on all platforms.
1025
1026
yangguo@chromium.orgde0db002012-06-22 13:44:28 +000010272012-06-22: Version 3.12.2
1028
1029 Made near-jump check more strict in LoadNamedFieldPolymorphic on
1030 ia32/x64. (Chromium issue 134055)
1031
1032 Fixed lazy sweeping heuristics to prevent old-space expansion.
1033 (issue 2194)
1034
1035 Performance and stability improvements on all platforms.
1036
1037
yangguo@chromium.orgd2899aa2012-06-21 11:16:20 +000010382012-06-21: Version 3.12.1
1039
1040 Performance and stability improvements on all platforms.
1041
1042
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +000010432012-06-20: Version 3.12.0
1044
1045 Fixed Chromium issues:
1046 115100, 129628, 131994, 132727, 132741, 132742, 133211
1047
1048 Fixed V8 issues:
1049 915, 1914, 2034, 2087, 2094, 2134, 2156, 2166, 2172, 2177, 2179, 2185
1050
1051 Added --extra-code flag to mksnapshot to load JS code into the VM
1052 before creating the snapshot.
1053
1054 Support 'restart call frame' command in the debugger.
1055
1056 Performance and stability improvements on all platforms.
1057
1058
mmassi@chromium.org7028c052012-06-13 11:51:58 +000010592012-06-13: Version 3.11.10
1060
1061 Implemented heap profiler memory usage reporting.
1062
1063 Preserved error message during finally block in try..finally.
1064 (Chromium issue 129171)
1065
1066 Fixed EnsureCanContainElements to properly handle double values.
1067 (issue 2170)
1068
1069 Improved heuristics to keep objects in fast mode with inherited
1070 constructors.
1071
1072 Performance and stability improvements on all platforms.
1073
1074
rossberg@chromium.org400388e2012-06-06 09:29:22 +000010752012-06-06: Version 3.11.9
1076
1077 Implemented ES5-conformant semantics for inherited setters and read-only
1078 properties. Currently behind --es5_readonly flag, because it breaks
1079 WebKit bindings.
1080
1081 Exposed last seen heap object id via v8 public api.
1082
1083 Performance and stability improvements on all platforms.
1084
1085
verwaest@chromium.org37141392012-05-31 13:27:02 +000010862012-05-31: Version 3.11.8
1087
1088 Avoid overdeep recursion in regexp where a guarded expression with a
1089 minimum repetition count is inside another quantifier.
1090 (Chromium issue 129926)
1091
1092 Fixed missing write barrier in store field stub.
1093 (issues 2143, 1465, Chromium issue 129355)
1094
1095 Proxies: Fixed receiver for setters inherited from proxies.
1096 Proxies: Fixed ToStringArray function so that it does not reject some
1097 keys.
1098 (issue 1543)
1099
1100 Performance and stability improvements on all platforms.
1101
1102
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +000011032012-05-29: Version 3.11.7
1104
1105 Get better function names in stack traces.
1106
1107 Performance and stability improvements on all platforms.
1108
1109
jkummerow@chromium.org777db6f2012-05-24 09:33:09 +000011102012-05-24: Version 3.11.6
1111
1112 Fixed RegExp.prototype.toString for incompatible receivers
1113 (issue 1981).
1114
1115 Performance and stability improvements on all platforms.
1116
1117
mstarzinger@chromium.org15613d02012-05-23 12:04:37 +000011182012-05-23: Version 3.11.5
1119
1120 Performance and stability improvements on all platforms.
1121
1122
ulan@chromium.org0e3f88b2012-05-22 09:16:05 +000011232012-05-22: Version 3.11.4
1124
1125 Some cleanup to common.gypi. This fixes some host/target combinations
1126 that weren't working in the Make build on Mac.
1127
1128 Handle EINTR in socket functions and continue incomplete sends.
1129 (issue 2098)
1130
1131 Fixed python deprecations. (issue 1391)
1132
1133 Made socket send and receive more robust and return 0 on failure.
1134 (Chromium issue 15719)
1135
1136 Fixed GCC 4.7 (C++11) compilation. (issue 2136)
1137
1138 Set '-m32' option for host and target platforms
1139
1140 Performance and stability improvements on all platforms.
1141
1142
ulan@chromium.orgd6899c32012-05-18 14:12:25 +000011432012-05-18: Version 3.11.3
1144
1145 Disable optimization for functions that have scopes that cannot be
1146 reconstructed from the context chain. (issue 2071)
1147
1148 Define V8_EXPORT to nothing for clients of v8. (Chromium issue 90078)
1149
1150 Correctly check for native error objects. (Chromium issue 2138)
1151
1152 Performance and stability improvements on all platforms.
1153
1154
yangguo@chromium.org5f0b8ea2012-05-16 12:37:04 +000011552012-05-16: Version 3.11.2
1156
1157 Revert r11496. (Chromium issue 128146)
1158
1159 Implement map collection for incremental marking. (issue 1465)
1160
1161 Add toString method to CallSite (which describes a frame of the
1162 stack trace).
1163
1164
yangguo@chromium.orgcb9affa2012-05-15 12:16:38 +000011652012-05-15: Version 3.11.1
1166
1167 Added a readbuffer function to d8 that reads a file into an ArrayBuffer.
1168
1169 Fix freebsd build. (V8 issue 2126)
1170
1171 Performance and stability improvements on all platforms.
1172
1173
jkummerow@chromium.org212d9642012-05-11 15:02:09 +000011742012-05-11: Version 3.11.0
1175
1176 Fixed compose-discard crasher from r11524 (issue 2123).
1177
1178 Activated new global semantics by default. Global variables can
1179 now shadow properties of the global object (ES5.1 erratum).
1180
1181 Properly set ElementsKind of empty FAST_DOUBLE_ELEMENTS arrays when
1182 transitioning (Chromium issue 117409).
1183
1184 Made Error.prototype.name writable again, as required by the spec and
1185 the web (Chromium issue 69187).
1186
1187 Implemented map collection with incremental marking (issue 1465).
1188
1189 Regexp: Fixed overflow in min-match-length calculation
1190 (Chromium issue 126412).
1191
1192 MIPS: Fixed illegal instruction use on Loongson in code for
1193 Math.random() (issue 2115).
1194
1195 Fixed crash bug in VisitChoice (Chromium issue 126272).
1196
1197 Fixed unsigned-Smi check in MappedArgumentsLookup
1198 (Chromium issue 126414).
1199
1200 Fixed LiveEdit for function with no locals (issue 825).
1201
1202 Fixed register clobbering in LoadIC for interceptors
1203 (Chromium issue 125988).
1204
1205 Implemented clearing of CompareICs (issue 2102).
1206
1207 Performance and stability improvements on all platforms.
1208
1209
danno@chromium.org2c26cb12012-05-03 09:06:43 +000012102012-05-03: Version 3.10.8
1211
1212 Enabled MIPS cross-compilation.
1213
1214 Ensured reload of elements pointer in StoreFastDoubleElement stub.
1215 (Chromium issue 125515)
1216
1217 Fixed corner cases in truncation behavior when storing to
1218 TypedArrays. (issue 2110)
1219
1220 Fixed failure to properly recognize and report out-of-memory
1221 conditions when allocating code space pages. (Chromium issue
1222 118625)
1223
1224 Fixed idle notifications to perform a round of incremental GCs
1225 after context disposal. (issue 2107)
1226
1227 Fixed preparser for try statement. (issue 2109)
1228
1229 Performance and stability improvements on all platforms.
1230
1231
danno@chromium.org1044a4d2012-04-30 12:34:39 +000012322012-04-30: Version 3.10.7
1233
1234 Performance and stability improvements on all platforms.
1235
1236
yangguo@chromium.orgefdb9d72012-04-26 08:21:05 +000012372012-04-26: Version 3.10.6
1238
1239 Fixed some bugs in accessing details of the last regexp match.
1240
1241 Fixed source property of empty RegExp objects. (issue 1982)
1242
1243 Enabled inlining some V8 API functions.
1244
1245 Performance and stability improvements on all platforms.
1246
1247
mstarzinger@chromium.org88d326b2012-04-23 12:57:22 +000012482012-04-23: Version 3.10.5
1249
1250 Put new global var semantics behind a flag until WebKit tests are
1251 cleaned up.
1252
1253 Enabled stepping into callback passed to builtins.
1254 (Chromium issue 109564)
1255
1256 Performance and stability improvements on all platforms.
1257
1258
svenpanne@chromium.orgfb046332012-04-19 12:02:44 +000012592012-04-19: Version 3.10.4
1260
1261 Fixed issues when stressing compaction with WeakMaps.
1262
1263 Fixed missing GVN flag for new-space promotion. (Chromium issue 123919)
1264
1265 Simplify invocation sequence at monomorphic function invocation sites.
1266 (issue 2079)
1267
1268 Performance and stability improvements on all platforms.
1269
1270
erik.corry@gmail.comed49e962012-04-17 11:57:53 +000012712012-04-17: Version 3.10.3
1272
1273 Fixed several bugs in heap profiles (including issue 2078).
1274
1275 Throw syntax errors on illegal escape sequences.
1276
1277 Implemented rudimentary module linking (behind --harmony flag)
1278
1279 Implemented ES5 erratum: Global declarations should shadow
1280 inherited properties.
1281
1282 Made handling of const more consistent when combined with 'eval'
1283 and 'with'.
1284
1285 Fixed V8 on MinGW-x64 (issue 2026).
1286
1287 Performance and stability improvements on all platforms.
1288
1289
jkummerow@chromium.org28faa982012-04-13 09:58:30 +000012902012-04-13: Version 3.10.2
1291
1292 Fixed native ARM build (issues 1744, 539)
1293
1294 Return LOOKUP variable instead of CONTEXT for non-context allocated
1295 outer scope parameters (Chromium issue 119609).
1296
1297 Fixed regular and ElementsKind transitions interfering with each other
1298 (Chromium issue 122271).
1299
1300 Improved performance of keyed loads/stores which have a HeapNumber
1301 index (issues 1388, 1295).
1302
1303 Fixed WeakMap processing for evacuation candidates (issue 2060).
1304
1305 Bailout on possible direct eval calls (Chromium issue 122681).
1306
1307 Do not assume that names of function expressions are context-allocated
1308 (issue 2051).
1309
1310 Performance and stability improvements on all platforms.
1311
1312
fschneider@chromium.org7d10be52012-04-10 12:30:14 +000013132012-04-10: Version 3.10.1
1314
1315 Fixed bug with arguments object in inlined functions (issue 2045).
1316
1317 Fixed performance bug with lazy initialization (Chromium issue
1318 118686).
1319
1320 Added suppport for Mac OS X 64bit builds with GYP.
1321 (Patch contributed by Filipe David Manana <fdmanana@gmail.com>)
1322
1323 Fixed bug with hidden properties (issue 2034).
1324
1325 Fixed a performance bug when reloading pages (Chromium issue 117767,
1326 V8 issue 1902).
1327
1328 Fixed bug when optimizing throw in top-level code (issue 2054).
1329
1330 Fixed two bugs with array literals (issue 2055, Chromium issue 121407).
1331
1332 Fixed bug with Math.min/Math.max with NaN inputs (issue 2056).
1333
1334 Fixed a bug with the new runtime profiler (Chromium issue 121147).
1335
1336 Fixed compilation of V8 using uClibc.
1337
1338 Optimized boot-up memory use.
1339
1340 Optimized regular expressions.
1341
1342
jkummerow@chromium.org1456e702012-03-30 08:38:13 +000013432012-03-30: Version 3.10.0
1344
1345 Fixed store IC writability check in strict mode
1346 (Chromium issue 120099).
1347
1348 Resynchronize timers if the Windows system time was changed.
1349 (Chromium issue 119815)
1350
1351 Removed "-mfloat-abi=hard" from host compiler cflags when building for
1352 hardfp ARM
1353 (https://code.google.com/p/chrome-os-partner/issues/detail?id=8539)
1354
1355 Fixed edge case for case independent regexp character classes
1356 (issue 2032).
1357
1358 Reset function info counters after context disposal.
1359 (Chromium issue 117767, V8 issue 1902)
1360
1361 Fixed missing write barrier in CopyObjectToObjectElements.
1362 (Chromium issue 119926)
1363
1364 Fixed missing bounds check in HasElementImpl.
1365 (Chromium issue 119925)
1366
1367 Performance and stability improvements on all platforms.
1368
1369
danno@chromium.org88aa0582012-03-23 15:11:57 +000013702012-03-23: Version 3.9.24
1371
1372 Activated count-based profiler for ARM.
1373
1374 Fixed use of proxies as f.prototype properties. (issue 2021)
1375
1376 Enabled snapshots on MIPS.
1377
1378 Performance and stability improvements on all platforms.
1379
1380
ulan@chromium.org6ff65142012-03-21 09:52:17 +000013812012-03-21: Version 3.9.23
1382
1383 Use correct arguments adaptation environment when inlining function
1384 containing arguments. (Issue 2014)
1385
1386 Performance and stability improvements on all platforms.
1387
1388
jkummerow@chromium.org531dfe82012-03-20 13:01:16 +000013892012-03-20: Version 3.9.22
1390
1391 Enabled count-based profiler by default.
1392
1393 Implemented a hash based look-up to speed up address checks
1394 in large object space (issue 853).
1395
1396 Performance and stability improvements on all platforms.
1397
1398
rossberg@chromium.org2c067b12012-03-19 11:01:52 +000013992012-03-19: Version 3.9.21
1400
1401 Fixed push-to-trunk script (and re-push).
1402
1403 Added API call that identifies strings that are guaranteed only to
1404 contain ASCII characters.
1405
1406
14072012-03-19: Version 3.9.20
1408
1409 Fixed declarations escaping global strict eval. (Issue 1624)
1410
1411 Fixed wrapping of receiver for non-strict callbacks. (Issue 1973)
1412
1413 Fixed function declarations overwriting read-only global properties.
1414 (Chromium issue 115452)
1415
1416 Fixed --use-strict flag in combination with --harmony[-scoping].
1417
1418 Debugger: naive implementation of "step into Function.prototype.bind".
1419
1420 Debugger: added ability to set script source from within OnBeforeCompile
1421
1422 Added flag to always call DebugBreak on abort.
1423
1424 Re-enabled constructor inlining and inline === comparison with boolean
1425 constants. (Issue 2009)
1426
1427 Don't use an explicit s0 in ClampDoubleToUint8. (Issue 2004)
1428
1429 Performance and stability improvements on all platforms.
1430
1431
mstarzinger@chromium.org3233d2f2012-03-14 11:16:03 +000014322012-03-14: Version 3.9.19
1433
1434 Ensure there is a smi check of the receiver for global load and call
1435 ICs (Chromium issue 117794).
1436
1437 Performance and stability improvements on all platforms.
1438
1439
yangguo@chromium.org154ff992012-03-13 08:09:54 +000014402012-03-13: Version 3.9.18
1441
1442 Ensure consistency of Math.sqrt on Intel platforms.
1443
1444 Remove static initializers in v8. (issue 1859)
1445
1446 Add explicit dependency on v8_base in the GYP-based build.
1447
1448 Performance and stability improvements on all platforms.
1449
1450
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +000014512012-03-12: Version 3.9.17
1452
1453 Fixed VFP detection through compiler defines. (issue 1996)
1454
1455 Add Code-related fields to postmortem metadata.
1456
1457 Performance and stability improvements on all platforms.
1458
1459
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000014602012-03-09: Version 3.9.16
1461
1462 Added basic interface inference for modules (behind the --harmony flag).
1463
1464 Added Object.is, Number.isFinite, Number.isNaN.
1465
1466 Updated the Unicode tables to Unicode version 6.1.0.
1467
1468 Performance and stability improvements on all platforms.
1469
1470
ulan@chromium.org9a21ec42012-03-06 08:42:24 +000014712012-03-06: Version 3.9.15
1472
1473 Fix the heap profiler crash caused by memory layout changes between
1474 passes.
1475
1476 Fix Error.prototype.toString to throw TypeError. (issue 1980)
1477
1478 Fix double-rounding in strtod for MinGW. (issue 1062)
1479
1480 Fix corrupted snapshot serializaton on ia32. (Chromium issue v8/1985)
1481
1482 Performance and stability improvements on all platforms.
1483
1484
fschneider@chromium.org35814e52012-03-01 15:43:35 +000014852012-03-01: Version 3.9.14
1486
1487 Performance and stability improvements on all platforms.
1488
1489
ulan@chromium.org812308e2012-02-29 15:58:45 +000014902012-02-29: Version 3.9.13
1491
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001492 Added code kind check before preparing for OSR. (issue 1900, 115073)
ulan@chromium.org812308e2012-02-29 15:58:45 +00001493
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001494 Fixed issue 1802: Pass zone explicitly to zone-allocation on x64 and
1495 ARM.
ulan@chromium.org812308e2012-02-29 15:58:45 +00001496
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001497 Ported string construct stub to x64. (issue 849)
ulan@chromium.org812308e2012-02-29 15:58:45 +00001498
1499 Performance and stability improvements on all platforms.
1500
1501
ulan@chromium.org967e2702012-02-28 09:49:15 +000015022012-02-28: Version 3.9.12
1503
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001504 Fixed the negative lookup stub to handle deleted entries in a
1505 dictionary. (issue 1964)
ulan@chromium.org967e2702012-02-28 09:49:15 +00001506
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001507 Added a new API where the host can supply a callback function. The
ulan@chromium.org967e2702012-02-28 09:49:15 +00001508 callback function can resolve the location of a return address on stack
1509 to the location where a return-address rewriting profiler stashed the
1510 original return address.
1511
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001512 Fixed Chromium issue http://crbug.com/115646: When compiling for-in
1513 pass correct context value to the increment instruction.
ulan@chromium.org967e2702012-02-28 09:49:15 +00001514
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001515 Fixed issue 1853: Update breakpoints set with partial file name after
1516 compile.
ulan@chromium.org967e2702012-02-28 09:49:15 +00001517
1518
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +000015192012-02-27: Version 3.9.11
1520
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001521 Made 'module' a context-sensitive keyword (V8 issue 1957).
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +00001522
1523
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000015242012-02-24: Version 3.9.10
1525
1526 Fixed V8 issues 1322, 1772 and 1969.
1527
1528 Conformance improvements.
1529
1530 Performance and stability improvements on all platforms.
1531
1532
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +000015332012-02-23: Version 3.9.9
1534
1535 Supported fast case for-in in Crankshaft.
1536
1537 Sped up heap snapshot serialization and dominators construction.
1538
1539 Randomized allocation addresses on windows. (Chromium issue 115151)
1540
1541 Fixed compilation with MinGW-w64. (issue 1943)
1542
1543 Fixed incorrect value of assignments to non-extensible properties.
1544
1545 Fixed a crash bug in generated code on ia32.
1546
1547 Performance and stability improvements on all platforms.
1548
1549
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +000015502012-02-21: Version 3.9.8
1551
1552 Fixed memory leak and missing #include in StartupDataDecompressor
1553 (issue 1960).
1554
1555 Renamed static methods to avoid shadowing virtual methods and fix Clang
1556 C++11 compile error.
1557
1558 Fixed sequence of element access in array builtins (issue 1790).
1559
1560 Performance and stability improvements on all platforms.
1561
1562
yangguo@chromium.org56454712012-02-16 15:33:53 +000015632012-02-16: Version 3.9.7
1564
1565 Fixed V8 issues 1322, 1878, 1942, 1945 and Chromium issue 113924.
1566
1567 Fixed GCC-4.7 warnings.
1568
1569 Added Navier-Stokes benchmark.
1570
1571 Performance and stability improvements on all platforms.
1572
1573
ulan@chromium.org65a89c22012-02-14 11:46:07 +000015742012-02-14: Version 3.9.6
1575
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001576 Fixed template-related linker error. (issue 1936)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001577
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001578 Allowed inlining of functions containing object literals. (issue 1322)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001579
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001580 Added --call-graph-size option to tickprocessor. (issue 1937)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001581
1582 Heap Snapshot maximum size limit is too low for really big apps. At the
1583 moment the limit is 256MB. (Chromium issue 113015)
1584
1585 Performance and stability improvements on all platforms.
1586
1587
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000015882012-02-09: Version 3.9.5
1589
1590 Removed unused command line flags.
1591
1592 Performance and stability improvements on all platforms.
1593
1594
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +000015952012-02-08: Version 3.9.4
1596
1597 Properly initialize element-transitioning array literals on ARM.
1598 (issue 1930)
1599
1600 Bug fixes on all platforms.
1601
1602
jkummerow@chromium.orgab7dad42012-02-07 12:07:34 +000016032012-02-07: Version 3.9.3
1604
1605 When rethrowing an exception, print the stack trace of its original
1606 site instead of rethrow site (Chromium issue 60240).
1607
1608 Increased size of small stacks from 32k to 64k to avoid hitting limits
1609 in Chromium (Chromium issue 112843).
1610
1611
rossberg@chromium.org994edf62012-02-06 10:12:55 +000016122012-02-06: Version 3.9.2
1613
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001614 Added timestamp to --trace-gc output. (issue 1932)
rossberg@chromium.org994edf62012-02-06 10:12:55 +00001615
1616 Heap profiler reports implicit references.
1617
1618 Optionally export metadata with libv8 to enable debuggers to inspect V8
1619 state.
1620
1621
jkummerow@chromium.org1145ef82012-02-02 16:21:15 +000016222012-02-02: Version 3.9.1
1623
1624 Fixed memory leak in NativeObjectsExplorer::FindOrAddGroupInfo
1625 (Chromium issue 112315).
1626
1627 Fixed a crash in dev tools (Chromium issue 107996).
1628
1629 Added 'dependencies_traverse': 1 to v8 GYP target.
1630
1631 Performance and stability improvements on all platforms.
1632
1633
danno@chromium.orgfa458e42012-02-01 10:48:36 +000016342012-02-01: Version 3.9.0
1635
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001636 Reduced memory use immediately after starting V8.
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001637
1638 Stability fixes and performance improvements on all platforms.
1639
1640
yangguo@chromium.org659ceec2012-01-26 07:37:54 +000016412012-01-26: Version 3.8.9
1642
1643 Flush number string cache on GC (issue 1605).
1644
1645 Provide access to function inferred name with
1646 v8::Function::GetInferredName in V8 public API.
1647
1648 Fix building with Clang (issue 1912).
1649
1650 Reduce the space used by the stack for the profiling thread.
1651
1652 Fix misleading documentation of v8::Locker (issue 542).
1653
1654 Introduce readbinary function in d8 to read binary files.
1655
1656 Performance and stability improvements on all platforms.
1657
1658
jkummerow@chromium.org05ed9dd2012-01-23 14:42:48 +000016592012-01-23: Version 3.8.8
1660
1661 Limited number of loop iterations in Heap::ReserveSpace
1662 (Chromium issue 99027).
1663
1664 Fixed solaris build (VirtualMemory) (issue 1761).
1665
1666 Fixed strict vs. non-strict handling of function proxies in
1667 higher-order array and string methods.
1668
1669 Enabled asynchronous remote debugging with d8 (issue 1691).
1670
1671 Stability and performance improvements on all platforms.
1672
1673
ulan@chromium.org2efb9002012-01-19 15:36:35 +000016742012-01-19: Version 3.8.7
1675
1676 Ensure that LRandom restores rsi after call to the C function on x64.
1677 (Chromium issue http://crbug.com/110509)
1678
1679 Fixing include issues on *bsd when building with scons.
1680 (issue 1897)
1681
1682 Provide a switch to specify -fno-strict-aliasing
1683 (issue 1887)
1684
1685 Move WIN32 define from standalone.gypi to common.gypi
1686 (issue 1760)
1687
1688 Fix corner-case in heap size estimation.
1689 (issue 1893)
1690
1691 Fix and enable NEW_NON_STRICT_FAST ArgumentsAccess stub on x64.
1692 (issue 1903)
1693
1694 Performance improvements and bug fixes.
1695
1696
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000016972012-01-16: Version 3.8.6
1698
1699 Add primitive WebGL array support to d8.
1700
1701 Improve heap size estimation (issue 1893).
1702
1703 Hash collision DOS workaround extended from string keys
1704 to numeric keys.
1705
1706 Provide an API for iterating through all external strings referenced
1707 from the JS heap.
1708
1709 Adjust position recorded for call expressions. http://crbug.com/109195
1710
1711 Fix GC crash related to instanceof. http://crbug.com/109448
1712
1713 Performance improvements and bug fixes.
1714
1715
rossberg@chromium.orgfab14982012-01-05 15:02:15 +000017162012-01-05: Version 3.8.5
1717
1718 Fix broken test that assumes that no GC can clear the regexp cache (GC
1719 can happen at any time due to Crankshaft).
1720
1721 Fix handling of bogus receivers for Harmony collections. (issue 1884)
1722
1723 Add netbsd support to gyp build.
1724
1725 Determine page size at runtime on posix platforms.
1726
1727 Ensure that store buffer filtering hash sets are cleared after
1728 StoreBuffer::Filter.
1729
1730 Randomize the seed used for string hashing. This helps guard against
1731 CPU-eating DOS attacks against node.js servers. Based on code from
1732 Bert Belder. This version only solves the issue for those that compile
1733 V8 themselves or those that do not use snapshots. A snapshot-based
1734 precompiled V8 will still have predictable string hash codes.
1735
1736 Implement callback when script finishes running in V8 API.
1737
1738 Improve performance of Math.min and Math.max for the case of two
1739 arguments. (issue 1325)
1740
1741
svenpanne@chromium.org3c93e772012-01-02 09:26:59 +000017422012-01-02: Version 3.8.4
1743
1744 Performance improvements for large Smi-only arrays.
1745
1746 Fixed InternalArrays construction. (issue 1878)
1747
1748
danno@chromium.orgbf0c8202011-12-27 10:09:42 +000017492011-12-27: Version 3.8.3
1750
1751 Avoid embedding new space objects into code objects in the lithium gap
1752 resolver. (chromium:108296)
1753
1754 Bug fixes and performance optimizations on all platforms.
1755
1756
danno@chromium.orge78f9fc2011-12-21 08:29:34 +000017572011-12-21: Version 3.8.2
1758
1759 Add max optimization flag to v8 gyp build to ensure V8 is always built
1760 fully optimized in Chrome.
1761
1762 MIPS: Bring MIPS to parity with other platforms.
1763
1764 Optimizations and stability improvements on all platforms.
1765
1766
ricow@chromium.org7ad65222011-12-19 12:13:11 +000017672011-12-19: Version 3.8.1
1768
1769 Fixed GCC 4.7 warnings. Patch from Tobias Burnus.
1770
1771 Stability improvements on all platforms.
1772
1773
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000017742011-12-13: Version 3.8.0
1775
1776 Fixed handling of arrays in DefineOwnProperty. (issue 1756)
1777
1778 Sync parser and preparser on do-while and return statements.
1779 (issue 1856)
1780
1781 Fixed another corner case for DefineOwnProperty on arrays (issue 1756).
1782
1783 Stability and performance improvements on all platforms.
1784
1785
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +000017862011-12-01: Version 3.7.12
1787
1788 Increase tick interval for the android platform.
1789
1790 Fix a bug in the register allocator. (chromium:105112)
1791
1792 Fix handling of recompiling code. (chromium:105375, v8:1782)
1793
1794 Start incremental marking on idle notification. (v8:1458)
1795
1796 Build fixes for various platforms.
1797
1798 Various performance improvements.
1799
1800
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000018012011-11-29: Version 3.7.11
1802
1803 Fixed bug when generating padding to ensure space for lazy
1804 deoptimization.
1805 (issue 1846)
1806
1807 Further reduced pause times due to GC.
1808
1809 Stability and performance improvements on all platforms.
1810
1811
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +000018122011-11-23: Version 3.7.10
1813
1814 Set maximum length of FixedArray in terms of elements instead an
1815 absolute number of bytes.
1816 (Chromium issue 103103)
1817
1818 Stability and performance improvements on all platforms.
1819
1820
18212011-11-21: Version 3.7.9
1822
1823 Removed exit-time destructors.
1824
1825 Stability and performance improvements on all platforms.
1826
1827
ricow@chromium.org27bf2882011-11-17 08:34:43 +000018282011-11-17: Version 3.7.8
1829
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +00001830 Removed hidden prototype from builtins, i.e., deleting an overridden
ricow@chromium.org27bf2882011-11-17 08:34:43 +00001831 function on builtins will not make the original function reappear.
1832
1833 Added NetBSD support for scons build.
1834
1835 Performance improvements on all platforms.
1836
1837
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +000018382011-11-14: Version 3.7.7
1839
1840 Fix missing fast property accessors in heap snapshots.
1841 (issue 1818)
1842
1843
danno@chromium.org2c456792011-11-11 12:00:53 +000018442011-11-11: Version 3.7.6
1845
1846 Fixed filtering of store buffer for large object pages.
1847 (issue 1817)
1848
1849 Fixed generated hash function on all platforms.
1850 (issue 1808)
1851
1852 Fixed Heap::Shrink to ensure that it does not free pages that are
1853 still in use.
1854 (Chromium issue 100414)
1855
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001856 Stability and performance improvements on all platforms.
danno@chromium.org2c456792011-11-11 12:00:53 +00001857
1858
danno@chromium.orgc612e022011-11-10 11:38:15 +000018592011-11-10: Version 3.7.5
1860
1861 Added initial gyp infrastructure for MIPS.
1862
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001863 Implemented performance improvements to the incremental garbage
danno@chromium.orgc612e022011-11-10 11:38:15 +00001864 collector.
1865
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001866 Added optimizations and stability improvements on all platforms.
danno@chromium.orgc612e022011-11-10 11:38:15 +00001867
1868
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000018692011-11-07: Version 3.7.4
1870
1871 Proper "libv8.so.3.7.4" SONAME for Linux shared library (issue 1786).
1872
1873 Fix Harmony sets and maps to allow null and undefined as keys
1874 (still hidden behind --harmony flag) (issue 1622).
1875
1876 Implement VirtualMemory on FreeBSD to fix build (issue 1807).
1877
1878 Enable VFP instructions for Android.
1879
1880 Fix error handling in Date.prototype.toISOString (issue 1792).
1881
1882 Bug fixes and performance improvements for all platforms.
1883
1884 Not officially supported but noteworthy: Crankshaft for MIPS :-)
1885
1886
erik.corry@gmail.combecbc522011-10-28 07:45:20 +000018872011-10-28: Version 3.7.3
1888
1889 Slight deoptimization as a workaround for issue with jslint: Issue
1890 1789.
1891
1892
erik.corry@gmail.com6e28b562011-10-27 14:20:17 +000018932011-10-27: Version 3.7.2
1894
1895 Fix bug in deoptimization. Known issue with jslint: Issue 1789.
1896
1897
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000018982011-10-26: Version 3.7.1
1899
1900 Achieved 33% speedup in debug-mode tests.
1901
1902 Removed special casing of calls to RegExp test and exec methods with no
1903 argument. Now matches new JSC behaviour. crbug.com/75740.
1904
1905 Return the empty string on cyclic references in toString (ES5
1906 conformance).
1907
1908 Fixed bug triggered by JSBeautifier. crbug.com/100409.
1909
1910 Made Math.random state per-context instead of per-process (issue 864).
1911
1912 Fixed stack traces to skip native functions.
1913
1914 Make snapshots (new contexts) smaller and faster.
1915
1916 Fixed handling of Function.apply for non-array arguments.
1917
1918 Fixed evaluation order in defineProperties to match FireFox.
1919
1920 Fixed handling of non-object receivers for array builtins,
1921 crbug.com/100702.
1922
1923 Multiple fixes to improve compliance with test262.
1924
1925 Fixed compatibility with older Android releases.
1926
1927 Fixed compilation with gcc-4.5.3.
1928
1929 Improved performance of WriteUtf8, issue 1665.
1930
1931 Made native syntax an early error in the preparser.
1932
1933 Fixed issues 793 and 893 relating to Function.prototype.bind.
1934
1935 Improved let, const, Set and Map support and other Harmony features
1936 (behind the --harmony flag).
1937
1938 Changed evaluation order for > and <= to match ES5 instead of ES3.
1939
1940 Bug fixes and performance improvements on all platforms.
1941
1942
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000019432011-10-13: Version 3.7.0
1944
1945 Fixed array handling for Object.defineOwnProperty (ES5 conformance).
1946
1947 Fixed issue 1757 (string slices of external strings).
1948
1949 Fixed issue 1759 (ARM).
1950
1951 Added flag --noclever-optimizations to disable some things that
1952 caused trouble in the past.
1953
1954 Added flag --stress-compaction for testing.
1955
1956 Added flag --harmony to activate all experimental Harmony features.
1957
1958
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +000019592011-10-10: Version 3.6.6
1960
1961 Added a GC pause visualization tool.
1962
1963 Added presubmit=no and werror=no flags to Makefile.
1964
1965 ES5/Test262 conformance improvements.
1966
1967 Fixed compilation issues with GCC 4.5.x (issue 1743).
1968
1969 Bug fixes and performance improvements on all platforms.
1970
1971
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000019722011-10-05: Version 3.6.5
1973
1974 New incremental garbage collector.
1975
1976 Removed the hard heap size limit (soft heap size limit is still
1977 700/1400Mbytes by default).
1978
1979 Implemented ES5 generic Array.prototype.toString (Issue 1361).
1980
1981 V8 now allows surrogate pair codes in decodeURIComponent (Issue 1415).
1982
1983 Fixed x64 RegExp start-of-string bug (Issues 1746, 1748).
1984
1985 Fixed propertyIsEnumerable for numeric properties (Issue 1692).
1986
1987 Fixed the MinGW and Windows 2000 builds.
1988
1989 Fixed "Prototype chain is not searched if named property handler does
1990 not set a property" (Issue 1636).
1991
1992 Made the RegExp.prototype object be a RegExp object (Issue 1217).
1993
1994 Disallowed future reserved words as labels in strict mode.
1995
1996 Fixed string split to correctly coerce the separator to a string
1997 (Issue 1711).
1998
1999 API: Added an optional source length field to the Extension
2000 constructor.
2001
2002 API: Added Debug::DisableAgent to match existing Debug::EnableAgent
2003 (Issue 1573).
2004
2005 Added "native" target to Makefile for the benefit of Linux distros.
2006
2007 Fixed: debugger stops stepping outside evaluate (Issue 1639).
2008
2009 More work on ES-Harmony proxies. Still hidden behind a flag.
2010
2011 Bug fixes and performance improvements on all platforms.
2012
2013
lrn@chromium.org34e60782011-09-15 07:25:40 +000020142011-09-15: Version 3.6.4
2015
2016 Fixed d8's broken readline history.
2017
2018 Removed the need for code delete events in CPU profiler (Issue 1466).
2019
2020 Fixed debugger stepping next with trycatch recursion (Issue 1639).
2021
2022 Fixing parallel execution in d8 (with -p) and some memory leaks.
2023
2024 Support for precise stepping in functions compiled before debugging was
2025 started (step 1).
2026
2027
kmillikin@chromium.org83e16822011-09-13 08:21:47 +000020282011-09-13: Version 3.6.3
2029
2030 Implemented better support of typed arrays in the d8 shell.
2031
2032 Bug fixes and performance improvements on all platforms.
2033
2034
ricow@chromium.org55ee8072011-09-08 16:33:10 +000020352011-09-08: Version 3.6.2
2036
2037 Added "dependencies" target to top-level Makefile.
2038
2039 Added ability to turn profiler on/off in d8.
2040
2041 Added "soname_version" parameter to common.gypi, v8.gyp, and Makefile.
2042
2043 Fixed several crash bugs.
2044
2045
jkummerow@chromium.org486075a2011-09-07 12:44:28 +000020462011-09-07: Version 3.6.1
2047
2048 Fixed a bug in abrupt exit from with or catch inside finally.
2049
2050 Fixed possible crash in FixedDoubleArray::Initialize() (Chromium
2051 issue 95113).
2052
2053 Fixed a bug in Page::GetRegionMaskForSpan (Chromium issue 94425).
2054
2055 Fixed a few clang warnings (which -Werror treated as errors).
2056
2057 Performance improvements on all platforms.
2058
2059
fschneider@chromium.org1805e212011-09-05 10:49:12 +000020602011-09-05: Version 3.6.0
2061
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002062 Fixed a bug when optimizing named function expression (issue 1647).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002063
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002064 Fixed a bug when optimizing f.call.apply (issue 1650).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002065
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002066 Made arguments and caller always be null on native functions
2067 (issues 1548 and 1643).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002068
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002069 Fixed issue 1648 (cross-compiling x64 targeting ia32).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002070
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002071 Fixed issue 371 (d8 printing of strings containing \0).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002072
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002073 Fixed order of evaluation in arguments to parseInt (issue 1649).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002074
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002075 Fixed a problem with large heap snapshots in Chrome DevTools
2076 (issue 1658, chromium issue 89268).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002077
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002078 Upped default maximum heap size from 512M to 700M.
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002079
2080
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +000020812011-08-31: Version 3.5.10
2082
2083 Added dependency of v8_base on WinSocket2 Windows library in
2084 the GYP-build.
2085
2086 Various bugfixes.
2087
2088
ricow@chromium.org4668a2c2011-08-29 10:41:00 +000020892011-08-29: Version 3.5.9
2090
2091 Made FromPropertyDescriptor not trigger inherited setters.
2092
2093 Fixed .gyp files to work on the ARM simulator.
2094
2095 Fixed shared library build warnings for MSVS.
2096
2097
ricow@chromium.orgddd545c2011-08-24 12:02:41 +000020982011-08-24: Version 3.5.8
2099
2100 Added V8EXPORT attributes for v8::Array::CheckCast and
2101 v8::Number::CheckCast.
2102
2103 Made a slight API change enabling opting out from null termination
2104 in String::Write*().
2105
2106 Fixed arm build for gcc-4.6.
2107
2108
rossberg@chromium.org28a37082011-08-22 11:03:23 +000021092011-08-22: Version 3.5.7
2110
2111 Make scanner handle invalid unicode escapes in identifiers correctly.
2112
2113 Make regexp flag parsing stricter.
2114
2115 Fix several memory leaks.
2116
2117
danno@chromium.orgb6451162011-08-17 14:33:23 +000021182011-08-17: Version 3.5.6
2119
2120 Fixed issue that could cause crashes when running with --heap-stats.
2121
2122 Fixed compilation on Linux 2.6.9 and older.
2123
2124 Fixed live-object-list to work with isolates.
2125
2126 Fixed memory leaks in zones and isolates.
2127
2128 Fixed a performance regression for TypedArrays on x64.
2129
2130 Stability improvements on all platforms.
2131
2132
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000021332011-08-15: Version 3.5.5
2134
2135 Fixed bugs involving negative zero and the optimizing compiler.
2136
2137 Fixed optimized version of Function.apply(x, arguments). (issue 1592)
2138
2139 Eliminated uses of deprecated ARM instructions.
2140
2141 Sped up Math.floor by using SSE 4.1 roundsd instruction on ia32.
2142
2143 Removed restriction on the size of disassembled code that is printed.
2144
2145
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000021462011-08-10: Version 3.5.4
2147
2148 Added a preliminary implementation of ES Harmony weak maps. Weak
2149 maps can be enabled by the flag --harmony-weakmaps.
2150
2151 Introduced a toplevel Makefile to support GYP-based building. GYP
2152 can be obtained from http://gyp.googlecode.com.
2153
2154 Fixed a bug in the length property of functions created by
2155 Function.prototype.bind.
2156
2157 Reduced malloc heap allocation on process startup.
2158
2159 Several important code generation bug fixes.
2160
2161 Performance improvements on all platforms.
2162
2163
lrn@chromium.orgd4e9e222011-08-03 12:01:58 +000021642011-08-03: Version 3.5.3
2165
2166 MIPS: Port of fix to ClassOf check from ARM.
2167 Patch from Paul Lind <plind44@gmail.com>.
2168
2169 Stopped using mprotect on Cygwin.
2170 Avoided uninitialized member warning on gcc 4.3.4
2171 Both patches by Bert Belder.
2172
2173 Bug fixes and performance improvements on all platforms.
2174
2175
vegorov@chromium.org7943d462011-08-01 11:41:52 +000021762011-08-01: Version 3.5.2
2177
2178 Performance improvements on all platforms.
2179
2180
ricow@chromium.org2c99e282011-07-28 09:15:17 +000021812011-07-28: Version 3.5.1
2182
2183 Fixed setting the readonly flag on the prototype property using the
2184 API call FunctionTemplate::SetPrototypeAttributes (issue 1539).
2185
2186 Changed the tools/test.py script to use d8 instead of shell for
2187 testing.
2188
2189 Fixed crash in ToBooleanStub when GC happens during invocation.
2190
2191 Enabled automatic unboxing of double arrays.
2192
2193 Performance improvements on all platforms.
2194
2195
ricow@chromium.org9fa09672011-07-25 11:05:35 +000021962011-07-25: Version 3.5.0
2197
2198 Implemented Object.prototype.{hasOwnProperty, propertyIsEnumerable} for
2199 proxies.
2200
2201 Removed logging to memory support.
2202
2203 Bugfixes and performance work.
2204
2205
rossberg@chromium.org717967f2011-07-20 13:44:42 +000022062011-07-20: Version 3.4.14
2207
2208 Fix the debugger for strict-mode functions. (Chromium issue 89236)
2209
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00002210 Add GetPropertyAttribute method for Object in the API. (Patch by
ricow@chromium.org9fa09672011-07-25 11:05:35 +00002211 Peter Varga)
rossberg@chromium.org717967f2011-07-20 13:44:42 +00002212
2213 Fix -Wunused-but-set-variable for gcc-4.6 on x64. (Issue 1291)
2214
2215
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000022162011-07-18: Version 3.4.13
2217
2218 Improved debugger support to allow inspection of optimized frames (issue
2219 1140).
2220
2221 Fixed a bug in prototype transitions cache clearing introduced by r8165.
2222
2223 Fixed shortcutting bug in HInferRepresentation. Patch by Andy Wingo.
2224
2225 Fixed a memory leak in sample/shell.cc (dispose semaphores).
2226
2227 Simplified HClampToUint8. Patch by Andy Wingo.
2228
2229 Exposed APIs for detecting boxed primitives, native errors. Patch by
2230 Luke Zarko.
2231
2232 Added map check for COW elements to crankshaft array handling code
2233 (issue 1560).
2234
2235 Sample shell and (a light version of) D8 links against a shared library
2236 now.
2237
2238 Fixed bug in array filter and reduce functions (issue 1559).
2239
2240 Avoid TLS load in AstNode constructor.
2241
2242 Introduced a random entropy source which can optionally be provided at
2243 initialization. (Chromium issue 89462).
2244
2245
whesse@chromium.org030d38e2011-07-13 13:23:34 +000022462011-07-13: Version 3.4.12
2247
2248 Added --prof profiling option to d8 shell.
2249
2250 Fixed a bug where reading a directory in d8 shell hangs (issue 1533).
2251
2252 Fixed a potential assertion failure in const declarations.
2253
2254 Fixed an assertion failure in descriptor arrays (issue 1526).
2255
2256 Enabled fast thread-local storage by default on supported platforms.
2257
2258 Improved reporting of source position for global variable loads
2259 (issue 1527).
2260
2261
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000022622011-07-11: Version 3.4.11
2263
2264 Fixed MinGW32 build.
2265
2266 Fixed a GC bug with RegExp code flushing.
2267
2268 Implemented Object.defineProperty for proxies.
2269
2270 Fixed a bug in for/in iteration of arguments objects (issue 1531).
2271
2272 Added debugger support for inspecting optimized frames (issue 1140).
2273
2274 Allowed JSObject::PreventExtensions to work for arguments objects.
2275
2276 Bugfixes and performance work.
2277
2278
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000022792011-07-06: Version 3.4.10
2280
2281 Fixed debugger not breaking on certain "if" statements (issue 1523).
2282
2283 Fixed assertion failure in runtime profiler when running on IA32
2284 without snapshot (issue 1522).
2285
2286 Fixed ABI for API calls on IA32 (for clang compatibility).
2287
2288 Introduced code flushing of RegExp code to free memory used by
2289 RegExps sooner.
2290
2291 Fixed linux-tick-processor built wrong version of v8 (issue 1532).
2292
2293 Fixed assertion failure in v8::TryCache::StackTrace (issue 1529).
2294
2295 Performance improvements on all platforms.
2296
2297
ricow@chromium.org4f693d62011-07-04 14:01:31 +000022982011-07-04: Version 3.4.9
2299
2300 Added support for debugger inspection of locals in optimized frames
2301 (issue 1140).
2302
2303 Fixed SConstruct to pass correct defines to samples/preparser when
2304 building with library=shared.
2305
2306 Made date parser handle ES5 Date Time Strings correctly (issue 1498).
2307
2308 Fixed a bug in Object.defineProperty on the arguments object.
2309
2310 Performance improvements on all platforms.
2311
2312
vegorov@chromium.org3cf47312011-06-29 13:20:01 +000023132011-06-29: Version 3.4.8
2314
2315 Ensure 16-byte stack alignment on Solaris (issue 1505).
2316
sgjesse@chromium.org6db88712011-07-11 11:41:22 +00002317 Fix "illegal access" when calling parseInt with a radix
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00002318 that is not a smi. (issue 1246).
2319
2320
ager@chromium.org04921a82011-06-27 13:21:41 +000023212011-06-27: Version 3.4.7
2322
2323 Fixed 64-bit build on FreeBSD.
2324
2325 Added API to set the property attributes for the prototype
2326 property on functions created from FunctionTemplates.
2327
2328 Bugfixes and performance work.
2329
2330
lrn@chromium.orgac2828d2011-06-23 06:29:21 +000023312011-06-22: Version 3.4.6
2332
2333 Lowered limit on code space for systems with low memory supply.
2334
2335 Allowed compiling v8_shell with the 'host' toolset (issue 82437).
2336
2337 Extended setBreakpoint API to accept partial script name (issue 1418).
2338
2339 Made multi-line comments not count when deciding whether the '-->'
2340 comment starter is first on a line. This matches Safari.
2341
2342 Made handling of non-array recievers in Array length setter correct
2343 (issue 1491).
2344
2345 Added ability to heap profiler to iterate over snapshot's node
2346 (issue 1481).
2347
2348
whesse@chromium.org7b260152011-06-20 15:33:18 +000023492011-06-20: Version 3.4.5
2350
2351 Fixed issues 794, 1097, 1215(partial), 1417, 1435, 1472, 1473,
2352 1476, and 1477.
2353
2354 Improved code generation for !0 and !1.
2355
2356 Reduced memory usage for regular expressions with nested qualifiers.
2357 (issue 1472)
2358
2359 Fixed V8 to count line terminators in multi-line comments.
2360 (Chromium issue 86431)
2361
2362 Fixed disassembler=on option for release-mode builds. (issue 1473)
2363
2364 Performance improvements on all platforms.
2365
2366
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000023672011-06-15: Version 3.4.4
2368
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002369 Added snapshot compression support and --stress-opt flag to d8.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002370
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002371 Improved performance of try/catch.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002372
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002373 Several GYP-related changes: Added support for building Xcode project
2374 files. Make the ARM simulator build with GYP again. Generate Makefiles
2375 for all architectures on Linux.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002376
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002377 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the
2378 receiver for strict mode callbacks. (issue 1436)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002379
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002380 Fixed a bug where an array load was incorrectly hoisted by GVN.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002381
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002382 Handle 'undefined' correctly when === has been specialized for doubles.
2383 (issue 1434)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002384
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002385 Corrected the limit of local variables in an optimized function from 64
2386 to 63.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002387
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002388 Correctly set ReadOnly flag on indexed properties when using the API Set
2389 method. (issue 1470)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002390
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002391 Give the correct error message when Object.isExtensible is called on a
2392 non-object. (issue 1452)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002393
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002394 Added GetOwnPropertyNames method for Object in the API. Patch by Peter
2395 Varga.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002396
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002397 Do not redefine properties unneccesarily in seal and freeze. (issue
2398 1447)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002399
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002400 IsExecutionTerminating has an Isolate parameter now.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002401
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002402 Distinguish keyed loads with a symbol key from fast elements loads,
2403 avoiding some useless deoptimizations. (issue 1471)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002404
2405
jkummerow@chromium.orge297f592011-06-08 10:05:15 +000024062011-06-08: Version 3.4.3
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002407
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00002408 Clear the global thread table when an isolate is disposed
2409 (issue 1433).
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002410
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00002411 Converted time zone name to UTF8 on Windows (issue 1290).
2412
2413 Limited the number of arguments in a function call to 32766
2414 (issue 1413).
2415
2416 Compress sources of JS libraries in addition to the snapshot.
2417
2418 Fixed a bug in Lithium environment iteration.
2419
2420 Performance improvements on all platforms.
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002421
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002422
erik.corry@gmail.comd6076d92011-06-06 09:39:18 +000024232011-06-06: Version 3.4.2
2424
2425 More work on ES-Harmony proxies. Still hidden behind a flag.
2426
2427 Fixed some crash bugs and improved performance.
2428
2429 Fixed building with gdb debugging support.
2430
2431 Do not install SIGPROF handler until it is needed.
2432
2433 Added DateTimeFormat to i18n API.
2434
2435 Fixed compilation on OpenBSD.
2436
2437 Take the ulimit into account when sizing the heap. OpenBSD users
2438 may still have to increase the default ulimit to run heavy pages in
2439 the browser.
2440
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002441
ricow@chromium.orgd2be9012011-06-01 06:00:58 +000024422011-06-01: Version 3.4.1
2443
2444 Fixed JSON stringify issue with arrays.
2445
2446 Changed calls to JS builtins to be passed undefined when called with
2447 implicit receiver.
2448
2449 Implemented the set trap for Harmony proxies. Proxies still need to
2450 be enabled with the --harmony-proxies flag.
2451
2452
ricow@chromium.orgc54d3652011-05-30 09:20:16 +000024532011-05-30: Version 3.4.0
2454
2455 Changed calls to undefined property setters to not throw (issue 1355).
2456
2457 Made RegExp objects not callable.
2458
2459 Fixed issues on special case large JSON strings in new json parser
2460 (issues http://crbug.com/83877 and http://crbug.com/84186).
2461
2462 Performance improvements on all platforms.
2463
2464
danno@chromium.org40cb8782011-05-25 07:58:50 +000024652011-05-25: Version 3.3.10
2466
2467 Fixed calls of strict mode function with an implicit receiver.
2468
2469 Fixed fast handling of arrays to properly deal with changes to the
2470 Object prototype (issue 1403).
2471
2472 Changed strict mode poison pill to be the same type error function
2473 (issue 1387).
2474
2475 Fixed a debug crash in arguments object handling (issue 1227).
2476
2477 Fixed a bug in deoptimization on x64 (issue 1404).
2478
2479 Performance improvements and bug fixes on all platforms.
2480
2481
ager@chromium.orgea91cc52011-05-23 06:06:11 +000024822011-05-23: Version 3.3.9
2483
2484 Added DateTimeFormat class to experimental i18n API.
2485
2486 Extended preparser to give early errors for some strict mode
2487 restrictions.
2488
2489 Removed legacy execScript function from V8.
2490
2491 Extended isolate API with the ability to add embedder-specific
2492 data to an isolate.
2493
2494 Added basic support for polymorphic loads from JS and external
2495 arrays.
2496
2497 Fixed bug in handling of switch statements in the optimizing
2498 compiler.
2499
2500
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +000025012011-05-18: Version 3.3.8
2502
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002503 Added MarkIndependent to the persistent handle API. Independent
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00002504 handles are independent of all other persistent handles and can be
2505 garbage collected more frequently.
2506
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002507 Implemented the get trap for Harmony proxies. Proxies are enabled
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00002508 with the --harmony-proxies flag.
2509
2510 Performance improvements and bug fixes on all platforms.
2511
2512
vegorov@chromium.org7304bca2011-05-16 12:14:13 +000025132011-05-16: Version 3.3.7
2514
2515 Updated MIPS infrastructure files.
2516
2517 Performance improvements and bug fixes on all platforms.
2518
2519
karlklose@chromium.org83a47282011-05-11 11:54:09 +000025202011-05-11: Version 3.3.6
2521
2522 Updated MIPS infrastructure files.
2523
2524 Added method IsCallable for Object to the API.
2525 Patch by Peter Varga.
2526
2527
lrn@chromium.org1c092762011-05-09 09:42:16 +000025282011-05-09: Version 3.3.5
2529
2530 Fixed build on FreeBSD. Patch by Akinori MUSHA.
2531
2532 Added check that receiver is JSObject on API calls.
2533
2534 Implemented CallAsConstructor method for Object in the API (Issue 1348).
2535 Patch by Peter Varga.
2536
2537 Added CallAsFunction method to the Object class in the API (Issue 1336).
2538 Patch by Peter Varga.
2539
2540 Added per-isolate locking and unlocking.
2541
2542 Fixed bug in x64 >>> operator (Issue 1359).
2543
2544
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000025452011-05-04: Version 3.3.4
2546
2547 Implemented API to disallow code generation from strings for a context
2548 (issue 1258).
2549
2550 Fixed bug with whitespaces in parseInt (issue 955).
2551
2552 Fixed bug with == comparison of Date objects (issue 1356).
2553
2554 Added GYP variables for ARM code generation:
2555 v8_can_use_vfp_instructions, v8_can_use_unaligned_accesses
2556 and v8_use_arm_eabi_hardfloat.
2557
2558
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000025592011-05-02: Version 3.3.3
2560
2561 Added support for generating Visual Studio solution and project files
2562 using GYP.
2563
2564 Implemented support for ARM EABI calling convention variation where
2565 floating-point arguments are passed in registers (hardfloat).
2566
2567 Added Object::HasOwnProperty() to the API.
2568
2569 Added support for compressing startup data to reduce binary size. This
2570 includes build time support and an API for the embedder to decompress
2571 the startup data before initializing V8.
2572
2573 Reduced the profiling hooks overhead from >400% to 25% when using
2574 ll_prof.
2575
2576 Performance improvements and bug fixes on all platforms.
2577
2578
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +000025792011-04-27: Version 3.3.2
2580
2581 Fixed crash bug on ARM with no VFP3 hardware.
2582
2583 Fixed compilation of V8 without debugger support.
2584
2585 Improved performance on JSLint.
2586
2587 Added support Float64 WebGL arrays.
2588
2589 Fixed crash bug in regexp replace.
2590
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +00002591
ricow@chromium.orgdcebac02011-04-20 09:44:50 +000025922011-04-20: Version 3.3.1
2593
2594 Reduced V8 binary size by removing virtual functions from hydrogen.
2595
2596 Fixed crash bug on x64.
2597
2598 Performance improvements on ARM and IA32.
2599
2600
danno@chromium.org160a7b02011-04-18 15:51:38 +000026012011-04-18: Version 3.3.0
2602
2603 Fixed bug in floating point rounding in Crankshaft on ARM
2604 (issue 958)
2605
2606 Fixed a number of issues with running without VFPv3 support on ARM
2607 (issue 1315)
2608
2609 Introduced v8Locale.Collator, a partial implementation of Collator
2610 per last ECMAScript meeting + mailing list.
2611
2612 Minor performance improvements and bug fixes.
2613
2614
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000026152011-04-13: Version 3.2.10
2616
2617 Fixed bug in external float arrays on ARM (issue 1323).
2618
2619 Minor performance improvements and bug fixes.
2620
2621
karlklose@chromium.org44bc7082011-04-11 12:33:05 +000026222011-04-11: Version 3.2.9
2623
2624 Removed support for ABI prior to EABI on ARM.
2625
2626 Fixed multiple crash bugs.
2627
2628 Added GCMole to the repository, a simple static analysis tool that
2629 searches for GC-unsafe evaluation order dependent callsites.
2630
2631 Made preparser API be exported in shared libraries.
2632
2633 Fixed multiple issues in EcmaScript 5 strict mode implementation.
2634
2635 Fixed mutable __proto__ property if object is not extensible
2636 (Issue 1309).
2637
2638 Fixed auto suspension of the sampler thread.
2639
2640
vegorov@chromium.org74f333b2011-04-06 11:17:46 +000026412011-04-06: Version 3.2.8
2642
2643 Exposed WebGL typed array constructors in the shell sample.
2644
2645 Performance improvements on all platforms.
2646
2647
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +000026482011-04-04: Version 3.2.7
2649
2650 Disabled the original 'classic' V8 code generator. Crankshaft is
2651 now the default on all platforms.
2652
2653 Changed the heap profiler to use more descriptive names.
2654
2655 Performance and stability improvements to isolates on all platforms.
2656
2657
lrn@chromium.org7516f052011-03-30 08:52:27 +000026582011-03-30: Version 3.2.6
2659
2660 Fixed xcode build warning in shell.cc (out of order initialization).
2661
2662 Fixed null-pointer dereference in the compiler when running without
2663 SSE3 support (Chromium issue 77654).
2664
2665 Fixed x64 compilation error due to some dead code. (Issue 1286)
2666
2667 Introduced scons target to build the preparser stand-alone example.
2668
2669 Made FreeBSD build and pass all tests.
2670
2671
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +000026722011-03-28: Version 3.2.5
2673
lrn@chromium.org7516f052011-03-30 08:52:27 +00002674 Fixed build with Irregexp interpreter (issue 1266).
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00002675
2676 Added Crankshaft support for external arrays.
2677
2678 Fixed two potential crash bugs.
2679
2680
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000026812011-03-23: Version 3.2.4
2682
2683 Added isolates which allows several V8 instances in the same process.
2684 This is controlled through the new Isolate class in the API.
2685
2686 Implemented more of EcmaScript 5 strict mode.
2687
2688 Reduced the time it takes to make detailed heap snapshot.
2689
2690 Added a number of commands to the ARM simulator and enhanced the ARM
2691 disassembler.
2692
2693
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +000026942011-03-17: Version 3.2.3
2695
2696 Fixed a number of crash bugs.
2697
2698 Fixed Array::New(length) to return an array with a length (issue 1256).
2699
2700 Fixed FreeBSD build.
2701
2702 Changed __defineGetter__ to not throw (matching the behavior of Safari).
2703
2704 Implemented more of EcmaScript 5 strict mode.
2705
2706 Improved Crankshaft performance on all platforms.
2707
2708
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000027092011-03-14: Version 3.2.2
2710
2711 Fixed a number of crash and correctness bugs.
2712
2713 Improved Crankshaft performance on all platforms.
2714
2715 Fixed Crankshaft on Solaris/Illumos.
2716
2717
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +000027182011-03-10: Version 3.2.1
2719
2720 Fixed a number of crash bugs.
2721
2722 Improved Crankshaft for x64 and ARM.
2723
2724 Implemented more of EcmaScript 5 strict mode.
2725
2726
karlklose@chromium.org8f806e82011-03-07 14:06:08 +000027272011-03-07: Version 3.2.0
2728
2729 Fixed a number of crash bugs.
2730
2731 Turned on Crankshaft by default on x64 and ARM.
2732
2733 Improved Crankshaft for x64 and ARM.
2734
2735 Implemented more of EcmaScript 5 strict mode.
2736
2737
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000027382011-03-02: Version 3.1.8
2739
2740 Fixed a number of crash bugs.
2741
2742 Improved Crankshaft for x64 and ARM.
2743
2744 Implemented more of EcmaScript 5 strict mode.
2745
2746 Fixed issue with unaligned reads and writes on ARM.
2747
2748 Improved heap profiler support.
2749
2750
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +000027512011-02-28: Version 3.1.7
2752
2753 Fixed a number of crash bugs.
2754
2755 Improved Crankshaft for x64 and ARM.
2756
ager@chromium.org9ee27ae2011-03-02 13:43:26 +00002757 Fixed implementation of indexOf/lastIndexOf for sparse
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +00002758 arrays (http://crbug.com/73940).
2759
2760 Fixed bug in map space compaction (http://crbug.com/59688).
2761
2762 Added support for direct getter accessors calls on ARM.
2763
2764
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000027652011-02-24: Version 3.1.6
2766
2767 Fixed a number of crash bugs.
2768
2769 Added support for Cygwin (issue 64).
2770
2771 Improved Crankshaft for x64 and ARM.
2772
2773 Added Crankshaft support for stores to pixel arrays.
2774
2775 Fixed issue in CPU profiler with Crankshaft.
2776
2777
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +000027782011-02-16: Version 3.1.5
2779
2780 Change RegExp parsing to disallow /(*)/.
2781
2782 Added GDB JIT support for ARM.
2783
2784 Fixed several crash bugs.
2785
2786 Performance improvements on the IA32 platform.
2787
2788
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +000027892011-02-14: Version 3.1.4
2790
2791 Fixed incorrect compare of prototypes of the global object (issue
2792 1082).
2793
2794 Fixed a bug in optimizing calls to global functions (issue 1106).
2795
2796 Made optimized Function.prototype.apply safe for non-JSObject first
2797 arguments (issue 1128).
2798
2799 Fixed an error related to element accessors on Object.prototype and
2800 parser errors (issue 1130).
2801
2802 Fixed a bug in sorting an array with large array indices (issue 1131).
2803
2804 Properly treat exceptions thrown while compiling (issue 1132).
2805
2806 Fixed bug in register requirements for function.apply (issue 1133).
2807
2808 Fixed a representation change bug in the Hydrogen graph construction
2809 (issue 1134).
2810
2811 Fixed the semantics of delete on parameters (issue 1136).
2812
2813 Fixed a optimizer bug related to moving instructions with side effects
2814 (issue 1138).
2815
2816 Added support for the global object in Object.keys (issue 1150).
2817
2818 Fixed incorrect value for Math.LOG10E
2819 (issue http://code.google.com/p/chromium/issues/detail?id=72555)
2820
2821 Performance improvements on the IA32 platform.
2822
2823 Implement assignment to undefined reference in ES5 Strict Mode.
2824
2825
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +000028262011-02-09: Version 3.1.3
2827
2828 Fixed a bug triggered by functions with huge numbers of declared
2829 arguments.
2830
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002831 Fixed zap value aliasing a real object - debug mode only (issue 866).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00002832
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002833 Fixed issue where Array.prototype.__proto__ had been set to null
2834 (issue 1121).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00002835
2836 Fixed stability bugs in Crankshaft for x86.
2837
2838
ricow@chromium.org83aa5492011-02-07 12:42:56 +000028392011-02-07: Version 3.1.2
2840
2841 Added better security checks when accessing properties via
2842 Object.getOwnPropertyDescriptor.
2843
2844 Fixed bug in Object.defineProperty and related access bugs (issues
2845 992, 1083 and 1092).
2846
2847 Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease
2848 copyright notice generation for embedders.
2849
2850
kmillikin@chromium.org31b12772011-02-02 16:08:26 +000028512011-02-02: Version 3.1.1
2852
2853 Perform security checks before fetching the value in
2854 Object.getOwnPropertyDescriptor.
2855
2856 Fixed a bug in Array.prototype.splice triggered by passing no
2857 arguments.
2858
2859 Fixed bugs in -0 in arithmetic and in Math.pow.
2860
2861 Fixed bugs in the register allocator and in switching from optimized
2862 to unoptimized code.
2863
2864
28652011-01-31: Version 3.1.0
2866
whesse@chromium.org7a392b32011-01-31 11:30:36 +00002867 Performance improvements on all platforms.
2868
2869
ager@chromium.org378b34e2011-01-28 08:04:38 +000028702011-01-28: Version 3.0.12
2871
2872 Added support for strict mode parameter and object property
2873 validation.
2874
2875 Fixed a couple of crash bugs.
2876
2877
ager@chromium.org0ee099b2011-01-25 14:06:47 +000028782011-01-25: Version 3.0.11
2879
2880 Fixed a bug in deletion of lookup slots that could cause global
2881 variables to be accidentally deleted (http://crbug.com/70066).
2882
2883 Added support for strict mode octal literal verification.
2884
2885 Fixed a couple of crash bugs (issues 1070 and 1071).
2886
2887
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +000028882011-01-24: Version 3.0.10
2889
2890 Fixed External::Wrap for 64-bit addresses (issue 1037).
2891
ager@chromium.org0ee099b2011-01-25 14:06:47 +00002892 Fixed incorrect .arguments variable proxy handling in the full
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002893 code generator (issue 1060).
2894
2895 Introduced partial strict mode support.
2896
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002897 Changed formatting of recursive error messages to match Firefox and
2898 Safari (issue http://crbug.com/70334).
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002899
2900 Fixed incorrect rounding for float-to-integer conversions for external
ager@chromium.org0ee099b2011-01-25 14:06:47 +00002901 array types, which implement the Typed Array spec
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002902 (issue http://crbug.com/50972).
2903
2904 Performance improvements on the IA32 platform.
2905
2906
erik.corry@gmail.com0511e242011-01-19 11:11:08 +000029072011-01-19: Version 3.0.9
2908
2909 Added basic GDB JIT Interface integration.
2910
2911 Make invalid break/continue statements a syntax error instead of a
2912 runtime error.
2913
2914
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000029152011-01-17: Version 3.0.8
2916
2917 Exposed heap size limit to the heap statistics gathered by
erik.corry@gmail.com0511e242011-01-19 11:11:08 +00002918 the GetHeapStatistics API.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00002919
2920 Wrapped external pointers more carefully (issue 1037).
2921
2922 Hardened the implementation of error objects to avoid setters
2923 intercepting the properties set then throwing an error.
2924
2925 Avoided trashing the FPSCR when calculating Math.floor on ARM.
2926
2927 Performance improvements on the IA32 platform.
2928
2929
29302011-01-10: Version 3.0.7
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002931
2932 Stopped calling inherited setters when creating object literals
2933 (issue 1015).
2934
2935 Changed interpretation of malformed \c? escapes in RegExp to match
2936 JSC.
2937
2938 Enhanced the command-line debugger interface and fixed some minor
2939 bugs in the debugger.
2940
2941 Performance improvements on the IA32 platform.
2942
2943
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000029442011-01-05: Version 3.0.6
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002945
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002946 Allowed getters and setters on JSArray elements (issue 900).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002947
2948 Stopped JSON objects from hitting inherited setters (part of
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002949 issue 1015).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002950
2951 Allowed numbers and strings as names of getters/setters in object
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002952 initializer (issue 820).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002953
2954 Added use_system_v8 option to gyp (off by default), to make it easier
2955 for Linux distributions to ship with system-provided V8 library.
2956
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002957 Exported external array data accessors (issue 1016).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002958
2959 Added labelled thread names to help with debugging (on Linux).
2960
2961
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +000029622011-01-03: Version 3.0.5
2963
2964 Fixed a couple of cast errors for gcc-3.4.3.
2965
2966 Performance improvements in GC and IA32 code generator.
2967
2968
whesse@chromium.org023421e2010-12-21 12:19:12 +000029692010-12-21: Version 3.0.4
2970
2971 Added Date::ResetCache() to the API so that the cached values in the
2972 Date object can be reset to allow live DST / timezone changes.
2973
2974 Extended existing support for printing (while debugging) the contents
2975 of objects. Added support for printing objects from release builds.
2976
2977 Fixed V8 issues 989, 1006, and 1007.
2978
2979
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000029802010-12-17: Version 3.0.3
2981
2982 Reapplied all changes for version 3.0.1.
2983
2984 Improved debugger protocol for remote debugging.
2985
2986 Added experimental support for using gyp to generate build files
2987 for V8.
2988
2989 Fixed implementation of String::Write in the API (issue 975).
2990
2991
lrn@chromium.org8541d772010-12-15 12:05:09 +000029922010-12-15: Version 3.0.2
2993
2994 Revert version 3.0.1 and patch 3.0.1.1.
2995
2996
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +000029972010-12-13: Version 3.0.1
2998
2999 Added support for an experimental internationalization API as an
3000 extension. This extension is disabled by default but can be enabled
3001 when building V8. The ECMAScript internationalization strawman is
3002 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
3003
3004 Made RegExp character class parsing stricter. This mirrors a change
3005 to RegExp parsing in WebKit.
3006
3007 Fixed a bug in Object.defineProperty when used to change attributes
3008 of an existing property. It incorrectly set the property value to
3009 undefined (issue 965).
3010
3011 Fixed several different compilation failures on various platforms
3012 caused by the 3.0.0 release.
3013
3014 Optimized Math.pow so it can work on unboxed doubles.
3015
3016 Sped up quoting of JSON strings by removing one traversal of the
3017 string.
3018
3019
kasperl@chromium.orga5551262010-12-07 12:49:48 +000030202010-12-07: Version 3.0.0
3021
3022 Improved performance by (partially) addressing issue 957 on
3023 IA-32. Still needs more work for the other architectures.
3024
3025
ager@chromium.orgbeb25712010-11-29 08:02:25 +000030262010-11-29: Version 2.5.9
3027
3028 Fixed crashes during GC caused by partially initialize heap
3029 objects.
3030
3031 Fixed bug in process sample that caused memory leaks.
3032
3033 Improved performance on ARM by implementing missing stubs and
3034 inlining.
3035
3036 Improved heap profiler support.
3037
3038 Added separate seeding on Windows of the random number generator
3039 used internally by the compiler (issue 936).
3040
3041 Exposed API for getting the name of the function used to construct
3042 an object.
3043
3044 Fixed date parser to handle one and two digit millisecond
3045 values (issue 944).
3046
3047 Fixed number parsing to disallow space between sign and
3048 digits (issue 946).
3049
3050
vegorov@chromium.org21b5e952010-11-23 10:24:40 +000030512010-11-23: Version 2.5.8
3052
3053 Removed dependency on Gay's dtoa.
3054
3055 Improved heap profiler precision and speed.
3056
3057 Reduced overhead of callback invocations on ARM.
3058
3059
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000030602010-11-18: Version 2.5.7
3061
3062 Fixed obscure evaluation order bug (issue 931).
3063
3064 Split the random number state between JavaScript and the private API.
3065
3066 Fixed performance bug causing GCs when generating stack traces on
3067 code from very large scripts.
3068
3069 Fixed bug in parser that allowed (foo):42 as a labelled statement
3070 (issue 918).
3071
3072 Provide more accurate results about used heap size via
3073 GetHeapStatistics.
3074
3075 Allow build-time customization of the max semispace size.
3076
3077 Made String.prototype.split honor limit when separator is empty
3078 (issue 929).
3079
3080 Added missing failure check after expecting an identifier in
3081 preparser (Chromium issue 62639).
3082
3083
ager@chromium.org01fe7df2010-11-10 11:59:11 +000030842010-11-10: Version 2.5.6
3085
3086 Added support for VFP rounding modes to the ARM simulator.
3087
3088 Fixed multiplication overflow bug (issue 927).
3089
3090 Added a limit for the amount of executable memory (issue 925).
3091
3092
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +000030932010-11-08: Version 2.5.5
3094
3095 Added more aggressive GC of external objects in near out-of-memory
3096 situations.
3097
3098 Fixed a bug that gave the incorrect result for String.split called
3099 on the empty string (issue 924).
3100
3101
lrn@chromium.orgfa943b72010-11-03 08:14:36 +000031022010-11-03: Version 2.5.4
3103
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +00003104 Improved V8 VFPv3 runtime detection to address issue 914.
lrn@chromium.orgfa943b72010-11-03 08:14:36 +00003105
3106
fschneider@chromium.orge03fb642010-11-01 12:34:09 +000031072010-11-01: Version 2.5.3
3108
3109 Fixed a bug that prevents constants from overwriting function values
3110 in object literals (issue 907).
3111
3112 Fixed a bug with reporting of impossible nested calls of DOM functions
3113 (issue http://crbug.com/60753).
3114
3115
lrn@chromium.org303ada72010-10-27 09:33:13 +000031162010-10-27: Version 2.5.2
3117
3118 Improved sampler resolution on Linux.
3119
3120 Allowed forcing the use of a simulator from the build script
3121 independently of the host architecture.
3122
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003123 Fixed FreeBSD port (issue 912).
lrn@chromium.org303ada72010-10-27 09:33:13 +00003124
3125 Made windows-tick-processor respect D8_PATH.
3126
3127 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
3128
3129
whesse@chromium.org4a5224e2010-10-20 12:37:07 +000031302010-10-20: Version 2.5.1
3131
3132 Fixed bug causing spurious out of memory exceptions
3133 (issue http://crbug.com/54580).
3134
3135 Fixed compilation error on Solaris platform (issue 901).
3136
3137 Fixed error in strtod (string to floating point number conversion)
3138 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
3139
3140 Adjusted randomized allocations of executable memory to have 64k
3141 granularity (issue http://crbug.com/56036).
3142
3143 Supported profiling using kernel perf_events on linux. Added ll_prof
3144 script to tools and --ll-prof flag to V8.
3145
3146
vegorov@chromium.org42841962010-10-18 11:18:59 +000031472010-10-18: Version 2.5.0
3148
3149 Fixed bug in cache handling of lastIndex on global regexps
3150 (issue http://crbug.com/58740).
3151
3152 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
3153 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +00003154 from Hewlett-Packard Development Company, LP).
vegorov@chromium.org42841962010-10-18 11:18:59 +00003155
3156 Fixed compilation error on ARM with gcc 4.4 (issue 894).
3157
3158
31592010-10-13: Version 2.4.9
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00003160
3161 Fixed a bug in the handling of conditional expressions in test
3162 contexts in compiler for top-level code.
3163
3164 Added "//@ sourceURL" information to the StackTrace API.
3165
3166 Exposed RegExp construction through the API.
3167
3168
ricow@chromium.orgeb7c1442010-10-04 08:54:21 +000031692010-10-04: Version 2.4.8
3170
3171 Fixed a bug in ResumeProfilerEx causing it to not always write out the
3172 whole snapshot (issue 868).
3173
3174 Performance improvements on all platforms.
3175
3176
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +000031772010-09-30: Version 2.4.7
3178
3179 Changed the command-line flag --max-new-space-size to be in kB and the
3180 flag --max-old-space-size to be in MB (previously they were in bytes).
3181
3182 Added Debug::CancelDebugBreak to the debugger API.
3183
3184 Fixed a bug in getters for negative numeric property names
3185 (https://bugs.webkit.org/show_bug.cgi?id=46689).
3186
3187 Performance improvements on all platforms.
3188
3189
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000031902010-09-27: Version 2.4.6
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00003191
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00003192 Fixed assertion failure related to copy-on-write arrays (issue 876).
3193
3194 Fixed build failure of 64-bit V8 on Windows.
3195
3196 Fixed a bug in RegExp (issue http://crbug.com/52801).
3197
3198 Improved the profiler's coverage to cover more functions (issue 858).
3199
3200 Fixed error in shift operators on 64-bit V8
3201 (issue http://crbug.com/54521).
3202
3203
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000032042010-09-22: Version 2.4.5
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00003205
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003206 Changed the RegExp benchmark to exercise the regexp engine on different
3207 inputs by scrambling the input strings.
3208
3209 Fixed a bug in keyed loads on strings.
3210
3211 Fixed a bug with loading global function prototypes.
3212
3213 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
3214
3215 Performance improvements on all platforms.
3216
3217
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +000032182010-09-15: Version 2.4.4
3219
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003220 Fixed bug with hangs on very large sparse arrays.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003221
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003222 Now tries harder to free up memory when running out of space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003223
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003224 Added heap snapshots to JSON format to API.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003225
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003226 Recalibrated benchmarks.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003227
3228
sgjesse@chromium.org2ec107f2010-09-13 09:19:46 +000032292010-09-13: Version 2.4.3
3230
3231 Made Date.parse properly handle TZ offsets (issue 857).
3232
3233 Performance improvements on all platforms.
3234
3235
ager@chromium.org5b2fbee2010-09-08 06:38:15 +000032362010-09-08: Version 2.4.2
3237
3238 Fixed GC crash bug.
3239
3240 Fixed stack corruption bug.
3241
3242 Fixed compilation for newer C++ compilers that found Operand(0)
3243 ambiguous.
3244
3245
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +000032462010-09-06: Version 2.4.1
3247
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003248 Added the ability for an embedding application to receive a callback
3249 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
3250 (V8::RemoveMemoryAllocationCallback) from the OS.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003251
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003252 Fixed several JSON bugs (including issue 855).
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003253
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003254 Fixed memory overrun crash bug triggered during V8's tick-based
3255 profiling.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003256
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003257 Performance improvements on all platforms.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003258
3259
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000032602010-09-01: Version 2.4.0
3261
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003262 Fixed bug in Object.freeze and Object.seal when Array.prototype or
3263 Object.prototype are changed (issue 842).
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003264
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003265 Updated Array.splice to follow Safari and Firefox when called
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003266 with zero arguments.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003267
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003268 Fixed a missing live register when breaking at keyed loads on ARM.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003269
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003270 Performance improvements on all platforms.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003271
3272
ricow@chromium.org65fae842010-08-25 15:26:24 +000032732010-08-25: Version 2.3.11
3274
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003275 Fixed bug in RegExp related to copy-on-write arrays.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003276
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003277 Refactored tools/test.py script, including the introduction of
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003278 VARIANT_FLAGS that allows specification of sets of flags with which
3279 all tests should be run.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003280
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003281 Fixed a bug in the handling of debug breaks in CallIC.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003282
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003283 Performance improvements on all platforms.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003284
3285
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000032862010-08-23: Version 2.3.10
3287
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003288 Fixed bug in bitops on ARM.
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00003289
3290 Build fixes for unusual compilers.
3291
3292 Track high water mark for RWX memory.
3293
3294 Performance improvements on all platforms.
3295
3296
ricow@chromium.org0b9f8502010-08-18 07:45:01 +000032972010-08-18: Version 2.3.9
3298
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003299 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003300
3301 Removed specialized handling of GCC 4.4 (issue 830).
3302
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003303 Fixed DST cache to take into account the suspension of DST in
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003304 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
3305
ricow@chromium.org65fae842010-08-25 15:26:24 +00003306 Performance improvements on all platforms.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003307
3308
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000033092010-08-16: Version 2.3.8
3310
3311 Fixed build with strict aliasing on GCC 4.4 (issue 463).
3312
3313 Fixed issue with incorrect handling of custom valueOf methods on
3314 string wrappers (issue 760).
3315
3316 Fixed compilation for ARMv4 (issue 590).
3317
3318 Improved performance.
3319
3320
vegorov@chromium.org26c16f82010-08-11 13:41:03 +000033212010-08-11: Version 2.3.7
3322
3323 Reduced size of heap snapshots produced by heap profiler (issue 783).
3324
3325 Introduced v8::Value::IsRegExp method.
3326
3327 Fixed CPU profiler crash in start / stop sequence when non-existent
3328 name is passed (issue http://crbug.com/51594).
3329
3330 Introduced new indexed property query callbacks API (issue 816). This
3331 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
3332 by default.
3333
3334 Removed support for object literal get/set with number/string
3335 property name.
3336
3337 Fixed handling of JSObject::elements in CalculateNetworkSize
3338 (issue 822).
3339
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003340 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003341
3342
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000033432010-08-09: Version 2.3.6
3344
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003345 RegExp literals create a new object every time they are evaluated
3346 (issue 704).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003347
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003348 Object.seal and Object.freeze return the modified object (issue 809).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003349
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003350 Fixed building using GCC 4.4.4.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003351
3352
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +000033532010-08-04: Version 2.3.5
3354
3355 Added support for ES5 property names. Object initialisers and
3356 dot-notation property access now allows keywords. Also allowed
3357 non-identifiers after "get" or "set" in an object initialiser.
3358
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003359 Randomized the addresses of allocated executable memory on Windows.
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +00003360
3361
whesse@chromium.orge90029b2010-08-02 11:52:17 +000033622010-08-02: Version 2.3.4
3363
3364 Fixed problems in implementation of ES5 function.prototype.bind.
3365
3366 Fixed error when using apply with arguments object on ARM (issue 784).
3367
3368 Added setting of global flags to debugger protocol.
3369
3370 Fixed an error affecting cached results of sin and cos (issue 792).
3371
3372 Removed memory leak from a boundary case where V8 is not initialized.
3373
3374 Fixed issue where debugger could set breakpoints outside the body
3375 of a function.
3376
3377 Fixed issue in debugger when using both live edit and step in features.
3378
3379 Added Number-letter (Nl) category to Unicode tables. These characters
3380 can now be used in identifiers.
3381
3382 Fixed an assert failure on X64 (issue 806).
3383
3384 Performance improvements on all platforms.
3385
3386
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +000033872010-07-26: Version 2.3.3
3388
3389 Fixed error when building the d8 shell in a fresh checkout.
3390
3391 Implemented Function.prototype.bind (ES5 15.3.4.5).
3392
3393 Fixed an error in inlined stores on ia32.
3394
3395 Fixed an error when setting a breakpoint at the end of a function
3396 that does not end with a newline character.
3397
3398 Performance improvements on all platforms.
3399
3400
fschneider@chromium.orged78ffd2010-07-21 11:05:19 +000034012010-07-21: Version 2.3.2
3402
3403 Fixed compiler warnings when building with LLVM.
3404
3405 Fixed a bug with for-in applied to strings (issue 785).
3406
3407 Performance improvements on all platforms.
3408
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00003409
ricow@chromium.org4980dff2010-07-19 08:33:45 +000034102010-07-19: Version 2.3.1
3411
3412 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
3413
3414 Fixed bug related to code flushing while compiling a lazy
3415 compilable function (issue http://crbug.com/49099).
3416
3417 Performance improvements on all platforms.
3418
3419
ager@chromium.orgb5737492010-07-15 09:29:43 +000034202010-07-15: Version 2.3.0
3421
3422 Added ES5 Object.seal and Object.isSealed.
3423
3424 Added debugger API for scheduling debugger commands from a
3425 separate thread.
3426
3427
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +000034282010-07-14: Version 2.2.24
3429
3430 Added API for capturing stack traces for uncaught exceptions.
3431
3432 Fixed crash bug when preparsing from a non-external V8 string
3433 (issue 775).
3434
3435 Fixed JSON.parse bug causing input not to be converted to string
3436 (issue 764).
3437
3438 Added ES5 Object.freeze and Object.isFrozen.
3439
3440 Performance improvements on all platforms.
3441
3442
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000034432010-07-07: Version 2.2.23
3444
3445 API change: Convert Unicode code points outside the basic multilingual
3446 plane to the replacement character. Previous behavior was to silently
3447 truncate the value to 16 bits.
3448
3449 Fixed crash: handle all flat string types in regexp replace.
3450
3451 Prevent invalid pre-parsing data passed in through the API from
3452 crashing V8.
3453
3454 Performance improvements on all platforms.
3455
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00003456
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000034572010-07-05: Version 2.2.22
3458
3459 Added ES5 Object.isExtensible and Object.preventExtensions.
3460
3461 Enabled building V8 as a DLL.
3462
3463 Fixed a bug in date code where -0 was not interpreted as 0
3464 (issue 736).
3465
3466 Performance improvements on all platforms.
3467
3468
lrn@chromium.org32d961d2010-06-30 09:09:34 +000034692010-06-30: Version 2.2.21
3470
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003471 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003472
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003473 Updated JSON.stringify to floor the space parameter (issue 753).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003474
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003475 Updated the Mozilla test expectations to the newest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003476
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003477 Updated the ES5 Conformance Test expectations to the latest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003478
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003479 Updated the V8 benchmark suite.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003480
3481 Provide actual breakpoints locations in response to setBreakpoint
3482 and listBreakpoints requests.
3483
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003484
fschneider@chromium.org40b9da32010-06-28 11:29:21 +000034852010-06-28: Version 2.2.20
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003486
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003487 Fixed bug with for-in on x64 platform (issue 748).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003488
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003489 Fixed crash bug on x64 platform (issue 756).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003490
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003491 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003492
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003493 Fixed a bug on ARM that caused the result of 1 << x to be
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003494 miscalculated for some inputs.
3495
3496 Performance improvements on all platforms.
3497
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003498
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000034992010-06-23: Version 2.2.19
3500
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003501 Fixed bug that causes the build to break when profillingsupport=off
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003502 (issue 738).
3503
3504 Added expose-externalize-string flag for testing extensions.
3505
3506 Resolve linker issues with using V8 as a DLL causing a number of
3507 problems with unresolved symbols.
3508
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003509 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003510 defined.
3511
3512 Performance improvements on all platforms.
3513
3514
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000035152010-06-16: Version 2.2.18
3516
3517 Added API functions to retrieve information on indexed properties
3518 managed by the embedding layer. Fixes bug 737.
3519
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003520 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003521
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003522 Added heap profiling to the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003523
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003524 Removed old named property query from the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003525
3526 Incremental performance improvements.
3527
3528
ager@chromium.org2cc82ae2010-06-14 07:35:38 +000035292010-06-14: Version 2.2.17
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003530
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00003531 Improved debugger support for stepping out of functions.
3532
3533 Incremental performance improvements.
3534
3535
35362010-06-09: Version 2.2.16
3537
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003538 Removed the SetExternalStringDiposeCallback API. Changed the
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003539 disposal of external string resources to call a virtual Dispose
3540 method on the resource.
3541
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003542 Added support for more precise break points when debugging and
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003543 stepping.
3544
3545 Memory usage improvements on all platforms.
3546
3547
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000035482010-06-07: Version 2.2.15
3549
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003550 Added an API to control the disposal of external string resources.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003551
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003552 Added missing initialization of a couple of variables which makes
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003553 some compilers complaint when compiling with -Werror.
3554
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003555 Improved performance on all platforms.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003556
3557
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +000035582010-06-02: Version 2.2.14
3559
3560 Fixed a crash in code generated for String.charCodeAt.
3561
3562 Fixed a compilation issue with some GCC versions (issue 727).
3563
3564 Performance optimizations on x64 and ARM platforms.
3565
3566
ricow@chromium.org30ce4112010-05-31 10:38:25 +000035672010-05-31: Version 2.2.13
3568
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003569 Implemented Object.getOwnPropertyDescriptor for element indices and
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003570 strings (issue 599).
3571
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003572 Fixed bug for windows 64 bit C calls from generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003573
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003574 Added new scons flag unalignedaccesses for arm builds.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003575
3576 Performance improvements on all platforms.
3577
3578
kmillikin@chromium.org9155e252010-05-26 13:27:57 +000035792010-05-26: Version 2.2.12
3580
3581 Allowed accessors to be defined on objects rather than just object
3582 templates.
3583
3584 Changed the ScriptData API.
3585
3586
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000035872010-05-21: Version 2.2.11
3588
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003589 Fixed crash bug in liveedit on 64 bit.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003590
3591 Use 'full compiler' when debugging is active. This should increase
3592 the density of possible break points, making single step more fine
3593 grained. This will only take effect for functions compiled after
3594 debugging has been started, so recompilation of all functions is
3595 required to get the full effect. IA32 and x64 only for now.
3596
3597 Misc. fixes to the Solaris build.
3598
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003599 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003600
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003601 Added filtering of CPU profiles by security context.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003602
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003603 Fixed crash bug on ARM when running without VFP2 or VFP3.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003604
3605 Incremental performance improvements in all backends.
3606
3607
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000036082010-05-17: Version 2.2.10
3609
3610 Performance improvements in the x64 and ARM backends.
3611
3612
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000036132010-05-10: Version 2.2.9
3614
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003615 Allowed Object.create to be called with a function (issue 697).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003616
3617 Fixed bug with Date.parse returning a non-NaN value when called on a
3618 non date string (issue 696).
3619
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003620 Allowed unaligned memory accesses on ARM targets that support it (by
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003621 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003622
3623 C++ API for retrieving JavaScript stack trace information.
3624
3625
ager@chromium.orgac091b72010-05-05 07:34:42 +000036262010-05-05: Version 2.2.8
3627
3628 Performance improvements in the x64 and ARM backends.
3629
3630
kmillikin@chromium.org4111b802010-05-03 10:34:42 +000036312010-05-03: Version 2.2.7
3632
3633 Added support for ES5 date time string format to Date.parse.
3634
3635 Performance improvements in the x64 backend.
3636
3637
lrn@chromium.orgc34f5802010-04-28 12:53:43 +000036382010-04-28: Version 2.2.6
3639
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003640 Added "amd64" as recognized architecture in scons build script
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003641 (by Ryan Dahl <coldredlemur@gmail.com>).
3642
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003643 Fixed bug in String search and replace with very simple RegExps.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003644
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003645 Fixed bug in RegExp containing "\b^".
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003646
3647 Performance improvements on all platforms.
3648
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003649
fschneider@chromium.org013f3e12010-04-26 13:27:52 +000036502010-04-26: Version 2.2.5
3651
3652 Various performance improvements (especially for ARM and x64)
3653
3654 Fixed bug in CPU profiling (http://crbug.com/42137)
3655
3656 Fixed a bug with the natives cache.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003657
3658 Fixed two bugs in the ARM code generator that can cause
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003659 wrong calculations.
3660
3661 Fixed a bug that may cause a wrong result for shift operations.
3662
3663
36642010-04-21: Version 2.2.4
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00003665
3666 Fixed warnings on arm on newer GCC versions.
3667
3668 Fixed a number of minor bugs.
3669
3670 Performance improvements on all platforms.
3671
3672
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +000036732010-04-14: Version 2.2.3
3674
3675 Added stack command and mem command to ARM simulator debugger.
3676
3677 Fixed scons snapshot and ARM build, and Windows X64 build issues.
3678
3679 Performance improvements on all platforms.
3680
3681
ager@chromium.org357bf652010-04-12 11:30:10 +000036822010-04-12: Version 2.2.2
3683
3684 Introduced new profiler API.
3685
3686 Fixed random number generator to produce full 32 random bits.
3687
3688
lrn@chromium.org25156de2010-04-06 13:10:27 +000036892010-04-06: Version 2.2.1
3690
3691 Debugger improvements.
3692
3693 Fixed minor bugs.
3694
3695
ricow@chromium.orgaa1b6162010-03-29 07:44:58 +000036962010-03-29: Version 2.2.0
3697
3698 Fixed a few minor bugs.
3699
3700 Performance improvements for string operations.
3701
3702
ager@chromium.orgb26c50a2010-03-26 09:27:16 +000037032010-03-26: Version 2.1.10
3704
3705 Fixed scons build issues.
3706
3707 Fixed a couple of minor bugs.
3708
3709
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +000037102010-03-25: Version 2.1.9
3711
3712 Added API support for reattaching a global object to a context.
3713
3714 Extended debugger API with access to the internal debugger context.
3715
3716 Fixed Chromium crashes (issues http://crbug.com/39128 and
3717 http://crbug.com/39160)
3718
3719
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000037202010-03-24: Version 2.1.8
3721
3722 Added fine-grained garbage collection callbacks to the API.
3723
3724 Performance improvements on all platforms.
3725
3726
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000037272010-03-22: Version 2.1.7
3728
3729 Fixed issue 650.
3730
3731 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
fschneider@chromium.org086aac62010-03-17 13:18:24 +00003732
3733 Performance improvements for arithmetic operations.
3734
3735 Performance improvements for string operations.
3736
whesse@chromium.orgcec079d2010-03-22 14:44:04 +00003737 Print script name and line number information in stack trace.
3738
3739
37402010-03-17: Version 2.1.6
3741
3742 Performance improvements for arithmetic operations.
3743
3744 Performance improvements for string operations.
3745
3746
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000037472010-03-10: Version 2.1.4
3748
3749 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
3750
3751 Performance improvements on all platforms.
3752
3753
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000037542010-03-10: Version 2.1.3
3755
3756 Added API method for context-disposal notifications.
3757
3758 Added API method for accessing elements by integer index.
3759
3760 Added missing implementation of Uint32::Value and Value::IsUint32
3761 API methods.
3762
3763 Added IsExecutionTerminating API method.
3764
3765 Disabled strict aliasing for GCC 4.4.
3766
3767 Fixed string-concatenation bug (issue 636).
3768
3769 Performance improvements on all platforms.
3770
3771
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +000037722010-02-23: Version 2.1.2
3773
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003774 Fixed a crash bug caused by wrong assert.
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003775
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003776 Fixed a bug with register names on 64-bit V8 (issue 615).
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003777
3778 Performance improvements on all platforms.
3779
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003780
ager@chromium.org5c838252010-02-19 08:53:10 +000037812010-02-19: Version 2.1.1
3782
3783 [ES5] Implemented Object.defineProperty.
3784
3785 Improved profiler support.
3786
3787 Added SetPrototype method in the public V8 API.
3788
3789 Added GetScriptOrigin and GetScriptLineNumber methods to Function
3790 objects in the API.
3791
3792 Performance improvements on all platforms.
3793
3794
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000037952010-02-03: Version 2.1.0
3796
3797 Values are now always wrapped in objects when used as a receiver.
3798 (issue 223).
3799
3800 [ES5] Implemented Object.getOwnPropertyNames.
3801
3802 [ES5] Restrict JSON.parse to only accept strings that conforms to the
3803 JSON grammar.
3804
3805 Improvement of debugger agent (issue 549 and 554).
3806
3807 Fixed problem with skipped stack frame in profiles (issue 553).
3808
3809 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
3810 <ry@tinyclouds.org>.
3811
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003812 Fixed a bug that Math.round() returns incorrect results for huge
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003813 integers.
3814
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003815 Fixed enumeration order for objects created from some constructor
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003816 functions (isue http://crbug.com/3867).
3817
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003818 Fixed arithmetic on some integer constants (issue 580).
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003819
3820 Numerous performance improvements including porting of previous IA-32
3821 optimizations to x64 and ARM architectures.
3822
3823
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000038242010-01-14: Version 2.0.6
3825
3826 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
3827 GetOwnProperty, FromPropertyDescriptor.
3828
3829 Fixed Mac x64 build errors.
3830
3831 Improved performance of some math and string operations.
3832
3833 Improved performance of some regexp operations.
3834
3835 Improved performance of context creation.
3836
3837 Improved performance of hash tables.
3838
3839
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000038402009-12-18: Version 2.0.5
3841
3842 Extended to upper limit of map space to allow for 7 times as many map
3843 to be allocated (issue 524).
3844
3845 Improved performance of code using closures.
3846
3847 Improved performance of some binary operations involving doubles.
3848
3849
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000038502009-12-16: Version 2.0.4
3851
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003852 Added ECMAScript 5 Object.create.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003853
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003854 Improved performance of Math.max and Math.min.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003855
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003856 Optimized adding of strings on 64-bit platforms.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003857
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003858 Improved handling of external strings by using a separate table
3859 instead of weak handles. This improves garbage collection
3860 performance and uses less memory.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003861
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003862 Changed code generation for object and array literals in toplevel
3863 code to be more compact by doing more work in the runtime.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003864
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003865 Fixed a crash bug triggered when garbage collection happened during
3866 generation of a callback load inline cache stub.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003867
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003868 Fixed crash bug sometimes triggered when local variables shadowed
3869 parameters in functions that used the arguments object.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003870
3871
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +000038722009-12-03: Version 2.0.3
3873
3874 Optimized handling and adding of strings, for-in and Array.join.
3875
3876 Heap serialization is now non-destructive.
3877
3878 Improved profiler support with information on time spend in C++
3879 callbacks registered through the API.
3880
3881 Added commands to the debugger protocol for starting/stopping
3882 profiling.
3883
3884 Enabled the non-optimizing compiler for top-level code.
3885
3886 Changed the API to only allow strings to be set as data objects on
3887 Contexts and scripts to avoid potentially keeping global objects
3888 around for too long (issue 528).
3889
3890 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
3891
3892 Fixed bugs.
3893
3894
ager@chromium.org01beca72009-11-24 14:29:16 +000038952009-11-24: Version 2.0.2
3896
3897 Improved profiler support.
3898
3899 Fixed bug that broke compilation of d8 with readline support.
3900
3901
ager@chromium.org6141cbe2009-11-20 12:14:52 +000039022009-11-20: Version 2.0.1
3903
3904 Fixed crash bug in String.prototype.replace.
3905
3906 Reverted a change which caused Chromium interactive ui test
3907 failures.
3908
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003909
ager@chromium.orgc4c92722009-11-18 14:12:51 +000039102009-11-18: Version 2.0.0
3911
3912 Added support for VFP on ARM.
3913
3914 Added TryCatch::ReThrow method to the API.
3915
3916 Reduced the size of snapshots and improved the snapshot load time.
3917
3918 Improved heap profiler support.
3919
3920 64-bit version now supported on Windows.
3921
3922 Fixed a number of debugger issues.
3923
3924 Fixed bugs.
3925
3926
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +000039272009-10-29: Version 1.3.18
3928
3929 Reverted a change which caused crashes in RegExp replace.
3930
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003931 Reverted a change which caused Chromium ui_tests failure.
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +00003932
3933
ager@chromium.org3811b432009-10-28 14:53:37 +000039342009-10-28: Version 1.3.17
3935
3936 Added API method to get simple heap statistics.
3937
3938 Improved heap profiler support.
3939
3940 Fixed the implementation of the resource constraint API so it
3941 works when using snapshots.
3942
3943 Fixed a number of issues in the Windows 64-bit version.
3944
3945 Optimized calls to API getters.
3946
3947 Added valgrind notification on code modification to the 64-bit version.
3948
3949 Fixed issue where we logged shared library addresses on Windows at
3950 startup and never used them.
3951
3952
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000039532009-10-16: Version 1.3.16
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003954
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003955 X64: Convert smis to holding 32 bits of payload.
3956
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003957 Introduced v8::Integer::NewFromUnsigned method.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003958
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003959 Added missing null check in Context::GetCurrent.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003960
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003961 Added trim, trimLeft and trimRight methods to String
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003962 Patch by Jan de Mooij <jandemooij@gmail.com>
3963
3964 Implement ES5 Array.isArray
3965 Patch by Jan de Mooij <jandemooij@gmail.com>
3966
3967 Skip access checks for hidden properties.
3968
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003969 Added String::Concat(Handle<String> left, Handle<String> right) to the
3970 V8 API.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003971
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003972 Fixed GYP-based builds of V8.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003973
3974
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +000039752009-10-07: Version 1.3.15
3976
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003977 Expanded the maximum size of the code space to 512MB for 64-bit mode.
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +00003978
3979 Fixed a crash bug happening when starting profiling (issue
3980 http://crbug.com/23768).
3981
3982
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000039832009-10-07: Version 1.3.14
3984
3985 Added GetRealNamedProperty to the API to lookup real properties
3986 located on the object or in the prototype chain skipping any
3987 interceptors.
3988
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003989 Fixed the stack limits setting API to work correctly with threads. The
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003990 stack limit now needs to be set to each thread thich is used with V8.
3991
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003992 Removed the high-priority flag from IdleNotification()
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003993
3994 Ensure V8 is initialized before locking and unlocking threads.
3995
3996 Implemented a new JavaScript minifier for compressing the source of
ager@chromium.org3811b432009-10-28 14:53:37 +00003997 the built-in JavaScript. This removes non-Open Source code from Douglas
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003998 Crockford from the project.
3999
4000 Added a missing optimization in StringCharAt.
4001
4002 Fixed some flaky socket tests.
4003
4004 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
4005 in 64-bit mode.
4006
4007 Fixed memory leaks in the thread management code.
4008
4009 Fixed the result of assignment to a pixel array. The assigned value
4010 is now the result.
4011
4012 Error reporting for invalid left-hand sides in for-in statements, pre-
4013 and postfix count expressions, and assignments now matches the JSC
4014 behavior in Safari 4.
4015
4016 Follow the spec in disallowing function declarations without a name.
4017
4018 Always allocate code objects within a 2 GB range. On x64 architecture
4019 this is used to use near calls (32-bit displacement) in Code objects.
4020
4021 Optimized array construction ported to x64 and ARM architectures.
4022
4023 [ES5] Changed Object.keys to return strings for element indices.
4024
4025
ager@chromium.org68e7ab72009-09-23 09:40:39 +000040262009-09-23: Version 1.3.13
4027
4028 Fixed uninitialized memory problem.
4029
4030 Improved heap profiler support.
4031
4032
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000040332009-09-22: Version 1.3.12
4034
4035 Changed behavior of |function|.toString() on built-in functions to
4036 be compatible with other implementations. Patch by Jan de Mooij.
4037
4038 Added Object::IsDirty in the API.
4039
4040 Optimized array construction; it is now handled purely in native
4041 code.
4042
4043 [ES5] Made properties of the arguments array enumerable.
4044
4045 [ES5] Added test suite adapter for the es5conform test suite.
4046
4047 [ES5] Added Object.keys function.
4048
ager@chromium.org68e7ab72009-09-23 09:40:39 +00004049
ager@chromium.org4af710e2009-09-15 12:20:11 +000040502009-09-15: Version 1.3.11
4051
4052 Fixed crash in error reporting during bootstrapping.
4053
4054 Optimized generated IA32 math code by using SSE2 instructions when
4055 available.
4056
4057 Implemented missing pieces of debugger infrastructure on ARM. The
4058 debugger is now fully functional on ARM.
4059
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004060 Made 'hidden' the default visibility for gcc.
ager@chromium.org4af710e2009-09-15 12:20:11 +00004061
4062
ager@chromium.orga1645e22009-09-09 19:27:10 +000040632009-09-09: Version 1.3.10
4064
4065 Fixed profiler on Mac in 64-bit mode.
4066
4067 Optimized creation of objects from simple constructor functions on
4068 ARM.
4069
4070 Fixed a number of debugger issues.
4071
4072 Reduced the amount of memory consumed by V8.
4073
4074
ager@chromium.org18ad94b2009-09-02 08:22:29 +000040752009-09-02: Version 1.3.9
4076
4077 Optimized stack guard checks on ARM.
4078
4079 Optimized API operations by inlining more in the API.
4080
4081 Optimized creation of objects from simple constructor functions.
4082
4083 Enabled a number of missing optimizations in the 64-bit port.
4084
4085 Implemented native-code support for regular expressions on ARM.
4086
4087 Stopped using the 'sahf' instruction on 64-bit machines that do
4088 not support it.
4089
4090 Fixed a bug in the support for forceful termination of JavaScript
4091 execution.
4092
4093
ager@chromium.org96c75b52009-08-26 09:13:16 +000040942009-08-26: Version 1.3.8
4095
4096 Changed the handling of idle notifications to allow idle
4097 notifications when V8 has not yet been initialized.
4098
4099 Fixed ARM simulator compilation problem on Windows.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004100
ager@chromium.org96c75b52009-08-26 09:13:16 +00004101
ager@chromium.orgab99eea2009-08-25 07:05:41 +000041022009-08-25: Version 1.3.7
4103
4104 Reduced the size of generated code on ARM platforms by reducing
4105 the size of constant pools.
4106
4107 Changed build files to not include the 'ENV' user environment
4108 variable in the build environment.
4109
4110 Changed the handling of idle notifications.
4111
4112
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +000041132009-08-21: Version 1.3.6
4114
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004115 Added support for forceful termination of JavaScript execution.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00004116
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004117 Added low memory notification to the API. The embedding host can signal
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00004118 a low memory situation to V8.
4119
4120 Changed the handling of global handles (persistent handles in the API
4121 sense) to avoid issues regarding allocation of new global handles
4122 during weak handle callbacks.
4123
4124 Changed the growth policy of the young space.
4125
4126 Fixed a GC issue introduced in version 1.3.5.
4127
4128
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000041292009-08-19: Version 1.3.5
4130
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004131 Optimized initialization of some arrays in the builtins.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00004132
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004133 Fixed mac-nm script to support filenames with spaces.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00004134
4135 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
4136
4137 Changed typeof RegExp from 'object' to 'function' for compatibility.
4138 Fixed bug where regexps were not callable across contexts.
4139
4140 Added context independent script compilation to the API.
4141
4142 Added API call to get the stack trace for an exception.
4143
4144 Added API for getting object mirrors.
4145
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004146 Made sure that SSE3 instructions are used whenever possible even when
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00004147 running off a snapshot generated without using SSE3 instructions.
4148
4149 Tweaked the handling of the initial size and growth policy of the heap.
4150
4151 Added native code generation for RegExp to 64-bit version.
4152
4153 Added JavaScript debugger support to 64-bit version.
4154
4155
ager@chromium.orgadd848f2009-08-13 12:44:13 +000041562009-08-13: Version 1.3.4
4157
4158 Added a readline() command to the d8 shell.
4159
4160 Fixed bug in json parsing.
4161
4162 Added idle notification to the API and reduced memory on idle
4163 notifications.
4164
4165
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +000041662009-08-12: Version 1.3.3
4167
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004168 Fixed issue 417: incorrect %t placeholder expansion.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004169
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004170 Added .gitignore file similar to Chromium's one.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004171
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004172 Fixed SConstruct file to build with new logging code for Android.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004173
4174 API: added function to find instance of template in prototype
4175 chain. Inlined Object::IsInstanceOf.
4176
4177 Land change to notify valgrind when we modify code on x86.
4178
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004179 Added api call to determine whether a string can be externalized.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004180
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004181 Added a write() command to d8.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004182
4183
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +000041842009-08-05: Version 1.3.2
4185
4186 Started new compiler infrastructure for two-pass compilation using a
4187 control flow graph constructed from the AST.
4188
4189 Profiler stack sampling for X64.
4190
4191 Safe handling of NaN to Posix platform-dependent time functions.
4192
4193 Added a new profiler control API to unify controlling various aspects
4194 of profiling.
4195
4196 Fixed issue 392.
4197
4198
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000041992009-07-30: Version 1.3.1
4200
4201 Speed improvements to accessors and interceptors.
4202
4203 Added support for capturing stack information on custom errors.
4204
4205 Added support for morphing an object into a pixel array where its
4206 indexed properties are stored in an external byte array. Values written
4207 are always clamped to the 0..255 interval.
4208
4209 Profiler on x64 now handles C/C++ functions from shared libraries.
4210
4211 Changed the debugger to avoid stepping into function.call/apply if the
4212 function is a built-in.
4213
4214 Initial implementation of constructor heap profile for JS objects.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004215
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00004216 More fine grained control of profiling aspects through the API.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004217
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00004218 Optimized the called as constructor check for API calls.
4219
4220
kasperl@chromium.orge959c182009-07-27 08:59:04 +000042212009-07-27: Version 1.3.0
4222
4223 Allowed RegExp objects to be called as functions (issue 132).
4224
4225 Fixed issue where global property cells would escape after
4226 detaching the global object; see http://crbug.com/16276.
4227
4228 Added support for stepping into setters and getters in the
4229 debugger.
4230
4231 Changed the debugger to avoid stopping in its own JavaScript code
4232 and in the code of built-in functions.
4233
4234 Fixed issue 345 by avoiding duplicate escaping labels.
4235
4236 Fixed ARM code generator crash in short-circuited boolean
4237 expressions and added regression tests.
4238
4239 Added an external allocation limit to avoid issues where small V8
4240 objects would hold on to large amounts of external memory without
4241 causing garbage collections.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004242
4243 Finished more of the inline caching stubs for x64 targets.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004244
4245
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000042462009-07-13: Version 1.2.14
4247
4248 Added separate paged heap space for global property cells and
4249 avoid updating the write barrier when storing into them.
4250
4251 Improved peep-hole optimization on ARM platforms by not emitting
4252 unnecessary debug information.
4253
4254 Re-enabled ICs for loads and calls that skip a global object
4255 during lookup through the prototype chain.
4256
4257 Allowed access through global proxies to use ICs.
4258
4259 Fixed issue 401.
4260
4261
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000042622009-07-09: Version 1.2.13
4263
4264 Fixed issue 397, issue 398, and issue 399.
4265
4266 Added support for breakpoint groups.
4267
4268 Fixed bugs introduced with the new global object representation.
4269
4270 Fixed a few bugs in the ARM code generator.
4271
4272
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000042732009-07-06: Version 1.2.12
4274
4275 Added stack traces collection to Error objects accessible through
4276 the e.stack property.
4277
4278 Changed RegExp parser to use a recursive data structure instead of
4279 stack-based recursion.
4280
4281 Optimized Date object construction and string concatenation.
4282
4283 Improved performance of div, mod, and mul on ARM platforms.
4284
4285
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000042862009-07-02: Version 1.2.11
4287
4288 Improved performance on IA-32 and ARM.
4289
4290 Fixed profiler sampler implementation on Mac OS X.
4291
4292 Changed the representation of global objects to improve
4293 performance of adding a lot of new properties.
4294
4295
ager@chromium.org3e875802009-06-29 08:26:34 +000042962009-06-29: Version 1.2.10
4297
4298 Improved debugger support.
4299
4300 Fixed bug in exception message reporting (issue 390).
4301
4302 Improved overall performance.
4303
4304
ager@chromium.org5aa501c2009-06-23 07:57:28 +000043052009-06-23: Version 1.2.9
4306
4307 Improved math performance on ARM.
4308
4309 Fixed profiler name-inference bug.
4310
4311 Fixed handling of shared libraries in the profiler tick processor
4312 scripts.
4313
4314 Fixed handling of tests that time out in the test scripts.
4315
4316 Fixed compilation on MacOS X version 10.4.
4317
4318 Fixed two bugs in the regular expression engine.
4319
4320 Fixed a bug in the string type inference.
4321
4322 Fixed a bug in the handling of 'constant function' properties.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004323
ager@chromium.org5aa501c2009-06-23 07:57:28 +00004324 Improved overall performance.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004325
ager@chromium.org5aa501c2009-06-23 07:57:28 +00004326
ager@chromium.orgeadaf222009-06-16 09:43:10 +000043272009-06-16: Version 1.2.8
4328
4329 Optimized math on ARM platforms.
4330
4331 Fixed two crash bugs in the handling of getters and setters.
4332
4333 Improved the debugger support by adding scope chain information.
4334
4335 Improved the profiler support by compressing log data transmitted
4336 to clients.
4337
4338 Improved overall performance.
4339
4340
ager@chromium.orge2902be2009-06-08 12:21:35 +000043412009-06-08: Version 1.2.7
4342
4343 Improved debugger and profiler support.
4344
4345 Reduced compilation time by improving the handling of deferred
4346 code.
4347
4348 Optimized interceptor accesses where the property is on the object
4349 on which the interceptors is attached.
4350
4351 Fixed compilation problem on GCC 4.4 by changing the stack
4352 alignment to 16 bytes.
4353
4354 Fixed handle creation to follow stric aliasing rules.
4355
4356 Fixed compilation on FreeBSD.
4357
4358 Introduced API for forcing the deletion of a property ignoring
4359 interceptors and attributes.
4360
4361
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +000043622009-05-29: Version 1.2.6
4363
4364 Added a histogram recording hit rates at different levels of the
4365 compilation cache.
4366
4367 Added stack overflow check for the RegExp analysis phase. Previously a
4368 very long regexp graph could overflow the stack with recursive calls.
4369
4370 Use a dynamic buffer when collecting log events in memory.
4371
4372 Added start/stop events to the profiler log.
4373
4374 Fixed infinite loop which could happen when setting a debug break while
4375 executing a RegExp compiled to native code.
4376
4377 Fixed handling of lastIndexOf called with negative index (issue 351).
4378
4379 Fixed irregular crash in profiler test (issue 358).
4380
4381 Fixed compilation issues with some versions of gcc.
4382
4383
kasperl@chromium.org71affb52009-05-26 05:44:31 +000043842009-05-26: Version 1.2.5
4385
4386 Fixed bug in initial boundary check for Boyer-Moore text
4387 search (issue 349).
4388
4389 Fixed compilation issues with MinGW and gcc 4.3+ and added support
4390 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
4391 Craig Schlenter.
4392
4393 Added a script cache to the debugger.
4394
4395 Optimized compilation performance by improving internal data
4396 structures and avoiding expensive property load optimizations for
4397 code that's infrequently executed.
4398
4399 Exposed the calling JavaScript context through the static API
4400 function Context::GetCalling().
4401
4402
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000044032009-05-18: Version 1.2.4
4404
4405 Improved performance of floating point number allocation for ARM
4406 platforms.
4407
4408 Fixed crash when using the instanceof operator on functions with
4409 number values in their prototype chain (issue 341).
4410
4411 Optimized virtual frame operations in the code generator to speed
4412 up compilation time and allocated the frames in the zone.
4413
4414 Made the representation of virtual frames and jump targets in the
4415 code generator much more compact.
4416
4417 Avoided linear search for non-locals in scope code when resolving
4418 variables inside with and eval scopes.
4419
4420 Optimized lexical scanner by dealing with whitespace as part of
4421 the token scanning instead of as a separate step before it.
4422
4423 Changed the scavenging collector so that promoted objects do not
4424 reside in the old generation while their remembered set is being
4425 swept for pointers into the young generation.
4426
4427 Fixed numeric overflow handling when compiling count operations.
4428
4429
ager@chromium.org9085a012009-05-11 19:22:57 +000044302009-05-11: Version 1.2.3
4431
4432 Fixed bug in reporting of out-of-memory situations.
4433
4434 Introduced hidden prototypes on certain builtin prototype objects
4435 such as String.prototype to emulate JSC's behavior of restoring
4436 the original function when deleting functions from those prototype
4437 objects.
4438
4439 Fixed crash bug in the register allocator.
4440
4441
ager@chromium.org5ec48922009-05-05 07:25:34 +000044422009-05-04: Version 1.2.2
4443
4444 Fixed bug in array sorting for sparse arrays (issue 326).
4445
4446 Added support for adding a soname when building a shared library
4447 on Linux (issue 151).
4448
4449 Fixed bug caused by morphing internal ASCII strings to external
4450 two-byte strings. Slices over ASCII strings have to forward ASCII
4451 checks to the underlying buffer string.
4452
4453 Allowed API call-as-function handlers to be called as
4454 constructors.
4455
4456 Fixed a crash bug where an external string was disposed but a
4457 slice of the external string survived as a symbol.
4458
4459
ager@chromium.org3a37e9b2009-04-27 09:26:21 +000044602009-04-27: Version 1.2.1
4461
4462 Added EcmaScript 5 JSON object.
4463
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004464 Fixed bug in preemption support on ARM.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00004465
4466
ager@chromium.org65dad4b2009-04-23 08:48:43 +000044672009-04-23: Version 1.2.0
4468
4469 Optimized floating-point operations on ARM.
4470
4471 Added a number of extensions to the debugger API.
4472
4473 Changed the enumeration order for unsigned integer keys to always
4474 be numerical order.
4475
4476 Added a "read" extension to the shell sample.
4477
4478 Added support for Array.prototype.reduce and
4479 Array.prototype.reduceRight.
4480
4481 Added an option to the SCons build to control Microsoft Visual C++
4482 link-time code generation.
4483
4484 Fixed a number of bugs (in particular issue 315, issue 316,
4485 issue 317 and issue 318).
4486
4487
kasperl@chromium.org2d18d102009-04-15 13:27:32 +000044882009-04-15: Version 1.1.10
4489
4490 Fixed crash bug that occurred when loading a const variable in the
4491 presence of eval.
4492
4493 Allowed using with and eval in registered extensions in debug mode
4494 by fixing bogus assert.
4495
4496 Fixed the source position for function returns to enable the
4497 debugger to break there.
4498
4499
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +000045002009-04-14: Version 1.1.9
4501
4502 Made the stack traversal code in the profiler robust by avoiding
4503 to look into the heap.
4504
4505 Added name inferencing for anonymous functions to facilitate
4506 debugging and profiling.
4507
4508 Re-enabled stats timers in the developer shell (d8).
4509
4510 Fixed issue 303 by avoiding to shortcut cons-symbols.
4511
4512
kasperl@chromium.orgacae3782009-04-11 09:17:08 +000045132009-04-11: Version 1.1.8
4514
4515 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
4516
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004517 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00004518 the debugger (issue 269).
4519
4520 Fixed v8::Object::DeleteHiddenValue to not bail out when there
4521 are no hidden properties.
4522
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004523 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00004524 entries with deleted resources would lead to NPEs when looking
4525 up in the symbol table.
4526
4527
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +000045282009-04-07: Version 1.1.7
4529
4530 Added support for easily importing additional environment
4531 variables into the SCons build.
4532
4533 Optimized strict equality checks.
4534
4535 Fixed crash in indexed setters on objects without a corresponding
4536 getter (issue 298).
4537
4538 Re-enabled script compilation cache.
4539
4540
ager@chromium.org8682a592009-04-01 10:47:14 +000045412009-04-01: Version 1.1.6
4542
4543 Reverted an unsafe code generator change.
4544
4545
ager@chromium.org71daaf62009-04-01 07:22:49 +000045462009-04-01: Version 1.1.5
4547
4548 Fixed bug that caused function literals to not be optimized as
4549 much as other functions.
4550
4551 Improved profiler support.
4552
4553 Fixed a crash bug in connection with debugger unloading.
4554
4555 Fixed a crash bug in the code generator caused by losing the
4556 information that a frame element was copied.
4557
4558 Fixed an exception propagation bug that could cause non-null
4559 return values when exceptions were thrown.
4560
4561
ager@chromium.org41826e72009-03-30 13:30:57 +000045622009-03-30: Version 1.1.4
4563
4564 Optimized String.prototype.match.
4565
4566 Improved the stack information in profiles.
4567
4568 Fixed bug in ARM port making it possible to compile the runtime
4569 system for thumb mode again.
4570
4571 Implemented a number of optimizations in the code generator.
4572
4573 Fixed a number of memory leaks in tests.
4574
4575 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00004576 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +00004577
4578
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +000045792009-03-24: Version 1.1.3
4580
4581 Fixed assertion failures in compilation of loop conditions.
4582
4583 Removed STL dependency from developer shell (d8).
4584
4585 Added infrastructure for protecting the V8 heap from corruption
4586 caused by memory modifications from the outside.
4587
4588
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000045892009-03-24: Version 1.1.2
4590
4591 Improved frame merge code generated by the code generator.
4592
4593 Optimized String.prototype.replace.
4594
4595 Implemented __defineGetter__ and __defineSetter__ for properties
4596 with integer keys on non-array objects.
4597
4598 Improved debugger and profiler support.
4599
4600 Fixed a number of portability issues to allow compilation for
4601 smaller ARM devices.
4602
4603 Exposed object cloning through the API.
4604
4605 Implemented hidden properties. This is used to expose an identity
4606 hash for objects through the API.
4607
4608 Implemented restarting of regular expressions if their input
4609 string changes representation during preemption.
4610
4611 Fixed a code generator bug that could cause assignments in loops
4612 to be ignored if using continue to break out of the loop (issue
4613 284).
4614
4615
ager@chromium.org3a6061e2009-03-12 14:24:36 +000046162009-03-12: Version 1.1.1
4617
4618 Fixed an assertion in the new compiler to take stack overflow
4619 exceptions into account.
4620
4621 Removed exception propagation code that could cause crashes.
4622
4623 Fixed minor bug in debugger line number computations.
4624
4625 8-byte align the C stack on Linux and Windows to speed up floating
4626 point computations.
4627
4628
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000046292009-03-12: Version 1.1.0
4630
4631 Improved code generation infrastructure by doing simple register
4632 allocation and constant folding and propagation.
4633
4634 Optimized regular expression matching by avoiding to create
4635 intermediate string arrays and by flattening nested array
4636 representations of RegExp data.
4637
4638 Traverse a few stack frames when recording profiler samples to
4639 include partial call graphs in the profiling output.
4640
4641 Added support for using OProfile to profile generated code.
4642
4643 Added remote debugging support to the D8 developer shell.
4644
4645 Optimized creation of nested literals like JSON objects.
4646
4647 Fixed a bug in garbage collecting unused maps and turned it on by
4648 default (--collect-maps).
4649
4650 Added support for running tests under Valgrind.
4651
4652
kasperl@chromium.org061ef742009-02-27 12:16:20 +000046532009-02-27: Version 1.0.3
4654
4655 Optimized double-to-integer conversions in bit operations by using
4656 SSE3 instructions if available.
4657
4658 Optimized initialization sequences that store to multiple
4659 properties of the same object.
4660
4661 Changed the D8 debugger frontend to use JSON messages.
4662
4663 Force garbage collections when disposing contexts.
4664
4665 Align code objects at 32-byte boundaries.
4666
4667
ager@chromium.org381abbb2009-02-25 13:23:22 +000046682009-02-25: Version 1.0.2
4669
4670 Improved profiling support by performing simple call stack
4671 sampling for ticks and by fixing a bug in the logging of code
4672 addresses.
4673
4674 Fixed a number of debugger issues.
4675
4676 Optimized code that uses eval.
4677
4678 Fixed a couple of bugs in the regular expression engine.
4679
4680 Reduced the size of generated code for certain regular expressions.
4681
4682 Removed JSCRE completely.
4683
4684 Fixed issue where test could not be run if there was a dot in the
4685 checkout path.
4686
4687
ager@chromium.org6f10e412009-02-13 10:11:16 +000046882009-02-13: Version 1.0.1
4689
4690 Fixed two crash-bugs in irregexp (issue 231 and 233).
4691
4692 Fixed a number of minor bugs (issue 87, 227 and 228).
4693
4694 Added support for morphing strings to external strings on demand
4695 to avoid having to create copies in the embedding code.
4696
4697 Removed experimental support for external symbol callbacks.
4698
4699
iposva@chromium.org245aa852009-02-10 00:49:54 +000047002009-02-09: Version 1.0.0
4701
4702 Fixed crash-bug in the code generation for case independent 16 bit
4703 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004704
iposva@chromium.org245aa852009-02-10 00:49:54 +00004705 Made shells more robust in the presence of string conversion
4706 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004707
iposva@chromium.org245aa852009-02-10 00:49:54 +00004708 Fixed a potential infinite loop when attempting to resolve
4709 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004710
iposva@chromium.org245aa852009-02-10 00:49:54 +00004711 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004712
iposva@chromium.org245aa852009-02-10 00:49:54 +00004713 Reduced binary by stripping unneeded text from JavaScript library and
4714 minifying some JavaScript files.
4715
4716
ager@chromium.orgddb913d2009-01-27 10:01:48 +000047172009-01-27: Version 0.4.9
4718
4719 Enabled new regular expression engine.
4720
4721 Made a number of changes to the debugger protocol.
4722
4723 Fixed a number of bugs in the preemption support.
4724
4725 Added -p option to the developer shell to run files in parallel
4726 using preemption.
4727
4728 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
4729 193, 198 and 201).
4730
4731 Fixed a number of bugs in the serialization/deserialization
4732 support for the ARM platform.
4733
4734
sgjesse@chromium.org715915b2009-01-19 16:08:47 +000047352009-01-19: Version 0.4.8.1
4736
4737 Minor patch to debugger support.
4738
4739
ager@chromium.org32912102009-01-16 10:38:43 +000047402009-01-16: Version 0.4.8
4741
4742 Fixed string length bug on ARM (issue 171).
4743
4744 Made most methods in the API const.
4745
4746 Optimized object literals by improving data locality.
4747
4748 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00004749 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +00004750
4751 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00004752 eval to behave incorrectly when using accessors (issues 186, 190
4753 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +00004754
4755
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000047562009-01-06: Version 0.4.7
4757
ager@chromium.org32912102009-01-16 10:38:43 +00004758 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004759
ager@chromium.org32912102009-01-16 10:38:43 +00004760 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004761
ager@chromium.org32912102009-01-16 10:38:43 +00004762 Fixed subtle bug that caused the wrong 'this' to be used when
4763 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004764
ager@chromium.org32912102009-01-16 10:38:43 +00004765 Inline array loads within loops directly in the code instead of
4766 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004767
ager@chromium.org32912102009-01-16 10:38:43 +00004768
ager@chromium.org8bb60582008-12-11 12:02:20 +000047692008-12-11: Version 0.4.6
4770
4771 Fixed exception reporting bug where certain exceptions were
4772 incorrectly reported as uncaught.
4773
4774 Improved the memory allocation strategy used during compilation to
4775 make running out of memory when compiling huge scripts less
4776 likely.
4777
4778 Optimized String.replace by avoiding the construction of certain
4779 sub strings.
4780
4781 Fixed bug in code generation for large switch statements on ARM.
4782
4783 Fixed bug that caused V8 to change the global object template
4784 passed in by the user.
4785
4786 Changed the API for creating object groups used during garbage
4787 collection. Entire object groups are now passed to V8 instead of
4788 individual members of the groups.
4789
ager@chromium.org32912102009-01-16 10:38:43 +00004790
ager@chromium.orga74f0da2008-12-03 16:05:52 +000047912008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004792
ager@chromium.orga74f0da2008-12-03 16:05:52 +00004793 Added experimental API support for allocating V8 symbols as
4794 external strings.
4795
4796 Fixed bugs in debugging support on ARM.
4797
4798 Changed eval implementation to correctly detect whether or not a
4799 call to eval is aliased.
4800
4801 Fixed bug caused by a combination of the compilation cache and
4802 dictionary probing in native code. The bug caused us to sometimes
4803 call functions that had not yet been compiled.
4804
4805 Added platform support for FreeBSD.
4806
4807 Added support for building V8 on Windows with either the shared or
4808 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +00004809
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004810 Added the v8::jscre namespace around the jscre functions to avoid
4811 link errors (duplicate symbols) when building Google Chrome.
4812
ager@chromium.orga74f0da2008-12-03 16:05:52 +00004813 Added support for calling a JavaScript function with the current
4814 debugger execution context as its argument to the debugger
4815 interface.
4816
4817 Changed the type of names of counters from wchar_t to char.
4818
4819 Changed the Windows system call used to compute daylight savings
4820 time. The system call that we used to use became four times
4821 slower on WinXP SP3.
4822
4823 Added support in the d8 developer shell for memory-mapped counters
4824 and added a stats-viewer tool.
4825
4826 Fixed bug in upper/lower case mappings (issue 149).
4827
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004828
ager@chromium.org3bf7b912008-11-17 09:09:45 +000048292008-11-17: Version 0.4.4
4830
4831 Reduced code size by using shorter instruction encoding when
4832 possible.
4833
4834 Added a --help option to the shell sample and to the d8 shell.
4835
4836 Added visual studio project files for building the ARM simulator.
4837
4838 Fixed a number of ARM simulator issues.
4839
4840 Fixed bug in out-of-memory handling on ARM.
4841
4842 Implemented shell support for passing arguments to a script from
4843 the command line.
4844
4845 Fixed bug in date code that made certain date functions return -0
4846 instead of 0 for dates before the epoch.
4847
4848 Restricted applications of eval so it can only be used in the
4849 context of the associated global object.
4850
4851 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +00004852
4853
ager@chromium.org870a0b62008-11-04 11:43:05 +000048542008-11-04: Version 0.4.3
4855
4856 Added support for API accessors that prohibit overwriting by
4857 accessors defined in JavaScript code by using __defineGetter__ and
4858 __defineSetter__.
4859
4860 Improved handling of conditionals in test status files.
4861
4862 Introduced access control in propertyIsEnumerable.
4863
4864 Improved performance of some string operations by caching
4865 information about the type of the string between operations.
4866
4867 Fixed bug in fast-case code for switch statements that only have
4868 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +00004869
ager@chromium.org870a0b62008-11-04 11:43:05 +00004870
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000048712008-10-30: Version 0.4.2
4872
4873 Improved performance of Array.prototype.concat by moving the
4874 implementation to C++ (issue 123).
4875
4876 Fixed heap growth policy to avoid growing old space to its maximum
4877 capacity before doing a garbage collection and fixed issue that
4878 would lead to artificial out of memory situations (issue 129).
4879
4880 Fixed Date.prototype.toLocaleDateString to return the date in the
4881 same format as WebKit.
4882
4883 Added missing initialization checks to debugger API.
4884
4885 Added removing of unused maps during GC.
4886
4887
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000048882008-10-28: Version 0.4.1
4889
4890 Added caching of RegExp data in compilation cache.
4891
4892 Added Visual Studio project file for d8 shell.
4893
4894 Fixed function call performance regression introduced in version
4895 0.4.0 when splitting the global object in two parts (issue 120).
4896
4897 Fixed issue 131 by checking for empty handles before throwing and
4898 reporting exceptions.
4899
4900
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000049012008-10-23: Version 0.4.0
4902
4903 Split the global object into two parts: The state holding global
4904 object and the global object proxy.
4905
4906 Fixed bug that affected the value of an assignment to an element
4907 in certain cases (issue 116).
4908
4909 Added GetPropertyNames functionality (issue 33) and extra Date
4910 functions (issue 77) to the API.
4911
4912 Changed WeakReferenceCallback to take a Persistent<Value> instead
4913 of a Persistent<Object> (issue 101).
4914
4915 Fixed issues with message reporting for exceptions in try-finally
4916 blocks (issues 73 and 75).
4917
ager@chromium.org32912102009-01-16 10:38:43 +00004918 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004919
4920 Improved Boyer-Moore implementation for faster indexOf operations.
4921
4922 Added development shell (d8) which includes counters and
4923 completion support.
4924
4925 Fixed problem with the receiver passed to functions called from
4926 eval (issue 124).
4927
4928
ager@chromium.org7c537e22008-10-16 08:43:32 +000049292008-10-16: Version 0.3.5
4930
4931 Improved string hash-code distribution by excluding bit-field bits
4932 from the hash-code.
4933
4934 Changed string search algorithm used in indexOf from KMP to
4935 Boyer-Moore.
4936
4937 Improved the generated code for the instanceof operator.
4938
4939 Improved performance of slow-case string equality checks by
4940 specializing the code based on the string representation.
4941
4942 Improve the handling of out-of-memory situations (issue 70).
4943
4944 Improved performance of strict equality checks.
4945
4946 Improved profiler output to make it easier to see anonymous
4947 functions.
4948
4949 Improved performance of slow-case keyed loads.
4950
4951 Improved property access performance by allocating a number of
4952 properties in the front object.
4953
4954 Changed the toString behavior on the built-in object constructors
4955 to print [native code] instead of the actual source. Some web
4956 applications do not like constructors with complex toString
4957 results.
ager@chromium.org32912102009-01-16 10:38:43 +00004958
ager@chromium.org7c537e22008-10-16 08:43:32 +00004959
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000049602008-10-06: Version 0.3.4
4961
4962 Changed Array.prototype.sort to use quick sort.
4963
4964 Fixed code generation issue where leaving a finally block with
4965 break or continue would accumulate elements on the expression
4966 stack (issue 86).
4967
4968 Made sure that the name accessor on functions returns the expected
4969 names for builtin JavaScript functions and C++ callback functions.
4970
4971 Added fast case code for extending the property storage array of
4972 JavaScript objects.
4973
4974 Ported switch statement optimizations introduced in version 0.3.3
4975 to the ARM code generator.
4976
4977 Allowed GCC to use strict-aliasing rules when compiling.
4978
4979 Improved performance of arguments object allocation by taking care
4980 of arguments adaptor frames in the generated code.
4981
4982 Updated the V8 benchmark suite to version 2.
4983
4984
ager@chromium.org236ad962008-09-25 09:45:57 +000049852008-09-25: Version 0.3.3
4986
4987 Improved handling of relocation information to enable more
4988 peep-hole optimizations.
4989
4990 Optimized switch statements where all labels are constant small
4991 integers.
4992
4993 Optimized String.prototype.indexOf for common cases.
4994
4995 Fixed more build issues (issue 80).
4996
4997 Fixed a couple of profiler issues.
4998
4999 Fixed bug where the body of a function created using the Function
5000 constructor was not allowed to end with a single-line comment
5001 (issue 85).
5002
5003 Improved handling of object literals by canonicalizing object
5004 literal maps. This will allow JSON objects with the same set of
5005 properties to share the same map making inline caching work better
5006 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +00005007
ager@chromium.org236ad962008-09-25 09:45:57 +00005008
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000050092008-09-17: Version 0.3.2
5010
5011 Generalized the EvalCache into a CompilationCache and enabled it
5012 for scripts too. The current strategy is to retire all entries
5013 whenever a mark-sweep collection is started.
5014
5015 Fixed bug where switch statements containing only a default case
5016 would lead to an unbalanced stack (issue 69).
5017
5018 Fixed bug that made access to the function in a named function
5019 expression impossible in certain situations (issue 24).
5020
5021 Fixed even more build issues.
5022
5023 Optimized calling conventions on ARM. The conventions on ARM and
5024 IA-32 now match.
5025
5026 Removed static initializers for flags and counters.
5027
5028 Improved inline caching behavior for uncommon cases where lazily
5029 loading Date and RegExp code could force certain code paths go
5030 megamorphic.
5031
5032 Removed arguments adaption for builtins written in C++. This
5033 makes Array.prototype.push and Array.prototype.pop slightly
5034 faster.
5035
5036
ager@chromium.org9258b6b2008-09-11 09:11:10 +000050372008-09-11: Version 0.3.1
5038
5039 Fixed a number of build issues.
5040
5041 Fixed problem with missing I-cache flusing on ARM.
5042
5043 Changed space layout in memory management by splitting up
5044 code space into old data space and code space.
5045
5046 Added utf-8 conversion support to the API (issue 57).
5047
5048 Optimized repeated calls to eval with the same strings. These
5049 repeated calls are common in web applications.
5050
5051 Added Xcode project file.
5052
5053 Optimized a couple of Array operation.
5054
5055 Fixed parser bug by checking for end-of-string when parsing break
5056 and continue (issue 35).
5057
5058 Fixed problem where asian characters were not categorized as
5059 letters.
5060
5061 Fixed bug that disallowed calling functions fetched from an array
5062 using a string as an array index (issue 32).
5063
5064 Fixed bug where the internal field count on object templates were
5065 sometimes ignored (issue 54).
5066
5067 Added -f option to the shell sample for compatibility with other
5068 engines (issue 18).
5069
5070 Added source info to TryCatches in the API.
5071
5072 Fixed problem where the seed for the random number generator was
5073 clipped in a double to unsigned int conversion.
5074
5075 Fixed bug where cons string symbols were sometimes converted to
5076 non-symbol flat strings during GC.
5077
5078 Fixed bug in error reporting when attempting to convert null to an
5079 object.
ager@chromium.org32912102009-01-16 10:38:43 +00005080
5081
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000050822008-09-04: Version 0.3.0
5083
5084 Added support for running tests on the ARM simulator.
5085
5086 Fixed bug in the 'in' operator where negative indices were not
5087 treated correctly.
5088
5089 Fixed build issues on gcc-4.3.1.
5090
5091 Changed Date.prototype.toLocaleTimeString to not print the
5092 timezone part of the time.
5093
5094 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
5095 with user code.
5096
5097
v8.team.kasperl727e9952008-09-02 14:56:44 +000050982008-09-02: Version 0.2.5
5099
5100 Renamed the top level directory 'public' to 'include'.
5101
5102 Added 'env' option to the SCons build scripts to support
5103 overriding the ENV part of the build environment. This is mostly
5104 to support Windows builds in cases where SCons cannot find the
5105 correct paths to the Windows SDK, as these paths cannot be passed
5106 through shell environment variables.
5107
5108 Enabled "Buffer Security Check" on for the Windows SCons build and
5109 added the linker option /OPT:ICF as an optimization.
5110
5111 Added the V8 benchmark suite to the repository.
5112
5113
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000051142008-09-01: Version 0.2.4
5115
5116 Included mjsunit JavaScript test suite and C++ unit tests.
5117
5118 Changed the shell sample to not print the result of executing a
5119 script provided on the command line.
5120
5121 Fixed issue when building samples on Windows using a shared V8
5122 library. Added visibility option on Linux build which makes the
5123 generated library 18% smaller.
5124
5125 Changed build system to accept multiple build modes in one build
5126 and generate separate objects, libraries and executables for each
5127 mode.
5128
5129 Removed deferred negation optimization (a * -b => -(a * b)) since
5130 this visibly changes operand conversion order.
5131
5132 Improved parsing performance by introducing stack guard in
5133 preparsing. Without a stack guard preparsing always bails out
5134 with stack overflow.
5135
5136 Changed shell sample to take flags directly from the command-line.
5137 Added API call that implements this.
5138
5139 Added load, quit and version functions to the shell sample so it's
5140 easier to run benchmarks and tests.
5141
5142 Fixed issue with building samples and cctests on 64-bit machines.
5143
5144 Fixed bug in the runtime system where the prototype chain was not
5145 always searched for a setter when setting a property that does not
5146 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +00005147
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00005148
mads.s.agercbaa0602008-08-14 13:41:48 +000051492008-08-14: Version 0.2.3
5150
5151 Improved performance of garbage collection by moving the
5152 function that updates pointers during compacting collection
5153 into the updating visitor. This gives the compiler a better
5154 chance to inline and avoid a function call per (potential)
5155 pointer.
5156
5157 Extended the shell sample with a --runtime-flags option.
5158
5159 Added Visual Studio project files for the shell.cc and
5160 process.cc samples.
5161
5162
51632008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +00005164
5165 Improved performance of garbage collection by changing the way
5166 we use the marking stack in the event of stack overflow during
5167 full garbage collection and by changing the way we mark roots.
5168
5169 Cleaned up ARM version by removing top of stack caching and by
5170 introducing push/pop elimination.
5171
5172 Cleaned up the way runtime functions are called to allow
5173 runtime calls with no arguments.
5174
5175 Changed Windows build options to make sure that exceptions are
5176 disabled and that optimization flags are enabled.
5177
5178 Added first version of Visual Studio project files.
5179
5180
mads.s.agercbaa0602008-08-14 13:41:48 +000051812008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00005182
5183 Improved performance of unary addition by avoiding runtime calls.
5184
5185 Fixed the handling of '>' and '<=' to use right-to-left conversion
5186 and left-to-right evaluation as specified by ECMA-262.
5187
5188 Fixed a branch elimination bug on the ARM platform where incorrect
5189 code was generated because of overly aggressive branch
5190 elimination.
5191
5192 Improved performance of code that repeatedly assigns the same
5193 function to the same property of different objects with the same
5194 map.
5195
5196 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
5197 no longer expects DEBUG to be defined.
5198
5199 Added platform-nullos.cc to serve as the basis for new platform
5200 implementations.
5201
mads.s.ager31e71382008-08-13 09:32:07 +00005202
mads.s.agercbaa0602008-08-14 13:41:48 +000052032008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +00005204
5205 Changed all text files to have native svn:eol-style.
5206
5207 Added a few samples and support for building them. The samples
5208 include a simple shell that can be used to benchmark and test V8.
5209
5210 Changed V8::GetVersion to return the version as a string.
5211
5212 Added source for lazily loaded scripts to snapshots and made
5213 serialization non-destructive.
5214
5215 Improved ARM support by fixing the write barrier code to use
5216 aligned loads and stores and by removing premature locals
5217 optimization that relied on broken support for callee-saved
5218 registers (removed).
5219
5220 Refactored the code for marking live objects during garbage
5221 collection and the code for allocating objects in paged
5222 spaces. Introduced an abstraction for the map word of a heap-
5223 allocated object and changed the memory allocator to allocate
5224 executable memory only for spaces that may contain code objects.
5225
5226 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
5227 they can be used by debugging and logging modules. Added
5228 thread-safe message queues for dealing with debugger events.
5229
5230 Fixed the source code reported by toString for certain builtin
5231 empty functions and made sure that the prototype property of a
5232 function is enumerable.
5233
5234 Improved performance of converting values to condition flags in
5235 generated code.
5236
5237 Merged disassembler-{arch} files.
5238
5239
mads.s.agercbaa0602008-08-14 13:41:48 +000052402008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +00005241
5242 Added support for storing JavaScript stack traces in a stack
5243 allocated buffer to make it visible in shallow core dumps.
5244 Controlled by the --preallocate-message-memory flag which is
5245 disabled by default.
5246
5247
mads.s.agercbaa0602008-08-14 13:41:48 +000052482008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00005249
5250 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
5251 map transitions would count as properties.
5252
5253 Allowed aliased eval invocations by treating them as evals in the
5254 global context. This may change in the future.
5255
5256 Added support for accessing the last entered context through the
5257 API and renamed Context::Current to Context::GetCurrent and
5258 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
5259
5260 Fixed bug in the debugger that would cause the debugger scripts to
5261 be recursively loaded and changed all disabling of interrupts to
5262 be block-structured.
5263
5264 Made snapshot data read-only to allow it to be more easily shared
5265 across multiple users of V8 when linked as a shared library.
5266
5267
mads.s.agercbaa0602008-08-14 13:41:48 +000052682008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00005269
5270 Fixed building on Mac OS X by recognizing i386 and friends as
5271 IA-32 platforms.
5272
5273 Added propagation of stack overflow exceptions that occur while
5274 compiling nested functions.
5275
5276 Improved debugger with support for recursive break points and
5277 handling of exceptions that occur in the debugger JavaScript code.
5278
5279 Renamed GetInternal to GetInternalField and SetInternal to
5280 SetInternalField in the API and moved InternalFieldCount and
5281 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
5282
5283
mads.s.agercbaa0602008-08-14 13:41:48 +000052842008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00005285
5286 Fixed bug in stack overflow check code for IA-32 targets where a
5287 non-tagged value in register eax was pushed to the stack.
5288
5289 Fixed potential quadratic behavior when converting strings to
5290 numbers.
5291
5292 Fixed bug where the return value from Object::SetProperty could
5293 end up being the property holder instead of the written value.
5294
5295 Improved debugger support by allowing nested break points and by
5296 dealing with stack-overflows when compiling functions before
5297 setting break points in them.
5298
5299
mads.s.agercbaa0602008-08-14 13:41:48 +000053002008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005301
kasper.lundbd3ec4e2008-07-09 11:06:54 +00005302 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005303
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00005304# Local Variables:
5305# mode:text
5306# End: