blob: 3c113b2f75b2c1af6cfe7ad89dcca0b9d51c0953 [file] [log] [blame]
machenbach@chromium.orgc1789ee2013-07-05 07:09:57 +000012013-07-05: Version 3.20.2
2
3 Remove deprecated heap profiler methods from V8 public API
4
5 Mark i18n functions as native and set proper names
6 (issue 2745)
7
8 Correctly report stack trace when current function is FunctionApply
9 builtin (Chromium issue 252097)
10
11 Enable GDBJIT interface for standalone by default.
12
13 Fix debuggersupport=off build. (issue 2754)
14
15 Introduce -m64 flag for making x64 when the default gcc compiler is for
16 X32
17
18 Performance and stability improvements on all platforms.
19
20
jkummerow@chromium.org93a47f42013-07-02 14:43:41 +0000212013-07-02: Version 3.20.1
22
23 Implemented WeakMap.prototype.clear function. (issue 2753)
24
25 Ensure CheckInitialized is present independent of define.
26 (Chromium issue 255779)
27
28 Performance and stability improvements on all platforms.
29
30
mstarzinger@chromium.org1510d582013-06-28 14:00:48 +0000312013-06-28: Version 3.20.0
32
33 Migrated several tests from blink to V8 repository.
34
35 Allowed users of the V8 API to distinguish between unset and undefined
36 HiddenValues (issue 2746).
37
38 Deprecated old style callbacks in the V8 API.
39
40 Turned on parallel recompilation.
41
42 Performance and stability improvements on all platforms.
43
44
dslomov@chromium.orgb752d402013-06-18 11:54:54 +0000452013-06-18: Version 3.19.18
46
47 Fixed read-only attribute of Function.length in strict mode.
48 (issue 2705)
49
50 Fixed Runtime_SetProperty to properly handle OOM failures
51 (Chromium issue 249873)
52
53 Emit deprecated check for constant function transitions.
54 (Chromium issue 250609)
55
56 Made MathFloorOfDiv optimization trigger more often
57 (Issue 2205)
58
59 Make more GCs in idle notification handler.
60 (Chromium issue 241815)
61
62 Increased default type info threshold.
63 (Issue 2730)
64
65 Performance and stability improvements on all platforms.
66
67
682013-06-14: Version 3.19.16
69
70 Performance and stability improvements on all platforms.
71
72
danno@chromium.orgf95d4b92013-06-13 14:40:17 +0000732013-06-13: Version 3.19.15
74
75 Performance and stability improvements on all platforms.
76
77
danno@chromium.org41728482013-06-12 22:31:22 +0000782013-06-13: Version 3.19.14
79
80 Fixed crashes when calling new Array(a) with a single argument that
81 could result in creating a holey array with a packed elements kind.
82 (Chromium issue 245480)
83
84 Fixed issues in parallel compilation.
85 (Chromium issue 248076)
86
87 Performance and stability improvements on all platforms.
88
89
ulan@chromium.org837a67e2013-06-11 15:39:48 +0000902013-06-11: Version 3.19.13
91
92 Performance and stability improvements on all platforms.
93
94
verwaest@chromium.org8a00e822013-06-10 15:11:22 +0000952013-06-10: Version 3.19.12
96
97 Fixed arguments array access. (Chromium issue 247303)
98
99 Fixed bug in LookupForWrite. (Chromium issue 242332)
100
101 Performance and stability improvements on all platforms.
102
103
danno@chromium.org1fd77d52013-06-07 16:01:45 +00001042013-06-07: Version 3.19.11
105
106 Performance and stability improvements on all platforms.
107
108
ulan@chromium.orgdfe53072013-06-06 14:14:51 +00001092013-06-06: Version 3.19.10
110
111 Performance and stability improvements on all platforms.
112
113
verwaest@chromium.orgd4be0f02013-06-05 13:39:03 +00001142013-06-05: Version 3.19.9
115
116 Implemented Load IC support for loading properties from primitive
117 values to avoid perpetual soft deopts. (Chromium issue 242512)
118
119 Implemented Freeing of PerThreadAssertData when possible to avoid
120 memory leak. (Chromium issue 246567)
121
122 Removed V8_USE_OLD_STYLE_PERSISTENT_HANDLE_VISITORS.
123
124 Performance and stability improvements on all platforms.
125
126
rossberg@chromium.org79e79022013-06-03 15:43:46 +00001272013-06-03: Version 3.19.8
128
129 Fixed bug with inlining 'Array' function. (Chromium issue 244461)
130
131 Fixed initialization of literal objects. (Chromium issue 245424)
132
133 Fixed function name inferred inside closures. (Chromium issue 224884)
134
135 Performance and stability improvements on all platforms.
136
137
rossberg@chromium.orgb99c7542013-05-31 11:40:45 +00001382013-05-31: Version 3.19.7
139
140 Added support for //# sourceURL similar to deprecated //@ sourceURL one.
141 (issue 2702)
142
143 Made sure IfBuilder::Return clears the current block.
144 (Chromium issue 243868)
145
146 Fixed two CPU profiler tests on ARM and MIPS simulators
147 (issue 2628)
148
149 Fixed idle incremental GC for large objects.
150 (Chromium issue 241815)
151
152 Disabled --optimize-constructed-arrays due to crashes
153 (Chromium issue 244461)
154
155 Performance and stability improvements on all platforms.
156
157
jkummerow@chromium.orgc1184022013-05-28 16:58:15 +00001582013-05-28: Version 3.19.6
159
160 Fixed IfBuilder::Deopt to clear the current block
161 (Chromium issue 243868).
162
163 Performance and stability improvements on all platforms.
164
165
svenpanne@chromium.org53ad1752013-05-27 12:20:38 +00001662013-05-27: Version 3.19.5
167
168 Reset regexp parser flag after scanning ahead for capture groups.
169 (issue 2690)
170
171 Removed flakiness in test-cpu-profiler/SampleWhenFrameIsNotSetup.
172 (issue 2628)
173
174 Performance and stability improvements on all platforms.
175
176
svenpanne@chromium.orga53e8e02013-05-24 12:35:50 +00001772013-05-24: Version 3.19.4
178
179 Fixed edge case in stack trace formatting. (Chromium issue 237617)
180
181 Fixed embedded new-space pointer in LCmpObjectEqAndBranch. (Chromium
182 issue 240032)
183
184 Made Object.freeze fast (issue 1858, Chromium issue 115960)
185
186 Fixed bogus deopt in BuildEmitDeepCopy for holey arrays. (Chromium issue
187 242924)
188
189 Performance and stability improvements on all platforms.
190
191
ulan@chromium.orgbf9432e2013-05-22 14:05:23 +00001922013-05-22: Version 3.19.3
193
194 Performance and stability improvements on all platforms.
195
196
jkummerow@chromium.org4e308cf2013-05-17 13:39:16 +00001972013-05-17: Version 3.19.2
198
199 Fill in one-word-fillers for the unused property fields
200 (Chromium issue 240056).
201
202 Removed use_system_v8 logic from the mainline gyp file
203 (Chromium issue 226860).
204
205 Skip CPU profiler samples where top function's stack frame is not
206 set up properly (issue 2628).
207
208 Performance and stability improvements on all platforms.
209
210
ulan@chromium.org906e2fb2013-05-14 08:14:38 +00002112013-05-14: Version 3.19.1
212
213 Fixed missing hole check for loads from Smi arrays when all uses are
214 changes (Chromium issue 233737)
215
216 Performance and stability improvements on all platforms.
217
218
ulan@chromium.org57ff8812013-05-10 08:16:55 +00002192013-05-10: Version 3.19.0
220
221 Deprecated Context::New which returns Persistent.
222
223 Added Persistent<T>::Reset which disposes the handle and redirects it to
224 point to another object.
225
226 Deprecated WriteAscii and MayContainNonAscii.
227
228 Exposed AssertNoAllocation to API.
229
230 Performance and stability improvements on all platforms.
231
232
danno@chromium.orgf005df62013-04-30 16:36:45 +00002332013-04-30: Version 3.18.5
234
235 Allowed setting debugger breakpoints on CompareNilICs (issue 2660)
236
237 Fixed beyond-heap load on x64 Crankshafted StringCharFromCode
238 (Chromium issue 235311)
239
240 Change 'Parse error' to three more informative messages.
241 (Chromium issue 2636)
242
243 Performance and stability improvements on all platforms.
244
245
danno@chromium.orgca29dd82013-04-26 11:59:48 +00002462013-04-26: Version 3.18.4
247
248 Added a preliminary API for ES6 ArrayBuffers
249
250 Replaced qsort with std::sort. (Chromium issue 2639)
251
252 Performance and stability improvements on all platforms.
253
254
ulan@chromium.org32d7dba2013-04-24 10:59:06 +00002552013-04-24: Version 3.18.3
256
257 Exposed the GC under a name that is less collision prone than window.gc.
258 (issue 2641)
259
260 Do not emit double values at their use sites. (Chromium issue 234101)
261
262 Added methods to allow resuming execution after calling
263 TerminateExecution(). (issue 2361)
264
265 Performance and stability improvements on all platforms.
266
267
ulan@chromium.org77ca49a2013-04-22 09:43:56 +00002682013-04-22: Version 3.18.2
269
270 OS::MemMove/OS::MemCopy: Don't call through to generated code when size
271 == 0 to avoid prefetching invalid memory (Chromium issue 233500)
272
273 Removed heap snapshot size limit. (Chromium issue 232305)
274
275 Performance and stability improvements on all platforms.
276
277
mstarzinger@chromium.orgb228be02013-04-18 14:56:59 +00002782013-04-18: Version 3.18.1
279
280 Removed SCons related files and deprecated test suite configurations.
281
282 Improved handling of unary plus (issue 2527).
283
284 Performance and stability improvements on all platforms.
285
286
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +00002872013-04-17: Version 3.18.0
288
289 Enabled pretenuring of fast literals in high promotion mode.
290
291 Removed preparser library; link preparser executable against full V8.
292
293 Fixed set-up of intrinsic's 'constructor' properties.
294 (Chromium issue 229445)
295
296 ES6 symbols: extended V8 API to support symbols (issue 2158).
297
298 Removed ARM support for VFP2.
299
300 Made __proto__ a real JavaScript accessor property.
301 (issue 1949 and issue 2606)
302
303 Performance and stability improvements on all platforms.
304
305
mstarzinger@chromium.orgf705b502013-04-04 11:38:09 +00003062013-04-04: Version 3.17.16
307
308 Stack trace API: poison stack frames below the first strict mode frame.
309 (issue 2564)
310
311 Made Isolate::GetHeapStatistics robust against half-initialized
312 isolates (Chromium issue 2591).
313
314 Finished implementation of ES6 symbols aka. private names (issue 2158).
315
316 Performance and stability improvements on all platforms.
317
318
danno@chromium.orgc99cd482013-03-21 15:26:42 +00003192013-03-21: Version 3.17.15
320
321 Rolled back API changes to maintain compatibility with older
322 3.17.x versions of V8.
323
324 Disable zapping of global handles in release mode.
325
326 Always mark the entire valid prefix of the descriptor array.
327 (Chromium issue 196331)
328
329 Use internal memcpy for CopyWords and when copying code.
330 (Chromium issue 196330)
331
332 Performance and stability improvements on all platforms.
333
334
jkummerow@chromium.org7bd87f02013-03-20 18:06:29 +00003352013-03-20: Version 3.17.14
336
337 Use internal memcpy when initializing code objects.
338 (Chromium issue 196330)
339
340 Disabled weak embedded maps because of crashes.
341 (Chromium issues 172489, 217858)
342
343 Performance and stability improvements on all platforms.
344
345
jkummerow@chromium.org4c54a2a2013-03-19 17:51:30 +00003462013-03-19: Version 3.17.13
347
348 Turned Flags into a uint32_t typedef (Chromium issue 194749).
349
350 Performance and stability improvements on all platforms.
351
352
svenpanne@chromium.org876cca82013-03-18 14:43:20 +00003532013-03-18: Version 3.17.12
354
355 Unified kMaxArguments with number of bits used to encode it.
356 (Chromium issue 211741)
357
358 Fixed detection of |handle_smi| case in
359 HOptimizedGraphBuilder::HandlePolymorphicCallNamed.
360 (Chromium issue 196583)
361
362 Performance and stability improvements on all platforms.
363
364
svenpanne@chromium.org2bda5432013-03-15 12:39:50 +00003652013-03-15: Version 3.17.11
366
367 Added a version of the v8::HandleScope constructor with an v8::Isolate
368 parameter and made AdjustAmountOfExternalAllocatedMemory an instance
369 method of v8::Isolate.
370 (issue 2487)
371
372 Fixed two register allocator bugs (off-by-one error/failure
373 propagation). (issue 2576)
374
375 Fixed huge heap snapshot when a heavily shared context has many
376 variables. (Chromium issue 145687)
377
378 Performance and stability improvements on all platforms.
379
380
ulan@chromium.org6e196bf2013-03-13 09:38:22 +00003812013-03-13: Version 3.17.10
382
383 Fixed heap snapshot creation for Harmony collections. (issue 2535)
384
385 Fixed register allocation corner case. (Chromium issue 177883)
386
387 Performance and stability improvements on all platforms.
388
389
svenpanne@chromium.org9faefa42013-03-08 13:13:16 +00003902013-03-08: Version 3.17.9
391
392 Restored Function()'s expected string representation. (issue 2470)
393
394 Enabled deprecatations (again). (issue 2487)
395
396 Avoid bool to Oddball conversions by being lazy. (issue 2491)
397
398 Added %p option to --logfile.
399
400 Hardened Function()'s parsing of function literals. (issue 2470)
401
402 ES6 symbols: Refine test for getOwnPropertyNames. (issue 2158)
403
404 Performance and stability improvements on all platforms.
405
406
ulan@chromium.org750145a2013-03-07 15:14:13 +00004072013-03-07: Version 3.17.8
408
409 Added missing license headers. (Chromium issue 98597)
410
411 Inserted missing type cast in JSON.stringify. (issue 2570)
412
413 Reverted "Send SIGPROF signals on the profiler event processor thread"
414 (issue 2571)
415
416 Fixed Array.length, String.length and Function.prototype LoadICs on x64.
417 (issue 2568)
418
419 ES6 symbols: filter symbols form for-in loops and Object.keys.
420 (issue 2158)
421
422 Properly handle misses for StoreArrayLengthStub on ia32 and x64
423 (issue 2566)
424
425 Fixed x32 handling of Atomic64. (Chromium issue chromium-os:36866)
426
427 Removed "library" variable from standalone.gypi. (Chromium issue 111541)
428
429 Fixed HCheckSmiOrInt <-> HBoundsCheck interaction wrt. representations.
430 (issue 2556)
431
432 Enabled zapping of disposed global handles in release mode.
433 (Chromium issue 176056)
434
435 Added workaround for redefinition of __proto__ property. (issue 2565)
436
437 ES6 symbols: Allow symbols as property names. (issue 2158)
438
439 Performance and stability improvements on all platforms.
440
441
yangguo@chromium.org4a9f6552013-03-04 14:46:33 +00004422013-03-04: Version 3.17.7
443
444 Limited recursion in regexp compilation by a budget.
445 (Chromium issue 178790)
446
447 ES6 symbols: Implemented Symbol intrinsic and basic functionality
448 (issue 2158)
449
450 Performance and stability improvements on all platforms.
451
452
hpayer@chromium.org8432c912013-02-28 15:55:26 +00004532013-02-28: Version 3.17.6
454
455 Fixed materialization of arguments objects with unknown values.
456 (Chromium issue 163530)
457
458 Set default number of sweeper threads to at most four.
459
460 Performance and stability improvements on all platforms.
461
462
mstarzinger@chromium.org71fc3462013-02-27 09:34:27 +00004632013-02-27: Version 3.17.5
464
465 Made __proto__ a foreign callback on Object.prototype.
466 (issue 621, issue 1949 and issue 2441)
467
468 Performance and stability improvements on all platforms.
469
470
ulan@chromium.org09d7ab52013-02-25 15:50:35 +00004712013-02-25: Version 3.17.4
472
473 Performance and stability improvements on all platforms.
474
475
ulan@chromium.org2e04b582013-02-21 14:06:02 +00004762013-02-21: Version 3.17.3
477
478 Performance and stability improvements on all platforms.
479
480
yangguo@chromium.orgc03a1922013-02-19 13:55:47 +00004812013-02-19: Version 3.17.2
482
483 Removed bogus check for TOP register in deoptimizer.
484 (Chromium issue 176943)
485
486 Made the Isolate parameter mandatory for internal HandleScopes.
487 (issue 2487)
488
489 Fixed f.apply() optimization when declared arguments are mutated.
490 (issue 2539)
491
492 Performance and stability improvements on all platforms.
493
494
ulan@chromium.org6ba1fd02013-02-14 14:56:11 +00004952013-02-14: Version 3.17.1
496
497 Performance and stability improvements on all platforms.
498
499
hpayer@chromium.org7c3372b2013-02-13 17:26:04 +00005002013-02-13: Version 3.17.0
501
502 Enabled parallel sweeping.
503
504 Don't try to unlink instructions twice during GVN
505 (Chromium issue 175141)
506
507 Fixed code flusher disabling while marking incrementally.
508 (Chromium issue 173458, 168582)
509
510 Don't use TLS for space iterators.
511 (issue 2531)
512
513 Added new GetHeapStatistics API entry and deprecated old one.
514
515 Fixed DoubleStackSlot-to-DoubleStackSlot moves on ia32. Unified
516 platform-independent code.
517 (Chromium issue 173907)
518
519 Added --trace-array-abuse to help find OOB accesses.
520
521 Performance and stability improvements on all platforms.
522
523
mmassi@chromium.org2f0efde2013-02-06 14:12:58 +00005242013-02-06: Version 3.16.14
525
526 Performance and stability improvements on all platforms.
527
528
danno@chromium.org94b0d6f2013-02-04 13:33:20 +00005292013-02-04: Version 3.16.13
530
531 Tagged stubs that rely on instance types as MEGAMORPHIC.
532 (Chromium issue 173974)
533
534 Fixed clearing of dead dependent codes and verifing of weak
535 embedded maps on full GC. (Chromium issue 172488,172489)
536
537 Made the arm port build cleanly with Clang.
538
539 Performance and stability improvements on all platforms.
540
541
mstarzinger@chromium.orge3b8d0f2013-02-01 09:06:41 +00005422013-01-31: Version 3.16.12
543
544 Performance and stability improvements on all platforms.
545
546
mstarzinger@chromium.org068ea0a2013-01-30 09:39:44 +00005472013-01-30: Version 3.16.11
548
549 Put making embedded maps in optimized code weak behind a flag.
550 (Chromium issue 172488,172489)
551
552 Performance and stability improvements on all platforms.
553
554
mvstanton@chromium.orgd16d8532013-01-25 13:29:10 +00005552013-01-25: Version 3.16.10
556
557 Avoid excessive memory usage during redundant phi elimination.
558 (issue 2510)
559
560 Fixed additional spec violations wrt RegExp.lastIndex.
561 (issue 2437)
562
563 Added Isolate parameter to Persistent class.
564 (issue 2487)
565
566 Performance and stability improvements on all platforms.
567
568
yangguo@chromium.org003650e2013-01-24 16:31:08 +00005692013-01-24: Version 3.16.9
570
571 Made embedded maps in optimized code weak.
572 (issue 2073)
573
574 Fixed corner case when JSFunction is evicted from flusher.
575 (Chromium issue 168801)
576
577 Correctly set kCanBeDivByZero flag for HMathFloorOfDiv.
578 (Chromium issue 171641)
579
580 Performance and stability improvements on all platforms.
581
582
mvstanton@chromium.org6bec0092013-01-23 13:46:53 +00005832013-01-23: Version 3.16.8
584
585 Correctly reset lastIndex in an RegExp object.
586 (Chromium issue 170856)
587
588 Added a workaround for Windows compilation problems related to V8EXPORT.
589 (issue 2507)
590
591 tools/run-tests.py: shlex.split() the value of --command-prefix
592 (Chromium issue 171553)
593
594 Fixed pattern detection for replacing shifts by rotation.
595 (Chromium issue 2499)
596
597 Performance and stability improvements on all platforms.
598
599
yangguo@chromium.org28381b42013-01-21 14:39:38 +00006002013-01-21: Version 3.16.7
601
602 Removed <(library) usage from v8.gyp.
603 (Chromium issue 111541)
604
605 Fixed out of bounds memory access in TestJSArrayForAllocationSiteInfo.
606 (Chromium issue 169928)
607
608 Performance and stability improvements on all platforms.
609
610
yangguo@chromium.org46a2a512013-01-18 16:29:40 +00006112013-01-18: Version 3.16.6
612
613 Made the Isolate parameter mandatory in Locker and Unlocker classes.
614 (issue 2487)
615
616 Avoid pointer underflow in CopyCharsUnsigned.
617 (issue 2493)
618
619 Generate shim headers when using system v8.
620 (Chromium issue 165264)
621
622 Fixed arguments materialization for inlined apply().
623 (issue 2489)
624
625 Sync'ed laziness between BuildFunctionInfo and MakeFunctionInfo.
626 (Chromium issue 147497)
627
628 Added sanity check to CodeFlusher::AddCandidate.
629 (Chromium issue 169209)
630
631 Performance and stability improvements on all platforms.
632
633
6342013-01-15: Version 3.16.5
635
636 Removed deprecated functions from V8's external API.
637
638 Prepared API for WebKit use of Latin-1.
639
640 Fixed V8 issue 2486.
641
642 Fixed Chromium issue 169723.
643
644 Performance and stability improvements on all platforms.
645
646
yangguo@chromium.org9768bf12013-01-11 14:51:07 +00006472013-01-11: Version 3.16.4
648
649 Fixed Chromium issues 168545 and 169209.
650
651 Performance and stability improvements on all platforms.
652
653
jkummerow@chromium.org59297c72013-01-09 16:32:23 +00006542013-01-09: Version 3.16.3
655
656 Improved GC performance when moving parts of a FixedArray (issue 2452).
657
658 Enabled readline on d8 while building a shared lib (issue 1781).
659
660 Fixed missing exception check in typed array constructor
661 (Chromium issue 168545).
662
663 Check for read-only-ness when preparing for array sort (issue 2419).
664
665 Performance and stability improvements on all platforms.
666
667
yangguo@chromium.org4cd70b42013-01-04 08:57:54 +00006682013-01-04: Version 3.16.2
669
670 Added Makefile options to build for the Raspberry Pi (armv7=0,
671 arm_fpu=vfp2).
672
673 Performance and stability improvements on all platforms.
674
675
ulan@chromium.org4121f232012-12-27 15:57:11 +00006762012-12-27: Version 3.16.1
677
678 Fixed x64 MathMinMax for negative untagged int32 arguments.
679 (Chromium issue 164442)
680
681 Fixed FloatingPointHelper::CheckSSE2OperandIsInt32.
682 (issue 2458)
683
684 Performance and stability improvements on all platforms.
685
686
yangguo@chromium.org9b8fc9f2012-12-21 13:47:00 +00006872012-12-21: Version 3.16.0
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000688
689 V8_Fatal now prints C++ stack trace in debug mode.
690
691 Added HTML-based tick processor.
692
693 Continued implementation of Object.observe (V8 issue 2409).
694
695 Fixed V8 issues 2243, 2340, 2393, 2399, 2457.
696
697 Fixed Chromium issues 125308, 165637, 166379, 166553.
698
699 Performance and stability improvements on all platforms.
700
701
jkummerow@chromium.org5323a9c2012-12-10 19:00:50 +00007022012-12-10: Version 3.15.11
703
704 Define CAN_USE_VFP2/3_INSTRUCTIONS based on arm_neon and arm_fpu GYP
705 flags.
706
707 Performance and stability improvements on all platforms.
708
709
rossberg@chromium.orgcddc71f2012-12-07 12:40:13 +00007102012-12-07: Version 3.15.10
711
712 Enabled optimisation of functions inside eval. (issue 2315)
713
714 Fixed spec violations in methods of Number.prototype. (issue 2443)
715
716 Added GCTracer metrics for a scavenger GC for DOM wrappers.
717
718 Performance and stability improvements on all platforms.
719
720
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +00007212012-12-06: Version 3.15.9
722
723 Fixed candidate eviction in code flusher.
724 (Chromium issue 159140)
725
726 Iterate through all arguments for side effects in Math.min/max.
727 (issue 2444)
728
729 Fixed spec violations related to regexp.lastIndex
730 (issue 2437, issue 2438)
731
732 Performance and stability improvements on all platforms.
733
734
mmassi@chromium.org49a44672012-12-04 13:52:03 +00007352012-12-04: Version 3.15.8
736
737 Enforced stack allocation of TryCatch blocks.
738 (issue 2166,chromium:152389)
739
740 Fixed external exceptions in external try-catch handlers.
741 (issue 2166)
742
743 Activated incremental code flushing by default.
744
745 Performance and stability improvements on all platforms.
746
747
svenpanne@chromium.org83130cf2012-11-30 10:13:25 +00007482012-11-30: Version 3.15.7
749
750 Activated code aging by default.
751
752 Included more information in --prof log.
753
754 Removed eager sweeping for lazy swept spaces. Try to find in
755 SlowAllocateRaw a bounded number of times a big enough memory slot.
756 (issue 2194)
757
758 Performance and stability improvements on all platforms.
759
760
danno@chromium.org1f34ad32012-11-26 14:53:56 +00007612012-11-26: Version 3.15.6
762
763 Ensure double arrays are filled with holes when extended from
764 variations of empty arrays. (Chromium issue 162085)
765
766 Performance and stability improvements on all platforms.
767
768
ulan@chromium.org8e8d8822012-11-23 14:36:46 +00007692012-11-23: Version 3.15.5
770
771 Fixed JSON.stringify for objects with interceptor handlers.
772 (Chromium issue 161028)
773
774 Fixed corner case in x64 compare stubs. (issue 2416)
775
776 Performance and stability improvements on all platforms.
777
778
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00007792012-11-16: Version 3.15.4
780
781 Fixed Array.prototype.join evaluation order. (issue 2263)
782
783 Perform CPU sampling by CPU sampling thread only iff processing thread
784 is not running. (issue 2364)
785
786 When using an Object as a set in Object.getOwnPropertyNames, null out
787 the proto. (issue 2410)
788
789 Disabled EXTRA_CHECKS in Release build.
790
791 Heap explorer: Show representation of strings.
792
793 Removed 'type' and 'arguments' properties from Error object.
794 (issue 2397)
795
796 Added atomics implementation for ThreadSanitizer v2.
797 (Chromium issue 128314)
798
799 Fixed LiveEdit crashes when object/array literal is added. (issue 2368)
800
801 Performance and stability improvements on all platforms.
802
803
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +00008042012-11-13: Version 3.15.3
805
806 Changed sample shell to send non-JS output (e.g. errors) to stderr
807 instead of stdout.
808
809 Correctly check for stack overflow even when interrupt is pending.
810 (issue 214)
811
812 Collect stack trace on stack overflow. (issue 2394)
813
814 Performance and stability improvements on all platforms.
815
816
mvstanton@chromium.orge4ac3ef2012-11-12 14:53:34 +00008172012-11-12: Version 3.15.2
818
819 Function::GetScriptOrigin supplies sourceURL when script name is
820 not available. (Chromium issue 159413)
821
822 Made formatting error message side-effect-free. (issue 2398)
823
824 Fixed length check in JSON.stringify. (Chromium issue 160010)
825
826 ES6: Added support for Set and Map clear method (issue 2400)
827
828 Fixed slack tracking when instance prototype changes.
829 (Chromium issue 157019)
830
831 Fixed disabling of code flusher while marking. (Chromium issue 159140)
832
833 Added a test case for object grouping in a scavenger GC (issue 2077)
834
835 Support shared library build of Android for v8.
836 (Chromium issue 158821)
837
838 ES6: Added support for size to Set and Map (issue 2395)
839
840 Performance and stability improvements on all platforms.
841
842
verwaest@chromium.orge4ee6de2012-11-06 12:13:00 +00008432012-11-06: Version 3.15.1
844
845 Put incremental code flushing behind a flag. (Chromium issue 159140)
846
847 Performance and stability improvements on all platforms.
848
849
danno@chromium.org72204d52012-10-31 10:02:10 +00008502012-10-31: Version 3.15.0
851
852 Loosened aligned code target requirement on ARM (issue 2380)
853
854 Fixed JSON.parse to treat leading zeros correctly.
855 (Chromium issue 158185)
856
857 Performance and stability improvements on all platforms.
858
859
rossberg@chromium.org89e18f52012-10-22 13:09:53 +00008602012-10-22: Version 3.14.5
861
862 Killed off the SCons based build.
863
864 Added a faster API for creating v8::Integer objects.
865
866 Speeded up function deoptimization by avoiding quadratic pass over
867 optimized function list. (Chromium issue 155270)
868
869 Always invoke the default Array.sort functions from builtin functions.
870 (issue 2372)
871
872 Reverted recent CPU profiler changes because they broke --prof.
873 (issue 2364)
874
875 Switched code flushing to use different JSFunction field.
876 (issue 1609)
877
878 Performance and stability improvements on all platforms.
879
880
svenpanne@chromium.orgc859c4f2012-10-15 11:51:39 +00008812012-10-15: Version 3.14.4
882
883 Allow evals for debugger even if they are prohibited in the debugee
884 context. (Chromium issue 154733)
885
886 Enabled --verify-heap in release mode (issue 2120)
887
888 Performance and stability improvements on all platforms.
889
890
jkummerow@chromium.orgc1956672012-10-11 15:57:38 +00008912012-10-11: Version 3.14.3
892
893 Use native context to retrieve ErrorMessageForCodeGenerationFromStrings
894 (Chromium issue 155076).
895
896 Bumped variable limit further to 2^17 (Chromium issue 151625).
897
898 Performance and stability improvements on all platforms.
899
900
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00009012012-10-10: Version 3.14.2
902
903 ARM: allowed VFP3 instructions when hardfloat is enabled.
904 (Chromium issue 152506)
905
906 Fixed instance_descriptors() and PushStackTraceAndDie regressions.
907 (Chromium issue 151749)
908
909 Made GDBJIT interface compile again. (issue 1804)
910
911 Fixed Accessors::FunctionGetPrototype's proto chain traversal.
912 (Chromium issue 143967)
913
914 Made sure that names of temporaries do not clash with real variables.
915 (issue 2322)
916
917 Rejected local module declarations. (Chromium issue 150628)
918
919 Rejected uses of lexical for-loop variable on the RHS. (issue 2322)
920
921 Fixed slot recording of code target patches.
922 (Chromium issue 152615,chromium:144230)
923
924 Changed the Android makefile to use GCC 4.6 instead of GCC 4.4.3.
925
926 Performance and stability improvements on all platforms.
927
928
jkummerow@chromium.org7a96c2a2012-10-01 16:24:39 +00009292012-10-01: Version 3.14.1
930
931 Don't set -m32 flag when compiling with Android ARM compiler.
932 (Chromium issue 143889)
933
934 Restore the descriptor array before returning allocation failure.
935 (Chromium issue 151750)
936
937 Lowered kMaxVirtualRegisters (v8 issue 2139, Chromium issues 123822 and
938 128252).
939
940 Pull more recent gyp in 'make dependencies'.
941
942 Made sure that the generic KeyedStoreIC changes length and element_kind
943 atomically (issue 2346).
944
945 Bumped number of allowed variables per scope to 65535, to address GWT.
946 (Chromium issue 151625)
947
948 Support sourceURL for dynamically inserted scripts (issue 2342).
949
950 Performance and stability improvements on all platforms.
951
952
ulan@chromium.org56c14af2012-09-20 12:51:09 +00009532012-09-20: Version 3.14.0
954
955 Fixed missing slot recording during clearing of CallICs.
956 (Chromium issue 144230)
957
958 Fixed LBoundsCheck on x64 to handle (stack slot + constant) correctly.
959 (Chromium issue 150729)
960
961 Fixed minus zero test. (Issue 2133)
962
963 Fixed setting array length to zero for slow elements.
964 (Chromium issue 146910)
965
966 Fixed lost arguments dropping in HLeaveInlined.
967 (Chromium issue 150545)
968
969 Fixed casting error for receiver of interceptors.
970 (Chromium issue 149912)
971
972 Throw a more descriptive exception when blocking 'eval' via CSP.
973 (Chromium issue 140191)
974
975 Fixed debugger's eval when close to stack overflow. (issue 2318)
976
977 Added checks to live edit. (issue 2297)
978
979 Switched on code compaction on incremental GCs.
980
981 Fixed caching of optimized code for OSR. (issue 2326)
982
983 Not mask exception thrown by toString in String::UtfValue etc.
984 (issue 2317)
985
986 Fixed API check for length of external arrays. (Chromium issue 148896)
987
988 Ensure correct enumeration indices in the dict (Chromium issue 148376)
989
990 Correctly initialize regexp global cache. (Chromium issue 148378)
991
992 Fixed arguments object materialization during deopt. (issue 2261)
993
994 Introduced new API to expose external string resource regardless of
995 encoding.
996
997 Fixed CHECK failure in LCodeGen::DoWrapReceiver when
998 --deopt-every-n-times flag is present
999 (Chromium issue 148389)
1000
1001 Fixed edge case of extension with NULL as source string.
1002 (Chromium issue 144649)
1003
1004 Fixed array index dehoisting. (Chromium issue 141395)
1005
1006 Performance and stability improvements on all platforms.
1007
1008
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +000010092012-09-11: Version 3.13.7
1010
1011 Enable/disable LiveEdit using the (C++) debug API.
1012
1013 Performance and stability improvements on all platforms.
1014
1015
jkummerow@chromium.org78502a92012-09-06 13:50:42 +000010162012-09-06: Version 3.13.6
1017
1018 Added validity checking to API functions and calls.
1019
1020 Disabled accessor inlining (Chromium issue 134609).
1021
1022 Fixed bug in Math.min/max in optimized code (Chromium issue 145961).
1023
1024 Directly use %ObjectKeys in json stringify (Chromium issue 2312).
1025
1026 Fixed VS2005 build (issue 2313).
1027
1028 Activated fixed ES5 readonly semantics by default.
1029
1030 Added hardfp flag to the Makefile.
1031
1032 Performance and stability improvements on all platforms.
1033
1034
yangguo@chromium.org355cfd12012-08-29 15:32:24 +000010352012-08-29: Version 3.13.5
1036
1037 Release stack trace data after firing Error.stack accessor.
1038 (issue 2308)
1039
1040 Added a new API V8::SetJitCodeEventHandler to push code name and
1041 location to users such as profilers.
1042
1043 Allocate block-scoped global bindings to global context.
1044
1045 Performance and stability improvements on all platforms.
1046
1047
yangguo@chromium.org46839fb2012-08-28 09:06:19 +000010482012-08-28: Version 3.13.4
1049
1050 Print reason for disabling optimization. Kill --trace-bailout flag.
1051
1052 Provided option to disable full DEBUG build on Android.
1053
1054 Introduced global contexts to represent lexical global scope(s).
1055
1056 Fixed rounding in Uint8ClampedArray setter. (issue 2294)
1057
1058 Performance and stability improvements on all platforms.
1059
1060
yangguo@chromium.org08eb1962012-08-21 11:19:20 +000010612012-08-21: Version 3.13.3
1062
1063 Performance and stability improvements on all platforms.
1064
1065
10662012-08-20: Version 3.13.2
1067
1068 Performance and stability improvements on all platforms.
1069
1070
verwaest@chromium.orgde64f722012-08-16 15:44:54 +000010712012-08-16: Version 3.13.1
1072
1073 Performance and stability improvements on all platforms.
1074
1075
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +000010762012-08-10: Version 3.13.0
1077
1078 Added histograms for total allocated/live heap size, as well as
1079 allocated size and percentage of total for map and cell space.
1080
1081 Fixed parseInt's octal parsing behavior (ECMA-262 Annex E 15.1.2.2).
1082 (issue 1645)
1083
1084 Added checks for interceptors to negative lookup code in Crankshaft.
1085 (Chromium issue 140473)
1086
1087 Made incremental marking clear ICs and type feedback cells.
1088
1089 Performance and stability improvements on all platforms.
1090
1091
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +000010922012-08-01: Version 3.12.19
1093
1094 Performance and stability improvements on all platforms.
1095
1096
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +000010972012-07-30: Version 3.12.18
1098
1099 Forced using bit-pattern for signed zero double. (issue 2239)
1100
1101 Made sure double to int conversion is correct. (issue 2260)
1102
1103 Performance and stability improvements on all platforms.
1104
1105
verwaest@chromium.orgb6d052d2012-07-27 08:03:27 +000011062012-07-27: Version 3.12.17
1107
1108 Always set the callee's context when calling a function from optimized
1109 code.
1110 (Chromium issue 138887)
1111
1112 Fixed building with GCC 3.x
1113 (issue 2016, 2017)
1114
1115 Improved API calls that return empty handles.
1116 (issue 2245)
1117
1118 Performance and stability improvements on all platforms.
1119
1120
danno@chromium.org129d3982012-07-25 15:01:47 +000011212012-07-25: Version 3.12.16
1122
1123 Performance and stability improvements on all platforms.
1124
1125
yangguo@chromium.org304cc332012-07-24 07:59:48 +000011262012-07-24: Version 3.12.15
1127
1128 Added PRESERVE_ASCII_NULL option to String::WriteAscii.
1129 (issue 2252)
1130
1131 Added dependency to HLoadKeyed* instructions to prevent invalid
1132 hoisting. (Chromium issue 137768)
1133
1134 Enabled building d8 for Android on Mac.
1135
1136 Interpret negative hexadecimal literals as NaN.
1137 (issue 2240)
1138
1139 Expose counters in javascript when using --track-gc-object-stats.
1140
1141 Enabled building and testing V8 on Android IA.
1142
1143 Added --trace-parse flag to parser.
1144
1145 Performance and stability improvements on all platforms.
1146
1147
verwaest@chromium.org178fb152012-07-18 11:21:48 +000011482012-07-18: Version 3.12.14
1149
1150 Deactivated optimization of packed arrays.
1151 (Chromium issue 137768)
1152
1153 Fixed broken accessor transition.
1154 (Chromium issue 137689)
1155
1156 Performance and stability improvements on all platforms.
1157
1158
verwaest@chromium.org753aee42012-07-17 16:15:42 +000011592012-07-17: Version 3.12.13
1160
1161 Fixed missing tagging of stack value in finally block.
1162 (Chromium issue 137496)
1163
1164 Added more support for heap analysis.
1165
1166 Performance and stability improvements on all platforms.
1167
1168
jkummerow@chromium.org28583c92012-07-16 11:31:55 +000011692012-07-16: Version 3.12.12
1170
1171 Added an option to the tickprocessor to specify the directory for lib
1172 lookup.
1173
1174 Fixed ICs for slow objects with native accessor (Chromium issue 137002).
1175
1176 Fixed transcendental cache on ARM in optimized code (issue 2234).
1177
1178 New heap inspection tools: counters for object sizes and counts,
1179 histograms for external fragmentation.
1180
1181 Incorporated constness into inferred interfaces (in preparation for
1182 handling imports) (issue 1569).
1183
1184 Performance and stability improvements on all platforms.
1185
1186
rossberg@chromium.org657d53b2012-07-12 11:06:03 +000011872012-07-12: Version 3.12.11
1188
1189 Renamed "mips" arch to "mipsel" in the GYP build.
1190
1191 Fixed computation of call targets on prototypes in Crankshaft.
1192 (Chromium issue 125148)
1193
1194 Removed use of __lookupGetter__ when generating stack trace.
1195 (issue 1591)
1196
1197 Turned on ES 5.2 globals semantics by default.
1198 (issue 1991, Chromium issue 80591)
1199
1200 Synced preparser and parser wrt syntax error in switch..case.
1201 (issue 2210)
1202
1203 Fixed reporting of octal literals in strict mode when preparsing.
1204 (issue 2220)
1205
1206 Fixed inline constructors for Harmony Proxy prototypes.
1207 (issue 2225)
1208
1209 Performance and stability improvements on all platforms.
1210
1211
danno@chromium.org81cac2b2012-07-10 11:28:27 +000012122012-07-10: Version 3.12.10
1213
1214 Re-enabled and fixed issue with array bounds check elimination
1215 (Chromium issue 132114).
1216
1217 Fixed Debug::Break crash. (Chromium issue 131642)
1218
1219 Added optimizing compiler support for JavaScript getters.
1220
1221 Performance and stability improvements on all platforms.
1222
1223
yangguo@chromium.org99aa4902012-07-06 16:21:55 +000012242012-07-06: Version 3.12.9
1225
1226 Correctly advance the scanner when scanning unicode regexp flag.
1227 (Chromium issue 136084)
1228
1229 Fixed unhandlified code calling Harmony Proxy traps.
1230 (issue 2219)
1231
1232 Performance and stability improvements on all platforms.
1233
1234
svenpanne@chromium.org619781a2012-07-05 08:22:44 +000012352012-07-05: Version 3.12.8
1236
1237 Implemented TypedArray.set and ArrayBuffer.slice in d8.
1238
1239 Performance and stability improvements on all platforms.
1240
1241
mstarzinger@chromium.orgc6d9cee2012-07-03 10:03:19 +000012422012-07-03: Version 3.12.7
1243
1244 Fixed lazy compilation for strict eval scopes.
1245 (Chromium issue 135066)
1246
1247 Made MACOSX_DEPLOYMENT_TARGET configurable in GYP.
1248 (issue 2151)
1249
1250 Report "hidden properties" in heap profiler for properties case.
1251 (issue 2212)
1252
1253 Activated optimization of packed arrays by default.
1254
1255 Performance and stability improvements on all platforms.
1256
1257
yangguo@chromium.orgc74d6742012-06-29 15:15:45 +000012582012-06-29: Version 3.12.6
1259
1260 Cleaned up hardfp ABI detection for ARM (V8 issue 2140).
1261
1262 Extended TypedArray support in d8.
1263
1264
yangguo@chromium.org9c741c82012-06-28 15:04:22 +000012652012-06-28: Version 3.12.5
1266
1267 Fixed lazy parsing heuristics to respect outer scope.
1268 (Chromium issue 135008)
1269
1270 Allow using test-wrapper-gypbuild.py on Windows when no python
1271 interpreter is registered.
1272
1273 Performance and stability improvements on all platforms.
1274
1275
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +000012762012-06-27: Version 3.12.4
1277
1278 Removed -fomit-frame-pointer flag from Release builds to make
1279 the stack walkable by TCMalloc (Chromium issue 133723).
1280
1281 Ported r7868 (constant masking) to x64 (issue 1374).
1282
1283 Expose more detailed memory statistics (issue 2201).
1284
1285 Fixed Harmony Maps and WeakMaps for undefined values
1286 (Chromium issue 132744).
1287
1288 Correctly throw reference error in strict mode with ICs disabled
1289 (issue 2119).
1290
1291 Performance and stability improvements on all platforms.
1292
1293
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +000012942012-06-25: Version 3.12.3
1295
1296 Reverted r11835 'Unify promotion and allocation limit computation' due
1297 to V8 Splay performance regression on Mac. (Chromium issue 134183)
1298
1299 Fixed sharing of literal boilerplates for optimized code. (issue 2193)
1300
1301 Performance and stability improvements on all platforms.
1302
1303
yangguo@chromium.orgde0db002012-06-22 13:44:28 +000013042012-06-22: Version 3.12.2
1305
1306 Made near-jump check more strict in LoadNamedFieldPolymorphic on
1307 ia32/x64. (Chromium issue 134055)
1308
1309 Fixed lazy sweeping heuristics to prevent old-space expansion.
1310 (issue 2194)
1311
1312 Performance and stability improvements on all platforms.
1313
1314
yangguo@chromium.orgd2899aa2012-06-21 11:16:20 +000013152012-06-21: Version 3.12.1
1316
1317 Performance and stability improvements on all platforms.
1318
1319
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +000013202012-06-20: Version 3.12.0
1321
1322 Fixed Chromium issues:
1323 115100, 129628, 131994, 132727, 132741, 132742, 133211
1324
1325 Fixed V8 issues:
1326 915, 1914, 2034, 2087, 2094, 2134, 2156, 2166, 2172, 2177, 2179, 2185
1327
1328 Added --extra-code flag to mksnapshot to load JS code into the VM
1329 before creating the snapshot.
1330
1331 Support 'restart call frame' command in the debugger.
1332
1333 Performance and stability improvements on all platforms.
1334
1335
mmassi@chromium.org7028c052012-06-13 11:51:58 +000013362012-06-13: Version 3.11.10
1337
1338 Implemented heap profiler memory usage reporting.
1339
1340 Preserved error message during finally block in try..finally.
1341 (Chromium issue 129171)
1342
1343 Fixed EnsureCanContainElements to properly handle double values.
1344 (issue 2170)
1345
1346 Improved heuristics to keep objects in fast mode with inherited
1347 constructors.
1348
1349 Performance and stability improvements on all platforms.
1350
1351
rossberg@chromium.org400388e2012-06-06 09:29:22 +000013522012-06-06: Version 3.11.9
1353
1354 Implemented ES5-conformant semantics for inherited setters and read-only
1355 properties. Currently behind --es5_readonly flag, because it breaks
1356 WebKit bindings.
1357
1358 Exposed last seen heap object id via v8 public api.
1359
1360 Performance and stability improvements on all platforms.
1361
1362
verwaest@chromium.org37141392012-05-31 13:27:02 +000013632012-05-31: Version 3.11.8
1364
1365 Avoid overdeep recursion in regexp where a guarded expression with a
1366 minimum repetition count is inside another quantifier.
1367 (Chromium issue 129926)
1368
1369 Fixed missing write barrier in store field stub.
1370 (issues 2143, 1465, Chromium issue 129355)
1371
1372 Proxies: Fixed receiver for setters inherited from proxies.
1373 Proxies: Fixed ToStringArray function so that it does not reject some
1374 keys.
1375 (issue 1543)
1376
1377 Performance and stability improvements on all platforms.
1378
1379
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +000013802012-05-29: Version 3.11.7
1381
1382 Get better function names in stack traces.
1383
1384 Performance and stability improvements on all platforms.
1385
1386
jkummerow@chromium.org777db6f2012-05-24 09:33:09 +000013872012-05-24: Version 3.11.6
1388
1389 Fixed RegExp.prototype.toString for incompatible receivers
1390 (issue 1981).
1391
1392 Performance and stability improvements on all platforms.
1393
1394
mstarzinger@chromium.org15613d02012-05-23 12:04:37 +000013952012-05-23: Version 3.11.5
1396
1397 Performance and stability improvements on all platforms.
1398
1399
ulan@chromium.org0e3f88b2012-05-22 09:16:05 +000014002012-05-22: Version 3.11.4
1401
1402 Some cleanup to common.gypi. This fixes some host/target combinations
1403 that weren't working in the Make build on Mac.
1404
1405 Handle EINTR in socket functions and continue incomplete sends.
1406 (issue 2098)
1407
1408 Fixed python deprecations. (issue 1391)
1409
1410 Made socket send and receive more robust and return 0 on failure.
1411 (Chromium issue 15719)
1412
1413 Fixed GCC 4.7 (C++11) compilation. (issue 2136)
1414
1415 Set '-m32' option for host and target platforms
1416
1417 Performance and stability improvements on all platforms.
1418
1419
ulan@chromium.orgd6899c32012-05-18 14:12:25 +000014202012-05-18: Version 3.11.3
1421
1422 Disable optimization for functions that have scopes that cannot be
1423 reconstructed from the context chain. (issue 2071)
1424
1425 Define V8_EXPORT to nothing for clients of v8. (Chromium issue 90078)
1426
1427 Correctly check for native error objects. (Chromium issue 2138)
1428
1429 Performance and stability improvements on all platforms.
1430
1431
yangguo@chromium.org5f0b8ea2012-05-16 12:37:04 +000014322012-05-16: Version 3.11.2
1433
1434 Revert r11496. (Chromium issue 128146)
1435
1436 Implement map collection for incremental marking. (issue 1465)
1437
1438 Add toString method to CallSite (which describes a frame of the
1439 stack trace).
1440
1441
yangguo@chromium.orgcb9affa2012-05-15 12:16:38 +000014422012-05-15: Version 3.11.1
1443
1444 Added a readbuffer function to d8 that reads a file into an ArrayBuffer.
1445
1446 Fix freebsd build. (V8 issue 2126)
1447
1448 Performance and stability improvements on all platforms.
1449
1450
jkummerow@chromium.org212d9642012-05-11 15:02:09 +000014512012-05-11: Version 3.11.0
1452
1453 Fixed compose-discard crasher from r11524 (issue 2123).
1454
1455 Activated new global semantics by default. Global variables can
1456 now shadow properties of the global object (ES5.1 erratum).
1457
1458 Properly set ElementsKind of empty FAST_DOUBLE_ELEMENTS arrays when
1459 transitioning (Chromium issue 117409).
1460
1461 Made Error.prototype.name writable again, as required by the spec and
1462 the web (Chromium issue 69187).
1463
1464 Implemented map collection with incremental marking (issue 1465).
1465
1466 Regexp: Fixed overflow in min-match-length calculation
1467 (Chromium issue 126412).
1468
1469 MIPS: Fixed illegal instruction use on Loongson in code for
1470 Math.random() (issue 2115).
1471
1472 Fixed crash bug in VisitChoice (Chromium issue 126272).
1473
1474 Fixed unsigned-Smi check in MappedArgumentsLookup
1475 (Chromium issue 126414).
1476
1477 Fixed LiveEdit for function with no locals (issue 825).
1478
1479 Fixed register clobbering in LoadIC for interceptors
1480 (Chromium issue 125988).
1481
1482 Implemented clearing of CompareICs (issue 2102).
1483
1484 Performance and stability improvements on all platforms.
1485
1486
danno@chromium.org2c26cb12012-05-03 09:06:43 +000014872012-05-03: Version 3.10.8
1488
1489 Enabled MIPS cross-compilation.
1490
1491 Ensured reload of elements pointer in StoreFastDoubleElement stub.
1492 (Chromium issue 125515)
1493
1494 Fixed corner cases in truncation behavior when storing to
1495 TypedArrays. (issue 2110)
1496
1497 Fixed failure to properly recognize and report out-of-memory
1498 conditions when allocating code space pages. (Chromium issue
1499 118625)
1500
1501 Fixed idle notifications to perform a round of incremental GCs
1502 after context disposal. (issue 2107)
1503
1504 Fixed preparser for try statement. (issue 2109)
1505
1506 Performance and stability improvements on all platforms.
1507
1508
danno@chromium.org1044a4d2012-04-30 12:34:39 +000015092012-04-30: Version 3.10.7
1510
1511 Performance and stability improvements on all platforms.
1512
1513
yangguo@chromium.orgefdb9d72012-04-26 08:21:05 +000015142012-04-26: Version 3.10.6
1515
1516 Fixed some bugs in accessing details of the last regexp match.
1517
1518 Fixed source property of empty RegExp objects. (issue 1982)
1519
1520 Enabled inlining some V8 API functions.
1521
1522 Performance and stability improvements on all platforms.
1523
1524
mstarzinger@chromium.org88d326b2012-04-23 12:57:22 +000015252012-04-23: Version 3.10.5
1526
1527 Put new global var semantics behind a flag until WebKit tests are
1528 cleaned up.
1529
1530 Enabled stepping into callback passed to builtins.
1531 (Chromium issue 109564)
1532
1533 Performance and stability improvements on all platforms.
1534
1535
svenpanne@chromium.orgfb046332012-04-19 12:02:44 +000015362012-04-19: Version 3.10.4
1537
1538 Fixed issues when stressing compaction with WeakMaps.
1539
1540 Fixed missing GVN flag for new-space promotion. (Chromium issue 123919)
1541
1542 Simplify invocation sequence at monomorphic function invocation sites.
1543 (issue 2079)
1544
1545 Performance and stability improvements on all platforms.
1546
1547
erik.corry@gmail.comed49e962012-04-17 11:57:53 +000015482012-04-17: Version 3.10.3
1549
1550 Fixed several bugs in heap profiles (including issue 2078).
1551
1552 Throw syntax errors on illegal escape sequences.
1553
1554 Implemented rudimentary module linking (behind --harmony flag)
1555
1556 Implemented ES5 erratum: Global declarations should shadow
1557 inherited properties.
1558
1559 Made handling of const more consistent when combined with 'eval'
1560 and 'with'.
1561
1562 Fixed V8 on MinGW-x64 (issue 2026).
1563
1564 Performance and stability improvements on all platforms.
1565
1566
jkummerow@chromium.org28faa982012-04-13 09:58:30 +000015672012-04-13: Version 3.10.2
1568
1569 Fixed native ARM build (issues 1744, 539)
1570
1571 Return LOOKUP variable instead of CONTEXT for non-context allocated
1572 outer scope parameters (Chromium issue 119609).
1573
1574 Fixed regular and ElementsKind transitions interfering with each other
1575 (Chromium issue 122271).
1576
1577 Improved performance of keyed loads/stores which have a HeapNumber
1578 index (issues 1388, 1295).
1579
1580 Fixed WeakMap processing for evacuation candidates (issue 2060).
1581
1582 Bailout on possible direct eval calls (Chromium issue 122681).
1583
1584 Do not assume that names of function expressions are context-allocated
1585 (issue 2051).
1586
1587 Performance and stability improvements on all platforms.
1588
1589
fschneider@chromium.org7d10be52012-04-10 12:30:14 +000015902012-04-10: Version 3.10.1
1591
1592 Fixed bug with arguments object in inlined functions (issue 2045).
1593
1594 Fixed performance bug with lazy initialization (Chromium issue
1595 118686).
1596
1597 Added suppport for Mac OS X 64bit builds with GYP.
1598 (Patch contributed by Filipe David Manana <fdmanana@gmail.com>)
1599
1600 Fixed bug with hidden properties (issue 2034).
1601
1602 Fixed a performance bug when reloading pages (Chromium issue 117767,
1603 V8 issue 1902).
1604
1605 Fixed bug when optimizing throw in top-level code (issue 2054).
1606
1607 Fixed two bugs with array literals (issue 2055, Chromium issue 121407).
1608
1609 Fixed bug with Math.min/Math.max with NaN inputs (issue 2056).
1610
1611 Fixed a bug with the new runtime profiler (Chromium issue 121147).
1612
1613 Fixed compilation of V8 using uClibc.
1614
1615 Optimized boot-up memory use.
1616
1617 Optimized regular expressions.
1618
1619
jkummerow@chromium.org1456e702012-03-30 08:38:13 +000016202012-03-30: Version 3.10.0
1621
1622 Fixed store IC writability check in strict mode
1623 (Chromium issue 120099).
1624
1625 Resynchronize timers if the Windows system time was changed.
1626 (Chromium issue 119815)
1627
1628 Removed "-mfloat-abi=hard" from host compiler cflags when building for
1629 hardfp ARM
1630 (https://code.google.com/p/chrome-os-partner/issues/detail?id=8539)
1631
1632 Fixed edge case for case independent regexp character classes
1633 (issue 2032).
1634
1635 Reset function info counters after context disposal.
1636 (Chromium issue 117767, V8 issue 1902)
1637
1638 Fixed missing write barrier in CopyObjectToObjectElements.
1639 (Chromium issue 119926)
1640
1641 Fixed missing bounds check in HasElementImpl.
1642 (Chromium issue 119925)
1643
1644 Performance and stability improvements on all platforms.
1645
1646
danno@chromium.org88aa0582012-03-23 15:11:57 +000016472012-03-23: Version 3.9.24
1648
1649 Activated count-based profiler for ARM.
1650
1651 Fixed use of proxies as f.prototype properties. (issue 2021)
1652
1653 Enabled snapshots on MIPS.
1654
1655 Performance and stability improvements on all platforms.
1656
1657
ulan@chromium.org6ff65142012-03-21 09:52:17 +000016582012-03-21: Version 3.9.23
1659
1660 Use correct arguments adaptation environment when inlining function
1661 containing arguments. (Issue 2014)
1662
1663 Performance and stability improvements on all platforms.
1664
1665
jkummerow@chromium.org531dfe82012-03-20 13:01:16 +000016662012-03-20: Version 3.9.22
1667
1668 Enabled count-based profiler by default.
1669
1670 Implemented a hash based look-up to speed up address checks
1671 in large object space (issue 853).
1672
1673 Performance and stability improvements on all platforms.
1674
1675
rossberg@chromium.org2c067b12012-03-19 11:01:52 +000016762012-03-19: Version 3.9.21
1677
1678 Fixed push-to-trunk script (and re-push).
1679
1680 Added API call that identifies strings that are guaranteed only to
1681 contain ASCII characters.
1682
1683
16842012-03-19: Version 3.9.20
1685
1686 Fixed declarations escaping global strict eval. (Issue 1624)
1687
1688 Fixed wrapping of receiver for non-strict callbacks. (Issue 1973)
1689
1690 Fixed function declarations overwriting read-only global properties.
1691 (Chromium issue 115452)
1692
1693 Fixed --use-strict flag in combination with --harmony[-scoping].
1694
1695 Debugger: naive implementation of "step into Function.prototype.bind".
1696
1697 Debugger: added ability to set script source from within OnBeforeCompile
1698
1699 Added flag to always call DebugBreak on abort.
1700
1701 Re-enabled constructor inlining and inline === comparison with boolean
1702 constants. (Issue 2009)
1703
1704 Don't use an explicit s0 in ClampDoubleToUint8. (Issue 2004)
1705
1706 Performance and stability improvements on all platforms.
1707
1708
mstarzinger@chromium.org3233d2f2012-03-14 11:16:03 +000017092012-03-14: Version 3.9.19
1710
1711 Ensure there is a smi check of the receiver for global load and call
1712 ICs (Chromium issue 117794).
1713
1714 Performance and stability improvements on all platforms.
1715
1716
yangguo@chromium.org154ff992012-03-13 08:09:54 +000017172012-03-13: Version 3.9.18
1718
1719 Ensure consistency of Math.sqrt on Intel platforms.
1720
1721 Remove static initializers in v8. (issue 1859)
1722
1723 Add explicit dependency on v8_base in the GYP-based build.
1724
1725 Performance and stability improvements on all platforms.
1726
1727
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +000017282012-03-12: Version 3.9.17
1729
1730 Fixed VFP detection through compiler defines. (issue 1996)
1731
1732 Add Code-related fields to postmortem metadata.
1733
1734 Performance and stability improvements on all platforms.
1735
1736
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000017372012-03-09: Version 3.9.16
1738
1739 Added basic interface inference for modules (behind the --harmony flag).
1740
1741 Added Object.is, Number.isFinite, Number.isNaN.
1742
1743 Updated the Unicode tables to Unicode version 6.1.0.
1744
1745 Performance and stability improvements on all platforms.
1746
1747
ulan@chromium.org9a21ec42012-03-06 08:42:24 +000017482012-03-06: Version 3.9.15
1749
1750 Fix the heap profiler crash caused by memory layout changes between
1751 passes.
1752
1753 Fix Error.prototype.toString to throw TypeError. (issue 1980)
1754
1755 Fix double-rounding in strtod for MinGW. (issue 1062)
1756
1757 Fix corrupted snapshot serializaton on ia32. (Chromium issue v8/1985)
1758
1759 Performance and stability improvements on all platforms.
1760
1761
fschneider@chromium.org35814e52012-03-01 15:43:35 +000017622012-03-01: Version 3.9.14
1763
1764 Performance and stability improvements on all platforms.
1765
1766
ulan@chromium.org812308e2012-02-29 15:58:45 +000017672012-02-29: Version 3.9.13
1768
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001769 Added code kind check before preparing for OSR. (issue 1900, 115073)
ulan@chromium.org812308e2012-02-29 15:58:45 +00001770
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001771 Fixed issue 1802: Pass zone explicitly to zone-allocation on x64 and
1772 ARM.
ulan@chromium.org812308e2012-02-29 15:58:45 +00001773
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001774 Ported string construct stub to x64. (issue 849)
ulan@chromium.org812308e2012-02-29 15:58:45 +00001775
1776 Performance and stability improvements on all platforms.
1777
1778
ulan@chromium.org967e2702012-02-28 09:49:15 +000017792012-02-28: Version 3.9.12
1780
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001781 Fixed the negative lookup stub to handle deleted entries in a
1782 dictionary. (issue 1964)
ulan@chromium.org967e2702012-02-28 09:49:15 +00001783
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001784 Added a new API where the host can supply a callback function. The
ulan@chromium.org967e2702012-02-28 09:49:15 +00001785 callback function can resolve the location of a return address on stack
1786 to the location where a return-address rewriting profiler stashed the
1787 original return address.
1788
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001789 Fixed Chromium issue http://crbug.com/115646: When compiling for-in
1790 pass correct context value to the increment instruction.
ulan@chromium.org967e2702012-02-28 09:49:15 +00001791
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001792 Fixed issue 1853: Update breakpoints set with partial file name after
1793 compile.
ulan@chromium.org967e2702012-02-28 09:49:15 +00001794
1795
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +000017962012-02-27: Version 3.9.11
1797
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001798 Made 'module' a context-sensitive keyword (V8 issue 1957).
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +00001799
1800
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000018012012-02-24: Version 3.9.10
1802
1803 Fixed V8 issues 1322, 1772 and 1969.
1804
1805 Conformance improvements.
1806
1807 Performance and stability improvements on all platforms.
1808
1809
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +000018102012-02-23: Version 3.9.9
1811
1812 Supported fast case for-in in Crankshaft.
1813
1814 Sped up heap snapshot serialization and dominators construction.
1815
1816 Randomized allocation addresses on windows. (Chromium issue 115151)
1817
1818 Fixed compilation with MinGW-w64. (issue 1943)
1819
1820 Fixed incorrect value of assignments to non-extensible properties.
1821
1822 Fixed a crash bug in generated code on ia32.
1823
1824 Performance and stability improvements on all platforms.
1825
1826
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +000018272012-02-21: Version 3.9.8
1828
1829 Fixed memory leak and missing #include in StartupDataDecompressor
1830 (issue 1960).
1831
1832 Renamed static methods to avoid shadowing virtual methods and fix Clang
1833 C++11 compile error.
1834
1835 Fixed sequence of element access in array builtins (issue 1790).
1836
1837 Performance and stability improvements on all platforms.
1838
1839
yangguo@chromium.org56454712012-02-16 15:33:53 +000018402012-02-16: Version 3.9.7
1841
1842 Fixed V8 issues 1322, 1878, 1942, 1945 and Chromium issue 113924.
1843
1844 Fixed GCC-4.7 warnings.
1845
1846 Added Navier-Stokes benchmark.
1847
1848 Performance and stability improvements on all platforms.
1849
1850
ulan@chromium.org65a89c22012-02-14 11:46:07 +000018512012-02-14: Version 3.9.6
1852
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001853 Fixed template-related linker error. (issue 1936)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001854
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001855 Allowed inlining of functions containing object literals. (issue 1322)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001856
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001857 Added --call-graph-size option to tickprocessor. (issue 1937)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001858
1859 Heap Snapshot maximum size limit is too low for really big apps. At the
1860 moment the limit is 256MB. (Chromium issue 113015)
1861
1862 Performance and stability improvements on all platforms.
1863
1864
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000018652012-02-09: Version 3.9.5
1866
1867 Removed unused command line flags.
1868
1869 Performance and stability improvements on all platforms.
1870
1871
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +000018722012-02-08: Version 3.9.4
1873
1874 Properly initialize element-transitioning array literals on ARM.
1875 (issue 1930)
1876
1877 Bug fixes on all platforms.
1878
1879
jkummerow@chromium.orgab7dad42012-02-07 12:07:34 +000018802012-02-07: Version 3.9.3
1881
1882 When rethrowing an exception, print the stack trace of its original
1883 site instead of rethrow site (Chromium issue 60240).
1884
1885 Increased size of small stacks from 32k to 64k to avoid hitting limits
1886 in Chromium (Chromium issue 112843).
1887
1888
rossberg@chromium.org994edf62012-02-06 10:12:55 +000018892012-02-06: Version 3.9.2
1890
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001891 Added timestamp to --trace-gc output. (issue 1932)
rossberg@chromium.org994edf62012-02-06 10:12:55 +00001892
1893 Heap profiler reports implicit references.
1894
1895 Optionally export metadata with libv8 to enable debuggers to inspect V8
1896 state.
1897
1898
jkummerow@chromium.org1145ef82012-02-02 16:21:15 +000018992012-02-02: Version 3.9.1
1900
1901 Fixed memory leak in NativeObjectsExplorer::FindOrAddGroupInfo
1902 (Chromium issue 112315).
1903
1904 Fixed a crash in dev tools (Chromium issue 107996).
1905
1906 Added 'dependencies_traverse': 1 to v8 GYP target.
1907
1908 Performance and stability improvements on all platforms.
1909
1910
danno@chromium.orgfa458e42012-02-01 10:48:36 +000019112012-02-01: Version 3.9.0
1912
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001913 Reduced memory use immediately after starting V8.
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001914
1915 Stability fixes and performance improvements on all platforms.
1916
1917
yangguo@chromium.org659ceec2012-01-26 07:37:54 +000019182012-01-26: Version 3.8.9
1919
1920 Flush number string cache on GC (issue 1605).
1921
1922 Provide access to function inferred name with
1923 v8::Function::GetInferredName in V8 public API.
1924
1925 Fix building with Clang (issue 1912).
1926
1927 Reduce the space used by the stack for the profiling thread.
1928
1929 Fix misleading documentation of v8::Locker (issue 542).
1930
1931 Introduce readbinary function in d8 to read binary files.
1932
1933 Performance and stability improvements on all platforms.
1934
1935
jkummerow@chromium.org05ed9dd2012-01-23 14:42:48 +000019362012-01-23: Version 3.8.8
1937
1938 Limited number of loop iterations in Heap::ReserveSpace
1939 (Chromium issue 99027).
1940
1941 Fixed solaris build (VirtualMemory) (issue 1761).
1942
1943 Fixed strict vs. non-strict handling of function proxies in
1944 higher-order array and string methods.
1945
1946 Enabled asynchronous remote debugging with d8 (issue 1691).
1947
1948 Stability and performance improvements on all platforms.
1949
1950
ulan@chromium.org2efb9002012-01-19 15:36:35 +000019512012-01-19: Version 3.8.7
1952
1953 Ensure that LRandom restores rsi after call to the C function on x64.
1954 (Chromium issue http://crbug.com/110509)
1955
1956 Fixing include issues on *bsd when building with scons.
1957 (issue 1897)
1958
1959 Provide a switch to specify -fno-strict-aliasing
1960 (issue 1887)
1961
1962 Move WIN32 define from standalone.gypi to common.gypi
1963 (issue 1760)
1964
1965 Fix corner-case in heap size estimation.
1966 (issue 1893)
1967
1968 Fix and enable NEW_NON_STRICT_FAST ArgumentsAccess stub on x64.
1969 (issue 1903)
1970
1971 Performance improvements and bug fixes.
1972
1973
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000019742012-01-16: Version 3.8.6
1975
1976 Add primitive WebGL array support to d8.
1977
1978 Improve heap size estimation (issue 1893).
1979
1980 Hash collision DOS workaround extended from string keys
1981 to numeric keys.
1982
1983 Provide an API for iterating through all external strings referenced
1984 from the JS heap.
1985
1986 Adjust position recorded for call expressions. http://crbug.com/109195
1987
1988 Fix GC crash related to instanceof. http://crbug.com/109448
1989
1990 Performance improvements and bug fixes.
1991
1992
rossberg@chromium.orgfab14982012-01-05 15:02:15 +000019932012-01-05: Version 3.8.5
1994
1995 Fix broken test that assumes that no GC can clear the regexp cache (GC
1996 can happen at any time due to Crankshaft).
1997
1998 Fix handling of bogus receivers for Harmony collections. (issue 1884)
1999
2000 Add netbsd support to gyp build.
2001
2002 Determine page size at runtime on posix platforms.
2003
2004 Ensure that store buffer filtering hash sets are cleared after
2005 StoreBuffer::Filter.
2006
2007 Randomize the seed used for string hashing. This helps guard against
2008 CPU-eating DOS attacks against node.js servers. Based on code from
2009 Bert Belder. This version only solves the issue for those that compile
2010 V8 themselves or those that do not use snapshots. A snapshot-based
2011 precompiled V8 will still have predictable string hash codes.
2012
2013 Implement callback when script finishes running in V8 API.
2014
2015 Improve performance of Math.min and Math.max for the case of two
2016 arguments. (issue 1325)
2017
2018
svenpanne@chromium.org3c93e772012-01-02 09:26:59 +000020192012-01-02: Version 3.8.4
2020
2021 Performance improvements for large Smi-only arrays.
2022
2023 Fixed InternalArrays construction. (issue 1878)
2024
2025
danno@chromium.orgbf0c8202011-12-27 10:09:42 +000020262011-12-27: Version 3.8.3
2027
2028 Avoid embedding new space objects into code objects in the lithium gap
2029 resolver. (chromium:108296)
2030
2031 Bug fixes and performance optimizations on all platforms.
2032
2033
danno@chromium.orge78f9fc2011-12-21 08:29:34 +000020342011-12-21: Version 3.8.2
2035
2036 Add max optimization flag to v8 gyp build to ensure V8 is always built
2037 fully optimized in Chrome.
2038
2039 MIPS: Bring MIPS to parity with other platforms.
2040
2041 Optimizations and stability improvements on all platforms.
2042
2043
ricow@chromium.org7ad65222011-12-19 12:13:11 +000020442011-12-19: Version 3.8.1
2045
2046 Fixed GCC 4.7 warnings. Patch from Tobias Burnus.
2047
2048 Stability improvements on all platforms.
2049
2050
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000020512011-12-13: Version 3.8.0
2052
2053 Fixed handling of arrays in DefineOwnProperty. (issue 1756)
2054
2055 Sync parser and preparser on do-while and return statements.
2056 (issue 1856)
2057
2058 Fixed another corner case for DefineOwnProperty on arrays (issue 1756).
2059
2060 Stability and performance improvements on all platforms.
2061
2062
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +000020632011-12-01: Version 3.7.12
2064
2065 Increase tick interval for the android platform.
2066
2067 Fix a bug in the register allocator. (chromium:105112)
2068
2069 Fix handling of recompiling code. (chromium:105375, v8:1782)
2070
2071 Start incremental marking on idle notification. (v8:1458)
2072
2073 Build fixes for various platforms.
2074
2075 Various performance improvements.
2076
2077
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000020782011-11-29: Version 3.7.11
2079
2080 Fixed bug when generating padding to ensure space for lazy
2081 deoptimization.
2082 (issue 1846)
2083
2084 Further reduced pause times due to GC.
2085
2086 Stability and performance improvements on all platforms.
2087
2088
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +000020892011-11-23: Version 3.7.10
2090
2091 Set maximum length of FixedArray in terms of elements instead an
2092 absolute number of bytes.
2093 (Chromium issue 103103)
2094
2095 Stability and performance improvements on all platforms.
2096
2097
20982011-11-21: Version 3.7.9
2099
2100 Removed exit-time destructors.
2101
2102 Stability and performance improvements on all platforms.
2103
2104
ricow@chromium.org27bf2882011-11-17 08:34:43 +000021052011-11-17: Version 3.7.8
2106
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +00002107 Removed hidden prototype from builtins, i.e., deleting an overridden
ricow@chromium.org27bf2882011-11-17 08:34:43 +00002108 function on builtins will not make the original function reappear.
2109
2110 Added NetBSD support for scons build.
2111
2112 Performance improvements on all platforms.
2113
2114
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +000021152011-11-14: Version 3.7.7
2116
2117 Fix missing fast property accessors in heap snapshots.
2118 (issue 1818)
2119
2120
danno@chromium.org2c456792011-11-11 12:00:53 +000021212011-11-11: Version 3.7.6
2122
2123 Fixed filtering of store buffer for large object pages.
2124 (issue 1817)
2125
2126 Fixed generated hash function on all platforms.
2127 (issue 1808)
2128
2129 Fixed Heap::Shrink to ensure that it does not free pages that are
2130 still in use.
2131 (Chromium issue 100414)
2132
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00002133 Stability and performance improvements on all platforms.
danno@chromium.org2c456792011-11-11 12:00:53 +00002134
2135
danno@chromium.orgc612e022011-11-10 11:38:15 +000021362011-11-10: Version 3.7.5
2137
2138 Added initial gyp infrastructure for MIPS.
2139
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00002140 Implemented performance improvements to the incremental garbage
danno@chromium.orgc612e022011-11-10 11:38:15 +00002141 collector.
2142
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00002143 Added optimizations and stability improvements on all platforms.
danno@chromium.orgc612e022011-11-10 11:38:15 +00002144
2145
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000021462011-11-07: Version 3.7.4
2147
2148 Proper "libv8.so.3.7.4" SONAME for Linux shared library (issue 1786).
2149
2150 Fix Harmony sets and maps to allow null and undefined as keys
2151 (still hidden behind --harmony flag) (issue 1622).
2152
2153 Implement VirtualMemory on FreeBSD to fix build (issue 1807).
2154
2155 Enable VFP instructions for Android.
2156
2157 Fix error handling in Date.prototype.toISOString (issue 1792).
2158
2159 Bug fixes and performance improvements for all platforms.
2160
2161 Not officially supported but noteworthy: Crankshaft for MIPS :-)
2162
2163
erik.corry@gmail.combecbc522011-10-28 07:45:20 +000021642011-10-28: Version 3.7.3
2165
2166 Slight deoptimization as a workaround for issue with jslint: Issue
2167 1789.
2168
2169
erik.corry@gmail.com6e28b562011-10-27 14:20:17 +000021702011-10-27: Version 3.7.2
2171
2172 Fix bug in deoptimization. Known issue with jslint: Issue 1789.
2173
2174
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000021752011-10-26: Version 3.7.1
2176
2177 Achieved 33% speedup in debug-mode tests.
2178
2179 Removed special casing of calls to RegExp test and exec methods with no
2180 argument. Now matches new JSC behaviour. crbug.com/75740.
2181
2182 Return the empty string on cyclic references in toString (ES5
2183 conformance).
2184
2185 Fixed bug triggered by JSBeautifier. crbug.com/100409.
2186
2187 Made Math.random state per-context instead of per-process (issue 864).
2188
2189 Fixed stack traces to skip native functions.
2190
2191 Make snapshots (new contexts) smaller and faster.
2192
2193 Fixed handling of Function.apply for non-array arguments.
2194
2195 Fixed evaluation order in defineProperties to match FireFox.
2196
2197 Fixed handling of non-object receivers for array builtins,
2198 crbug.com/100702.
2199
2200 Multiple fixes to improve compliance with test262.
2201
2202 Fixed compatibility with older Android releases.
2203
2204 Fixed compilation with gcc-4.5.3.
2205
2206 Improved performance of WriteUtf8, issue 1665.
2207
2208 Made native syntax an early error in the preparser.
2209
2210 Fixed issues 793 and 893 relating to Function.prototype.bind.
2211
2212 Improved let, const, Set and Map support and other Harmony features
2213 (behind the --harmony flag).
2214
2215 Changed evaluation order for > and <= to match ES5 instead of ES3.
2216
2217 Bug fixes and performance improvements on all platforms.
2218
2219
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000022202011-10-13: Version 3.7.0
2221
2222 Fixed array handling for Object.defineOwnProperty (ES5 conformance).
2223
2224 Fixed issue 1757 (string slices of external strings).
2225
2226 Fixed issue 1759 (ARM).
2227
2228 Added flag --noclever-optimizations to disable some things that
2229 caused trouble in the past.
2230
2231 Added flag --stress-compaction for testing.
2232
2233 Added flag --harmony to activate all experimental Harmony features.
2234
2235
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +000022362011-10-10: Version 3.6.6
2237
2238 Added a GC pause visualization tool.
2239
2240 Added presubmit=no and werror=no flags to Makefile.
2241
2242 ES5/Test262 conformance improvements.
2243
2244 Fixed compilation issues with GCC 4.5.x (issue 1743).
2245
2246 Bug fixes and performance improvements on all platforms.
2247
2248
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000022492011-10-05: Version 3.6.5
2250
2251 New incremental garbage collector.
2252
2253 Removed the hard heap size limit (soft heap size limit is still
2254 700/1400Mbytes by default).
2255
2256 Implemented ES5 generic Array.prototype.toString (Issue 1361).
2257
2258 V8 now allows surrogate pair codes in decodeURIComponent (Issue 1415).
2259
2260 Fixed x64 RegExp start-of-string bug (Issues 1746, 1748).
2261
2262 Fixed propertyIsEnumerable for numeric properties (Issue 1692).
2263
2264 Fixed the MinGW and Windows 2000 builds.
2265
2266 Fixed "Prototype chain is not searched if named property handler does
2267 not set a property" (Issue 1636).
2268
2269 Made the RegExp.prototype object be a RegExp object (Issue 1217).
2270
2271 Disallowed future reserved words as labels in strict mode.
2272
2273 Fixed string split to correctly coerce the separator to a string
2274 (Issue 1711).
2275
2276 API: Added an optional source length field to the Extension
2277 constructor.
2278
2279 API: Added Debug::DisableAgent to match existing Debug::EnableAgent
2280 (Issue 1573).
2281
2282 Added "native" target to Makefile for the benefit of Linux distros.
2283
2284 Fixed: debugger stops stepping outside evaluate (Issue 1639).
2285
2286 More work on ES-Harmony proxies. Still hidden behind a flag.
2287
2288 Bug fixes and performance improvements on all platforms.
2289
2290
lrn@chromium.org34e60782011-09-15 07:25:40 +000022912011-09-15: Version 3.6.4
2292
2293 Fixed d8's broken readline history.
2294
2295 Removed the need for code delete events in CPU profiler (Issue 1466).
2296
2297 Fixed debugger stepping next with trycatch recursion (Issue 1639).
2298
2299 Fixing parallel execution in d8 (with -p) and some memory leaks.
2300
2301 Support for precise stepping in functions compiled before debugging was
2302 started (step 1).
2303
2304
kmillikin@chromium.org83e16822011-09-13 08:21:47 +000023052011-09-13: Version 3.6.3
2306
2307 Implemented better support of typed arrays in the d8 shell.
2308
2309 Bug fixes and performance improvements on all platforms.
2310
2311
ricow@chromium.org55ee8072011-09-08 16:33:10 +000023122011-09-08: Version 3.6.2
2313
2314 Added "dependencies" target to top-level Makefile.
2315
2316 Added ability to turn profiler on/off in d8.
2317
2318 Added "soname_version" parameter to common.gypi, v8.gyp, and Makefile.
2319
2320 Fixed several crash bugs.
2321
2322
jkummerow@chromium.org486075a2011-09-07 12:44:28 +000023232011-09-07: Version 3.6.1
2324
2325 Fixed a bug in abrupt exit from with or catch inside finally.
2326
2327 Fixed possible crash in FixedDoubleArray::Initialize() (Chromium
2328 issue 95113).
2329
2330 Fixed a bug in Page::GetRegionMaskForSpan (Chromium issue 94425).
2331
2332 Fixed a few clang warnings (which -Werror treated as errors).
2333
2334 Performance improvements on all platforms.
2335
2336
fschneider@chromium.org1805e212011-09-05 10:49:12 +000023372011-09-05: Version 3.6.0
2338
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002339 Fixed a bug when optimizing named function expression (issue 1647).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002340
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002341 Fixed a bug when optimizing f.call.apply (issue 1650).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002342
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002343 Made arguments and caller always be null on native functions
2344 (issues 1548 and 1643).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002345
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002346 Fixed issue 1648 (cross-compiling x64 targeting ia32).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002347
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002348 Fixed issue 371 (d8 printing of strings containing \0).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002349
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002350 Fixed order of evaluation in arguments to parseInt (issue 1649).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002351
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002352 Fixed a problem with large heap snapshots in Chrome DevTools
2353 (issue 1658, chromium issue 89268).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002354
ricow@chromium.org55ee8072011-09-08 16:33:10 +00002355 Upped default maximum heap size from 512M to 700M.
fschneider@chromium.org1805e212011-09-05 10:49:12 +00002356
2357
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +000023582011-08-31: Version 3.5.10
2359
2360 Added dependency of v8_base on WinSocket2 Windows library in
2361 the GYP-build.
2362
2363 Various bugfixes.
2364
2365
ricow@chromium.org4668a2c2011-08-29 10:41:00 +000023662011-08-29: Version 3.5.9
2367
2368 Made FromPropertyDescriptor not trigger inherited setters.
2369
2370 Fixed .gyp files to work on the ARM simulator.
2371
2372 Fixed shared library build warnings for MSVS.
2373
2374
ricow@chromium.orgddd545c2011-08-24 12:02:41 +000023752011-08-24: Version 3.5.8
2376
2377 Added V8EXPORT attributes for v8::Array::CheckCast and
2378 v8::Number::CheckCast.
2379
2380 Made a slight API change enabling opting out from null termination
2381 in String::Write*().
2382
2383 Fixed arm build for gcc-4.6.
2384
2385
rossberg@chromium.org28a37082011-08-22 11:03:23 +000023862011-08-22: Version 3.5.7
2387
2388 Make scanner handle invalid unicode escapes in identifiers correctly.
2389
2390 Make regexp flag parsing stricter.
2391
2392 Fix several memory leaks.
2393
2394
danno@chromium.orgb6451162011-08-17 14:33:23 +000023952011-08-17: Version 3.5.6
2396
2397 Fixed issue that could cause crashes when running with --heap-stats.
2398
2399 Fixed compilation on Linux 2.6.9 and older.
2400
2401 Fixed live-object-list to work with isolates.
2402
2403 Fixed memory leaks in zones and isolates.
2404
2405 Fixed a performance regression for TypedArrays on x64.
2406
2407 Stability improvements on all platforms.
2408
2409
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000024102011-08-15: Version 3.5.5
2411
2412 Fixed bugs involving negative zero and the optimizing compiler.
2413
2414 Fixed optimized version of Function.apply(x, arguments). (issue 1592)
2415
2416 Eliminated uses of deprecated ARM instructions.
2417
2418 Sped up Math.floor by using SSE 4.1 roundsd instruction on ia32.
2419
2420 Removed restriction on the size of disassembled code that is printed.
2421
2422
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000024232011-08-10: Version 3.5.4
2424
2425 Added a preliminary implementation of ES Harmony weak maps. Weak
2426 maps can be enabled by the flag --harmony-weakmaps.
2427
2428 Introduced a toplevel Makefile to support GYP-based building. GYP
2429 can be obtained from http://gyp.googlecode.com.
2430
2431 Fixed a bug in the length property of functions created by
2432 Function.prototype.bind.
2433
2434 Reduced malloc heap allocation on process startup.
2435
2436 Several important code generation bug fixes.
2437
2438 Performance improvements on all platforms.
2439
2440
lrn@chromium.orgd4e9e222011-08-03 12:01:58 +000024412011-08-03: Version 3.5.3
2442
2443 MIPS: Port of fix to ClassOf check from ARM.
2444 Patch from Paul Lind <plind44@gmail.com>.
2445
2446 Stopped using mprotect on Cygwin.
2447 Avoided uninitialized member warning on gcc 4.3.4
2448 Both patches by Bert Belder.
2449
2450 Bug fixes and performance improvements on all platforms.
2451
2452
vegorov@chromium.org7943d462011-08-01 11:41:52 +000024532011-08-01: Version 3.5.2
2454
2455 Performance improvements on all platforms.
2456
2457
ricow@chromium.org2c99e282011-07-28 09:15:17 +000024582011-07-28: Version 3.5.1
2459
2460 Fixed setting the readonly flag on the prototype property using the
2461 API call FunctionTemplate::SetPrototypeAttributes (issue 1539).
2462
2463 Changed the tools/test.py script to use d8 instead of shell for
2464 testing.
2465
2466 Fixed crash in ToBooleanStub when GC happens during invocation.
2467
2468 Enabled automatic unboxing of double arrays.
2469
2470 Performance improvements on all platforms.
2471
2472
ricow@chromium.org9fa09672011-07-25 11:05:35 +000024732011-07-25: Version 3.5.0
2474
2475 Implemented Object.prototype.{hasOwnProperty, propertyIsEnumerable} for
2476 proxies.
2477
2478 Removed logging to memory support.
2479
2480 Bugfixes and performance work.
2481
2482
rossberg@chromium.org717967f2011-07-20 13:44:42 +000024832011-07-20: Version 3.4.14
2484
2485 Fix the debugger for strict-mode functions. (Chromium issue 89236)
2486
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00002487 Add GetPropertyAttribute method for Object in the API. (Patch by
ricow@chromium.org9fa09672011-07-25 11:05:35 +00002488 Peter Varga)
rossberg@chromium.org717967f2011-07-20 13:44:42 +00002489
2490 Fix -Wunused-but-set-variable for gcc-4.6 on x64. (Issue 1291)
2491
2492
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000024932011-07-18: Version 3.4.13
2494
2495 Improved debugger support to allow inspection of optimized frames (issue
2496 1140).
2497
2498 Fixed a bug in prototype transitions cache clearing introduced by r8165.
2499
2500 Fixed shortcutting bug in HInferRepresentation. Patch by Andy Wingo.
2501
2502 Fixed a memory leak in sample/shell.cc (dispose semaphores).
2503
2504 Simplified HClampToUint8. Patch by Andy Wingo.
2505
2506 Exposed APIs for detecting boxed primitives, native errors. Patch by
2507 Luke Zarko.
2508
2509 Added map check for COW elements to crankshaft array handling code
2510 (issue 1560).
2511
2512 Sample shell and (a light version of) D8 links against a shared library
2513 now.
2514
2515 Fixed bug in array filter and reduce functions (issue 1559).
2516
2517 Avoid TLS load in AstNode constructor.
2518
2519 Introduced a random entropy source which can optionally be provided at
2520 initialization. (Chromium issue 89462).
2521
2522
whesse@chromium.org030d38e2011-07-13 13:23:34 +000025232011-07-13: Version 3.4.12
2524
2525 Added --prof profiling option to d8 shell.
2526
2527 Fixed a bug where reading a directory in d8 shell hangs (issue 1533).
2528
2529 Fixed a potential assertion failure in const declarations.
2530
2531 Fixed an assertion failure in descriptor arrays (issue 1526).
2532
2533 Enabled fast thread-local storage by default on supported platforms.
2534
2535 Improved reporting of source position for global variable loads
2536 (issue 1527).
2537
2538
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000025392011-07-11: Version 3.4.11
2540
2541 Fixed MinGW32 build.
2542
2543 Fixed a GC bug with RegExp code flushing.
2544
2545 Implemented Object.defineProperty for proxies.
2546
2547 Fixed a bug in for/in iteration of arguments objects (issue 1531).
2548
2549 Added debugger support for inspecting optimized frames (issue 1140).
2550
2551 Allowed JSObject::PreventExtensions to work for arguments objects.
2552
2553 Bugfixes and performance work.
2554
2555
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000025562011-07-06: Version 3.4.10
2557
2558 Fixed debugger not breaking on certain "if" statements (issue 1523).
2559
2560 Fixed assertion failure in runtime profiler when running on IA32
2561 without snapshot (issue 1522).
2562
2563 Fixed ABI for API calls on IA32 (for clang compatibility).
2564
2565 Introduced code flushing of RegExp code to free memory used by
2566 RegExps sooner.
2567
2568 Fixed linux-tick-processor built wrong version of v8 (issue 1532).
2569
2570 Fixed assertion failure in v8::TryCache::StackTrace (issue 1529).
2571
2572 Performance improvements on all platforms.
2573
2574
ricow@chromium.org4f693d62011-07-04 14:01:31 +000025752011-07-04: Version 3.4.9
2576
2577 Added support for debugger inspection of locals in optimized frames
2578 (issue 1140).
2579
2580 Fixed SConstruct to pass correct defines to samples/preparser when
2581 building with library=shared.
2582
2583 Made date parser handle ES5 Date Time Strings correctly (issue 1498).
2584
2585 Fixed a bug in Object.defineProperty on the arguments object.
2586
2587 Performance improvements on all platforms.
2588
2589
vegorov@chromium.org3cf47312011-06-29 13:20:01 +000025902011-06-29: Version 3.4.8
2591
2592 Ensure 16-byte stack alignment on Solaris (issue 1505).
2593
sgjesse@chromium.org6db88712011-07-11 11:41:22 +00002594 Fix "illegal access" when calling parseInt with a radix
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00002595 that is not a smi. (issue 1246).
2596
2597
ager@chromium.org04921a82011-06-27 13:21:41 +000025982011-06-27: Version 3.4.7
2599
2600 Fixed 64-bit build on FreeBSD.
2601
2602 Added API to set the property attributes for the prototype
2603 property on functions created from FunctionTemplates.
2604
2605 Bugfixes and performance work.
2606
2607
lrn@chromium.orgac2828d2011-06-23 06:29:21 +000026082011-06-22: Version 3.4.6
2609
2610 Lowered limit on code space for systems with low memory supply.
2611
2612 Allowed compiling v8_shell with the 'host' toolset (issue 82437).
2613
2614 Extended setBreakpoint API to accept partial script name (issue 1418).
2615
2616 Made multi-line comments not count when deciding whether the '-->'
2617 comment starter is first on a line. This matches Safari.
2618
2619 Made handling of non-array recievers in Array length setter correct
2620 (issue 1491).
2621
2622 Added ability to heap profiler to iterate over snapshot's node
2623 (issue 1481).
2624
2625
whesse@chromium.org7b260152011-06-20 15:33:18 +000026262011-06-20: Version 3.4.5
2627
2628 Fixed issues 794, 1097, 1215(partial), 1417, 1435, 1472, 1473,
2629 1476, and 1477.
2630
2631 Improved code generation for !0 and !1.
2632
2633 Reduced memory usage for regular expressions with nested qualifiers.
2634 (issue 1472)
2635
2636 Fixed V8 to count line terminators in multi-line comments.
2637 (Chromium issue 86431)
2638
2639 Fixed disassembler=on option for release-mode builds. (issue 1473)
2640
2641 Performance improvements on all platforms.
2642
2643
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000026442011-06-15: Version 3.4.4
2645
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002646 Added snapshot compression support and --stress-opt flag to d8.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002647
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002648 Improved performance of try/catch.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002649
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002650 Several GYP-related changes: Added support for building Xcode project
2651 files. Make the ARM simulator build with GYP again. Generate Makefiles
2652 for all architectures on Linux.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002653
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002654 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the
2655 receiver for strict mode callbacks. (issue 1436)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002656
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002657 Fixed a bug where an array load was incorrectly hoisted by GVN.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002658
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002659 Handle 'undefined' correctly when === has been specialized for doubles.
2660 (issue 1434)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002661
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002662 Corrected the limit of local variables in an optimized function from 64
2663 to 63.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002664
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002665 Correctly set ReadOnly flag on indexed properties when using the API Set
2666 method. (issue 1470)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002667
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002668 Give the correct error message when Object.isExtensible is called on a
2669 non-object. (issue 1452)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002670
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002671 Added GetOwnPropertyNames method for Object in the API. Patch by Peter
2672 Varga.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002673
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002674 Do not redefine properties unneccesarily in seal and freeze. (issue
2675 1447)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002676
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002677 IsExecutionTerminating has an Isolate parameter now.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002678
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002679 Distinguish keyed loads with a symbol key from fast elements loads,
2680 avoiding some useless deoptimizations. (issue 1471)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002681
2682
jkummerow@chromium.orge297f592011-06-08 10:05:15 +000026832011-06-08: Version 3.4.3
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002684
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00002685 Clear the global thread table when an isolate is disposed
2686 (issue 1433).
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002687
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00002688 Converted time zone name to UTF8 on Windows (issue 1290).
2689
2690 Limited the number of arguments in a function call to 32766
2691 (issue 1413).
2692
2693 Compress sources of JS libraries in addition to the snapshot.
2694
2695 Fixed a bug in Lithium environment iteration.
2696
2697 Performance improvements on all platforms.
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002698
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002699
erik.corry@gmail.comd6076d92011-06-06 09:39:18 +000027002011-06-06: Version 3.4.2
2701
2702 More work on ES-Harmony proxies. Still hidden behind a flag.
2703
2704 Fixed some crash bugs and improved performance.
2705
2706 Fixed building with gdb debugging support.
2707
2708 Do not install SIGPROF handler until it is needed.
2709
2710 Added DateTimeFormat to i18n API.
2711
2712 Fixed compilation on OpenBSD.
2713
2714 Take the ulimit into account when sizing the heap. OpenBSD users
2715 may still have to increase the default ulimit to run heavy pages in
2716 the browser.
2717
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002718
ricow@chromium.orgd2be9012011-06-01 06:00:58 +000027192011-06-01: Version 3.4.1
2720
2721 Fixed JSON stringify issue with arrays.
2722
2723 Changed calls to JS builtins to be passed undefined when called with
2724 implicit receiver.
2725
2726 Implemented the set trap for Harmony proxies. Proxies still need to
2727 be enabled with the --harmony-proxies flag.
2728
2729
ricow@chromium.orgc54d3652011-05-30 09:20:16 +000027302011-05-30: Version 3.4.0
2731
2732 Changed calls to undefined property setters to not throw (issue 1355).
2733
2734 Made RegExp objects not callable.
2735
2736 Fixed issues on special case large JSON strings in new json parser
2737 (issues http://crbug.com/83877 and http://crbug.com/84186).
2738
2739 Performance improvements on all platforms.
2740
2741
danno@chromium.org40cb8782011-05-25 07:58:50 +000027422011-05-25: Version 3.3.10
2743
2744 Fixed calls of strict mode function with an implicit receiver.
2745
2746 Fixed fast handling of arrays to properly deal with changes to the
2747 Object prototype (issue 1403).
2748
2749 Changed strict mode poison pill to be the same type error function
2750 (issue 1387).
2751
2752 Fixed a debug crash in arguments object handling (issue 1227).
2753
2754 Fixed a bug in deoptimization on x64 (issue 1404).
2755
2756 Performance improvements and bug fixes on all platforms.
2757
2758
ager@chromium.orgea91cc52011-05-23 06:06:11 +000027592011-05-23: Version 3.3.9
2760
2761 Added DateTimeFormat class to experimental i18n API.
2762
2763 Extended preparser to give early errors for some strict mode
2764 restrictions.
2765
2766 Removed legacy execScript function from V8.
2767
2768 Extended isolate API with the ability to add embedder-specific
2769 data to an isolate.
2770
2771 Added basic support for polymorphic loads from JS and external
2772 arrays.
2773
2774 Fixed bug in handling of switch statements in the optimizing
2775 compiler.
2776
2777
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +000027782011-05-18: Version 3.3.8
2779
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002780 Added MarkIndependent to the persistent handle API. Independent
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00002781 handles are independent of all other persistent handles and can be
2782 garbage collected more frequently.
2783
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002784 Implemented the get trap for Harmony proxies. Proxies are enabled
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00002785 with the --harmony-proxies flag.
2786
2787 Performance improvements and bug fixes on all platforms.
2788
2789
vegorov@chromium.org7304bca2011-05-16 12:14:13 +000027902011-05-16: Version 3.3.7
2791
2792 Updated MIPS infrastructure files.
2793
2794 Performance improvements and bug fixes on all platforms.
2795
2796
karlklose@chromium.org83a47282011-05-11 11:54:09 +000027972011-05-11: Version 3.3.6
2798
2799 Updated MIPS infrastructure files.
2800
2801 Added method IsCallable for Object to the API.
2802 Patch by Peter Varga.
2803
2804
lrn@chromium.org1c092762011-05-09 09:42:16 +000028052011-05-09: Version 3.3.5
2806
2807 Fixed build on FreeBSD. Patch by Akinori MUSHA.
2808
2809 Added check that receiver is JSObject on API calls.
2810
2811 Implemented CallAsConstructor method for Object in the API (Issue 1348).
2812 Patch by Peter Varga.
2813
2814 Added CallAsFunction method to the Object class in the API (Issue 1336).
2815 Patch by Peter Varga.
2816
2817 Added per-isolate locking and unlocking.
2818
2819 Fixed bug in x64 >>> operator (Issue 1359).
2820
2821
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000028222011-05-04: Version 3.3.4
2823
2824 Implemented API to disallow code generation from strings for a context
2825 (issue 1258).
2826
2827 Fixed bug with whitespaces in parseInt (issue 955).
2828
2829 Fixed bug with == comparison of Date objects (issue 1356).
2830
2831 Added GYP variables for ARM code generation:
2832 v8_can_use_vfp_instructions, v8_can_use_unaligned_accesses
2833 and v8_use_arm_eabi_hardfloat.
2834
2835
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000028362011-05-02: Version 3.3.3
2837
2838 Added support for generating Visual Studio solution and project files
2839 using GYP.
2840
2841 Implemented support for ARM EABI calling convention variation where
2842 floating-point arguments are passed in registers (hardfloat).
2843
2844 Added Object::HasOwnProperty() to the API.
2845
2846 Added support for compressing startup data to reduce binary size. This
2847 includes build time support and an API for the embedder to decompress
2848 the startup data before initializing V8.
2849
2850 Reduced the profiling hooks overhead from >400% to 25% when using
2851 ll_prof.
2852
2853 Performance improvements and bug fixes on all platforms.
2854
2855
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +000028562011-04-27: Version 3.3.2
2857
2858 Fixed crash bug on ARM with no VFP3 hardware.
2859
2860 Fixed compilation of V8 without debugger support.
2861
2862 Improved performance on JSLint.
2863
2864 Added support Float64 WebGL arrays.
2865
2866 Fixed crash bug in regexp replace.
2867
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +00002868
ricow@chromium.orgdcebac02011-04-20 09:44:50 +000028692011-04-20: Version 3.3.1
2870
2871 Reduced V8 binary size by removing virtual functions from hydrogen.
2872
2873 Fixed crash bug on x64.
2874
2875 Performance improvements on ARM and IA32.
2876
2877
danno@chromium.org160a7b02011-04-18 15:51:38 +000028782011-04-18: Version 3.3.0
2879
2880 Fixed bug in floating point rounding in Crankshaft on ARM
2881 (issue 958)
2882
2883 Fixed a number of issues with running without VFPv3 support on ARM
2884 (issue 1315)
2885
2886 Introduced v8Locale.Collator, a partial implementation of Collator
2887 per last ECMAScript meeting + mailing list.
2888
2889 Minor performance improvements and bug fixes.
2890
2891
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000028922011-04-13: Version 3.2.10
2893
2894 Fixed bug in external float arrays on ARM (issue 1323).
2895
2896 Minor performance improvements and bug fixes.
2897
2898
karlklose@chromium.org44bc7082011-04-11 12:33:05 +000028992011-04-11: Version 3.2.9
2900
2901 Removed support for ABI prior to EABI on ARM.
2902
2903 Fixed multiple crash bugs.
2904
2905 Added GCMole to the repository, a simple static analysis tool that
2906 searches for GC-unsafe evaluation order dependent callsites.
2907
2908 Made preparser API be exported in shared libraries.
2909
2910 Fixed multiple issues in EcmaScript 5 strict mode implementation.
2911
2912 Fixed mutable __proto__ property if object is not extensible
2913 (Issue 1309).
2914
2915 Fixed auto suspension of the sampler thread.
2916
2917
vegorov@chromium.org74f333b2011-04-06 11:17:46 +000029182011-04-06: Version 3.2.8
2919
2920 Exposed WebGL typed array constructors in the shell sample.
2921
2922 Performance improvements on all platforms.
2923
2924
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +000029252011-04-04: Version 3.2.7
2926
2927 Disabled the original 'classic' V8 code generator. Crankshaft is
2928 now the default on all platforms.
2929
2930 Changed the heap profiler to use more descriptive names.
2931
2932 Performance and stability improvements to isolates on all platforms.
2933
2934
lrn@chromium.org7516f052011-03-30 08:52:27 +000029352011-03-30: Version 3.2.6
2936
2937 Fixed xcode build warning in shell.cc (out of order initialization).
2938
2939 Fixed null-pointer dereference in the compiler when running without
2940 SSE3 support (Chromium issue 77654).
2941
2942 Fixed x64 compilation error due to some dead code. (Issue 1286)
2943
2944 Introduced scons target to build the preparser stand-alone example.
2945
2946 Made FreeBSD build and pass all tests.
2947
2948
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +000029492011-03-28: Version 3.2.5
2950
lrn@chromium.org7516f052011-03-30 08:52:27 +00002951 Fixed build with Irregexp interpreter (issue 1266).
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00002952
2953 Added Crankshaft support for external arrays.
2954
2955 Fixed two potential crash bugs.
2956
2957
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000029582011-03-23: Version 3.2.4
2959
2960 Added isolates which allows several V8 instances in the same process.
2961 This is controlled through the new Isolate class in the API.
2962
2963 Implemented more of EcmaScript 5 strict mode.
2964
2965 Reduced the time it takes to make detailed heap snapshot.
2966
2967 Added a number of commands to the ARM simulator and enhanced the ARM
2968 disassembler.
2969
2970
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +000029712011-03-17: Version 3.2.3
2972
2973 Fixed a number of crash bugs.
2974
2975 Fixed Array::New(length) to return an array with a length (issue 1256).
2976
2977 Fixed FreeBSD build.
2978
2979 Changed __defineGetter__ to not throw (matching the behavior of Safari).
2980
2981 Implemented more of EcmaScript 5 strict mode.
2982
2983 Improved Crankshaft performance on all platforms.
2984
2985
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000029862011-03-14: Version 3.2.2
2987
2988 Fixed a number of crash and correctness bugs.
2989
2990 Improved Crankshaft performance on all platforms.
2991
2992 Fixed Crankshaft on Solaris/Illumos.
2993
2994
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +000029952011-03-10: Version 3.2.1
2996
2997 Fixed a number of crash bugs.
2998
2999 Improved Crankshaft for x64 and ARM.
3000
3001 Implemented more of EcmaScript 5 strict mode.
3002
3003
karlklose@chromium.org8f806e82011-03-07 14:06:08 +000030042011-03-07: Version 3.2.0
3005
3006 Fixed a number of crash bugs.
3007
3008 Turned on Crankshaft by default on x64 and ARM.
3009
3010 Improved Crankshaft for x64 and ARM.
3011
3012 Implemented more of EcmaScript 5 strict mode.
3013
3014
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000030152011-03-02: Version 3.1.8
3016
3017 Fixed a number of crash bugs.
3018
3019 Improved Crankshaft for x64 and ARM.
3020
3021 Implemented more of EcmaScript 5 strict mode.
3022
3023 Fixed issue with unaligned reads and writes on ARM.
3024
3025 Improved heap profiler support.
3026
3027
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +000030282011-02-28: Version 3.1.7
3029
3030 Fixed a number of crash bugs.
3031
3032 Improved Crankshaft for x64 and ARM.
3033
ager@chromium.org9ee27ae2011-03-02 13:43:26 +00003034 Fixed implementation of indexOf/lastIndexOf for sparse
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +00003035 arrays (http://crbug.com/73940).
3036
3037 Fixed bug in map space compaction (http://crbug.com/59688).
3038
3039 Added support for direct getter accessors calls on ARM.
3040
3041
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000030422011-02-24: Version 3.1.6
3043
3044 Fixed a number of crash bugs.
3045
3046 Added support for Cygwin (issue 64).
3047
3048 Improved Crankshaft for x64 and ARM.
3049
3050 Added Crankshaft support for stores to pixel arrays.
3051
3052 Fixed issue in CPU profiler with Crankshaft.
3053
3054
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +000030552011-02-16: Version 3.1.5
3056
3057 Change RegExp parsing to disallow /(*)/.
3058
3059 Added GDB JIT support for ARM.
3060
3061 Fixed several crash bugs.
3062
3063 Performance improvements on the IA32 platform.
3064
3065
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +000030662011-02-14: Version 3.1.4
3067
3068 Fixed incorrect compare of prototypes of the global object (issue
3069 1082).
3070
3071 Fixed a bug in optimizing calls to global functions (issue 1106).
3072
3073 Made optimized Function.prototype.apply safe for non-JSObject first
3074 arguments (issue 1128).
3075
3076 Fixed an error related to element accessors on Object.prototype and
3077 parser errors (issue 1130).
3078
3079 Fixed a bug in sorting an array with large array indices (issue 1131).
3080
3081 Properly treat exceptions thrown while compiling (issue 1132).
3082
3083 Fixed bug in register requirements for function.apply (issue 1133).
3084
3085 Fixed a representation change bug in the Hydrogen graph construction
3086 (issue 1134).
3087
3088 Fixed the semantics of delete on parameters (issue 1136).
3089
3090 Fixed a optimizer bug related to moving instructions with side effects
3091 (issue 1138).
3092
3093 Added support for the global object in Object.keys (issue 1150).
3094
3095 Fixed incorrect value for Math.LOG10E
3096 (issue http://code.google.com/p/chromium/issues/detail?id=72555)
3097
3098 Performance improvements on the IA32 platform.
3099
3100 Implement assignment to undefined reference in ES5 Strict Mode.
3101
3102
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +000031032011-02-09: Version 3.1.3
3104
3105 Fixed a bug triggered by functions with huge numbers of declared
3106 arguments.
3107
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00003108 Fixed zap value aliasing a real object - debug mode only (issue 866).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00003109
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00003110 Fixed issue where Array.prototype.__proto__ had been set to null
3111 (issue 1121).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00003112
3113 Fixed stability bugs in Crankshaft for x86.
3114
3115
ricow@chromium.org83aa5492011-02-07 12:42:56 +000031162011-02-07: Version 3.1.2
3117
3118 Added better security checks when accessing properties via
3119 Object.getOwnPropertyDescriptor.
3120
3121 Fixed bug in Object.defineProperty and related access bugs (issues
3122 992, 1083 and 1092).
3123
3124 Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease
3125 copyright notice generation for embedders.
3126
3127
kmillikin@chromium.org31b12772011-02-02 16:08:26 +000031282011-02-02: Version 3.1.1
3129
3130 Perform security checks before fetching the value in
3131 Object.getOwnPropertyDescriptor.
3132
3133 Fixed a bug in Array.prototype.splice triggered by passing no
3134 arguments.
3135
3136 Fixed bugs in -0 in arithmetic and in Math.pow.
3137
3138 Fixed bugs in the register allocator and in switching from optimized
3139 to unoptimized code.
3140
3141
31422011-01-31: Version 3.1.0
3143
whesse@chromium.org7a392b32011-01-31 11:30:36 +00003144 Performance improvements on all platforms.
3145
3146
ager@chromium.org378b34e2011-01-28 08:04:38 +000031472011-01-28: Version 3.0.12
3148
3149 Added support for strict mode parameter and object property
3150 validation.
3151
3152 Fixed a couple of crash bugs.
3153
3154
ager@chromium.org0ee099b2011-01-25 14:06:47 +000031552011-01-25: Version 3.0.11
3156
3157 Fixed a bug in deletion of lookup slots that could cause global
3158 variables to be accidentally deleted (http://crbug.com/70066).
3159
3160 Added support for strict mode octal literal verification.
3161
3162 Fixed a couple of crash bugs (issues 1070 and 1071).
3163
3164
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +000031652011-01-24: Version 3.0.10
3166
3167 Fixed External::Wrap for 64-bit addresses (issue 1037).
3168
ager@chromium.org0ee099b2011-01-25 14:06:47 +00003169 Fixed incorrect .arguments variable proxy handling in the full
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00003170 code generator (issue 1060).
3171
3172 Introduced partial strict mode support.
3173
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00003174 Changed formatting of recursive error messages to match Firefox and
3175 Safari (issue http://crbug.com/70334).
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00003176
3177 Fixed incorrect rounding for float-to-integer conversions for external
ager@chromium.org0ee099b2011-01-25 14:06:47 +00003178 array types, which implement the Typed Array spec
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00003179 (issue http://crbug.com/50972).
3180
3181 Performance improvements on the IA32 platform.
3182
3183
erik.corry@gmail.com0511e242011-01-19 11:11:08 +000031842011-01-19: Version 3.0.9
3185
3186 Added basic GDB JIT Interface integration.
3187
3188 Make invalid break/continue statements a syntax error instead of a
3189 runtime error.
3190
3191
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000031922011-01-17: Version 3.0.8
3193
3194 Exposed heap size limit to the heap statistics gathered by
erik.corry@gmail.com0511e242011-01-19 11:11:08 +00003195 the GetHeapStatistics API.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00003196
3197 Wrapped external pointers more carefully (issue 1037).
3198
3199 Hardened the implementation of error objects to avoid setters
3200 intercepting the properties set then throwing an error.
3201
3202 Avoided trashing the FPSCR when calculating Math.floor on ARM.
3203
3204 Performance improvements on the IA32 platform.
3205
3206
32072011-01-10: Version 3.0.7
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003208
3209 Stopped calling inherited setters when creating object literals
3210 (issue 1015).
3211
3212 Changed interpretation of malformed \c? escapes in RegExp to match
3213 JSC.
3214
3215 Enhanced the command-line debugger interface and fixed some minor
3216 bugs in the debugger.
3217
3218 Performance improvements on the IA32 platform.
3219
3220
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000032212011-01-05: Version 3.0.6
lrn@chromium.org5d00b602011-01-05 09:51:43 +00003222
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003223 Allowed getters and setters on JSArray elements (issue 900).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00003224
3225 Stopped JSON objects from hitting inherited setters (part of
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003226 issue 1015).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00003227
3228 Allowed numbers and strings as names of getters/setters in object
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003229 initializer (issue 820).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00003230
3231 Added use_system_v8 option to gyp (off by default), to make it easier
3232 for Linux distributions to ship with system-provided V8 library.
3233
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003234 Exported external array data accessors (issue 1016).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00003235
3236 Added labelled thread names to help with debugging (on Linux).
3237
3238
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +000032392011-01-03: Version 3.0.5
3240
3241 Fixed a couple of cast errors for gcc-3.4.3.
3242
3243 Performance improvements in GC and IA32 code generator.
3244
3245
whesse@chromium.org023421e2010-12-21 12:19:12 +000032462010-12-21: Version 3.0.4
3247
3248 Added Date::ResetCache() to the API so that the cached values in the
3249 Date object can be reset to allow live DST / timezone changes.
3250
3251 Extended existing support for printing (while debugging) the contents
3252 of objects. Added support for printing objects from release builds.
3253
3254 Fixed V8 issues 989, 1006, and 1007.
3255
3256
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000032572010-12-17: Version 3.0.3
3258
3259 Reapplied all changes for version 3.0.1.
3260
3261 Improved debugger protocol for remote debugging.
3262
3263 Added experimental support for using gyp to generate build files
3264 for V8.
3265
3266 Fixed implementation of String::Write in the API (issue 975).
3267
3268
lrn@chromium.org8541d772010-12-15 12:05:09 +000032692010-12-15: Version 3.0.2
3270
3271 Revert version 3.0.1 and patch 3.0.1.1.
3272
3273
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +000032742010-12-13: Version 3.0.1
3275
3276 Added support for an experimental internationalization API as an
3277 extension. This extension is disabled by default but can be enabled
3278 when building V8. The ECMAScript internationalization strawman is
3279 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
3280
3281 Made RegExp character class parsing stricter. This mirrors a change
3282 to RegExp parsing in WebKit.
3283
3284 Fixed a bug in Object.defineProperty when used to change attributes
3285 of an existing property. It incorrectly set the property value to
3286 undefined (issue 965).
3287
3288 Fixed several different compilation failures on various platforms
3289 caused by the 3.0.0 release.
3290
3291 Optimized Math.pow so it can work on unboxed doubles.
3292
3293 Sped up quoting of JSON strings by removing one traversal of the
3294 string.
3295
3296
kasperl@chromium.orga5551262010-12-07 12:49:48 +000032972010-12-07: Version 3.0.0
3298
3299 Improved performance by (partially) addressing issue 957 on
3300 IA-32. Still needs more work for the other architectures.
3301
3302
ager@chromium.orgbeb25712010-11-29 08:02:25 +000033032010-11-29: Version 2.5.9
3304
3305 Fixed crashes during GC caused by partially initialize heap
3306 objects.
3307
3308 Fixed bug in process sample that caused memory leaks.
3309
3310 Improved performance on ARM by implementing missing stubs and
3311 inlining.
3312
3313 Improved heap profiler support.
3314
3315 Added separate seeding on Windows of the random number generator
3316 used internally by the compiler (issue 936).
3317
3318 Exposed API for getting the name of the function used to construct
3319 an object.
3320
3321 Fixed date parser to handle one and two digit millisecond
3322 values (issue 944).
3323
3324 Fixed number parsing to disallow space between sign and
3325 digits (issue 946).
3326
3327
vegorov@chromium.org21b5e952010-11-23 10:24:40 +000033282010-11-23: Version 2.5.8
3329
3330 Removed dependency on Gay's dtoa.
3331
3332 Improved heap profiler precision and speed.
3333
3334 Reduced overhead of callback invocations on ARM.
3335
3336
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000033372010-11-18: Version 2.5.7
3338
3339 Fixed obscure evaluation order bug (issue 931).
3340
3341 Split the random number state between JavaScript and the private API.
3342
3343 Fixed performance bug causing GCs when generating stack traces on
3344 code from very large scripts.
3345
3346 Fixed bug in parser that allowed (foo):42 as a labelled statement
3347 (issue 918).
3348
3349 Provide more accurate results about used heap size via
3350 GetHeapStatistics.
3351
3352 Allow build-time customization of the max semispace size.
3353
3354 Made String.prototype.split honor limit when separator is empty
3355 (issue 929).
3356
3357 Added missing failure check after expecting an identifier in
3358 preparser (Chromium issue 62639).
3359
3360
ager@chromium.org01fe7df2010-11-10 11:59:11 +000033612010-11-10: Version 2.5.6
3362
3363 Added support for VFP rounding modes to the ARM simulator.
3364
3365 Fixed multiplication overflow bug (issue 927).
3366
3367 Added a limit for the amount of executable memory (issue 925).
3368
3369
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +000033702010-11-08: Version 2.5.5
3371
3372 Added more aggressive GC of external objects in near out-of-memory
3373 situations.
3374
3375 Fixed a bug that gave the incorrect result for String.split called
3376 on the empty string (issue 924).
3377
3378
lrn@chromium.orgfa943b72010-11-03 08:14:36 +000033792010-11-03: Version 2.5.4
3380
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +00003381 Improved V8 VFPv3 runtime detection to address issue 914.
lrn@chromium.orgfa943b72010-11-03 08:14:36 +00003382
3383
fschneider@chromium.orge03fb642010-11-01 12:34:09 +000033842010-11-01: Version 2.5.3
3385
3386 Fixed a bug that prevents constants from overwriting function values
3387 in object literals (issue 907).
3388
3389 Fixed a bug with reporting of impossible nested calls of DOM functions
3390 (issue http://crbug.com/60753).
3391
3392
lrn@chromium.org303ada72010-10-27 09:33:13 +000033932010-10-27: Version 2.5.2
3394
3395 Improved sampler resolution on Linux.
3396
3397 Allowed forcing the use of a simulator from the build script
3398 independently of the host architecture.
3399
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00003400 Fixed FreeBSD port (issue 912).
lrn@chromium.org303ada72010-10-27 09:33:13 +00003401
3402 Made windows-tick-processor respect D8_PATH.
3403
3404 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
3405
3406
whesse@chromium.org4a5224e2010-10-20 12:37:07 +000034072010-10-20: Version 2.5.1
3408
3409 Fixed bug causing spurious out of memory exceptions
3410 (issue http://crbug.com/54580).
3411
3412 Fixed compilation error on Solaris platform (issue 901).
3413
3414 Fixed error in strtod (string to floating point number conversion)
3415 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
3416
3417 Adjusted randomized allocations of executable memory to have 64k
3418 granularity (issue http://crbug.com/56036).
3419
3420 Supported profiling using kernel perf_events on linux. Added ll_prof
3421 script to tools and --ll-prof flag to V8.
3422
3423
vegorov@chromium.org42841962010-10-18 11:18:59 +000034242010-10-18: Version 2.5.0
3425
3426 Fixed bug in cache handling of lastIndex on global regexps
3427 (issue http://crbug.com/58740).
3428
3429 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
3430 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +00003431 from Hewlett-Packard Development Company, LP).
vegorov@chromium.org42841962010-10-18 11:18:59 +00003432
3433 Fixed compilation error on ARM with gcc 4.4 (issue 894).
3434
3435
34362010-10-13: Version 2.4.9
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00003437
3438 Fixed a bug in the handling of conditional expressions in test
3439 contexts in compiler for top-level code.
3440
3441 Added "//@ sourceURL" information to the StackTrace API.
3442
3443 Exposed RegExp construction through the API.
3444
3445
ricow@chromium.orgeb7c1442010-10-04 08:54:21 +000034462010-10-04: Version 2.4.8
3447
3448 Fixed a bug in ResumeProfilerEx causing it to not always write out the
3449 whole snapshot (issue 868).
3450
3451 Performance improvements on all platforms.
3452
3453
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +000034542010-09-30: Version 2.4.7
3455
3456 Changed the command-line flag --max-new-space-size to be in kB and the
3457 flag --max-old-space-size to be in MB (previously they were in bytes).
3458
3459 Added Debug::CancelDebugBreak to the debugger API.
3460
3461 Fixed a bug in getters for negative numeric property names
3462 (https://bugs.webkit.org/show_bug.cgi?id=46689).
3463
3464 Performance improvements on all platforms.
3465
3466
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000034672010-09-27: Version 2.4.6
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00003468
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00003469 Fixed assertion failure related to copy-on-write arrays (issue 876).
3470
3471 Fixed build failure of 64-bit V8 on Windows.
3472
3473 Fixed a bug in RegExp (issue http://crbug.com/52801).
3474
3475 Improved the profiler's coverage to cover more functions (issue 858).
3476
3477 Fixed error in shift operators on 64-bit V8
3478 (issue http://crbug.com/54521).
3479
3480
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000034812010-09-22: Version 2.4.5
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00003482
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003483 Changed the RegExp benchmark to exercise the regexp engine on different
3484 inputs by scrambling the input strings.
3485
3486 Fixed a bug in keyed loads on strings.
3487
3488 Fixed a bug with loading global function prototypes.
3489
3490 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
3491
3492 Performance improvements on all platforms.
3493
3494
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +000034952010-09-15: Version 2.4.4
3496
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003497 Fixed bug with hangs on very large sparse arrays.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003498
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003499 Now tries harder to free up memory when running out of space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003500
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003501 Added heap snapshots to JSON format to API.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003502
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003503 Recalibrated benchmarks.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00003504
3505
sgjesse@chromium.org2ec107f2010-09-13 09:19:46 +000035062010-09-13: Version 2.4.3
3507
3508 Made Date.parse properly handle TZ offsets (issue 857).
3509
3510 Performance improvements on all platforms.
3511
3512
ager@chromium.org5b2fbee2010-09-08 06:38:15 +000035132010-09-08: Version 2.4.2
3514
3515 Fixed GC crash bug.
3516
3517 Fixed stack corruption bug.
3518
3519 Fixed compilation for newer C++ compilers that found Operand(0)
3520 ambiguous.
3521
3522
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +000035232010-09-06: Version 2.4.1
3524
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003525 Added the ability for an embedding application to receive a callback
3526 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
3527 (V8::RemoveMemoryAllocationCallback) from the OS.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003528
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003529 Fixed several JSON bugs (including issue 855).
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003530
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003531 Fixed memory overrun crash bug triggered during V8's tick-based
3532 profiling.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003533
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003534 Performance improvements on all platforms.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003535
3536
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000035372010-09-01: Version 2.4.0
3538
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003539 Fixed bug in Object.freeze and Object.seal when Array.prototype or
3540 Object.prototype are changed (issue 842).
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003541
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003542 Updated Array.splice to follow Safari and Firefox when called
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003543 with zero arguments.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003544
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003545 Fixed a missing live register when breaking at keyed loads on ARM.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003546
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003547 Performance improvements on all platforms.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00003548
3549
ricow@chromium.org65fae842010-08-25 15:26:24 +000035502010-08-25: Version 2.3.11
3551
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003552 Fixed bug in RegExp related to copy-on-write arrays.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003553
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003554 Refactored tools/test.py script, including the introduction of
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003555 VARIANT_FLAGS that allows specification of sets of flags with which
3556 all tests should be run.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003557
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003558 Fixed a bug in the handling of debug breaks in CallIC.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003559
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00003560 Performance improvements on all platforms.
ricow@chromium.org65fae842010-08-25 15:26:24 +00003561
3562
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000035632010-08-23: Version 2.3.10
3564
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003565 Fixed bug in bitops on ARM.
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00003566
3567 Build fixes for unusual compilers.
3568
3569 Track high water mark for RWX memory.
3570
3571 Performance improvements on all platforms.
3572
3573
ricow@chromium.org0b9f8502010-08-18 07:45:01 +000035742010-08-18: Version 2.3.9
3575
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003576 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003577
3578 Removed specialized handling of GCC 4.4 (issue 830).
3579
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00003580 Fixed DST cache to take into account the suspension of DST in
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003581 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
3582
ricow@chromium.org65fae842010-08-25 15:26:24 +00003583 Performance improvements on all platforms.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003584
3585
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000035862010-08-16: Version 2.3.8
3587
3588 Fixed build with strict aliasing on GCC 4.4 (issue 463).
3589
3590 Fixed issue with incorrect handling of custom valueOf methods on
3591 string wrappers (issue 760).
3592
3593 Fixed compilation for ARMv4 (issue 590).
3594
3595 Improved performance.
3596
3597
vegorov@chromium.org26c16f82010-08-11 13:41:03 +000035982010-08-11: Version 2.3.7
3599
3600 Reduced size of heap snapshots produced by heap profiler (issue 783).
3601
3602 Introduced v8::Value::IsRegExp method.
3603
3604 Fixed CPU profiler crash in start / stop sequence when non-existent
3605 name is passed (issue http://crbug.com/51594).
3606
3607 Introduced new indexed property query callbacks API (issue 816). This
3608 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
3609 by default.
3610
3611 Removed support for object literal get/set with number/string
3612 property name.
3613
3614 Fixed handling of JSObject::elements in CalculateNetworkSize
3615 (issue 822).
3616
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003617 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003618
3619
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000036202010-08-09: Version 2.3.6
3621
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003622 RegExp literals create a new object every time they are evaluated
3623 (issue 704).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003624
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003625 Object.seal and Object.freeze return the modified object (issue 809).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003626
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003627 Fixed building using GCC 4.4.4.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003628
3629
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +000036302010-08-04: Version 2.3.5
3631
3632 Added support for ES5 property names. Object initialisers and
3633 dot-notation property access now allows keywords. Also allowed
3634 non-identifiers after "get" or "set" in an object initialiser.
3635
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003636 Randomized the addresses of allocated executable memory on Windows.
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +00003637
3638
whesse@chromium.orge90029b2010-08-02 11:52:17 +000036392010-08-02: Version 2.3.4
3640
3641 Fixed problems in implementation of ES5 function.prototype.bind.
3642
3643 Fixed error when using apply with arguments object on ARM (issue 784).
3644
3645 Added setting of global flags to debugger protocol.
3646
3647 Fixed an error affecting cached results of sin and cos (issue 792).
3648
3649 Removed memory leak from a boundary case where V8 is not initialized.
3650
3651 Fixed issue where debugger could set breakpoints outside the body
3652 of a function.
3653
3654 Fixed issue in debugger when using both live edit and step in features.
3655
3656 Added Number-letter (Nl) category to Unicode tables. These characters
3657 can now be used in identifiers.
3658
3659 Fixed an assert failure on X64 (issue 806).
3660
3661 Performance improvements on all platforms.
3662
3663
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +000036642010-07-26: Version 2.3.3
3665
3666 Fixed error when building the d8 shell in a fresh checkout.
3667
3668 Implemented Function.prototype.bind (ES5 15.3.4.5).
3669
3670 Fixed an error in inlined stores on ia32.
3671
3672 Fixed an error when setting a breakpoint at the end of a function
3673 that does not end with a newline character.
3674
3675 Performance improvements on all platforms.
3676
3677
fschneider@chromium.orged78ffd2010-07-21 11:05:19 +000036782010-07-21: Version 2.3.2
3679
3680 Fixed compiler warnings when building with LLVM.
3681
3682 Fixed a bug with for-in applied to strings (issue 785).
3683
3684 Performance improvements on all platforms.
3685
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00003686
ricow@chromium.org4980dff2010-07-19 08:33:45 +000036872010-07-19: Version 2.3.1
3688
3689 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
3690
3691 Fixed bug related to code flushing while compiling a lazy
3692 compilable function (issue http://crbug.com/49099).
3693
3694 Performance improvements on all platforms.
3695
3696
ager@chromium.orgb5737492010-07-15 09:29:43 +000036972010-07-15: Version 2.3.0
3698
3699 Added ES5 Object.seal and Object.isSealed.
3700
3701 Added debugger API for scheduling debugger commands from a
3702 separate thread.
3703
3704
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +000037052010-07-14: Version 2.2.24
3706
3707 Added API for capturing stack traces for uncaught exceptions.
3708
3709 Fixed crash bug when preparsing from a non-external V8 string
3710 (issue 775).
3711
3712 Fixed JSON.parse bug causing input not to be converted to string
3713 (issue 764).
3714
3715 Added ES5 Object.freeze and Object.isFrozen.
3716
3717 Performance improvements on all platforms.
3718
3719
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000037202010-07-07: Version 2.2.23
3721
3722 API change: Convert Unicode code points outside the basic multilingual
3723 plane to the replacement character. Previous behavior was to silently
3724 truncate the value to 16 bits.
3725
3726 Fixed crash: handle all flat string types in regexp replace.
3727
3728 Prevent invalid pre-parsing data passed in through the API from
3729 crashing V8.
3730
3731 Performance improvements on all platforms.
3732
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00003733
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000037342010-07-05: Version 2.2.22
3735
3736 Added ES5 Object.isExtensible and Object.preventExtensions.
3737
3738 Enabled building V8 as a DLL.
3739
3740 Fixed a bug in date code where -0 was not interpreted as 0
3741 (issue 736).
3742
3743 Performance improvements on all platforms.
3744
3745
lrn@chromium.org32d961d2010-06-30 09:09:34 +000037462010-06-30: Version 2.2.21
3747
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003748 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003749
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003750 Updated JSON.stringify to floor the space parameter (issue 753).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003751
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003752 Updated the Mozilla test expectations to the newest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003753
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003754 Updated the ES5 Conformance Test expectations to the latest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003755
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003756 Updated the V8 benchmark suite.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003757
3758 Provide actual breakpoints locations in response to setBreakpoint
3759 and listBreakpoints requests.
3760
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003761
fschneider@chromium.org40b9da32010-06-28 11:29:21 +000037622010-06-28: Version 2.2.20
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003763
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003764 Fixed bug with for-in on x64 platform (issue 748).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003765
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003766 Fixed crash bug on x64 platform (issue 756).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003767
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003768 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003769
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003770 Fixed a bug on ARM that caused the result of 1 << x to be
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003771 miscalculated for some inputs.
3772
3773 Performance improvements on all platforms.
3774
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003775
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000037762010-06-23: Version 2.2.19
3777
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003778 Fixed bug that causes the build to break when profillingsupport=off
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003779 (issue 738).
3780
3781 Added expose-externalize-string flag for testing extensions.
3782
3783 Resolve linker issues with using V8 as a DLL causing a number of
3784 problems with unresolved symbols.
3785
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003786 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003787 defined.
3788
3789 Performance improvements on all platforms.
3790
3791
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000037922010-06-16: Version 2.2.18
3793
3794 Added API functions to retrieve information on indexed properties
3795 managed by the embedding layer. Fixes bug 737.
3796
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003797 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003798
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003799 Added heap profiling to the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003800
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003801 Removed old named property query from the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003802
3803 Incremental performance improvements.
3804
3805
ager@chromium.org2cc82ae2010-06-14 07:35:38 +000038062010-06-14: Version 2.2.17
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003807
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00003808 Improved debugger support for stepping out of functions.
3809
3810 Incremental performance improvements.
3811
3812
38132010-06-09: Version 2.2.16
3814
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003815 Removed the SetExternalStringDiposeCallback API. Changed the
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003816 disposal of external string resources to call a virtual Dispose
3817 method on the resource.
3818
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003819 Added support for more precise break points when debugging and
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003820 stepping.
3821
3822 Memory usage improvements on all platforms.
3823
3824
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000038252010-06-07: Version 2.2.15
3826
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003827 Added an API to control the disposal of external string resources.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003828
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003829 Added missing initialization of a couple of variables which makes
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003830 some compilers complaint when compiling with -Werror.
3831
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003832 Improved performance on all platforms.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003833
3834
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +000038352010-06-02: Version 2.2.14
3836
3837 Fixed a crash in code generated for String.charCodeAt.
3838
3839 Fixed a compilation issue with some GCC versions (issue 727).
3840
3841 Performance optimizations on x64 and ARM platforms.
3842
3843
ricow@chromium.org30ce4112010-05-31 10:38:25 +000038442010-05-31: Version 2.2.13
3845
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003846 Implemented Object.getOwnPropertyDescriptor for element indices and
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003847 strings (issue 599).
3848
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003849 Fixed bug for windows 64 bit C calls from generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003850
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003851 Added new scons flag unalignedaccesses for arm builds.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003852
3853 Performance improvements on all platforms.
3854
3855
kmillikin@chromium.org9155e252010-05-26 13:27:57 +000038562010-05-26: Version 2.2.12
3857
3858 Allowed accessors to be defined on objects rather than just object
3859 templates.
3860
3861 Changed the ScriptData API.
3862
3863
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000038642010-05-21: Version 2.2.11
3865
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003866 Fixed crash bug in liveedit on 64 bit.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003867
3868 Use 'full compiler' when debugging is active. This should increase
3869 the density of possible break points, making single step more fine
3870 grained. This will only take effect for functions compiled after
3871 debugging has been started, so recompilation of all functions is
3872 required to get the full effect. IA32 and x64 only for now.
3873
3874 Misc. fixes to the Solaris build.
3875
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003876 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003877
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003878 Added filtering of CPU profiles by security context.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003879
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003880 Fixed crash bug on ARM when running without VFP2 or VFP3.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003881
3882 Incremental performance improvements in all backends.
3883
3884
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000038852010-05-17: Version 2.2.10
3886
3887 Performance improvements in the x64 and ARM backends.
3888
3889
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000038902010-05-10: Version 2.2.9
3891
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003892 Allowed Object.create to be called with a function (issue 697).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003893
3894 Fixed bug with Date.parse returning a non-NaN value when called on a
3895 non date string (issue 696).
3896
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003897 Allowed unaligned memory accesses on ARM targets that support it (by
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003898 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003899
3900 C++ API for retrieving JavaScript stack trace information.
3901
3902
ager@chromium.orgac091b72010-05-05 07:34:42 +000039032010-05-05: Version 2.2.8
3904
3905 Performance improvements in the x64 and ARM backends.
3906
3907
kmillikin@chromium.org4111b802010-05-03 10:34:42 +000039082010-05-03: Version 2.2.7
3909
3910 Added support for ES5 date time string format to Date.parse.
3911
3912 Performance improvements in the x64 backend.
3913
3914
lrn@chromium.orgc34f5802010-04-28 12:53:43 +000039152010-04-28: Version 2.2.6
3916
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003917 Added "amd64" as recognized architecture in scons build script
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003918 (by Ryan Dahl <coldredlemur@gmail.com>).
3919
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003920 Fixed bug in String search and replace with very simple RegExps.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003921
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003922 Fixed bug in RegExp containing "\b^".
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003923
3924 Performance improvements on all platforms.
3925
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003926
fschneider@chromium.org013f3e12010-04-26 13:27:52 +000039272010-04-26: Version 2.2.5
3928
3929 Various performance improvements (especially for ARM and x64)
3930
3931 Fixed bug in CPU profiling (http://crbug.com/42137)
3932
3933 Fixed a bug with the natives cache.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003934
3935 Fixed two bugs in the ARM code generator that can cause
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003936 wrong calculations.
3937
3938 Fixed a bug that may cause a wrong result for shift operations.
3939
3940
39412010-04-21: Version 2.2.4
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00003942
3943 Fixed warnings on arm on newer GCC versions.
3944
3945 Fixed a number of minor bugs.
3946
3947 Performance improvements on all platforms.
3948
3949
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +000039502010-04-14: Version 2.2.3
3951
3952 Added stack command and mem command to ARM simulator debugger.
3953
3954 Fixed scons snapshot and ARM build, and Windows X64 build issues.
3955
3956 Performance improvements on all platforms.
3957
3958
ager@chromium.org357bf652010-04-12 11:30:10 +000039592010-04-12: Version 2.2.2
3960
3961 Introduced new profiler API.
3962
3963 Fixed random number generator to produce full 32 random bits.
3964
3965
lrn@chromium.org25156de2010-04-06 13:10:27 +000039662010-04-06: Version 2.2.1
3967
3968 Debugger improvements.
3969
3970 Fixed minor bugs.
3971
3972
ricow@chromium.orgaa1b6162010-03-29 07:44:58 +000039732010-03-29: Version 2.2.0
3974
3975 Fixed a few minor bugs.
3976
3977 Performance improvements for string operations.
3978
3979
ager@chromium.orgb26c50a2010-03-26 09:27:16 +000039802010-03-26: Version 2.1.10
3981
3982 Fixed scons build issues.
3983
3984 Fixed a couple of minor bugs.
3985
3986
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +000039872010-03-25: Version 2.1.9
3988
3989 Added API support for reattaching a global object to a context.
3990
3991 Extended debugger API with access to the internal debugger context.
3992
3993 Fixed Chromium crashes (issues http://crbug.com/39128 and
3994 http://crbug.com/39160)
3995
3996
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000039972010-03-24: Version 2.1.8
3998
3999 Added fine-grained garbage collection callbacks to the API.
4000
4001 Performance improvements on all platforms.
4002
4003
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000040042010-03-22: Version 2.1.7
4005
4006 Fixed issue 650.
4007
4008 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
fschneider@chromium.org086aac62010-03-17 13:18:24 +00004009
4010 Performance improvements for arithmetic operations.
4011
4012 Performance improvements for string operations.
4013
whesse@chromium.orgcec079d2010-03-22 14:44:04 +00004014 Print script name and line number information in stack trace.
4015
4016
40172010-03-17: Version 2.1.6
4018
4019 Performance improvements for arithmetic operations.
4020
4021 Performance improvements for string operations.
4022
4023
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000040242010-03-10: Version 2.1.4
4025
4026 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
4027
4028 Performance improvements on all platforms.
4029
4030
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000040312010-03-10: Version 2.1.3
4032
4033 Added API method for context-disposal notifications.
4034
4035 Added API method for accessing elements by integer index.
4036
4037 Added missing implementation of Uint32::Value and Value::IsUint32
4038 API methods.
4039
4040 Added IsExecutionTerminating API method.
4041
4042 Disabled strict aliasing for GCC 4.4.
4043
4044 Fixed string-concatenation bug (issue 636).
4045
4046 Performance improvements on all platforms.
4047
4048
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +000040492010-02-23: Version 2.1.2
4050
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004051 Fixed a crash bug caused by wrong assert.
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004052
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004053 Fixed a bug with register names on 64-bit V8 (issue 615).
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00004054
4055 Performance improvements on all platforms.
4056
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00004057
ager@chromium.org5c838252010-02-19 08:53:10 +000040582010-02-19: Version 2.1.1
4059
4060 [ES5] Implemented Object.defineProperty.
4061
4062 Improved profiler support.
4063
4064 Added SetPrototype method in the public V8 API.
4065
4066 Added GetScriptOrigin and GetScriptLineNumber methods to Function
4067 objects in the API.
4068
4069 Performance improvements on all platforms.
4070
4071
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000040722010-02-03: Version 2.1.0
4073
4074 Values are now always wrapped in objects when used as a receiver.
4075 (issue 223).
4076
4077 [ES5] Implemented Object.getOwnPropertyNames.
4078
4079 [ES5] Restrict JSON.parse to only accept strings that conforms to the
4080 JSON grammar.
4081
4082 Improvement of debugger agent (issue 549 and 554).
4083
4084 Fixed problem with skipped stack frame in profiles (issue 553).
4085
4086 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
4087 <ry@tinyclouds.org>.
4088
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004089 Fixed a bug that Math.round() returns incorrect results for huge
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004090 integers.
4091
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004092 Fixed enumeration order for objects created from some constructor
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004093 functions (isue http://crbug.com/3867).
4094
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004095 Fixed arithmetic on some integer constants (issue 580).
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00004096
4097 Numerous performance improvements including porting of previous IA-32
4098 optimizations to x64 and ARM architectures.
4099
4100
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000041012010-01-14: Version 2.0.6
4102
4103 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
4104 GetOwnProperty, FromPropertyDescriptor.
4105
4106 Fixed Mac x64 build errors.
4107
4108 Improved performance of some math and string operations.
4109
4110 Improved performance of some regexp operations.
4111
4112 Improved performance of context creation.
4113
4114 Improved performance of hash tables.
4115
4116
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000041172009-12-18: Version 2.0.5
4118
4119 Extended to upper limit of map space to allow for 7 times as many map
4120 to be allocated (issue 524).
4121
4122 Improved performance of code using closures.
4123
4124 Improved performance of some binary operations involving doubles.
4125
4126
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000041272009-12-16: Version 2.0.4
4128
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00004129 Added ECMAScript 5 Object.create.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004130
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00004131 Improved performance of Math.max and Math.min.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004132
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00004133 Optimized adding of strings on 64-bit platforms.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004134
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00004135 Improved handling of external strings by using a separate table
4136 instead of weak handles. This improves garbage collection
4137 performance and uses less memory.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004138
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00004139 Changed code generation for object and array literals in toplevel
4140 code to be more compact by doing more work in the runtime.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004141
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00004142 Fixed a crash bug triggered when garbage collection happened during
4143 generation of a callback load inline cache stub.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004144
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00004145 Fixed crash bug sometimes triggered when local variables shadowed
4146 parameters in functions that used the arguments object.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004147
4148
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +000041492009-12-03: Version 2.0.3
4150
4151 Optimized handling and adding of strings, for-in and Array.join.
4152
4153 Heap serialization is now non-destructive.
4154
4155 Improved profiler support with information on time spend in C++
4156 callbacks registered through the API.
4157
4158 Added commands to the debugger protocol for starting/stopping
4159 profiling.
4160
4161 Enabled the non-optimizing compiler for top-level code.
4162
4163 Changed the API to only allow strings to be set as data objects on
4164 Contexts and scripts to avoid potentially keeping global objects
4165 around for too long (issue 528).
4166
4167 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
4168
4169 Fixed bugs.
4170
4171
ager@chromium.org01beca72009-11-24 14:29:16 +000041722009-11-24: Version 2.0.2
4173
4174 Improved profiler support.
4175
4176 Fixed bug that broke compilation of d8 with readline support.
4177
4178
ager@chromium.org6141cbe2009-11-20 12:14:52 +000041792009-11-20: Version 2.0.1
4180
4181 Fixed crash bug in String.prototype.replace.
4182
4183 Reverted a change which caused Chromium interactive ui test
4184 failures.
4185
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004186
ager@chromium.orgc4c92722009-11-18 14:12:51 +000041872009-11-18: Version 2.0.0
4188
4189 Added support for VFP on ARM.
4190
4191 Added TryCatch::ReThrow method to the API.
4192
4193 Reduced the size of snapshots and improved the snapshot load time.
4194
4195 Improved heap profiler support.
4196
4197 64-bit version now supported on Windows.
4198
4199 Fixed a number of debugger issues.
4200
4201 Fixed bugs.
4202
4203
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +000042042009-10-29: Version 1.3.18
4205
4206 Reverted a change which caused crashes in RegExp replace.
4207
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00004208 Reverted a change which caused Chromium ui_tests failure.
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +00004209
4210
ager@chromium.org3811b432009-10-28 14:53:37 +000042112009-10-28: Version 1.3.17
4212
4213 Added API method to get simple heap statistics.
4214
4215 Improved heap profiler support.
4216
4217 Fixed the implementation of the resource constraint API so it
4218 works when using snapshots.
4219
4220 Fixed a number of issues in the Windows 64-bit version.
4221
4222 Optimized calls to API getters.
4223
4224 Added valgrind notification on code modification to the 64-bit version.
4225
4226 Fixed issue where we logged shared library addresses on Windows at
4227 startup and never used them.
4228
4229
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000042302009-10-16: Version 1.3.16
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004231
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00004232 X64: Convert smis to holding 32 bits of payload.
4233
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004234 Introduced v8::Integer::NewFromUnsigned method.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00004235
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004236 Added missing null check in Context::GetCurrent.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00004237
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004238 Added trim, trimLeft and trimRight methods to String
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00004239 Patch by Jan de Mooij <jandemooij@gmail.com>
4240
4241 Implement ES5 Array.isArray
4242 Patch by Jan de Mooij <jandemooij@gmail.com>
4243
4244 Skip access checks for hidden properties.
4245
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004246 Added String::Concat(Handle<String> left, Handle<String> right) to the
4247 V8 API.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00004248
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004249 Fixed GYP-based builds of V8.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00004250
4251
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +000042522009-10-07: Version 1.3.15
4253
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004254 Expanded the maximum size of the code space to 512MB for 64-bit mode.
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +00004255
4256 Fixed a crash bug happening when starting profiling (issue
4257 http://crbug.com/23768).
4258
4259
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000042602009-10-07: Version 1.3.14
4261
4262 Added GetRealNamedProperty to the API to lookup real properties
4263 located on the object or in the prototype chain skipping any
4264 interceptors.
4265
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004266 Fixed the stack limits setting API to work correctly with threads. The
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004267 stack limit now needs to be set to each thread thich is used with V8.
4268
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004269 Removed the high-priority flag from IdleNotification()
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004270
4271 Ensure V8 is initialized before locking and unlocking threads.
4272
4273 Implemented a new JavaScript minifier for compressing the source of
ager@chromium.org3811b432009-10-28 14:53:37 +00004274 the built-in JavaScript. This removes non-Open Source code from Douglas
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00004275 Crockford from the project.
4276
4277 Added a missing optimization in StringCharAt.
4278
4279 Fixed some flaky socket tests.
4280
4281 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
4282 in 64-bit mode.
4283
4284 Fixed memory leaks in the thread management code.
4285
4286 Fixed the result of assignment to a pixel array. The assigned value
4287 is now the result.
4288
4289 Error reporting for invalid left-hand sides in for-in statements, pre-
4290 and postfix count expressions, and assignments now matches the JSC
4291 behavior in Safari 4.
4292
4293 Follow the spec in disallowing function declarations without a name.
4294
4295 Always allocate code objects within a 2 GB range. On x64 architecture
4296 this is used to use near calls (32-bit displacement) in Code objects.
4297
4298 Optimized array construction ported to x64 and ARM architectures.
4299
4300 [ES5] Changed Object.keys to return strings for element indices.
4301
4302
ager@chromium.org68e7ab72009-09-23 09:40:39 +000043032009-09-23: Version 1.3.13
4304
4305 Fixed uninitialized memory problem.
4306
4307 Improved heap profiler support.
4308
4309
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000043102009-09-22: Version 1.3.12
4311
4312 Changed behavior of |function|.toString() on built-in functions to
4313 be compatible with other implementations. Patch by Jan de Mooij.
4314
4315 Added Object::IsDirty in the API.
4316
4317 Optimized array construction; it is now handled purely in native
4318 code.
4319
4320 [ES5] Made properties of the arguments array enumerable.
4321
4322 [ES5] Added test suite adapter for the es5conform test suite.
4323
4324 [ES5] Added Object.keys function.
4325
ager@chromium.org68e7ab72009-09-23 09:40:39 +00004326
ager@chromium.org4af710e2009-09-15 12:20:11 +000043272009-09-15: Version 1.3.11
4328
4329 Fixed crash in error reporting during bootstrapping.
4330
4331 Optimized generated IA32 math code by using SSE2 instructions when
4332 available.
4333
4334 Implemented missing pieces of debugger infrastructure on ARM. The
4335 debugger is now fully functional on ARM.
4336
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004337 Made 'hidden' the default visibility for gcc.
ager@chromium.org4af710e2009-09-15 12:20:11 +00004338
4339
ager@chromium.orga1645e22009-09-09 19:27:10 +000043402009-09-09: Version 1.3.10
4341
4342 Fixed profiler on Mac in 64-bit mode.
4343
4344 Optimized creation of objects from simple constructor functions on
4345 ARM.
4346
4347 Fixed a number of debugger issues.
4348
4349 Reduced the amount of memory consumed by V8.
4350
4351
ager@chromium.org18ad94b2009-09-02 08:22:29 +000043522009-09-02: Version 1.3.9
4353
4354 Optimized stack guard checks on ARM.
4355
4356 Optimized API operations by inlining more in the API.
4357
4358 Optimized creation of objects from simple constructor functions.
4359
4360 Enabled a number of missing optimizations in the 64-bit port.
4361
4362 Implemented native-code support for regular expressions on ARM.
4363
4364 Stopped using the 'sahf' instruction on 64-bit machines that do
4365 not support it.
4366
4367 Fixed a bug in the support for forceful termination of JavaScript
4368 execution.
4369
4370
ager@chromium.org96c75b52009-08-26 09:13:16 +000043712009-08-26: Version 1.3.8
4372
4373 Changed the handling of idle notifications to allow idle
4374 notifications when V8 has not yet been initialized.
4375
4376 Fixed ARM simulator compilation problem on Windows.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004377
ager@chromium.org96c75b52009-08-26 09:13:16 +00004378
ager@chromium.orgab99eea2009-08-25 07:05:41 +000043792009-08-25: Version 1.3.7
4380
4381 Reduced the size of generated code on ARM platforms by reducing
4382 the size of constant pools.
4383
4384 Changed build files to not include the 'ENV' user environment
4385 variable in the build environment.
4386
4387 Changed the handling of idle notifications.
4388
4389
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +000043902009-08-21: Version 1.3.6
4391
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004392 Added support for forceful termination of JavaScript execution.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00004393
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004394 Added low memory notification to the API. The embedding host can signal
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00004395 a low memory situation to V8.
4396
4397 Changed the handling of global handles (persistent handles in the API
4398 sense) to avoid issues regarding allocation of new global handles
4399 during weak handle callbacks.
4400
4401 Changed the growth policy of the young space.
4402
4403 Fixed a GC issue introduced in version 1.3.5.
4404
4405
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000044062009-08-19: Version 1.3.5
4407
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004408 Optimized initialization of some arrays in the builtins.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00004409
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004410 Fixed mac-nm script to support filenames with spaces.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00004411
4412 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
4413
4414 Changed typeof RegExp from 'object' to 'function' for compatibility.
4415 Fixed bug where regexps were not callable across contexts.
4416
4417 Added context independent script compilation to the API.
4418
4419 Added API call to get the stack trace for an exception.
4420
4421 Added API for getting object mirrors.
4422
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004423 Made sure that SSE3 instructions are used whenever possible even when
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00004424 running off a snapshot generated without using SSE3 instructions.
4425
4426 Tweaked the handling of the initial size and growth policy of the heap.
4427
4428 Added native code generation for RegExp to 64-bit version.
4429
4430 Added JavaScript debugger support to 64-bit version.
4431
4432
ager@chromium.orgadd848f2009-08-13 12:44:13 +000044332009-08-13: Version 1.3.4
4434
4435 Added a readline() command to the d8 shell.
4436
4437 Fixed bug in json parsing.
4438
4439 Added idle notification to the API and reduced memory on idle
4440 notifications.
4441
4442
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +000044432009-08-12: Version 1.3.3
4444
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004445 Fixed issue 417: incorrect %t placeholder expansion.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004446
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004447 Added .gitignore file similar to Chromium's one.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004448
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004449 Fixed SConstruct file to build with new logging code for Android.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004450
4451 API: added function to find instance of template in prototype
4452 chain. Inlined Object::IsInstanceOf.
4453
4454 Land change to notify valgrind when we modify code on x86.
4455
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004456 Added api call to determine whether a string can be externalized.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004457
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004458 Added a write() command to d8.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00004459
4460
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +000044612009-08-05: Version 1.3.2
4462
4463 Started new compiler infrastructure for two-pass compilation using a
4464 control flow graph constructed from the AST.
4465
4466 Profiler stack sampling for X64.
4467
4468 Safe handling of NaN to Posix platform-dependent time functions.
4469
4470 Added a new profiler control API to unify controlling various aspects
4471 of profiling.
4472
4473 Fixed issue 392.
4474
4475
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000044762009-07-30: Version 1.3.1
4477
4478 Speed improvements to accessors and interceptors.
4479
4480 Added support for capturing stack information on custom errors.
4481
4482 Added support for morphing an object into a pixel array where its
4483 indexed properties are stored in an external byte array. Values written
4484 are always clamped to the 0..255 interval.
4485
4486 Profiler on x64 now handles C/C++ functions from shared libraries.
4487
4488 Changed the debugger to avoid stepping into function.call/apply if the
4489 function is a built-in.
4490
4491 Initial implementation of constructor heap profile for JS objects.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004492
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00004493 More fine grained control of profiling aspects through the API.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004494
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00004495 Optimized the called as constructor check for API calls.
4496
4497
kasperl@chromium.orge959c182009-07-27 08:59:04 +000044982009-07-27: Version 1.3.0
4499
4500 Allowed RegExp objects to be called as functions (issue 132).
4501
4502 Fixed issue where global property cells would escape after
4503 detaching the global object; see http://crbug.com/16276.
4504
4505 Added support for stepping into setters and getters in the
4506 debugger.
4507
4508 Changed the debugger to avoid stopping in its own JavaScript code
4509 and in the code of built-in functions.
4510
4511 Fixed issue 345 by avoiding duplicate escaping labels.
4512
4513 Fixed ARM code generator crash in short-circuited boolean
4514 expressions and added regression tests.
4515
4516 Added an external allocation limit to avoid issues where small V8
4517 objects would hold on to large amounts of external memory without
4518 causing garbage collections.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004519
4520 Finished more of the inline caching stubs for x64 targets.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00004521
4522
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000045232009-07-13: Version 1.2.14
4524
4525 Added separate paged heap space for global property cells and
4526 avoid updating the write barrier when storing into them.
4527
4528 Improved peep-hole optimization on ARM platforms by not emitting
4529 unnecessary debug information.
4530
4531 Re-enabled ICs for loads and calls that skip a global object
4532 during lookup through the prototype chain.
4533
4534 Allowed access through global proxies to use ICs.
4535
4536 Fixed issue 401.
4537
4538
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000045392009-07-09: Version 1.2.13
4540
4541 Fixed issue 397, issue 398, and issue 399.
4542
4543 Added support for breakpoint groups.
4544
4545 Fixed bugs introduced with the new global object representation.
4546
4547 Fixed a few bugs in the ARM code generator.
4548
4549
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000045502009-07-06: Version 1.2.12
4551
4552 Added stack traces collection to Error objects accessible through
4553 the e.stack property.
4554
4555 Changed RegExp parser to use a recursive data structure instead of
4556 stack-based recursion.
4557
4558 Optimized Date object construction and string concatenation.
4559
4560 Improved performance of div, mod, and mul on ARM platforms.
4561
4562
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000045632009-07-02: Version 1.2.11
4564
4565 Improved performance on IA-32 and ARM.
4566
4567 Fixed profiler sampler implementation on Mac OS X.
4568
4569 Changed the representation of global objects to improve
4570 performance of adding a lot of new properties.
4571
4572
ager@chromium.org3e875802009-06-29 08:26:34 +000045732009-06-29: Version 1.2.10
4574
4575 Improved debugger support.
4576
4577 Fixed bug in exception message reporting (issue 390).
4578
4579 Improved overall performance.
4580
4581
ager@chromium.org5aa501c2009-06-23 07:57:28 +000045822009-06-23: Version 1.2.9
4583
4584 Improved math performance on ARM.
4585
4586 Fixed profiler name-inference bug.
4587
4588 Fixed handling of shared libraries in the profiler tick processor
4589 scripts.
4590
4591 Fixed handling of tests that time out in the test scripts.
4592
4593 Fixed compilation on MacOS X version 10.4.
4594
4595 Fixed two bugs in the regular expression engine.
4596
4597 Fixed a bug in the string type inference.
4598
4599 Fixed a bug in the handling of 'constant function' properties.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004600
ager@chromium.org5aa501c2009-06-23 07:57:28 +00004601 Improved overall performance.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004602
ager@chromium.org5aa501c2009-06-23 07:57:28 +00004603
ager@chromium.orgeadaf222009-06-16 09:43:10 +000046042009-06-16: Version 1.2.8
4605
4606 Optimized math on ARM platforms.
4607
4608 Fixed two crash bugs in the handling of getters and setters.
4609
4610 Improved the debugger support by adding scope chain information.
4611
4612 Improved the profiler support by compressing log data transmitted
4613 to clients.
4614
4615 Improved overall performance.
4616
4617
ager@chromium.orge2902be2009-06-08 12:21:35 +000046182009-06-08: Version 1.2.7
4619
4620 Improved debugger and profiler support.
4621
4622 Reduced compilation time by improving the handling of deferred
4623 code.
4624
4625 Optimized interceptor accesses where the property is on the object
4626 on which the interceptors is attached.
4627
4628 Fixed compilation problem on GCC 4.4 by changing the stack
4629 alignment to 16 bytes.
4630
4631 Fixed handle creation to follow stric aliasing rules.
4632
4633 Fixed compilation on FreeBSD.
4634
4635 Introduced API for forcing the deletion of a property ignoring
4636 interceptors and attributes.
4637
4638
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +000046392009-05-29: Version 1.2.6
4640
4641 Added a histogram recording hit rates at different levels of the
4642 compilation cache.
4643
4644 Added stack overflow check for the RegExp analysis phase. Previously a
4645 very long regexp graph could overflow the stack with recursive calls.
4646
4647 Use a dynamic buffer when collecting log events in memory.
4648
4649 Added start/stop events to the profiler log.
4650
4651 Fixed infinite loop which could happen when setting a debug break while
4652 executing a RegExp compiled to native code.
4653
4654 Fixed handling of lastIndexOf called with negative index (issue 351).
4655
4656 Fixed irregular crash in profiler test (issue 358).
4657
4658 Fixed compilation issues with some versions of gcc.
4659
4660
kasperl@chromium.org71affb52009-05-26 05:44:31 +000046612009-05-26: Version 1.2.5
4662
4663 Fixed bug in initial boundary check for Boyer-Moore text
4664 search (issue 349).
4665
4666 Fixed compilation issues with MinGW and gcc 4.3+ and added support
4667 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
4668 Craig Schlenter.
4669
4670 Added a script cache to the debugger.
4671
4672 Optimized compilation performance by improving internal data
4673 structures and avoiding expensive property load optimizations for
4674 code that's infrequently executed.
4675
4676 Exposed the calling JavaScript context through the static API
4677 function Context::GetCalling().
4678
4679
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000046802009-05-18: Version 1.2.4
4681
4682 Improved performance of floating point number allocation for ARM
4683 platforms.
4684
4685 Fixed crash when using the instanceof operator on functions with
4686 number values in their prototype chain (issue 341).
4687
4688 Optimized virtual frame operations in the code generator to speed
4689 up compilation time and allocated the frames in the zone.
4690
4691 Made the representation of virtual frames and jump targets in the
4692 code generator much more compact.
4693
4694 Avoided linear search for non-locals in scope code when resolving
4695 variables inside with and eval scopes.
4696
4697 Optimized lexical scanner by dealing with whitespace as part of
4698 the token scanning instead of as a separate step before it.
4699
4700 Changed the scavenging collector so that promoted objects do not
4701 reside in the old generation while their remembered set is being
4702 swept for pointers into the young generation.
4703
4704 Fixed numeric overflow handling when compiling count operations.
4705
4706
ager@chromium.org9085a012009-05-11 19:22:57 +000047072009-05-11: Version 1.2.3
4708
4709 Fixed bug in reporting of out-of-memory situations.
4710
4711 Introduced hidden prototypes on certain builtin prototype objects
4712 such as String.prototype to emulate JSC's behavior of restoring
4713 the original function when deleting functions from those prototype
4714 objects.
4715
4716 Fixed crash bug in the register allocator.
4717
4718
ager@chromium.org5ec48922009-05-05 07:25:34 +000047192009-05-04: Version 1.2.2
4720
4721 Fixed bug in array sorting for sparse arrays (issue 326).
4722
4723 Added support for adding a soname when building a shared library
4724 on Linux (issue 151).
4725
4726 Fixed bug caused by morphing internal ASCII strings to external
4727 two-byte strings. Slices over ASCII strings have to forward ASCII
4728 checks to the underlying buffer string.
4729
4730 Allowed API call-as-function handlers to be called as
4731 constructors.
4732
4733 Fixed a crash bug where an external string was disposed but a
4734 slice of the external string survived as a symbol.
4735
4736
ager@chromium.org3a37e9b2009-04-27 09:26:21 +000047372009-04-27: Version 1.2.1
4738
4739 Added EcmaScript 5 JSON object.
4740
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004741 Fixed bug in preemption support on ARM.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00004742
4743
ager@chromium.org65dad4b2009-04-23 08:48:43 +000047442009-04-23: Version 1.2.0
4745
4746 Optimized floating-point operations on ARM.
4747
4748 Added a number of extensions to the debugger API.
4749
4750 Changed the enumeration order for unsigned integer keys to always
4751 be numerical order.
4752
4753 Added a "read" extension to the shell sample.
4754
4755 Added support for Array.prototype.reduce and
4756 Array.prototype.reduceRight.
4757
4758 Added an option to the SCons build to control Microsoft Visual C++
4759 link-time code generation.
4760
4761 Fixed a number of bugs (in particular issue 315, issue 316,
4762 issue 317 and issue 318).
4763
4764
kasperl@chromium.org2d18d102009-04-15 13:27:32 +000047652009-04-15: Version 1.1.10
4766
4767 Fixed crash bug that occurred when loading a const variable in the
4768 presence of eval.
4769
4770 Allowed using with and eval in registered extensions in debug mode
4771 by fixing bogus assert.
4772
4773 Fixed the source position for function returns to enable the
4774 debugger to break there.
4775
4776
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +000047772009-04-14: Version 1.1.9
4778
4779 Made the stack traversal code in the profiler robust by avoiding
4780 to look into the heap.
4781
4782 Added name inferencing for anonymous functions to facilitate
4783 debugging and profiling.
4784
4785 Re-enabled stats timers in the developer shell (d8).
4786
4787 Fixed issue 303 by avoiding to shortcut cons-symbols.
4788
4789
kasperl@chromium.orgacae3782009-04-11 09:17:08 +000047902009-04-11: Version 1.1.8
4791
4792 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
4793
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004794 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00004795 the debugger (issue 269).
4796
4797 Fixed v8::Object::DeleteHiddenValue to not bail out when there
4798 are no hidden properties.
4799
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004800 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00004801 entries with deleted resources would lead to NPEs when looking
4802 up in the symbol table.
4803
4804
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +000048052009-04-07: Version 1.1.7
4806
4807 Added support for easily importing additional environment
4808 variables into the SCons build.
4809
4810 Optimized strict equality checks.
4811
4812 Fixed crash in indexed setters on objects without a corresponding
4813 getter (issue 298).
4814
4815 Re-enabled script compilation cache.
4816
4817
ager@chromium.org8682a592009-04-01 10:47:14 +000048182009-04-01: Version 1.1.6
4819
4820 Reverted an unsafe code generator change.
4821
4822
ager@chromium.org71daaf62009-04-01 07:22:49 +000048232009-04-01: Version 1.1.5
4824
4825 Fixed bug that caused function literals to not be optimized as
4826 much as other functions.
4827
4828 Improved profiler support.
4829
4830 Fixed a crash bug in connection with debugger unloading.
4831
4832 Fixed a crash bug in the code generator caused by losing the
4833 information that a frame element was copied.
4834
4835 Fixed an exception propagation bug that could cause non-null
4836 return values when exceptions were thrown.
4837
4838
ager@chromium.org41826e72009-03-30 13:30:57 +000048392009-03-30: Version 1.1.4
4840
4841 Optimized String.prototype.match.
4842
4843 Improved the stack information in profiles.
4844
4845 Fixed bug in ARM port making it possible to compile the runtime
4846 system for thumb mode again.
4847
4848 Implemented a number of optimizations in the code generator.
4849
4850 Fixed a number of memory leaks in tests.
4851
4852 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00004853 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +00004854
4855
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +000048562009-03-24: Version 1.1.3
4857
4858 Fixed assertion failures in compilation of loop conditions.
4859
4860 Removed STL dependency from developer shell (d8).
4861
4862 Added infrastructure for protecting the V8 heap from corruption
4863 caused by memory modifications from the outside.
4864
4865
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000048662009-03-24: Version 1.1.2
4867
4868 Improved frame merge code generated by the code generator.
4869
4870 Optimized String.prototype.replace.
4871
4872 Implemented __defineGetter__ and __defineSetter__ for properties
4873 with integer keys on non-array objects.
4874
4875 Improved debugger and profiler support.
4876
4877 Fixed a number of portability issues to allow compilation for
4878 smaller ARM devices.
4879
4880 Exposed object cloning through the API.
4881
4882 Implemented hidden properties. This is used to expose an identity
4883 hash for objects through the API.
4884
4885 Implemented restarting of regular expressions if their input
4886 string changes representation during preemption.
4887
4888 Fixed a code generator bug that could cause assignments in loops
4889 to be ignored if using continue to break out of the loop (issue
4890 284).
4891
4892
ager@chromium.org3a6061e2009-03-12 14:24:36 +000048932009-03-12: Version 1.1.1
4894
4895 Fixed an assertion in the new compiler to take stack overflow
4896 exceptions into account.
4897
4898 Removed exception propagation code that could cause crashes.
4899
4900 Fixed minor bug in debugger line number computations.
4901
4902 8-byte align the C stack on Linux and Windows to speed up floating
4903 point computations.
4904
4905
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000049062009-03-12: Version 1.1.0
4907
4908 Improved code generation infrastructure by doing simple register
4909 allocation and constant folding and propagation.
4910
4911 Optimized regular expression matching by avoiding to create
4912 intermediate string arrays and by flattening nested array
4913 representations of RegExp data.
4914
4915 Traverse a few stack frames when recording profiler samples to
4916 include partial call graphs in the profiling output.
4917
4918 Added support for using OProfile to profile generated code.
4919
4920 Added remote debugging support to the D8 developer shell.
4921
4922 Optimized creation of nested literals like JSON objects.
4923
4924 Fixed a bug in garbage collecting unused maps and turned it on by
4925 default (--collect-maps).
4926
4927 Added support for running tests under Valgrind.
4928
4929
kasperl@chromium.org061ef742009-02-27 12:16:20 +000049302009-02-27: Version 1.0.3
4931
4932 Optimized double-to-integer conversions in bit operations by using
4933 SSE3 instructions if available.
4934
4935 Optimized initialization sequences that store to multiple
4936 properties of the same object.
4937
4938 Changed the D8 debugger frontend to use JSON messages.
4939
4940 Force garbage collections when disposing contexts.
4941
4942 Align code objects at 32-byte boundaries.
4943
4944
ager@chromium.org381abbb2009-02-25 13:23:22 +000049452009-02-25: Version 1.0.2
4946
4947 Improved profiling support by performing simple call stack
4948 sampling for ticks and by fixing a bug in the logging of code
4949 addresses.
4950
4951 Fixed a number of debugger issues.
4952
4953 Optimized code that uses eval.
4954
4955 Fixed a couple of bugs in the regular expression engine.
4956
4957 Reduced the size of generated code for certain regular expressions.
4958
4959 Removed JSCRE completely.
4960
4961 Fixed issue where test could not be run if there was a dot in the
4962 checkout path.
4963
4964
ager@chromium.org6f10e412009-02-13 10:11:16 +000049652009-02-13: Version 1.0.1
4966
4967 Fixed two crash-bugs in irregexp (issue 231 and 233).
4968
4969 Fixed a number of minor bugs (issue 87, 227 and 228).
4970
4971 Added support for morphing strings to external strings on demand
4972 to avoid having to create copies in the embedding code.
4973
4974 Removed experimental support for external symbol callbacks.
4975
4976
iposva@chromium.org245aa852009-02-10 00:49:54 +000049772009-02-09: Version 1.0.0
4978
4979 Fixed crash-bug in the code generation for case independent 16 bit
4980 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004981
iposva@chromium.org245aa852009-02-10 00:49:54 +00004982 Made shells more robust in the presence of string conversion
4983 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004984
iposva@chromium.org245aa852009-02-10 00:49:54 +00004985 Fixed a potential infinite loop when attempting to resolve
4986 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004987
iposva@chromium.org245aa852009-02-10 00:49:54 +00004988 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004989
iposva@chromium.org245aa852009-02-10 00:49:54 +00004990 Reduced binary by stripping unneeded text from JavaScript library and
4991 minifying some JavaScript files.
4992
4993
ager@chromium.orgddb913d2009-01-27 10:01:48 +000049942009-01-27: Version 0.4.9
4995
4996 Enabled new regular expression engine.
4997
4998 Made a number of changes to the debugger protocol.
4999
5000 Fixed a number of bugs in the preemption support.
5001
5002 Added -p option to the developer shell to run files in parallel
5003 using preemption.
5004
5005 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
5006 193, 198 and 201).
5007
5008 Fixed a number of bugs in the serialization/deserialization
5009 support for the ARM platform.
5010
5011
sgjesse@chromium.org715915b2009-01-19 16:08:47 +000050122009-01-19: Version 0.4.8.1
5013
5014 Minor patch to debugger support.
5015
5016
ager@chromium.org32912102009-01-16 10:38:43 +000050172009-01-16: Version 0.4.8
5018
5019 Fixed string length bug on ARM (issue 171).
5020
5021 Made most methods in the API const.
5022
5023 Optimized object literals by improving data locality.
5024
5025 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00005026 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +00005027
5028 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00005029 eval to behave incorrectly when using accessors (issues 186, 190
5030 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +00005031
5032
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000050332009-01-06: Version 0.4.7
5034
ager@chromium.org32912102009-01-16 10:38:43 +00005035 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00005036
ager@chromium.org32912102009-01-16 10:38:43 +00005037 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00005038
ager@chromium.org32912102009-01-16 10:38:43 +00005039 Fixed subtle bug that caused the wrong 'this' to be used when
5040 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00005041
ager@chromium.org32912102009-01-16 10:38:43 +00005042 Inline array loads within loops directly in the code instead of
5043 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00005044
ager@chromium.org32912102009-01-16 10:38:43 +00005045
ager@chromium.org8bb60582008-12-11 12:02:20 +000050462008-12-11: Version 0.4.6
5047
5048 Fixed exception reporting bug where certain exceptions were
5049 incorrectly reported as uncaught.
5050
5051 Improved the memory allocation strategy used during compilation to
5052 make running out of memory when compiling huge scripts less
5053 likely.
5054
5055 Optimized String.replace by avoiding the construction of certain
5056 sub strings.
5057
5058 Fixed bug in code generation for large switch statements on ARM.
5059
5060 Fixed bug that caused V8 to change the global object template
5061 passed in by the user.
5062
5063 Changed the API for creating object groups used during garbage
5064 collection. Entire object groups are now passed to V8 instead of
5065 individual members of the groups.
5066
ager@chromium.org32912102009-01-16 10:38:43 +00005067
ager@chromium.orga74f0da2008-12-03 16:05:52 +000050682008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +00005069
ager@chromium.orga74f0da2008-12-03 16:05:52 +00005070 Added experimental API support for allocating V8 symbols as
5071 external strings.
5072
5073 Fixed bugs in debugging support on ARM.
5074
5075 Changed eval implementation to correctly detect whether or not a
5076 call to eval is aliased.
5077
5078 Fixed bug caused by a combination of the compilation cache and
5079 dictionary probing in native code. The bug caused us to sometimes
5080 call functions that had not yet been compiled.
5081
5082 Added platform support for FreeBSD.
5083
5084 Added support for building V8 on Windows with either the shared or
5085 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +00005086
iposva@chromium.org96f667e2008-11-26 23:48:02 +00005087 Added the v8::jscre namespace around the jscre functions to avoid
5088 link errors (duplicate symbols) when building Google Chrome.
5089
ager@chromium.orga74f0da2008-12-03 16:05:52 +00005090 Added support for calling a JavaScript function with the current
5091 debugger execution context as its argument to the debugger
5092 interface.
5093
5094 Changed the type of names of counters from wchar_t to char.
5095
5096 Changed the Windows system call used to compute daylight savings
5097 time. The system call that we used to use became four times
5098 slower on WinXP SP3.
5099
5100 Added support in the d8 developer shell for memory-mapped counters
5101 and added a stats-viewer tool.
5102
5103 Fixed bug in upper/lower case mappings (issue 149).
5104
iposva@chromium.org96f667e2008-11-26 23:48:02 +00005105
ager@chromium.org3bf7b912008-11-17 09:09:45 +000051062008-11-17: Version 0.4.4
5107
5108 Reduced code size by using shorter instruction encoding when
5109 possible.
5110
5111 Added a --help option to the shell sample and to the d8 shell.
5112
5113 Added visual studio project files for building the ARM simulator.
5114
5115 Fixed a number of ARM simulator issues.
5116
5117 Fixed bug in out-of-memory handling on ARM.
5118
5119 Implemented shell support for passing arguments to a script from
5120 the command line.
5121
5122 Fixed bug in date code that made certain date functions return -0
5123 instead of 0 for dates before the epoch.
5124
5125 Restricted applications of eval so it can only be used in the
5126 context of the associated global object.
5127
5128 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +00005129
5130
ager@chromium.org870a0b62008-11-04 11:43:05 +000051312008-11-04: Version 0.4.3
5132
5133 Added support for API accessors that prohibit overwriting by
5134 accessors defined in JavaScript code by using __defineGetter__ and
5135 __defineSetter__.
5136
5137 Improved handling of conditionals in test status files.
5138
5139 Introduced access control in propertyIsEnumerable.
5140
5141 Improved performance of some string operations by caching
5142 information about the type of the string between operations.
5143
5144 Fixed bug in fast-case code for switch statements that only have
5145 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +00005146
ager@chromium.org870a0b62008-11-04 11:43:05 +00005147
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000051482008-10-30: Version 0.4.2
5149
5150 Improved performance of Array.prototype.concat by moving the
5151 implementation to C++ (issue 123).
5152
5153 Fixed heap growth policy to avoid growing old space to its maximum
5154 capacity before doing a garbage collection and fixed issue that
5155 would lead to artificial out of memory situations (issue 129).
5156
5157 Fixed Date.prototype.toLocaleDateString to return the date in the
5158 same format as WebKit.
5159
5160 Added missing initialization checks to debugger API.
5161
5162 Added removing of unused maps during GC.
5163
5164
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000051652008-10-28: Version 0.4.1
5166
5167 Added caching of RegExp data in compilation cache.
5168
5169 Added Visual Studio project file for d8 shell.
5170
5171 Fixed function call performance regression introduced in version
5172 0.4.0 when splitting the global object in two parts (issue 120).
5173
5174 Fixed issue 131 by checking for empty handles before throwing and
5175 reporting exceptions.
5176
5177
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000051782008-10-23: Version 0.4.0
5179
5180 Split the global object into two parts: The state holding global
5181 object and the global object proxy.
5182
5183 Fixed bug that affected the value of an assignment to an element
5184 in certain cases (issue 116).
5185
5186 Added GetPropertyNames functionality (issue 33) and extra Date
5187 functions (issue 77) to the API.
5188
5189 Changed WeakReferenceCallback to take a Persistent<Value> instead
5190 of a Persistent<Object> (issue 101).
5191
5192 Fixed issues with message reporting for exceptions in try-finally
5193 blocks (issues 73 and 75).
5194
ager@chromium.org32912102009-01-16 10:38:43 +00005195 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00005196
5197 Improved Boyer-Moore implementation for faster indexOf operations.
5198
5199 Added development shell (d8) which includes counters and
5200 completion support.
5201
5202 Fixed problem with the receiver passed to functions called from
5203 eval (issue 124).
5204
5205
ager@chromium.org7c537e22008-10-16 08:43:32 +000052062008-10-16: Version 0.3.5
5207
5208 Improved string hash-code distribution by excluding bit-field bits
5209 from the hash-code.
5210
5211 Changed string search algorithm used in indexOf from KMP to
5212 Boyer-Moore.
5213
5214 Improved the generated code for the instanceof operator.
5215
5216 Improved performance of slow-case string equality checks by
5217 specializing the code based on the string representation.
5218
5219 Improve the handling of out-of-memory situations (issue 70).
5220
5221 Improved performance of strict equality checks.
5222
5223 Improved profiler output to make it easier to see anonymous
5224 functions.
5225
5226 Improved performance of slow-case keyed loads.
5227
5228 Improved property access performance by allocating a number of
5229 properties in the front object.
5230
5231 Changed the toString behavior on the built-in object constructors
5232 to print [native code] instead of the actual source. Some web
5233 applications do not like constructors with complex toString
5234 results.
ager@chromium.org32912102009-01-16 10:38:43 +00005235
ager@chromium.org7c537e22008-10-16 08:43:32 +00005236
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000052372008-10-06: Version 0.3.4
5238
5239 Changed Array.prototype.sort to use quick sort.
5240
5241 Fixed code generation issue where leaving a finally block with
5242 break or continue would accumulate elements on the expression
5243 stack (issue 86).
5244
5245 Made sure that the name accessor on functions returns the expected
5246 names for builtin JavaScript functions and C++ callback functions.
5247
5248 Added fast case code for extending the property storage array of
5249 JavaScript objects.
5250
5251 Ported switch statement optimizations introduced in version 0.3.3
5252 to the ARM code generator.
5253
5254 Allowed GCC to use strict-aliasing rules when compiling.
5255
5256 Improved performance of arguments object allocation by taking care
5257 of arguments adaptor frames in the generated code.
5258
5259 Updated the V8 benchmark suite to version 2.
5260
5261
ager@chromium.org236ad962008-09-25 09:45:57 +000052622008-09-25: Version 0.3.3
5263
5264 Improved handling of relocation information to enable more
5265 peep-hole optimizations.
5266
5267 Optimized switch statements where all labels are constant small
5268 integers.
5269
5270 Optimized String.prototype.indexOf for common cases.
5271
5272 Fixed more build issues (issue 80).
5273
5274 Fixed a couple of profiler issues.
5275
5276 Fixed bug where the body of a function created using the Function
5277 constructor was not allowed to end with a single-line comment
5278 (issue 85).
5279
5280 Improved handling of object literals by canonicalizing object
5281 literal maps. This will allow JSON objects with the same set of
5282 properties to share the same map making inline caching work better
5283 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +00005284
ager@chromium.org236ad962008-09-25 09:45:57 +00005285
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000052862008-09-17: Version 0.3.2
5287
5288 Generalized the EvalCache into a CompilationCache and enabled it
5289 for scripts too. The current strategy is to retire all entries
5290 whenever a mark-sweep collection is started.
5291
5292 Fixed bug where switch statements containing only a default case
5293 would lead to an unbalanced stack (issue 69).
5294
5295 Fixed bug that made access to the function in a named function
5296 expression impossible in certain situations (issue 24).
5297
5298 Fixed even more build issues.
5299
5300 Optimized calling conventions on ARM. The conventions on ARM and
5301 IA-32 now match.
5302
5303 Removed static initializers for flags and counters.
5304
5305 Improved inline caching behavior for uncommon cases where lazily
5306 loading Date and RegExp code could force certain code paths go
5307 megamorphic.
5308
5309 Removed arguments adaption for builtins written in C++. This
5310 makes Array.prototype.push and Array.prototype.pop slightly
5311 faster.
5312
5313
ager@chromium.org9258b6b2008-09-11 09:11:10 +000053142008-09-11: Version 0.3.1
5315
5316 Fixed a number of build issues.
5317
5318 Fixed problem with missing I-cache flusing on ARM.
5319
5320 Changed space layout in memory management by splitting up
5321 code space into old data space and code space.
5322
5323 Added utf-8 conversion support to the API (issue 57).
5324
5325 Optimized repeated calls to eval with the same strings. These
5326 repeated calls are common in web applications.
5327
5328 Added Xcode project file.
5329
5330 Optimized a couple of Array operation.
5331
5332 Fixed parser bug by checking for end-of-string when parsing break
5333 and continue (issue 35).
5334
5335 Fixed problem where asian characters were not categorized as
5336 letters.
5337
5338 Fixed bug that disallowed calling functions fetched from an array
5339 using a string as an array index (issue 32).
5340
5341 Fixed bug where the internal field count on object templates were
5342 sometimes ignored (issue 54).
5343
5344 Added -f option to the shell sample for compatibility with other
5345 engines (issue 18).
5346
5347 Added source info to TryCatches in the API.
5348
5349 Fixed problem where the seed for the random number generator was
5350 clipped in a double to unsigned int conversion.
5351
5352 Fixed bug where cons string symbols were sometimes converted to
5353 non-symbol flat strings during GC.
5354
5355 Fixed bug in error reporting when attempting to convert null to an
5356 object.
ager@chromium.org32912102009-01-16 10:38:43 +00005357
5358
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000053592008-09-04: Version 0.3.0
5360
5361 Added support for running tests on the ARM simulator.
5362
5363 Fixed bug in the 'in' operator where negative indices were not
5364 treated correctly.
5365
5366 Fixed build issues on gcc-4.3.1.
5367
5368 Changed Date.prototype.toLocaleTimeString to not print the
5369 timezone part of the time.
5370
5371 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
5372 with user code.
5373
5374
v8.team.kasperl727e9952008-09-02 14:56:44 +000053752008-09-02: Version 0.2.5
5376
5377 Renamed the top level directory 'public' to 'include'.
5378
5379 Added 'env' option to the SCons build scripts to support
5380 overriding the ENV part of the build environment. This is mostly
5381 to support Windows builds in cases where SCons cannot find the
5382 correct paths to the Windows SDK, as these paths cannot be passed
5383 through shell environment variables.
5384
5385 Enabled "Buffer Security Check" on for the Windows SCons build and
5386 added the linker option /OPT:ICF as an optimization.
5387
5388 Added the V8 benchmark suite to the repository.
5389
5390
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000053912008-09-01: Version 0.2.4
5392
5393 Included mjsunit JavaScript test suite and C++ unit tests.
5394
5395 Changed the shell sample to not print the result of executing a
5396 script provided on the command line.
5397
5398 Fixed issue when building samples on Windows using a shared V8
5399 library. Added visibility option on Linux build which makes the
5400 generated library 18% smaller.
5401
5402 Changed build system to accept multiple build modes in one build
5403 and generate separate objects, libraries and executables for each
5404 mode.
5405
5406 Removed deferred negation optimization (a * -b => -(a * b)) since
5407 this visibly changes operand conversion order.
5408
5409 Improved parsing performance by introducing stack guard in
5410 preparsing. Without a stack guard preparsing always bails out
5411 with stack overflow.
5412
5413 Changed shell sample to take flags directly from the command-line.
5414 Added API call that implements this.
5415
5416 Added load, quit and version functions to the shell sample so it's
5417 easier to run benchmarks and tests.
5418
5419 Fixed issue with building samples and cctests on 64-bit machines.
5420
5421 Fixed bug in the runtime system where the prototype chain was not
5422 always searched for a setter when setting a property that does not
5423 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +00005424
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00005425
mads.s.agercbaa0602008-08-14 13:41:48 +000054262008-08-14: Version 0.2.3
5427
5428 Improved performance of garbage collection by moving the
5429 function that updates pointers during compacting collection
5430 into the updating visitor. This gives the compiler a better
5431 chance to inline and avoid a function call per (potential)
5432 pointer.
5433
5434 Extended the shell sample with a --runtime-flags option.
5435
5436 Added Visual Studio project files for the shell.cc and
5437 process.cc samples.
5438
5439
54402008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +00005441
5442 Improved performance of garbage collection by changing the way
5443 we use the marking stack in the event of stack overflow during
5444 full garbage collection and by changing the way we mark roots.
5445
5446 Cleaned up ARM version by removing top of stack caching and by
5447 introducing push/pop elimination.
5448
5449 Cleaned up the way runtime functions are called to allow
5450 runtime calls with no arguments.
5451
5452 Changed Windows build options to make sure that exceptions are
5453 disabled and that optimization flags are enabled.
5454
5455 Added first version of Visual Studio project files.
5456
5457
mads.s.agercbaa0602008-08-14 13:41:48 +000054582008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00005459
5460 Improved performance of unary addition by avoiding runtime calls.
5461
5462 Fixed the handling of '>' and '<=' to use right-to-left conversion
5463 and left-to-right evaluation as specified by ECMA-262.
5464
5465 Fixed a branch elimination bug on the ARM platform where incorrect
5466 code was generated because of overly aggressive branch
5467 elimination.
5468
5469 Improved performance of code that repeatedly assigns the same
5470 function to the same property of different objects with the same
5471 map.
5472
5473 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
5474 no longer expects DEBUG to be defined.
5475
5476 Added platform-nullos.cc to serve as the basis for new platform
5477 implementations.
5478
mads.s.ager31e71382008-08-13 09:32:07 +00005479
mads.s.agercbaa0602008-08-14 13:41:48 +000054802008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +00005481
5482 Changed all text files to have native svn:eol-style.
5483
5484 Added a few samples and support for building them. The samples
5485 include a simple shell that can be used to benchmark and test V8.
5486
5487 Changed V8::GetVersion to return the version as a string.
5488
5489 Added source for lazily loaded scripts to snapshots and made
5490 serialization non-destructive.
5491
5492 Improved ARM support by fixing the write barrier code to use
5493 aligned loads and stores and by removing premature locals
5494 optimization that relied on broken support for callee-saved
5495 registers (removed).
5496
5497 Refactored the code for marking live objects during garbage
5498 collection and the code for allocating objects in paged
5499 spaces. Introduced an abstraction for the map word of a heap-
5500 allocated object and changed the memory allocator to allocate
5501 executable memory only for spaces that may contain code objects.
5502
5503 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
5504 they can be used by debugging and logging modules. Added
5505 thread-safe message queues for dealing with debugger events.
5506
5507 Fixed the source code reported by toString for certain builtin
5508 empty functions and made sure that the prototype property of a
5509 function is enumerable.
5510
5511 Improved performance of converting values to condition flags in
5512 generated code.
5513
5514 Merged disassembler-{arch} files.
5515
5516
mads.s.agercbaa0602008-08-14 13:41:48 +000055172008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +00005518
5519 Added support for storing JavaScript stack traces in a stack
5520 allocated buffer to make it visible in shallow core dumps.
5521 Controlled by the --preallocate-message-memory flag which is
5522 disabled by default.
5523
5524
mads.s.agercbaa0602008-08-14 13:41:48 +000055252008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00005526
5527 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
5528 map transitions would count as properties.
5529
5530 Allowed aliased eval invocations by treating them as evals in the
5531 global context. This may change in the future.
5532
5533 Added support for accessing the last entered context through the
5534 API and renamed Context::Current to Context::GetCurrent and
5535 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
5536
5537 Fixed bug in the debugger that would cause the debugger scripts to
5538 be recursively loaded and changed all disabling of interrupts to
5539 be block-structured.
5540
5541 Made snapshot data read-only to allow it to be more easily shared
5542 across multiple users of V8 when linked as a shared library.
5543
5544
mads.s.agercbaa0602008-08-14 13:41:48 +000055452008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00005546
5547 Fixed building on Mac OS X by recognizing i386 and friends as
5548 IA-32 platforms.
5549
5550 Added propagation of stack overflow exceptions that occur while
5551 compiling nested functions.
5552
5553 Improved debugger with support for recursive break points and
5554 handling of exceptions that occur in the debugger JavaScript code.
5555
5556 Renamed GetInternal to GetInternalField and SetInternal to
5557 SetInternalField in the API and moved InternalFieldCount and
5558 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
5559
5560
mads.s.agercbaa0602008-08-14 13:41:48 +000055612008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00005562
5563 Fixed bug in stack overflow check code for IA-32 targets where a
5564 non-tagged value in register eax was pushed to the stack.
5565
5566 Fixed potential quadratic behavior when converting strings to
5567 numbers.
5568
5569 Fixed bug where the return value from Object::SetProperty could
5570 end up being the property holder instead of the written value.
5571
5572 Improved debugger support by allowing nested break points and by
5573 dealing with stack-overflows when compiling functions before
5574 setting break points in them.
5575
5576
mads.s.agercbaa0602008-08-14 13:41:48 +000055772008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005578
kasper.lundbd3ec4e2008-07-09 11:06:54 +00005579 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00005580
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00005581# Local Variables:
5582# mode:text
5583# End: