blob: 7c435c8b62e3704ed91b5a8d7389023a67f6f5b5 [file] [log] [blame]
rossberg@chromium.org89e18f52012-10-22 13:09:53 +000012012-10-22: Version 3.14.5
2
3 Killed off the SCons based build.
4
5 Added a faster API for creating v8::Integer objects.
6
7 Speeded up function deoptimization by avoiding quadratic pass over
8 optimized function list. (Chromium issue 155270)
9
10 Always invoke the default Array.sort functions from builtin functions.
11 (issue 2372)
12
13 Reverted recent CPU profiler changes because they broke --prof.
14 (issue 2364)
15
16 Switched code flushing to use different JSFunction field.
17 (issue 1609)
18
19 Performance and stability improvements on all platforms.
20
21
svenpanne@chromium.orgc859c4f2012-10-15 11:51:39 +0000222012-10-15: Version 3.14.4
23
24 Allow evals for debugger even if they are prohibited in the debugee
25 context. (Chromium issue 154733)
26
27 Enabled --verify-heap in release mode (issue 2120)
28
29 Performance and stability improvements on all platforms.
30
31
jkummerow@chromium.orgc1956672012-10-11 15:57:38 +0000322012-10-11: Version 3.14.3
33
34 Use native context to retrieve ErrorMessageForCodeGenerationFromStrings
35 (Chromium issue 155076).
36
37 Bumped variable limit further to 2^17 (Chromium issue 151625).
38
39 Performance and stability improvements on all platforms.
40
41
verwaest@chromium.org33e09c82012-10-10 17:07:22 +0000422012-10-10: Version 3.14.2
43
44 ARM: allowed VFP3 instructions when hardfloat is enabled.
45 (Chromium issue 152506)
46
47 Fixed instance_descriptors() and PushStackTraceAndDie regressions.
48 (Chromium issue 151749)
49
50 Made GDBJIT interface compile again. (issue 1804)
51
52 Fixed Accessors::FunctionGetPrototype's proto chain traversal.
53 (Chromium issue 143967)
54
55 Made sure that names of temporaries do not clash with real variables.
56 (issue 2322)
57
58 Rejected local module declarations. (Chromium issue 150628)
59
60 Rejected uses of lexical for-loop variable on the RHS. (issue 2322)
61
62 Fixed slot recording of code target patches.
63 (Chromium issue 152615,chromium:144230)
64
65 Changed the Android makefile to use GCC 4.6 instead of GCC 4.4.3.
66
67 Performance and stability improvements on all platforms.
68
69
jkummerow@chromium.org7a96c2a2012-10-01 16:24:39 +0000702012-10-01: Version 3.14.1
71
72 Don't set -m32 flag when compiling with Android ARM compiler.
73 (Chromium issue 143889)
74
75 Restore the descriptor array before returning allocation failure.
76 (Chromium issue 151750)
77
78 Lowered kMaxVirtualRegisters (v8 issue 2139, Chromium issues 123822 and
79 128252).
80
81 Pull more recent gyp in 'make dependencies'.
82
83 Made sure that the generic KeyedStoreIC changes length and element_kind
84 atomically (issue 2346).
85
86 Bumped number of allowed variables per scope to 65535, to address GWT.
87 (Chromium issue 151625)
88
89 Support sourceURL for dynamically inserted scripts (issue 2342).
90
91 Performance and stability improvements on all platforms.
92
93
ulan@chromium.org56c14af2012-09-20 12:51:09 +0000942012-09-20: Version 3.14.0
95
96 Fixed missing slot recording during clearing of CallICs.
97 (Chromium issue 144230)
98
99 Fixed LBoundsCheck on x64 to handle (stack slot + constant) correctly.
100 (Chromium issue 150729)
101
102 Fixed minus zero test. (Issue 2133)
103
104 Fixed setting array length to zero for slow elements.
105 (Chromium issue 146910)
106
107 Fixed lost arguments dropping in HLeaveInlined.
108 (Chromium issue 150545)
109
110 Fixed casting error for receiver of interceptors.
111 (Chromium issue 149912)
112
113 Throw a more descriptive exception when blocking 'eval' via CSP.
114 (Chromium issue 140191)
115
116 Fixed debugger's eval when close to stack overflow. (issue 2318)
117
118 Added checks to live edit. (issue 2297)
119
120 Switched on code compaction on incremental GCs.
121
122 Fixed caching of optimized code for OSR. (issue 2326)
123
124 Not mask exception thrown by toString in String::UtfValue etc.
125 (issue 2317)
126
127 Fixed API check for length of external arrays. (Chromium issue 148896)
128
129 Ensure correct enumeration indices in the dict (Chromium issue 148376)
130
131 Correctly initialize regexp global cache. (Chromium issue 148378)
132
133 Fixed arguments object materialization during deopt. (issue 2261)
134
135 Introduced new API to expose external string resource regardless of
136 encoding.
137
138 Fixed CHECK failure in LCodeGen::DoWrapReceiver when
139 --deopt-every-n-times flag is present
140 (Chromium issue 148389)
141
142 Fixed edge case of extension with NULL as source string.
143 (Chromium issue 144649)
144
145 Fixed array index dehoisting. (Chromium issue 141395)
146
147 Performance and stability improvements on all platforms.
148
149
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +00001502012-09-11: Version 3.13.7
151
152 Enable/disable LiveEdit using the (C++) debug API.
153
154 Performance and stability improvements on all platforms.
155
156
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00001572012-09-06: Version 3.13.6
158
159 Added validity checking to API functions and calls.
160
161 Disabled accessor inlining (Chromium issue 134609).
162
163 Fixed bug in Math.min/max in optimized code (Chromium issue 145961).
164
165 Directly use %ObjectKeys in json stringify (Chromium issue 2312).
166
167 Fixed VS2005 build (issue 2313).
168
169 Activated fixed ES5 readonly semantics by default.
170
171 Added hardfp flag to the Makefile.
172
173 Performance and stability improvements on all platforms.
174
175
yangguo@chromium.org355cfd12012-08-29 15:32:24 +00001762012-08-29: Version 3.13.5
177
178 Release stack trace data after firing Error.stack accessor.
179 (issue 2308)
180
181 Added a new API V8::SetJitCodeEventHandler to push code name and
182 location to users such as profilers.
183
184 Allocate block-scoped global bindings to global context.
185
186 Performance and stability improvements on all platforms.
187
188
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00001892012-08-28: Version 3.13.4
190
191 Print reason for disabling optimization. Kill --trace-bailout flag.
192
193 Provided option to disable full DEBUG build on Android.
194
195 Introduced global contexts to represent lexical global scope(s).
196
197 Fixed rounding in Uint8ClampedArray setter. (issue 2294)
198
199 Performance and stability improvements on all platforms.
200
201
yangguo@chromium.org08eb1962012-08-21 11:19:20 +00002022012-08-21: Version 3.13.3
203
204 Performance and stability improvements on all platforms.
205
206
2072012-08-20: Version 3.13.2
208
209 Performance and stability improvements on all platforms.
210
211
verwaest@chromium.orgde64f722012-08-16 15:44:54 +00002122012-08-16: Version 3.13.1
213
214 Performance and stability improvements on all platforms.
215
216
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +00002172012-08-10: Version 3.13.0
218
219 Added histograms for total allocated/live heap size, as well as
220 allocated size and percentage of total for map and cell space.
221
222 Fixed parseInt's octal parsing behavior (ECMA-262 Annex E 15.1.2.2).
223 (issue 1645)
224
225 Added checks for interceptors to negative lookup code in Crankshaft.
226 (Chromium issue 140473)
227
228 Made incremental marking clear ICs and type feedback cells.
229
230 Performance and stability improvements on all platforms.
231
232
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +00002332012-08-01: Version 3.12.19
234
235 Performance and stability improvements on all platforms.
236
237
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +00002382012-07-30: Version 3.12.18
239
240 Forced using bit-pattern for signed zero double. (issue 2239)
241
242 Made sure double to int conversion is correct. (issue 2260)
243
244 Performance and stability improvements on all platforms.
245
246
verwaest@chromium.orgb6d052d2012-07-27 08:03:27 +00002472012-07-27: Version 3.12.17
248
249 Always set the callee's context when calling a function from optimized
250 code.
251 (Chromium issue 138887)
252
253 Fixed building with GCC 3.x
254 (issue 2016, 2017)
255
256 Improved API calls that return empty handles.
257 (issue 2245)
258
259 Performance and stability improvements on all platforms.
260
261
danno@chromium.org129d3982012-07-25 15:01:47 +00002622012-07-25: Version 3.12.16
263
264 Performance and stability improvements on all platforms.
265
266
yangguo@chromium.org304cc332012-07-24 07:59:48 +00002672012-07-24: Version 3.12.15
268
269 Added PRESERVE_ASCII_NULL option to String::WriteAscii.
270 (issue 2252)
271
272 Added dependency to HLoadKeyed* instructions to prevent invalid
273 hoisting. (Chromium issue 137768)
274
275 Enabled building d8 for Android on Mac.
276
277 Interpret negative hexadecimal literals as NaN.
278 (issue 2240)
279
280 Expose counters in javascript when using --track-gc-object-stats.
281
282 Enabled building and testing V8 on Android IA.
283
284 Added --trace-parse flag to parser.
285
286 Performance and stability improvements on all platforms.
287
288
verwaest@chromium.org178fb152012-07-18 11:21:48 +00002892012-07-18: Version 3.12.14
290
291 Deactivated optimization of packed arrays.
292 (Chromium issue 137768)
293
294 Fixed broken accessor transition.
295 (Chromium issue 137689)
296
297 Performance and stability improvements on all platforms.
298
299
verwaest@chromium.org753aee42012-07-17 16:15:42 +00003002012-07-17: Version 3.12.13
301
302 Fixed missing tagging of stack value in finally block.
303 (Chromium issue 137496)
304
305 Added more support for heap analysis.
306
307 Performance and stability improvements on all platforms.
308
309
jkummerow@chromium.org28583c92012-07-16 11:31:55 +00003102012-07-16: Version 3.12.12
311
312 Added an option to the tickprocessor to specify the directory for lib
313 lookup.
314
315 Fixed ICs for slow objects with native accessor (Chromium issue 137002).
316
317 Fixed transcendental cache on ARM in optimized code (issue 2234).
318
319 New heap inspection tools: counters for object sizes and counts,
320 histograms for external fragmentation.
321
322 Incorporated constness into inferred interfaces (in preparation for
323 handling imports) (issue 1569).
324
325 Performance and stability improvements on all platforms.
326
327
rossberg@chromium.org657d53b2012-07-12 11:06:03 +00003282012-07-12: Version 3.12.11
329
330 Renamed "mips" arch to "mipsel" in the GYP build.
331
332 Fixed computation of call targets on prototypes in Crankshaft.
333 (Chromium issue 125148)
334
335 Removed use of __lookupGetter__ when generating stack trace.
336 (issue 1591)
337
338 Turned on ES 5.2 globals semantics by default.
339 (issue 1991, Chromium issue 80591)
340
341 Synced preparser and parser wrt syntax error in switch..case.
342 (issue 2210)
343
344 Fixed reporting of octal literals in strict mode when preparsing.
345 (issue 2220)
346
347 Fixed inline constructors for Harmony Proxy prototypes.
348 (issue 2225)
349
350 Performance and stability improvements on all platforms.
351
352
danno@chromium.org81cac2b2012-07-10 11:28:27 +00003532012-07-10: Version 3.12.10
354
355 Re-enabled and fixed issue with array bounds check elimination
356 (Chromium issue 132114).
357
358 Fixed Debug::Break crash. (Chromium issue 131642)
359
360 Added optimizing compiler support for JavaScript getters.
361
362 Performance and stability improvements on all platforms.
363
364
yangguo@chromium.org99aa4902012-07-06 16:21:55 +00003652012-07-06: Version 3.12.9
366
367 Correctly advance the scanner when scanning unicode regexp flag.
368 (Chromium issue 136084)
369
370 Fixed unhandlified code calling Harmony Proxy traps.
371 (issue 2219)
372
373 Performance and stability improvements on all platforms.
374
375
svenpanne@chromium.org619781a2012-07-05 08:22:44 +00003762012-07-05: Version 3.12.8
377
378 Implemented TypedArray.set and ArrayBuffer.slice in d8.
379
380 Performance and stability improvements on all platforms.
381
382
mstarzinger@chromium.orgc6d9cee2012-07-03 10:03:19 +00003832012-07-03: Version 3.12.7
384
385 Fixed lazy compilation for strict eval scopes.
386 (Chromium issue 135066)
387
388 Made MACOSX_DEPLOYMENT_TARGET configurable in GYP.
389 (issue 2151)
390
391 Report "hidden properties" in heap profiler for properties case.
392 (issue 2212)
393
394 Activated optimization of packed arrays by default.
395
396 Performance and stability improvements on all platforms.
397
398
yangguo@chromium.orgc74d6742012-06-29 15:15:45 +00003992012-06-29: Version 3.12.6
400
401 Cleaned up hardfp ABI detection for ARM (V8 issue 2140).
402
403 Extended TypedArray support in d8.
404
405
yangguo@chromium.org9c741c82012-06-28 15:04:22 +00004062012-06-28: Version 3.12.5
407
408 Fixed lazy parsing heuristics to respect outer scope.
409 (Chromium issue 135008)
410
411 Allow using test-wrapper-gypbuild.py on Windows when no python
412 interpreter is registered.
413
414 Performance and stability improvements on all platforms.
415
416
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +00004172012-06-27: Version 3.12.4
418
419 Removed -fomit-frame-pointer flag from Release builds to make
420 the stack walkable by TCMalloc (Chromium issue 133723).
421
422 Ported r7868 (constant masking) to x64 (issue 1374).
423
424 Expose more detailed memory statistics (issue 2201).
425
426 Fixed Harmony Maps and WeakMaps for undefined values
427 (Chromium issue 132744).
428
429 Correctly throw reference error in strict mode with ICs disabled
430 (issue 2119).
431
432 Performance and stability improvements on all platforms.
433
434
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +00004352012-06-25: Version 3.12.3
436
437 Reverted r11835 'Unify promotion and allocation limit computation' due
438 to V8 Splay performance regression on Mac. (Chromium issue 134183)
439
440 Fixed sharing of literal boilerplates for optimized code. (issue 2193)
441
442 Performance and stability improvements on all platforms.
443
444
yangguo@chromium.orgde0db002012-06-22 13:44:28 +00004452012-06-22: Version 3.12.2
446
447 Made near-jump check more strict in LoadNamedFieldPolymorphic on
448 ia32/x64. (Chromium issue 134055)
449
450 Fixed lazy sweeping heuristics to prevent old-space expansion.
451 (issue 2194)
452
453 Performance and stability improvements on all platforms.
454
455
yangguo@chromium.orgd2899aa2012-06-21 11:16:20 +00004562012-06-21: Version 3.12.1
457
458 Performance and stability improvements on all platforms.
459
460
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00004612012-06-20: Version 3.12.0
462
463 Fixed Chromium issues:
464 115100, 129628, 131994, 132727, 132741, 132742, 133211
465
466 Fixed V8 issues:
467 915, 1914, 2034, 2087, 2094, 2134, 2156, 2166, 2172, 2177, 2179, 2185
468
469 Added --extra-code flag to mksnapshot to load JS code into the VM
470 before creating the snapshot.
471
472 Support 'restart call frame' command in the debugger.
473
474 Performance and stability improvements on all platforms.
475
476
mmassi@chromium.org7028c052012-06-13 11:51:58 +00004772012-06-13: Version 3.11.10
478
479 Implemented heap profiler memory usage reporting.
480
481 Preserved error message during finally block in try..finally.
482 (Chromium issue 129171)
483
484 Fixed EnsureCanContainElements to properly handle double values.
485 (issue 2170)
486
487 Improved heuristics to keep objects in fast mode with inherited
488 constructors.
489
490 Performance and stability improvements on all platforms.
491
492
rossberg@chromium.org400388e2012-06-06 09:29:22 +00004932012-06-06: Version 3.11.9
494
495 Implemented ES5-conformant semantics for inherited setters and read-only
496 properties. Currently behind --es5_readonly flag, because it breaks
497 WebKit bindings.
498
499 Exposed last seen heap object id via v8 public api.
500
501 Performance and stability improvements on all platforms.
502
503
verwaest@chromium.org37141392012-05-31 13:27:02 +00005042012-05-31: Version 3.11.8
505
506 Avoid overdeep recursion in regexp where a guarded expression with a
507 minimum repetition count is inside another quantifier.
508 (Chromium issue 129926)
509
510 Fixed missing write barrier in store field stub.
511 (issues 2143, 1465, Chromium issue 129355)
512
513 Proxies: Fixed receiver for setters inherited from proxies.
514 Proxies: Fixed ToStringArray function so that it does not reject some
515 keys.
516 (issue 1543)
517
518 Performance and stability improvements on all platforms.
519
520
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00005212012-05-29: Version 3.11.7
522
523 Get better function names in stack traces.
524
525 Performance and stability improvements on all platforms.
526
527
jkummerow@chromium.org777db6f2012-05-24 09:33:09 +00005282012-05-24: Version 3.11.6
529
530 Fixed RegExp.prototype.toString for incompatible receivers
531 (issue 1981).
532
533 Performance and stability improvements on all platforms.
534
535
mstarzinger@chromium.org15613d02012-05-23 12:04:37 +00005362012-05-23: Version 3.11.5
537
538 Performance and stability improvements on all platforms.
539
540
ulan@chromium.org0e3f88b2012-05-22 09:16:05 +00005412012-05-22: Version 3.11.4
542
543 Some cleanup to common.gypi. This fixes some host/target combinations
544 that weren't working in the Make build on Mac.
545
546 Handle EINTR in socket functions and continue incomplete sends.
547 (issue 2098)
548
549 Fixed python deprecations. (issue 1391)
550
551 Made socket send and receive more robust and return 0 on failure.
552 (Chromium issue 15719)
553
554 Fixed GCC 4.7 (C++11) compilation. (issue 2136)
555
556 Set '-m32' option for host and target platforms
557
558 Performance and stability improvements on all platforms.
559
560
ulan@chromium.orgd6899c32012-05-18 14:12:25 +00005612012-05-18: Version 3.11.3
562
563 Disable optimization for functions that have scopes that cannot be
564 reconstructed from the context chain. (issue 2071)
565
566 Define V8_EXPORT to nothing for clients of v8. (Chromium issue 90078)
567
568 Correctly check for native error objects. (Chromium issue 2138)
569
570 Performance and stability improvements on all platforms.
571
572
yangguo@chromium.org5f0b8ea2012-05-16 12:37:04 +00005732012-05-16: Version 3.11.2
574
575 Revert r11496. (Chromium issue 128146)
576
577 Implement map collection for incremental marking. (issue 1465)
578
579 Add toString method to CallSite (which describes a frame of the
580 stack trace).
581
582
yangguo@chromium.orgcb9affa2012-05-15 12:16:38 +00005832012-05-15: Version 3.11.1
584
585 Added a readbuffer function to d8 that reads a file into an ArrayBuffer.
586
587 Fix freebsd build. (V8 issue 2126)
588
589 Performance and stability improvements on all platforms.
590
591
jkummerow@chromium.org212d9642012-05-11 15:02:09 +00005922012-05-11: Version 3.11.0
593
594 Fixed compose-discard crasher from r11524 (issue 2123).
595
596 Activated new global semantics by default. Global variables can
597 now shadow properties of the global object (ES5.1 erratum).
598
599 Properly set ElementsKind of empty FAST_DOUBLE_ELEMENTS arrays when
600 transitioning (Chromium issue 117409).
601
602 Made Error.prototype.name writable again, as required by the spec and
603 the web (Chromium issue 69187).
604
605 Implemented map collection with incremental marking (issue 1465).
606
607 Regexp: Fixed overflow in min-match-length calculation
608 (Chromium issue 126412).
609
610 MIPS: Fixed illegal instruction use on Loongson in code for
611 Math.random() (issue 2115).
612
613 Fixed crash bug in VisitChoice (Chromium issue 126272).
614
615 Fixed unsigned-Smi check in MappedArgumentsLookup
616 (Chromium issue 126414).
617
618 Fixed LiveEdit for function with no locals (issue 825).
619
620 Fixed register clobbering in LoadIC for interceptors
621 (Chromium issue 125988).
622
623 Implemented clearing of CompareICs (issue 2102).
624
625 Performance and stability improvements on all platforms.
626
627
danno@chromium.org2c26cb12012-05-03 09:06:43 +00006282012-05-03: Version 3.10.8
629
630 Enabled MIPS cross-compilation.
631
632 Ensured reload of elements pointer in StoreFastDoubleElement stub.
633 (Chromium issue 125515)
634
635 Fixed corner cases in truncation behavior when storing to
636 TypedArrays. (issue 2110)
637
638 Fixed failure to properly recognize and report out-of-memory
639 conditions when allocating code space pages. (Chromium issue
640 118625)
641
642 Fixed idle notifications to perform a round of incremental GCs
643 after context disposal. (issue 2107)
644
645 Fixed preparser for try statement. (issue 2109)
646
647 Performance and stability improvements on all platforms.
648
649
danno@chromium.org1044a4d2012-04-30 12:34:39 +00006502012-04-30: Version 3.10.7
651
652 Performance and stability improvements on all platforms.
653
654
yangguo@chromium.orgefdb9d72012-04-26 08:21:05 +00006552012-04-26: Version 3.10.6
656
657 Fixed some bugs in accessing details of the last regexp match.
658
659 Fixed source property of empty RegExp objects. (issue 1982)
660
661 Enabled inlining some V8 API functions.
662
663 Performance and stability improvements on all platforms.
664
665
mstarzinger@chromium.org88d326b2012-04-23 12:57:22 +00006662012-04-23: Version 3.10.5
667
668 Put new global var semantics behind a flag until WebKit tests are
669 cleaned up.
670
671 Enabled stepping into callback passed to builtins.
672 (Chromium issue 109564)
673
674 Performance and stability improvements on all platforms.
675
676
svenpanne@chromium.orgfb046332012-04-19 12:02:44 +00006772012-04-19: Version 3.10.4
678
679 Fixed issues when stressing compaction with WeakMaps.
680
681 Fixed missing GVN flag for new-space promotion. (Chromium issue 123919)
682
683 Simplify invocation sequence at monomorphic function invocation sites.
684 (issue 2079)
685
686 Performance and stability improvements on all platforms.
687
688
erik.corry@gmail.comed49e962012-04-17 11:57:53 +00006892012-04-17: Version 3.10.3
690
691 Fixed several bugs in heap profiles (including issue 2078).
692
693 Throw syntax errors on illegal escape sequences.
694
695 Implemented rudimentary module linking (behind --harmony flag)
696
697 Implemented ES5 erratum: Global declarations should shadow
698 inherited properties.
699
700 Made handling of const more consistent when combined with 'eval'
701 and 'with'.
702
703 Fixed V8 on MinGW-x64 (issue 2026).
704
705 Performance and stability improvements on all platforms.
706
707
jkummerow@chromium.org28faa982012-04-13 09:58:30 +00007082012-04-13: Version 3.10.2
709
710 Fixed native ARM build (issues 1744, 539)
711
712 Return LOOKUP variable instead of CONTEXT for non-context allocated
713 outer scope parameters (Chromium issue 119609).
714
715 Fixed regular and ElementsKind transitions interfering with each other
716 (Chromium issue 122271).
717
718 Improved performance of keyed loads/stores which have a HeapNumber
719 index (issues 1388, 1295).
720
721 Fixed WeakMap processing for evacuation candidates (issue 2060).
722
723 Bailout on possible direct eval calls (Chromium issue 122681).
724
725 Do not assume that names of function expressions are context-allocated
726 (issue 2051).
727
728 Performance and stability improvements on all platforms.
729
730
fschneider@chromium.org7d10be52012-04-10 12:30:14 +00007312012-04-10: Version 3.10.1
732
733 Fixed bug with arguments object in inlined functions (issue 2045).
734
735 Fixed performance bug with lazy initialization (Chromium issue
736 118686).
737
738 Added suppport for Mac OS X 64bit builds with GYP.
739 (Patch contributed by Filipe David Manana <fdmanana@gmail.com>)
740
741 Fixed bug with hidden properties (issue 2034).
742
743 Fixed a performance bug when reloading pages (Chromium issue 117767,
744 V8 issue 1902).
745
746 Fixed bug when optimizing throw in top-level code (issue 2054).
747
748 Fixed two bugs with array literals (issue 2055, Chromium issue 121407).
749
750 Fixed bug with Math.min/Math.max with NaN inputs (issue 2056).
751
752 Fixed a bug with the new runtime profiler (Chromium issue 121147).
753
754 Fixed compilation of V8 using uClibc.
755
756 Optimized boot-up memory use.
757
758 Optimized regular expressions.
759
760
jkummerow@chromium.org1456e702012-03-30 08:38:13 +00007612012-03-30: Version 3.10.0
762
763 Fixed store IC writability check in strict mode
764 (Chromium issue 120099).
765
766 Resynchronize timers if the Windows system time was changed.
767 (Chromium issue 119815)
768
769 Removed "-mfloat-abi=hard" from host compiler cflags when building for
770 hardfp ARM
771 (https://code.google.com/p/chrome-os-partner/issues/detail?id=8539)
772
773 Fixed edge case for case independent regexp character classes
774 (issue 2032).
775
776 Reset function info counters after context disposal.
777 (Chromium issue 117767, V8 issue 1902)
778
779 Fixed missing write barrier in CopyObjectToObjectElements.
780 (Chromium issue 119926)
781
782 Fixed missing bounds check in HasElementImpl.
783 (Chromium issue 119925)
784
785 Performance and stability improvements on all platforms.
786
787
danno@chromium.org88aa0582012-03-23 15:11:57 +00007882012-03-23: Version 3.9.24
789
790 Activated count-based profiler for ARM.
791
792 Fixed use of proxies as f.prototype properties. (issue 2021)
793
794 Enabled snapshots on MIPS.
795
796 Performance and stability improvements on all platforms.
797
798
ulan@chromium.org6ff65142012-03-21 09:52:17 +00007992012-03-21: Version 3.9.23
800
801 Use correct arguments adaptation environment when inlining function
802 containing arguments. (Issue 2014)
803
804 Performance and stability improvements on all platforms.
805
806
jkummerow@chromium.org531dfe82012-03-20 13:01:16 +00008072012-03-20: Version 3.9.22
808
809 Enabled count-based profiler by default.
810
811 Implemented a hash based look-up to speed up address checks
812 in large object space (issue 853).
813
814 Performance and stability improvements on all platforms.
815
816
rossberg@chromium.org2c067b12012-03-19 11:01:52 +00008172012-03-19: Version 3.9.21
818
819 Fixed push-to-trunk script (and re-push).
820
821 Added API call that identifies strings that are guaranteed only to
822 contain ASCII characters.
823
824
8252012-03-19: Version 3.9.20
826
827 Fixed declarations escaping global strict eval. (Issue 1624)
828
829 Fixed wrapping of receiver for non-strict callbacks. (Issue 1973)
830
831 Fixed function declarations overwriting read-only global properties.
832 (Chromium issue 115452)
833
834 Fixed --use-strict flag in combination with --harmony[-scoping].
835
836 Debugger: naive implementation of "step into Function.prototype.bind".
837
838 Debugger: added ability to set script source from within OnBeforeCompile
839
840 Added flag to always call DebugBreak on abort.
841
842 Re-enabled constructor inlining and inline === comparison with boolean
843 constants. (Issue 2009)
844
845 Don't use an explicit s0 in ClampDoubleToUint8. (Issue 2004)
846
847 Performance and stability improvements on all platforms.
848
849
mstarzinger@chromium.org3233d2f2012-03-14 11:16:03 +00008502012-03-14: Version 3.9.19
851
852 Ensure there is a smi check of the receiver for global load and call
853 ICs (Chromium issue 117794).
854
855 Performance and stability improvements on all platforms.
856
857
yangguo@chromium.org154ff992012-03-13 08:09:54 +00008582012-03-13: Version 3.9.18
859
860 Ensure consistency of Math.sqrt on Intel platforms.
861
862 Remove static initializers in v8. (issue 1859)
863
864 Add explicit dependency on v8_base in the GYP-based build.
865
866 Performance and stability improvements on all platforms.
867
868
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +00008692012-03-12: Version 3.9.17
870
871 Fixed VFP detection through compiler defines. (issue 1996)
872
873 Add Code-related fields to postmortem metadata.
874
875 Performance and stability improvements on all platforms.
876
877
erik.corry@gmail.combbceb572012-03-09 10:52:05 +00008782012-03-09: Version 3.9.16
879
880 Added basic interface inference for modules (behind the --harmony flag).
881
882 Added Object.is, Number.isFinite, Number.isNaN.
883
884 Updated the Unicode tables to Unicode version 6.1.0.
885
886 Performance and stability improvements on all platforms.
887
888
ulan@chromium.org9a21ec42012-03-06 08:42:24 +00008892012-03-06: Version 3.9.15
890
891 Fix the heap profiler crash caused by memory layout changes between
892 passes.
893
894 Fix Error.prototype.toString to throw TypeError. (issue 1980)
895
896 Fix double-rounding in strtod for MinGW. (issue 1062)
897
898 Fix corrupted snapshot serializaton on ia32. (Chromium issue v8/1985)
899
900 Performance and stability improvements on all platforms.
901
902
fschneider@chromium.org35814e52012-03-01 15:43:35 +00009032012-03-01: Version 3.9.14
904
905 Performance and stability improvements on all platforms.
906
907
ulan@chromium.org812308e2012-02-29 15:58:45 +00009082012-02-29: Version 3.9.13
909
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000910 Added code kind check before preparing for OSR. (issue 1900, 115073)
ulan@chromium.org812308e2012-02-29 15:58:45 +0000911
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000912 Fixed issue 1802: Pass zone explicitly to zone-allocation on x64 and
913 ARM.
ulan@chromium.org812308e2012-02-29 15:58:45 +0000914
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000915 Ported string construct stub to x64. (issue 849)
ulan@chromium.org812308e2012-02-29 15:58:45 +0000916
917 Performance and stability improvements on all platforms.
918
919
ulan@chromium.org967e2702012-02-28 09:49:15 +00009202012-02-28: Version 3.9.12
921
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000922 Fixed the negative lookup stub to handle deleted entries in a
923 dictionary. (issue 1964)
ulan@chromium.org967e2702012-02-28 09:49:15 +0000924
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000925 Added a new API where the host can supply a callback function. The
ulan@chromium.org967e2702012-02-28 09:49:15 +0000926 callback function can resolve the location of a return address on stack
927 to the location where a return-address rewriting profiler stashed the
928 original return address.
929
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000930 Fixed Chromium issue http://crbug.com/115646: When compiling for-in
931 pass correct context value to the increment instruction.
ulan@chromium.org967e2702012-02-28 09:49:15 +0000932
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000933 Fixed issue 1853: Update breakpoints set with partial file name after
934 compile.
ulan@chromium.org967e2702012-02-28 09:49:15 +0000935
936
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +00009372012-02-27: Version 3.9.11
938
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000939 Made 'module' a context-sensitive keyword (V8 issue 1957).
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +0000940
941
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +00009422012-02-24: Version 3.9.10
943
944 Fixed V8 issues 1322, 1772 and 1969.
945
946 Conformance improvements.
947
948 Performance and stability improvements on all platforms.
949
950
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +00009512012-02-23: Version 3.9.9
952
953 Supported fast case for-in in Crankshaft.
954
955 Sped up heap snapshot serialization and dominators construction.
956
957 Randomized allocation addresses on windows. (Chromium issue 115151)
958
959 Fixed compilation with MinGW-w64. (issue 1943)
960
961 Fixed incorrect value of assignments to non-extensible properties.
962
963 Fixed a crash bug in generated code on ia32.
964
965 Performance and stability improvements on all platforms.
966
967
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +00009682012-02-21: Version 3.9.8
969
970 Fixed memory leak and missing #include in StartupDataDecompressor
971 (issue 1960).
972
973 Renamed static methods to avoid shadowing virtual methods and fix Clang
974 C++11 compile error.
975
976 Fixed sequence of element access in array builtins (issue 1790).
977
978 Performance and stability improvements on all platforms.
979
980
yangguo@chromium.org56454712012-02-16 15:33:53 +00009812012-02-16: Version 3.9.7
982
983 Fixed V8 issues 1322, 1878, 1942, 1945 and Chromium issue 113924.
984
985 Fixed GCC-4.7 warnings.
986
987 Added Navier-Stokes benchmark.
988
989 Performance and stability improvements on all platforms.
990
991
ulan@chromium.org65a89c22012-02-14 11:46:07 +00009922012-02-14: Version 3.9.6
993
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000994 Fixed template-related linker error. (issue 1936)
ulan@chromium.org65a89c22012-02-14 11:46:07 +0000995
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000996 Allowed inlining of functions containing object literals. (issue 1322)
ulan@chromium.org65a89c22012-02-14 11:46:07 +0000997
fschneider@chromium.org35814e52012-03-01 15:43:35 +0000998 Added --call-graph-size option to tickprocessor. (issue 1937)
ulan@chromium.org65a89c22012-02-14 11:46:07 +0000999
1000 Heap Snapshot maximum size limit is too low for really big apps. At the
1001 moment the limit is 256MB. (Chromium issue 113015)
1002
1003 Performance and stability improvements on all platforms.
1004
1005
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000010062012-02-09: Version 3.9.5
1007
1008 Removed unused command line flags.
1009
1010 Performance and stability improvements on all platforms.
1011
1012
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +000010132012-02-08: Version 3.9.4
1014
1015 Properly initialize element-transitioning array literals on ARM.
1016 (issue 1930)
1017
1018 Bug fixes on all platforms.
1019
1020
jkummerow@chromium.orgab7dad42012-02-07 12:07:34 +000010212012-02-07: Version 3.9.3
1022
1023 When rethrowing an exception, print the stack trace of its original
1024 site instead of rethrow site (Chromium issue 60240).
1025
1026 Increased size of small stacks from 32k to 64k to avoid hitting limits
1027 in Chromium (Chromium issue 112843).
1028
1029
rossberg@chromium.org994edf62012-02-06 10:12:55 +000010302012-02-06: Version 3.9.2
1031
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001032 Added timestamp to --trace-gc output. (issue 1932)
rossberg@chromium.org994edf62012-02-06 10:12:55 +00001033
1034 Heap profiler reports implicit references.
1035
1036 Optionally export metadata with libv8 to enable debuggers to inspect V8
1037 state.
1038
1039
jkummerow@chromium.org1145ef82012-02-02 16:21:15 +000010402012-02-02: Version 3.9.1
1041
1042 Fixed memory leak in NativeObjectsExplorer::FindOrAddGroupInfo
1043 (Chromium issue 112315).
1044
1045 Fixed a crash in dev tools (Chromium issue 107996).
1046
1047 Added 'dependencies_traverse': 1 to v8 GYP target.
1048
1049 Performance and stability improvements on all platforms.
1050
1051
danno@chromium.orgfa458e42012-02-01 10:48:36 +000010522012-02-01: Version 3.9.0
1053
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001054 Reduced memory use immediately after starting V8.
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001055
1056 Stability fixes and performance improvements on all platforms.
1057
1058
yangguo@chromium.org659ceec2012-01-26 07:37:54 +000010592012-01-26: Version 3.8.9
1060
1061 Flush number string cache on GC (issue 1605).
1062
1063 Provide access to function inferred name with
1064 v8::Function::GetInferredName in V8 public API.
1065
1066 Fix building with Clang (issue 1912).
1067
1068 Reduce the space used by the stack for the profiling thread.
1069
1070 Fix misleading documentation of v8::Locker (issue 542).
1071
1072 Introduce readbinary function in d8 to read binary files.
1073
1074 Performance and stability improvements on all platforms.
1075
1076
jkummerow@chromium.org05ed9dd2012-01-23 14:42:48 +000010772012-01-23: Version 3.8.8
1078
1079 Limited number of loop iterations in Heap::ReserveSpace
1080 (Chromium issue 99027).
1081
1082 Fixed solaris build (VirtualMemory) (issue 1761).
1083
1084 Fixed strict vs. non-strict handling of function proxies in
1085 higher-order array and string methods.
1086
1087 Enabled asynchronous remote debugging with d8 (issue 1691).
1088
1089 Stability and performance improvements on all platforms.
1090
1091
ulan@chromium.org2efb9002012-01-19 15:36:35 +000010922012-01-19: Version 3.8.7
1093
1094 Ensure that LRandom restores rsi after call to the C function on x64.
1095 (Chromium issue http://crbug.com/110509)
1096
1097 Fixing include issues on *bsd when building with scons.
1098 (issue 1897)
1099
1100 Provide a switch to specify -fno-strict-aliasing
1101 (issue 1887)
1102
1103 Move WIN32 define from standalone.gypi to common.gypi
1104 (issue 1760)
1105
1106 Fix corner-case in heap size estimation.
1107 (issue 1893)
1108
1109 Fix and enable NEW_NON_STRICT_FAST ArgumentsAccess stub on x64.
1110 (issue 1903)
1111
1112 Performance improvements and bug fixes.
1113
1114
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000011152012-01-16: Version 3.8.6
1116
1117 Add primitive WebGL array support to d8.
1118
1119 Improve heap size estimation (issue 1893).
1120
1121 Hash collision DOS workaround extended from string keys
1122 to numeric keys.
1123
1124 Provide an API for iterating through all external strings referenced
1125 from the JS heap.
1126
1127 Adjust position recorded for call expressions. http://crbug.com/109195
1128
1129 Fix GC crash related to instanceof. http://crbug.com/109448
1130
1131 Performance improvements and bug fixes.
1132
1133
rossberg@chromium.orgfab14982012-01-05 15:02:15 +000011342012-01-05: Version 3.8.5
1135
1136 Fix broken test that assumes that no GC can clear the regexp cache (GC
1137 can happen at any time due to Crankshaft).
1138
1139 Fix handling of bogus receivers for Harmony collections. (issue 1884)
1140
1141 Add netbsd support to gyp build.
1142
1143 Determine page size at runtime on posix platforms.
1144
1145 Ensure that store buffer filtering hash sets are cleared after
1146 StoreBuffer::Filter.
1147
1148 Randomize the seed used for string hashing. This helps guard against
1149 CPU-eating DOS attacks against node.js servers. Based on code from
1150 Bert Belder. This version only solves the issue for those that compile
1151 V8 themselves or those that do not use snapshots. A snapshot-based
1152 precompiled V8 will still have predictable string hash codes.
1153
1154 Implement callback when script finishes running in V8 API.
1155
1156 Improve performance of Math.min and Math.max for the case of two
1157 arguments. (issue 1325)
1158
1159
svenpanne@chromium.org3c93e772012-01-02 09:26:59 +000011602012-01-02: Version 3.8.4
1161
1162 Performance improvements for large Smi-only arrays.
1163
1164 Fixed InternalArrays construction. (issue 1878)
1165
1166
danno@chromium.orgbf0c8202011-12-27 10:09:42 +000011672011-12-27: Version 3.8.3
1168
1169 Avoid embedding new space objects into code objects in the lithium gap
1170 resolver. (chromium:108296)
1171
1172 Bug fixes and performance optimizations on all platforms.
1173
1174
danno@chromium.orge78f9fc2011-12-21 08:29:34 +000011752011-12-21: Version 3.8.2
1176
1177 Add max optimization flag to v8 gyp build to ensure V8 is always built
1178 fully optimized in Chrome.
1179
1180 MIPS: Bring MIPS to parity with other platforms.
1181
1182 Optimizations and stability improvements on all platforms.
1183
1184
ricow@chromium.org7ad65222011-12-19 12:13:11 +000011852011-12-19: Version 3.8.1
1186
1187 Fixed GCC 4.7 warnings. Patch from Tobias Burnus.
1188
1189 Stability improvements on all platforms.
1190
1191
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000011922011-12-13: Version 3.8.0
1193
1194 Fixed handling of arrays in DefineOwnProperty. (issue 1756)
1195
1196 Sync parser and preparser on do-while and return statements.
1197 (issue 1856)
1198
1199 Fixed another corner case for DefineOwnProperty on arrays (issue 1756).
1200
1201 Stability and performance improvements on all platforms.
1202
1203
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +000012042011-12-01: Version 3.7.12
1205
1206 Increase tick interval for the android platform.
1207
1208 Fix a bug in the register allocator. (chromium:105112)
1209
1210 Fix handling of recompiling code. (chromium:105375, v8:1782)
1211
1212 Start incremental marking on idle notification. (v8:1458)
1213
1214 Build fixes for various platforms.
1215
1216 Various performance improvements.
1217
1218
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000012192011-11-29: Version 3.7.11
1220
1221 Fixed bug when generating padding to ensure space for lazy
1222 deoptimization.
1223 (issue 1846)
1224
1225 Further reduced pause times due to GC.
1226
1227 Stability and performance improvements on all platforms.
1228
1229
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +000012302011-11-23: Version 3.7.10
1231
1232 Set maximum length of FixedArray in terms of elements instead an
1233 absolute number of bytes.
1234 (Chromium issue 103103)
1235
1236 Stability and performance improvements on all platforms.
1237
1238
12392011-11-21: Version 3.7.9
1240
1241 Removed exit-time destructors.
1242
1243 Stability and performance improvements on all platforms.
1244
1245
ricow@chromium.org27bf2882011-11-17 08:34:43 +000012462011-11-17: Version 3.7.8
1247
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +00001248 Removed hidden prototype from builtins, i.e., deleting an overridden
ricow@chromium.org27bf2882011-11-17 08:34:43 +00001249 function on builtins will not make the original function reappear.
1250
1251 Added NetBSD support for scons build.
1252
1253 Performance improvements on all platforms.
1254
1255
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +000012562011-11-14: Version 3.7.7
1257
1258 Fix missing fast property accessors in heap snapshots.
1259 (issue 1818)
1260
1261
danno@chromium.org2c456792011-11-11 12:00:53 +000012622011-11-11: Version 3.7.6
1263
1264 Fixed filtering of store buffer for large object pages.
1265 (issue 1817)
1266
1267 Fixed generated hash function on all platforms.
1268 (issue 1808)
1269
1270 Fixed Heap::Shrink to ensure that it does not free pages that are
1271 still in use.
1272 (Chromium issue 100414)
1273
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001274 Stability and performance improvements on all platforms.
danno@chromium.org2c456792011-11-11 12:00:53 +00001275
1276
danno@chromium.orgc612e022011-11-10 11:38:15 +000012772011-11-10: Version 3.7.5
1278
1279 Added initial gyp infrastructure for MIPS.
1280
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001281 Implemented performance improvements to the incremental garbage
danno@chromium.orgc612e022011-11-10 11:38:15 +00001282 collector.
1283
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001284 Added optimizations and stability improvements on all platforms.
danno@chromium.orgc612e022011-11-10 11:38:15 +00001285
1286
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000012872011-11-07: Version 3.7.4
1288
1289 Proper "libv8.so.3.7.4" SONAME for Linux shared library (issue 1786).
1290
1291 Fix Harmony sets and maps to allow null and undefined as keys
1292 (still hidden behind --harmony flag) (issue 1622).
1293
1294 Implement VirtualMemory on FreeBSD to fix build (issue 1807).
1295
1296 Enable VFP instructions for Android.
1297
1298 Fix error handling in Date.prototype.toISOString (issue 1792).
1299
1300 Bug fixes and performance improvements for all platforms.
1301
1302 Not officially supported but noteworthy: Crankshaft for MIPS :-)
1303
1304
erik.corry@gmail.combecbc522011-10-28 07:45:20 +000013052011-10-28: Version 3.7.3
1306
1307 Slight deoptimization as a workaround for issue with jslint: Issue
1308 1789.
1309
1310
erik.corry@gmail.com6e28b562011-10-27 14:20:17 +000013112011-10-27: Version 3.7.2
1312
1313 Fix bug in deoptimization. Known issue with jslint: Issue 1789.
1314
1315
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000013162011-10-26: Version 3.7.1
1317
1318 Achieved 33% speedup in debug-mode tests.
1319
1320 Removed special casing of calls to RegExp test and exec methods with no
1321 argument. Now matches new JSC behaviour. crbug.com/75740.
1322
1323 Return the empty string on cyclic references in toString (ES5
1324 conformance).
1325
1326 Fixed bug triggered by JSBeautifier. crbug.com/100409.
1327
1328 Made Math.random state per-context instead of per-process (issue 864).
1329
1330 Fixed stack traces to skip native functions.
1331
1332 Make snapshots (new contexts) smaller and faster.
1333
1334 Fixed handling of Function.apply for non-array arguments.
1335
1336 Fixed evaluation order in defineProperties to match FireFox.
1337
1338 Fixed handling of non-object receivers for array builtins,
1339 crbug.com/100702.
1340
1341 Multiple fixes to improve compliance with test262.
1342
1343 Fixed compatibility with older Android releases.
1344
1345 Fixed compilation with gcc-4.5.3.
1346
1347 Improved performance of WriteUtf8, issue 1665.
1348
1349 Made native syntax an early error in the preparser.
1350
1351 Fixed issues 793 and 893 relating to Function.prototype.bind.
1352
1353 Improved let, const, Set and Map support and other Harmony features
1354 (behind the --harmony flag).
1355
1356 Changed evaluation order for > and <= to match ES5 instead of ES3.
1357
1358 Bug fixes and performance improvements on all platforms.
1359
1360
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000013612011-10-13: Version 3.7.0
1362
1363 Fixed array handling for Object.defineOwnProperty (ES5 conformance).
1364
1365 Fixed issue 1757 (string slices of external strings).
1366
1367 Fixed issue 1759 (ARM).
1368
1369 Added flag --noclever-optimizations to disable some things that
1370 caused trouble in the past.
1371
1372 Added flag --stress-compaction for testing.
1373
1374 Added flag --harmony to activate all experimental Harmony features.
1375
1376
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +000013772011-10-10: Version 3.6.6
1378
1379 Added a GC pause visualization tool.
1380
1381 Added presubmit=no and werror=no flags to Makefile.
1382
1383 ES5/Test262 conformance improvements.
1384
1385 Fixed compilation issues with GCC 4.5.x (issue 1743).
1386
1387 Bug fixes and performance improvements on all platforms.
1388
1389
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000013902011-10-05: Version 3.6.5
1391
1392 New incremental garbage collector.
1393
1394 Removed the hard heap size limit (soft heap size limit is still
1395 700/1400Mbytes by default).
1396
1397 Implemented ES5 generic Array.prototype.toString (Issue 1361).
1398
1399 V8 now allows surrogate pair codes in decodeURIComponent (Issue 1415).
1400
1401 Fixed x64 RegExp start-of-string bug (Issues 1746, 1748).
1402
1403 Fixed propertyIsEnumerable for numeric properties (Issue 1692).
1404
1405 Fixed the MinGW and Windows 2000 builds.
1406
1407 Fixed "Prototype chain is not searched if named property handler does
1408 not set a property" (Issue 1636).
1409
1410 Made the RegExp.prototype object be a RegExp object (Issue 1217).
1411
1412 Disallowed future reserved words as labels in strict mode.
1413
1414 Fixed string split to correctly coerce the separator to a string
1415 (Issue 1711).
1416
1417 API: Added an optional source length field to the Extension
1418 constructor.
1419
1420 API: Added Debug::DisableAgent to match existing Debug::EnableAgent
1421 (Issue 1573).
1422
1423 Added "native" target to Makefile for the benefit of Linux distros.
1424
1425 Fixed: debugger stops stepping outside evaluate (Issue 1639).
1426
1427 More work on ES-Harmony proxies. Still hidden behind a flag.
1428
1429 Bug fixes and performance improvements on all platforms.
1430
1431
lrn@chromium.org34e60782011-09-15 07:25:40 +000014322011-09-15: Version 3.6.4
1433
1434 Fixed d8's broken readline history.
1435
1436 Removed the need for code delete events in CPU profiler (Issue 1466).
1437
1438 Fixed debugger stepping next with trycatch recursion (Issue 1639).
1439
1440 Fixing parallel execution in d8 (with -p) and some memory leaks.
1441
1442 Support for precise stepping in functions compiled before debugging was
1443 started (step 1).
1444
1445
kmillikin@chromium.org83e16822011-09-13 08:21:47 +000014462011-09-13: Version 3.6.3
1447
1448 Implemented better support of typed arrays in the d8 shell.
1449
1450 Bug fixes and performance improvements on all platforms.
1451
1452
ricow@chromium.org55ee8072011-09-08 16:33:10 +000014532011-09-08: Version 3.6.2
1454
1455 Added "dependencies" target to top-level Makefile.
1456
1457 Added ability to turn profiler on/off in d8.
1458
1459 Added "soname_version" parameter to common.gypi, v8.gyp, and Makefile.
1460
1461 Fixed several crash bugs.
1462
1463
jkummerow@chromium.org486075a2011-09-07 12:44:28 +000014642011-09-07: Version 3.6.1
1465
1466 Fixed a bug in abrupt exit from with or catch inside finally.
1467
1468 Fixed possible crash in FixedDoubleArray::Initialize() (Chromium
1469 issue 95113).
1470
1471 Fixed a bug in Page::GetRegionMaskForSpan (Chromium issue 94425).
1472
1473 Fixed a few clang warnings (which -Werror treated as errors).
1474
1475 Performance improvements on all platforms.
1476
1477
fschneider@chromium.org1805e212011-09-05 10:49:12 +000014782011-09-05: Version 3.6.0
1479
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001480 Fixed a bug when optimizing named function expression (issue 1647).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001481
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001482 Fixed a bug when optimizing f.call.apply (issue 1650).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001483
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001484 Made arguments and caller always be null on native functions
1485 (issues 1548 and 1643).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001486
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001487 Fixed issue 1648 (cross-compiling x64 targeting ia32).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001488
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001489 Fixed issue 371 (d8 printing of strings containing \0).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001490
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001491 Fixed order of evaluation in arguments to parseInt (issue 1649).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001492
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001493 Fixed a problem with large heap snapshots in Chrome DevTools
1494 (issue 1658, chromium issue 89268).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001495
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001496 Upped default maximum heap size from 512M to 700M.
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001497
1498
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +000014992011-08-31: Version 3.5.10
1500
1501 Added dependency of v8_base on WinSocket2 Windows library in
1502 the GYP-build.
1503
1504 Various bugfixes.
1505
1506
ricow@chromium.org4668a2c2011-08-29 10:41:00 +000015072011-08-29: Version 3.5.9
1508
1509 Made FromPropertyDescriptor not trigger inherited setters.
1510
1511 Fixed .gyp files to work on the ARM simulator.
1512
1513 Fixed shared library build warnings for MSVS.
1514
1515
ricow@chromium.orgddd545c2011-08-24 12:02:41 +000015162011-08-24: Version 3.5.8
1517
1518 Added V8EXPORT attributes for v8::Array::CheckCast and
1519 v8::Number::CheckCast.
1520
1521 Made a slight API change enabling opting out from null termination
1522 in String::Write*().
1523
1524 Fixed arm build for gcc-4.6.
1525
1526
rossberg@chromium.org28a37082011-08-22 11:03:23 +000015272011-08-22: Version 3.5.7
1528
1529 Make scanner handle invalid unicode escapes in identifiers correctly.
1530
1531 Make regexp flag parsing stricter.
1532
1533 Fix several memory leaks.
1534
1535
danno@chromium.orgb6451162011-08-17 14:33:23 +000015362011-08-17: Version 3.5.6
1537
1538 Fixed issue that could cause crashes when running with --heap-stats.
1539
1540 Fixed compilation on Linux 2.6.9 and older.
1541
1542 Fixed live-object-list to work with isolates.
1543
1544 Fixed memory leaks in zones and isolates.
1545
1546 Fixed a performance regression for TypedArrays on x64.
1547
1548 Stability improvements on all platforms.
1549
1550
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000015512011-08-15: Version 3.5.5
1552
1553 Fixed bugs involving negative zero and the optimizing compiler.
1554
1555 Fixed optimized version of Function.apply(x, arguments). (issue 1592)
1556
1557 Eliminated uses of deprecated ARM instructions.
1558
1559 Sped up Math.floor by using SSE 4.1 roundsd instruction on ia32.
1560
1561 Removed restriction on the size of disassembled code that is printed.
1562
1563
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000015642011-08-10: Version 3.5.4
1565
1566 Added a preliminary implementation of ES Harmony weak maps. Weak
1567 maps can be enabled by the flag --harmony-weakmaps.
1568
1569 Introduced a toplevel Makefile to support GYP-based building. GYP
1570 can be obtained from http://gyp.googlecode.com.
1571
1572 Fixed a bug in the length property of functions created by
1573 Function.prototype.bind.
1574
1575 Reduced malloc heap allocation on process startup.
1576
1577 Several important code generation bug fixes.
1578
1579 Performance improvements on all platforms.
1580
1581
lrn@chromium.orgd4e9e222011-08-03 12:01:58 +000015822011-08-03: Version 3.5.3
1583
1584 MIPS: Port of fix to ClassOf check from ARM.
1585 Patch from Paul Lind <plind44@gmail.com>.
1586
1587 Stopped using mprotect on Cygwin.
1588 Avoided uninitialized member warning on gcc 4.3.4
1589 Both patches by Bert Belder.
1590
1591 Bug fixes and performance improvements on all platforms.
1592
1593
vegorov@chromium.org7943d462011-08-01 11:41:52 +000015942011-08-01: Version 3.5.2
1595
1596 Performance improvements on all platforms.
1597
1598
ricow@chromium.org2c99e282011-07-28 09:15:17 +000015992011-07-28: Version 3.5.1
1600
1601 Fixed setting the readonly flag on the prototype property using the
1602 API call FunctionTemplate::SetPrototypeAttributes (issue 1539).
1603
1604 Changed the tools/test.py script to use d8 instead of shell for
1605 testing.
1606
1607 Fixed crash in ToBooleanStub when GC happens during invocation.
1608
1609 Enabled automatic unboxing of double arrays.
1610
1611 Performance improvements on all platforms.
1612
1613
ricow@chromium.org9fa09672011-07-25 11:05:35 +000016142011-07-25: Version 3.5.0
1615
1616 Implemented Object.prototype.{hasOwnProperty, propertyIsEnumerable} for
1617 proxies.
1618
1619 Removed logging to memory support.
1620
1621 Bugfixes and performance work.
1622
1623
rossberg@chromium.org717967f2011-07-20 13:44:42 +000016242011-07-20: Version 3.4.14
1625
1626 Fix the debugger for strict-mode functions. (Chromium issue 89236)
1627
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001628 Add GetPropertyAttribute method for Object in the API. (Patch by
ricow@chromium.org9fa09672011-07-25 11:05:35 +00001629 Peter Varga)
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001630
1631 Fix -Wunused-but-set-variable for gcc-4.6 on x64. (Issue 1291)
1632
1633
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000016342011-07-18: Version 3.4.13
1635
1636 Improved debugger support to allow inspection of optimized frames (issue
1637 1140).
1638
1639 Fixed a bug in prototype transitions cache clearing introduced by r8165.
1640
1641 Fixed shortcutting bug in HInferRepresentation. Patch by Andy Wingo.
1642
1643 Fixed a memory leak in sample/shell.cc (dispose semaphores).
1644
1645 Simplified HClampToUint8. Patch by Andy Wingo.
1646
1647 Exposed APIs for detecting boxed primitives, native errors. Patch by
1648 Luke Zarko.
1649
1650 Added map check for COW elements to crankshaft array handling code
1651 (issue 1560).
1652
1653 Sample shell and (a light version of) D8 links against a shared library
1654 now.
1655
1656 Fixed bug in array filter and reduce functions (issue 1559).
1657
1658 Avoid TLS load in AstNode constructor.
1659
1660 Introduced a random entropy source which can optionally be provided at
1661 initialization. (Chromium issue 89462).
1662
1663
whesse@chromium.org030d38e2011-07-13 13:23:34 +000016642011-07-13: Version 3.4.12
1665
1666 Added --prof profiling option to d8 shell.
1667
1668 Fixed a bug where reading a directory in d8 shell hangs (issue 1533).
1669
1670 Fixed a potential assertion failure in const declarations.
1671
1672 Fixed an assertion failure in descriptor arrays (issue 1526).
1673
1674 Enabled fast thread-local storage by default on supported platforms.
1675
1676 Improved reporting of source position for global variable loads
1677 (issue 1527).
1678
1679
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000016802011-07-11: Version 3.4.11
1681
1682 Fixed MinGW32 build.
1683
1684 Fixed a GC bug with RegExp code flushing.
1685
1686 Implemented Object.defineProperty for proxies.
1687
1688 Fixed a bug in for/in iteration of arguments objects (issue 1531).
1689
1690 Added debugger support for inspecting optimized frames (issue 1140).
1691
1692 Allowed JSObject::PreventExtensions to work for arguments objects.
1693
1694 Bugfixes and performance work.
1695
1696
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000016972011-07-06: Version 3.4.10
1698
1699 Fixed debugger not breaking on certain "if" statements (issue 1523).
1700
1701 Fixed assertion failure in runtime profiler when running on IA32
1702 without snapshot (issue 1522).
1703
1704 Fixed ABI for API calls on IA32 (for clang compatibility).
1705
1706 Introduced code flushing of RegExp code to free memory used by
1707 RegExps sooner.
1708
1709 Fixed linux-tick-processor built wrong version of v8 (issue 1532).
1710
1711 Fixed assertion failure in v8::TryCache::StackTrace (issue 1529).
1712
1713 Performance improvements on all platforms.
1714
1715
ricow@chromium.org4f693d62011-07-04 14:01:31 +000017162011-07-04: Version 3.4.9
1717
1718 Added support for debugger inspection of locals in optimized frames
1719 (issue 1140).
1720
1721 Fixed SConstruct to pass correct defines to samples/preparser when
1722 building with library=shared.
1723
1724 Made date parser handle ES5 Date Time Strings correctly (issue 1498).
1725
1726 Fixed a bug in Object.defineProperty on the arguments object.
1727
1728 Performance improvements on all platforms.
1729
1730
vegorov@chromium.org3cf47312011-06-29 13:20:01 +000017312011-06-29: Version 3.4.8
1732
1733 Ensure 16-byte stack alignment on Solaris (issue 1505).
1734
sgjesse@chromium.org6db88712011-07-11 11:41:22 +00001735 Fix "illegal access" when calling parseInt with a radix
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00001736 that is not a smi. (issue 1246).
1737
1738
ager@chromium.org04921a82011-06-27 13:21:41 +000017392011-06-27: Version 3.4.7
1740
1741 Fixed 64-bit build on FreeBSD.
1742
1743 Added API to set the property attributes for the prototype
1744 property on functions created from FunctionTemplates.
1745
1746 Bugfixes and performance work.
1747
1748
lrn@chromium.orgac2828d2011-06-23 06:29:21 +000017492011-06-22: Version 3.4.6
1750
1751 Lowered limit on code space for systems with low memory supply.
1752
1753 Allowed compiling v8_shell with the 'host' toolset (issue 82437).
1754
1755 Extended setBreakpoint API to accept partial script name (issue 1418).
1756
1757 Made multi-line comments not count when deciding whether the '-->'
1758 comment starter is first on a line. This matches Safari.
1759
1760 Made handling of non-array recievers in Array length setter correct
1761 (issue 1491).
1762
1763 Added ability to heap profiler to iterate over snapshot's node
1764 (issue 1481).
1765
1766
whesse@chromium.org7b260152011-06-20 15:33:18 +000017672011-06-20: Version 3.4.5
1768
1769 Fixed issues 794, 1097, 1215(partial), 1417, 1435, 1472, 1473,
1770 1476, and 1477.
1771
1772 Improved code generation for !0 and !1.
1773
1774 Reduced memory usage for regular expressions with nested qualifiers.
1775 (issue 1472)
1776
1777 Fixed V8 to count line terminators in multi-line comments.
1778 (Chromium issue 86431)
1779
1780 Fixed disassembler=on option for release-mode builds. (issue 1473)
1781
1782 Performance improvements on all platforms.
1783
1784
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000017852011-06-15: Version 3.4.4
1786
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001787 Added snapshot compression support and --stress-opt flag to d8.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001788
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001789 Improved performance of try/catch.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001790
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001791 Several GYP-related changes: Added support for building Xcode project
1792 files. Make the ARM simulator build with GYP again. Generate Makefiles
1793 for all architectures on Linux.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001794
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001795 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the
1796 receiver for strict mode callbacks. (issue 1436)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001797
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001798 Fixed a bug where an array load was incorrectly hoisted by GVN.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001799
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001800 Handle 'undefined' correctly when === has been specialized for doubles.
1801 (issue 1434)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001802
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001803 Corrected the limit of local variables in an optimized function from 64
1804 to 63.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001805
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001806 Correctly set ReadOnly flag on indexed properties when using the API Set
1807 method. (issue 1470)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001808
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001809 Give the correct error message when Object.isExtensible is called on a
1810 non-object. (issue 1452)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001811
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001812 Added GetOwnPropertyNames method for Object in the API. Patch by Peter
1813 Varga.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001814
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001815 Do not redefine properties unneccesarily in seal and freeze. (issue
1816 1447)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001817
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001818 IsExecutionTerminating has an Isolate parameter now.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001819
ricow@chromium.org4f693d62011-07-04 14:01:31 +00001820 Distinguish keyed loads with a symbol key from fast elements loads,
1821 avoiding some useless deoptimizations. (issue 1471)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001822
1823
jkummerow@chromium.orge297f592011-06-08 10:05:15 +000018242011-06-08: Version 3.4.3
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00001825
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00001826 Clear the global thread table when an isolate is disposed
1827 (issue 1433).
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00001828
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00001829 Converted time zone name to UTF8 on Windows (issue 1290).
1830
1831 Limited the number of arguments in a function call to 32766
1832 (issue 1413).
1833
1834 Compress sources of JS libraries in addition to the snapshot.
1835
1836 Fixed a bug in Lithium environment iteration.
1837
1838 Performance improvements on all platforms.
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00001839
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001840
erik.corry@gmail.comd6076d92011-06-06 09:39:18 +000018412011-06-06: Version 3.4.2
1842
1843 More work on ES-Harmony proxies. Still hidden behind a flag.
1844
1845 Fixed some crash bugs and improved performance.
1846
1847 Fixed building with gdb debugging support.
1848
1849 Do not install SIGPROF handler until it is needed.
1850
1851 Added DateTimeFormat to i18n API.
1852
1853 Fixed compilation on OpenBSD.
1854
1855 Take the ulimit into account when sizing the heap. OpenBSD users
1856 may still have to increase the default ulimit to run heavy pages in
1857 the browser.
1858
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001859
ricow@chromium.orgd2be9012011-06-01 06:00:58 +000018602011-06-01: Version 3.4.1
1861
1862 Fixed JSON stringify issue with arrays.
1863
1864 Changed calls to JS builtins to be passed undefined when called with
1865 implicit receiver.
1866
1867 Implemented the set trap for Harmony proxies. Proxies still need to
1868 be enabled with the --harmony-proxies flag.
1869
1870
ricow@chromium.orgc54d3652011-05-30 09:20:16 +000018712011-05-30: Version 3.4.0
1872
1873 Changed calls to undefined property setters to not throw (issue 1355).
1874
1875 Made RegExp objects not callable.
1876
1877 Fixed issues on special case large JSON strings in new json parser
1878 (issues http://crbug.com/83877 and http://crbug.com/84186).
1879
1880 Performance improvements on all platforms.
1881
1882
danno@chromium.org40cb8782011-05-25 07:58:50 +000018832011-05-25: Version 3.3.10
1884
1885 Fixed calls of strict mode function with an implicit receiver.
1886
1887 Fixed fast handling of arrays to properly deal with changes to the
1888 Object prototype (issue 1403).
1889
1890 Changed strict mode poison pill to be the same type error function
1891 (issue 1387).
1892
1893 Fixed a debug crash in arguments object handling (issue 1227).
1894
1895 Fixed a bug in deoptimization on x64 (issue 1404).
1896
1897 Performance improvements and bug fixes on all platforms.
1898
1899
ager@chromium.orgea91cc52011-05-23 06:06:11 +000019002011-05-23: Version 3.3.9
1901
1902 Added DateTimeFormat class to experimental i18n API.
1903
1904 Extended preparser to give early errors for some strict mode
1905 restrictions.
1906
1907 Removed legacy execScript function from V8.
1908
1909 Extended isolate API with the ability to add embedder-specific
1910 data to an isolate.
1911
1912 Added basic support for polymorphic loads from JS and external
1913 arrays.
1914
1915 Fixed bug in handling of switch statements in the optimizing
1916 compiler.
1917
1918
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +000019192011-05-18: Version 3.3.8
1920
ager@chromium.orgea91cc52011-05-23 06:06:11 +00001921 Added MarkIndependent to the persistent handle API. Independent
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00001922 handles are independent of all other persistent handles and can be
1923 garbage collected more frequently.
1924
ager@chromium.orgea91cc52011-05-23 06:06:11 +00001925 Implemented the get trap for Harmony proxies. Proxies are enabled
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00001926 with the --harmony-proxies flag.
1927
1928 Performance improvements and bug fixes on all platforms.
1929
1930
vegorov@chromium.org7304bca2011-05-16 12:14:13 +000019312011-05-16: Version 3.3.7
1932
1933 Updated MIPS infrastructure files.
1934
1935 Performance improvements and bug fixes on all platforms.
1936
1937
karlklose@chromium.org83a47282011-05-11 11:54:09 +000019382011-05-11: Version 3.3.6
1939
1940 Updated MIPS infrastructure files.
1941
1942 Added method IsCallable for Object to the API.
1943 Patch by Peter Varga.
1944
1945
lrn@chromium.org1c092762011-05-09 09:42:16 +000019462011-05-09: Version 3.3.5
1947
1948 Fixed build on FreeBSD. Patch by Akinori MUSHA.
1949
1950 Added check that receiver is JSObject on API calls.
1951
1952 Implemented CallAsConstructor method for Object in the API (Issue 1348).
1953 Patch by Peter Varga.
1954
1955 Added CallAsFunction method to the Object class in the API (Issue 1336).
1956 Patch by Peter Varga.
1957
1958 Added per-isolate locking and unlocking.
1959
1960 Fixed bug in x64 >>> operator (Issue 1359).
1961
1962
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000019632011-05-04: Version 3.3.4
1964
1965 Implemented API to disallow code generation from strings for a context
1966 (issue 1258).
1967
1968 Fixed bug with whitespaces in parseInt (issue 955).
1969
1970 Fixed bug with == comparison of Date objects (issue 1356).
1971
1972 Added GYP variables for ARM code generation:
1973 v8_can_use_vfp_instructions, v8_can_use_unaligned_accesses
1974 and v8_use_arm_eabi_hardfloat.
1975
1976
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000019772011-05-02: Version 3.3.3
1978
1979 Added support for generating Visual Studio solution and project files
1980 using GYP.
1981
1982 Implemented support for ARM EABI calling convention variation where
1983 floating-point arguments are passed in registers (hardfloat).
1984
1985 Added Object::HasOwnProperty() to the API.
1986
1987 Added support for compressing startup data to reduce binary size. This
1988 includes build time support and an API for the embedder to decompress
1989 the startup data before initializing V8.
1990
1991 Reduced the profiling hooks overhead from >400% to 25% when using
1992 ll_prof.
1993
1994 Performance improvements and bug fixes on all platforms.
1995
1996
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +000019972011-04-27: Version 3.3.2
1998
1999 Fixed crash bug on ARM with no VFP3 hardware.
2000
2001 Fixed compilation of V8 without debugger support.
2002
2003 Improved performance on JSLint.
2004
2005 Added support Float64 WebGL arrays.
2006
2007 Fixed crash bug in regexp replace.
2008
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +00002009
ricow@chromium.orgdcebac02011-04-20 09:44:50 +000020102011-04-20: Version 3.3.1
2011
2012 Reduced V8 binary size by removing virtual functions from hydrogen.
2013
2014 Fixed crash bug on x64.
2015
2016 Performance improvements on ARM and IA32.
2017
2018
danno@chromium.org160a7b02011-04-18 15:51:38 +000020192011-04-18: Version 3.3.0
2020
2021 Fixed bug in floating point rounding in Crankshaft on ARM
2022 (issue 958)
2023
2024 Fixed a number of issues with running without VFPv3 support on ARM
2025 (issue 1315)
2026
2027 Introduced v8Locale.Collator, a partial implementation of Collator
2028 per last ECMAScript meeting + mailing list.
2029
2030 Minor performance improvements and bug fixes.
2031
2032
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000020332011-04-13: Version 3.2.10
2034
2035 Fixed bug in external float arrays on ARM (issue 1323).
2036
2037 Minor performance improvements and bug fixes.
2038
2039
karlklose@chromium.org44bc7082011-04-11 12:33:05 +000020402011-04-11: Version 3.2.9
2041
2042 Removed support for ABI prior to EABI on ARM.
2043
2044 Fixed multiple crash bugs.
2045
2046 Added GCMole to the repository, a simple static analysis tool that
2047 searches for GC-unsafe evaluation order dependent callsites.
2048
2049 Made preparser API be exported in shared libraries.
2050
2051 Fixed multiple issues in EcmaScript 5 strict mode implementation.
2052
2053 Fixed mutable __proto__ property if object is not extensible
2054 (Issue 1309).
2055
2056 Fixed auto suspension of the sampler thread.
2057
2058
vegorov@chromium.org74f333b2011-04-06 11:17:46 +000020592011-04-06: Version 3.2.8
2060
2061 Exposed WebGL typed array constructors in the shell sample.
2062
2063 Performance improvements on all platforms.
2064
2065
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +000020662011-04-04: Version 3.2.7
2067
2068 Disabled the original 'classic' V8 code generator. Crankshaft is
2069 now the default on all platforms.
2070
2071 Changed the heap profiler to use more descriptive names.
2072
2073 Performance and stability improvements to isolates on all platforms.
2074
2075
lrn@chromium.org7516f052011-03-30 08:52:27 +000020762011-03-30: Version 3.2.6
2077
2078 Fixed xcode build warning in shell.cc (out of order initialization).
2079
2080 Fixed null-pointer dereference in the compiler when running without
2081 SSE3 support (Chromium issue 77654).
2082
2083 Fixed x64 compilation error due to some dead code. (Issue 1286)
2084
2085 Introduced scons target to build the preparser stand-alone example.
2086
2087 Made FreeBSD build and pass all tests.
2088
2089
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +000020902011-03-28: Version 3.2.5
2091
lrn@chromium.org7516f052011-03-30 08:52:27 +00002092 Fixed build with Irregexp interpreter (issue 1266).
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00002093
2094 Added Crankshaft support for external arrays.
2095
2096 Fixed two potential crash bugs.
2097
2098
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000020992011-03-23: Version 3.2.4
2100
2101 Added isolates which allows several V8 instances in the same process.
2102 This is controlled through the new Isolate class in the API.
2103
2104 Implemented more of EcmaScript 5 strict mode.
2105
2106 Reduced the time it takes to make detailed heap snapshot.
2107
2108 Added a number of commands to the ARM simulator and enhanced the ARM
2109 disassembler.
2110
2111
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +000021122011-03-17: Version 3.2.3
2113
2114 Fixed a number of crash bugs.
2115
2116 Fixed Array::New(length) to return an array with a length (issue 1256).
2117
2118 Fixed FreeBSD build.
2119
2120 Changed __defineGetter__ to not throw (matching the behavior of Safari).
2121
2122 Implemented more of EcmaScript 5 strict mode.
2123
2124 Improved Crankshaft performance on all platforms.
2125
2126
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000021272011-03-14: Version 3.2.2
2128
2129 Fixed a number of crash and correctness bugs.
2130
2131 Improved Crankshaft performance on all platforms.
2132
2133 Fixed Crankshaft on Solaris/Illumos.
2134
2135
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +000021362011-03-10: Version 3.2.1
2137
2138 Fixed a number of crash bugs.
2139
2140 Improved Crankshaft for x64 and ARM.
2141
2142 Implemented more of EcmaScript 5 strict mode.
2143
2144
karlklose@chromium.org8f806e82011-03-07 14:06:08 +000021452011-03-07: Version 3.2.0
2146
2147 Fixed a number of crash bugs.
2148
2149 Turned on Crankshaft by default on x64 and ARM.
2150
2151 Improved Crankshaft for x64 and ARM.
2152
2153 Implemented more of EcmaScript 5 strict mode.
2154
2155
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000021562011-03-02: Version 3.1.8
2157
2158 Fixed a number of crash bugs.
2159
2160 Improved Crankshaft for x64 and ARM.
2161
2162 Implemented more of EcmaScript 5 strict mode.
2163
2164 Fixed issue with unaligned reads and writes on ARM.
2165
2166 Improved heap profiler support.
2167
2168
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +000021692011-02-28: Version 3.1.7
2170
2171 Fixed a number of crash bugs.
2172
2173 Improved Crankshaft for x64 and ARM.
2174
ager@chromium.org9ee27ae2011-03-02 13:43:26 +00002175 Fixed implementation of indexOf/lastIndexOf for sparse
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +00002176 arrays (http://crbug.com/73940).
2177
2178 Fixed bug in map space compaction (http://crbug.com/59688).
2179
2180 Added support for direct getter accessors calls on ARM.
2181
2182
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000021832011-02-24: Version 3.1.6
2184
2185 Fixed a number of crash bugs.
2186
2187 Added support for Cygwin (issue 64).
2188
2189 Improved Crankshaft for x64 and ARM.
2190
2191 Added Crankshaft support for stores to pixel arrays.
2192
2193 Fixed issue in CPU profiler with Crankshaft.
2194
2195
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +000021962011-02-16: Version 3.1.5
2197
2198 Change RegExp parsing to disallow /(*)/.
2199
2200 Added GDB JIT support for ARM.
2201
2202 Fixed several crash bugs.
2203
2204 Performance improvements on the IA32 platform.
2205
2206
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +000022072011-02-14: Version 3.1.4
2208
2209 Fixed incorrect compare of prototypes of the global object (issue
2210 1082).
2211
2212 Fixed a bug in optimizing calls to global functions (issue 1106).
2213
2214 Made optimized Function.prototype.apply safe for non-JSObject first
2215 arguments (issue 1128).
2216
2217 Fixed an error related to element accessors on Object.prototype and
2218 parser errors (issue 1130).
2219
2220 Fixed a bug in sorting an array with large array indices (issue 1131).
2221
2222 Properly treat exceptions thrown while compiling (issue 1132).
2223
2224 Fixed bug in register requirements for function.apply (issue 1133).
2225
2226 Fixed a representation change bug in the Hydrogen graph construction
2227 (issue 1134).
2228
2229 Fixed the semantics of delete on parameters (issue 1136).
2230
2231 Fixed a optimizer bug related to moving instructions with side effects
2232 (issue 1138).
2233
2234 Added support for the global object in Object.keys (issue 1150).
2235
2236 Fixed incorrect value for Math.LOG10E
2237 (issue http://code.google.com/p/chromium/issues/detail?id=72555)
2238
2239 Performance improvements on the IA32 platform.
2240
2241 Implement assignment to undefined reference in ES5 Strict Mode.
2242
2243
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +000022442011-02-09: Version 3.1.3
2245
2246 Fixed a bug triggered by functions with huge numbers of declared
2247 arguments.
2248
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002249 Fixed zap value aliasing a real object - debug mode only (issue 866).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00002250
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002251 Fixed issue where Array.prototype.__proto__ had been set to null
2252 (issue 1121).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00002253
2254 Fixed stability bugs in Crankshaft for x86.
2255
2256
ricow@chromium.org83aa5492011-02-07 12:42:56 +000022572011-02-07: Version 3.1.2
2258
2259 Added better security checks when accessing properties via
2260 Object.getOwnPropertyDescriptor.
2261
2262 Fixed bug in Object.defineProperty and related access bugs (issues
2263 992, 1083 and 1092).
2264
2265 Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease
2266 copyright notice generation for embedders.
2267
2268
kmillikin@chromium.org31b12772011-02-02 16:08:26 +000022692011-02-02: Version 3.1.1
2270
2271 Perform security checks before fetching the value in
2272 Object.getOwnPropertyDescriptor.
2273
2274 Fixed a bug in Array.prototype.splice triggered by passing no
2275 arguments.
2276
2277 Fixed bugs in -0 in arithmetic and in Math.pow.
2278
2279 Fixed bugs in the register allocator and in switching from optimized
2280 to unoptimized code.
2281
2282
22832011-01-31: Version 3.1.0
2284
whesse@chromium.org7a392b32011-01-31 11:30:36 +00002285 Performance improvements on all platforms.
2286
2287
ager@chromium.org378b34e2011-01-28 08:04:38 +000022882011-01-28: Version 3.0.12
2289
2290 Added support for strict mode parameter and object property
2291 validation.
2292
2293 Fixed a couple of crash bugs.
2294
2295
ager@chromium.org0ee099b2011-01-25 14:06:47 +000022962011-01-25: Version 3.0.11
2297
2298 Fixed a bug in deletion of lookup slots that could cause global
2299 variables to be accidentally deleted (http://crbug.com/70066).
2300
2301 Added support for strict mode octal literal verification.
2302
2303 Fixed a couple of crash bugs (issues 1070 and 1071).
2304
2305
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +000023062011-01-24: Version 3.0.10
2307
2308 Fixed External::Wrap for 64-bit addresses (issue 1037).
2309
ager@chromium.org0ee099b2011-01-25 14:06:47 +00002310 Fixed incorrect .arguments variable proxy handling in the full
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002311 code generator (issue 1060).
2312
2313 Introduced partial strict mode support.
2314
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002315 Changed formatting of recursive error messages to match Firefox and
2316 Safari (issue http://crbug.com/70334).
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002317
2318 Fixed incorrect rounding for float-to-integer conversions for external
ager@chromium.org0ee099b2011-01-25 14:06:47 +00002319 array types, which implement the Typed Array spec
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002320 (issue http://crbug.com/50972).
2321
2322 Performance improvements on the IA32 platform.
2323
2324
erik.corry@gmail.com0511e242011-01-19 11:11:08 +000023252011-01-19: Version 3.0.9
2326
2327 Added basic GDB JIT Interface integration.
2328
2329 Make invalid break/continue statements a syntax error instead of a
2330 runtime error.
2331
2332
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000023332011-01-17: Version 3.0.8
2334
2335 Exposed heap size limit to the heap statistics gathered by
erik.corry@gmail.com0511e242011-01-19 11:11:08 +00002336 the GetHeapStatistics API.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00002337
2338 Wrapped external pointers more carefully (issue 1037).
2339
2340 Hardened the implementation of error objects to avoid setters
2341 intercepting the properties set then throwing an error.
2342
2343 Avoided trashing the FPSCR when calculating Math.floor on ARM.
2344
2345 Performance improvements on the IA32 platform.
2346
2347
23482011-01-10: Version 3.0.7
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002349
2350 Stopped calling inherited setters when creating object literals
2351 (issue 1015).
2352
2353 Changed interpretation of malformed \c? escapes in RegExp to match
2354 JSC.
2355
2356 Enhanced the command-line debugger interface and fixed some minor
2357 bugs in the debugger.
2358
2359 Performance improvements on the IA32 platform.
2360
2361
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000023622011-01-05: Version 3.0.6
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002363
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002364 Allowed getters and setters on JSArray elements (issue 900).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002365
2366 Stopped JSON objects from hitting inherited setters (part of
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002367 issue 1015).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002368
2369 Allowed numbers and strings as names of getters/setters in object
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002370 initializer (issue 820).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002371
2372 Added use_system_v8 option to gyp (off by default), to make it easier
2373 for Linux distributions to ship with system-provided V8 library.
2374
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002375 Exported external array data accessors (issue 1016).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002376
2377 Added labelled thread names to help with debugging (on Linux).
2378
2379
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +000023802011-01-03: Version 3.0.5
2381
2382 Fixed a couple of cast errors for gcc-3.4.3.
2383
2384 Performance improvements in GC and IA32 code generator.
2385
2386
whesse@chromium.org023421e2010-12-21 12:19:12 +000023872010-12-21: Version 3.0.4
2388
2389 Added Date::ResetCache() to the API so that the cached values in the
2390 Date object can be reset to allow live DST / timezone changes.
2391
2392 Extended existing support for printing (while debugging) the contents
2393 of objects. Added support for printing objects from release builds.
2394
2395 Fixed V8 issues 989, 1006, and 1007.
2396
2397
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000023982010-12-17: Version 3.0.3
2399
2400 Reapplied all changes for version 3.0.1.
2401
2402 Improved debugger protocol for remote debugging.
2403
2404 Added experimental support for using gyp to generate build files
2405 for V8.
2406
2407 Fixed implementation of String::Write in the API (issue 975).
2408
2409
lrn@chromium.org8541d772010-12-15 12:05:09 +000024102010-12-15: Version 3.0.2
2411
2412 Revert version 3.0.1 and patch 3.0.1.1.
2413
2414
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +000024152010-12-13: Version 3.0.1
2416
2417 Added support for an experimental internationalization API as an
2418 extension. This extension is disabled by default but can be enabled
2419 when building V8. The ECMAScript internationalization strawman is
2420 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
2421
2422 Made RegExp character class parsing stricter. This mirrors a change
2423 to RegExp parsing in WebKit.
2424
2425 Fixed a bug in Object.defineProperty when used to change attributes
2426 of an existing property. It incorrectly set the property value to
2427 undefined (issue 965).
2428
2429 Fixed several different compilation failures on various platforms
2430 caused by the 3.0.0 release.
2431
2432 Optimized Math.pow so it can work on unboxed doubles.
2433
2434 Sped up quoting of JSON strings by removing one traversal of the
2435 string.
2436
2437
kasperl@chromium.orga5551262010-12-07 12:49:48 +000024382010-12-07: Version 3.0.0
2439
2440 Improved performance by (partially) addressing issue 957 on
2441 IA-32. Still needs more work for the other architectures.
2442
2443
ager@chromium.orgbeb25712010-11-29 08:02:25 +000024442010-11-29: Version 2.5.9
2445
2446 Fixed crashes during GC caused by partially initialize heap
2447 objects.
2448
2449 Fixed bug in process sample that caused memory leaks.
2450
2451 Improved performance on ARM by implementing missing stubs and
2452 inlining.
2453
2454 Improved heap profiler support.
2455
2456 Added separate seeding on Windows of the random number generator
2457 used internally by the compiler (issue 936).
2458
2459 Exposed API for getting the name of the function used to construct
2460 an object.
2461
2462 Fixed date parser to handle one and two digit millisecond
2463 values (issue 944).
2464
2465 Fixed number parsing to disallow space between sign and
2466 digits (issue 946).
2467
2468
vegorov@chromium.org21b5e952010-11-23 10:24:40 +000024692010-11-23: Version 2.5.8
2470
2471 Removed dependency on Gay's dtoa.
2472
2473 Improved heap profiler precision and speed.
2474
2475 Reduced overhead of callback invocations on ARM.
2476
2477
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000024782010-11-18: Version 2.5.7
2479
2480 Fixed obscure evaluation order bug (issue 931).
2481
2482 Split the random number state between JavaScript and the private API.
2483
2484 Fixed performance bug causing GCs when generating stack traces on
2485 code from very large scripts.
2486
2487 Fixed bug in parser that allowed (foo):42 as a labelled statement
2488 (issue 918).
2489
2490 Provide more accurate results about used heap size via
2491 GetHeapStatistics.
2492
2493 Allow build-time customization of the max semispace size.
2494
2495 Made String.prototype.split honor limit when separator is empty
2496 (issue 929).
2497
2498 Added missing failure check after expecting an identifier in
2499 preparser (Chromium issue 62639).
2500
2501
ager@chromium.org01fe7df2010-11-10 11:59:11 +000025022010-11-10: Version 2.5.6
2503
2504 Added support for VFP rounding modes to the ARM simulator.
2505
2506 Fixed multiplication overflow bug (issue 927).
2507
2508 Added a limit for the amount of executable memory (issue 925).
2509
2510
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +000025112010-11-08: Version 2.5.5
2512
2513 Added more aggressive GC of external objects in near out-of-memory
2514 situations.
2515
2516 Fixed a bug that gave the incorrect result for String.split called
2517 on the empty string (issue 924).
2518
2519
lrn@chromium.orgfa943b72010-11-03 08:14:36 +000025202010-11-03: Version 2.5.4
2521
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +00002522 Improved V8 VFPv3 runtime detection to address issue 914.
lrn@chromium.orgfa943b72010-11-03 08:14:36 +00002523
2524
fschneider@chromium.orge03fb642010-11-01 12:34:09 +000025252010-11-01: Version 2.5.3
2526
2527 Fixed a bug that prevents constants from overwriting function values
2528 in object literals (issue 907).
2529
2530 Fixed a bug with reporting of impossible nested calls of DOM functions
2531 (issue http://crbug.com/60753).
2532
2533
lrn@chromium.org303ada72010-10-27 09:33:13 +000025342010-10-27: Version 2.5.2
2535
2536 Improved sampler resolution on Linux.
2537
2538 Allowed forcing the use of a simulator from the build script
2539 independently of the host architecture.
2540
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002541 Fixed FreeBSD port (issue 912).
lrn@chromium.org303ada72010-10-27 09:33:13 +00002542
2543 Made windows-tick-processor respect D8_PATH.
2544
2545 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
2546
2547
whesse@chromium.org4a5224e2010-10-20 12:37:07 +000025482010-10-20: Version 2.5.1
2549
2550 Fixed bug causing spurious out of memory exceptions
2551 (issue http://crbug.com/54580).
2552
2553 Fixed compilation error on Solaris platform (issue 901).
2554
2555 Fixed error in strtod (string to floating point number conversion)
2556 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
2557
2558 Adjusted randomized allocations of executable memory to have 64k
2559 granularity (issue http://crbug.com/56036).
2560
2561 Supported profiling using kernel perf_events on linux. Added ll_prof
2562 script to tools and --ll-prof flag to V8.
2563
2564
vegorov@chromium.org42841962010-10-18 11:18:59 +000025652010-10-18: Version 2.5.0
2566
2567 Fixed bug in cache handling of lastIndex on global regexps
2568 (issue http://crbug.com/58740).
2569
2570 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
2571 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +00002572 from Hewlett-Packard Development Company, LP).
vegorov@chromium.org42841962010-10-18 11:18:59 +00002573
2574 Fixed compilation error on ARM with gcc 4.4 (issue 894).
2575
2576
25772010-10-13: Version 2.4.9
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00002578
2579 Fixed a bug in the handling of conditional expressions in test
2580 contexts in compiler for top-level code.
2581
2582 Added "//@ sourceURL" information to the StackTrace API.
2583
2584 Exposed RegExp construction through the API.
2585
2586
ricow@chromium.orgeb7c1442010-10-04 08:54:21 +000025872010-10-04: Version 2.4.8
2588
2589 Fixed a bug in ResumeProfilerEx causing it to not always write out the
2590 whole snapshot (issue 868).
2591
2592 Performance improvements on all platforms.
2593
2594
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +000025952010-09-30: Version 2.4.7
2596
2597 Changed the command-line flag --max-new-space-size to be in kB and the
2598 flag --max-old-space-size to be in MB (previously they were in bytes).
2599
2600 Added Debug::CancelDebugBreak to the debugger API.
2601
2602 Fixed a bug in getters for negative numeric property names
2603 (https://bugs.webkit.org/show_bug.cgi?id=46689).
2604
2605 Performance improvements on all platforms.
2606
2607
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000026082010-09-27: Version 2.4.6
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00002609
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00002610 Fixed assertion failure related to copy-on-write arrays (issue 876).
2611
2612 Fixed build failure of 64-bit V8 on Windows.
2613
2614 Fixed a bug in RegExp (issue http://crbug.com/52801).
2615
2616 Improved the profiler's coverage to cover more functions (issue 858).
2617
2618 Fixed error in shift operators on 64-bit V8
2619 (issue http://crbug.com/54521).
2620
2621
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000026222010-09-22: Version 2.4.5
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00002623
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002624 Changed the RegExp benchmark to exercise the regexp engine on different
2625 inputs by scrambling the input strings.
2626
2627 Fixed a bug in keyed loads on strings.
2628
2629 Fixed a bug with loading global function prototypes.
2630
2631 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
2632
2633 Performance improvements on all platforms.
2634
2635
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +000026362010-09-15: Version 2.4.4
2637
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002638 Fixed bug with hangs on very large sparse arrays.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002639
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002640 Now tries harder to free up memory when running out of space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002641
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002642 Added heap snapshots to JSON format to API.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002643
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002644 Recalibrated benchmarks.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002645
2646
sgjesse@chromium.org2ec107f2010-09-13 09:19:46 +000026472010-09-13: Version 2.4.3
2648
2649 Made Date.parse properly handle TZ offsets (issue 857).
2650
2651 Performance improvements on all platforms.
2652
2653
ager@chromium.org5b2fbee2010-09-08 06:38:15 +000026542010-09-08: Version 2.4.2
2655
2656 Fixed GC crash bug.
2657
2658 Fixed stack corruption bug.
2659
2660 Fixed compilation for newer C++ compilers that found Operand(0)
2661 ambiguous.
2662
2663
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +000026642010-09-06: Version 2.4.1
2665
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002666 Added the ability for an embedding application to receive a callback
2667 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
2668 (V8::RemoveMemoryAllocationCallback) from the OS.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002669
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002670 Fixed several JSON bugs (including issue 855).
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002671
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002672 Fixed memory overrun crash bug triggered during V8's tick-based
2673 profiling.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002674
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002675 Performance improvements on all platforms.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002676
2677
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000026782010-09-01: Version 2.4.0
2679
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002680 Fixed bug in Object.freeze and Object.seal when Array.prototype or
2681 Object.prototype are changed (issue 842).
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002682
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002683 Updated Array.splice to follow Safari and Firefox when called
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002684 with zero arguments.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002685
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002686 Fixed a missing live register when breaking at keyed loads on ARM.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002687
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002688 Performance improvements on all platforms.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002689
2690
ricow@chromium.org65fae842010-08-25 15:26:24 +000026912010-08-25: Version 2.3.11
2692
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002693 Fixed bug in RegExp related to copy-on-write arrays.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002694
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002695 Refactored tools/test.py script, including the introduction of
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002696 VARIANT_FLAGS that allows specification of sets of flags with which
2697 all tests should be run.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002698
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002699 Fixed a bug in the handling of debug breaks in CallIC.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002700
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002701 Performance improvements on all platforms.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002702
2703
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000027042010-08-23: Version 2.3.10
2705
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002706 Fixed bug in bitops on ARM.
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00002707
2708 Build fixes for unusual compilers.
2709
2710 Track high water mark for RWX memory.
2711
2712 Performance improvements on all platforms.
2713
2714
ricow@chromium.org0b9f8502010-08-18 07:45:01 +000027152010-08-18: Version 2.3.9
2716
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002717 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00002718
2719 Removed specialized handling of GCC 4.4 (issue 830).
2720
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002721 Fixed DST cache to take into account the suspension of DST in
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00002722 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
2723
ricow@chromium.org65fae842010-08-25 15:26:24 +00002724 Performance improvements on all platforms.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00002725
2726
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000027272010-08-16: Version 2.3.8
2728
2729 Fixed build with strict aliasing on GCC 4.4 (issue 463).
2730
2731 Fixed issue with incorrect handling of custom valueOf methods on
2732 string wrappers (issue 760).
2733
2734 Fixed compilation for ARMv4 (issue 590).
2735
2736 Improved performance.
2737
2738
vegorov@chromium.org26c16f82010-08-11 13:41:03 +000027392010-08-11: Version 2.3.7
2740
2741 Reduced size of heap snapshots produced by heap profiler (issue 783).
2742
2743 Introduced v8::Value::IsRegExp method.
2744
2745 Fixed CPU profiler crash in start / stop sequence when non-existent
2746 name is passed (issue http://crbug.com/51594).
2747
2748 Introduced new indexed property query callbacks API (issue 816). This
2749 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
2750 by default.
2751
2752 Removed support for object literal get/set with number/string
2753 property name.
2754
2755 Fixed handling of JSObject::elements in CalculateNetworkSize
2756 (issue 822).
2757
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002758 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00002759
2760
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000027612010-08-09: Version 2.3.6
2762
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00002763 RegExp literals create a new object every time they are evaluated
2764 (issue 704).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00002765
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00002766 Object.seal and Object.freeze return the modified object (issue 809).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00002767
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002768 Fixed building using GCC 4.4.4.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00002769
2770
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +000027712010-08-04: Version 2.3.5
2772
2773 Added support for ES5 property names. Object initialisers and
2774 dot-notation property access now allows keywords. Also allowed
2775 non-identifiers after "get" or "set" in an object initialiser.
2776
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002777 Randomized the addresses of allocated executable memory on Windows.
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +00002778
2779
whesse@chromium.orge90029b2010-08-02 11:52:17 +000027802010-08-02: Version 2.3.4
2781
2782 Fixed problems in implementation of ES5 function.prototype.bind.
2783
2784 Fixed error when using apply with arguments object on ARM (issue 784).
2785
2786 Added setting of global flags to debugger protocol.
2787
2788 Fixed an error affecting cached results of sin and cos (issue 792).
2789
2790 Removed memory leak from a boundary case where V8 is not initialized.
2791
2792 Fixed issue where debugger could set breakpoints outside the body
2793 of a function.
2794
2795 Fixed issue in debugger when using both live edit and step in features.
2796
2797 Added Number-letter (Nl) category to Unicode tables. These characters
2798 can now be used in identifiers.
2799
2800 Fixed an assert failure on X64 (issue 806).
2801
2802 Performance improvements on all platforms.
2803
2804
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +000028052010-07-26: Version 2.3.3
2806
2807 Fixed error when building the d8 shell in a fresh checkout.
2808
2809 Implemented Function.prototype.bind (ES5 15.3.4.5).
2810
2811 Fixed an error in inlined stores on ia32.
2812
2813 Fixed an error when setting a breakpoint at the end of a function
2814 that does not end with a newline character.
2815
2816 Performance improvements on all platforms.
2817
2818
fschneider@chromium.orged78ffd2010-07-21 11:05:19 +000028192010-07-21: Version 2.3.2
2820
2821 Fixed compiler warnings when building with LLVM.
2822
2823 Fixed a bug with for-in applied to strings (issue 785).
2824
2825 Performance improvements on all platforms.
2826
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00002827
ricow@chromium.org4980dff2010-07-19 08:33:45 +000028282010-07-19: Version 2.3.1
2829
2830 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
2831
2832 Fixed bug related to code flushing while compiling a lazy
2833 compilable function (issue http://crbug.com/49099).
2834
2835 Performance improvements on all platforms.
2836
2837
ager@chromium.orgb5737492010-07-15 09:29:43 +000028382010-07-15: Version 2.3.0
2839
2840 Added ES5 Object.seal and Object.isSealed.
2841
2842 Added debugger API for scheduling debugger commands from a
2843 separate thread.
2844
2845
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +000028462010-07-14: Version 2.2.24
2847
2848 Added API for capturing stack traces for uncaught exceptions.
2849
2850 Fixed crash bug when preparsing from a non-external V8 string
2851 (issue 775).
2852
2853 Fixed JSON.parse bug causing input not to be converted to string
2854 (issue 764).
2855
2856 Added ES5 Object.freeze and Object.isFrozen.
2857
2858 Performance improvements on all platforms.
2859
2860
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000028612010-07-07: Version 2.2.23
2862
2863 API change: Convert Unicode code points outside the basic multilingual
2864 plane to the replacement character. Previous behavior was to silently
2865 truncate the value to 16 bits.
2866
2867 Fixed crash: handle all flat string types in regexp replace.
2868
2869 Prevent invalid pre-parsing data passed in through the API from
2870 crashing V8.
2871
2872 Performance improvements on all platforms.
2873
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00002874
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000028752010-07-05: Version 2.2.22
2876
2877 Added ES5 Object.isExtensible and Object.preventExtensions.
2878
2879 Enabled building V8 as a DLL.
2880
2881 Fixed a bug in date code where -0 was not interpreted as 0
2882 (issue 736).
2883
2884 Performance improvements on all platforms.
2885
2886
lrn@chromium.org32d961d2010-06-30 09:09:34 +000028872010-06-30: Version 2.2.21
2888
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002889 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00002890
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002891 Updated JSON.stringify to floor the space parameter (issue 753).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00002892
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002893 Updated the Mozilla test expectations to the newest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00002894
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002895 Updated the ES5 Conformance Test expectations to the latest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00002896
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002897 Updated the V8 benchmark suite.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00002898
2899 Provide actual breakpoints locations in response to setBreakpoint
2900 and listBreakpoints requests.
2901
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002902
fschneider@chromium.org40b9da32010-06-28 11:29:21 +000029032010-06-28: Version 2.2.20
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002904
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002905 Fixed bug with for-in on x64 platform (issue 748).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00002906
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002907 Fixed crash bug on x64 platform (issue 756).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002908
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002909 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00002910
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002911 Fixed a bug on ARM that caused the result of 1 << x to be
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00002912 miscalculated for some inputs.
2913
2914 Performance improvements on all platforms.
2915
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002916
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000029172010-06-23: Version 2.2.19
2918
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002919 Fixed bug that causes the build to break when profillingsupport=off
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00002920 (issue 738).
2921
2922 Added expose-externalize-string flag for testing extensions.
2923
2924 Resolve linker issues with using V8 as a DLL causing a number of
2925 problems with unresolved symbols.
2926
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002927 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00002928 defined.
2929
2930 Performance improvements on all platforms.
2931
2932
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000029332010-06-16: Version 2.2.18
2934
2935 Added API functions to retrieve information on indexed properties
2936 managed by the embedding layer. Fixes bug 737.
2937
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002938 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00002939
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002940 Added heap profiling to the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00002941
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002942 Removed old named property query from the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00002943
2944 Incremental performance improvements.
2945
2946
ager@chromium.org2cc82ae2010-06-14 07:35:38 +000029472010-06-14: Version 2.2.17
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002948
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00002949 Improved debugger support for stepping out of functions.
2950
2951 Incremental performance improvements.
2952
2953
29542010-06-09: Version 2.2.16
2955
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002956 Removed the SetExternalStringDiposeCallback API. Changed the
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002957 disposal of external string resources to call a virtual Dispose
2958 method on the resource.
2959
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00002960 Added support for more precise break points when debugging and
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00002961 stepping.
2962
2963 Memory usage improvements on all platforms.
2964
2965
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000029662010-06-07: Version 2.2.15
2967
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002968 Added an API to control the disposal of external string resources.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00002969
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002970 Added missing initialization of a couple of variables which makes
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00002971 some compilers complaint when compiling with -Werror.
2972
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002973 Improved performance on all platforms.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00002974
2975
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +000029762010-06-02: Version 2.2.14
2977
2978 Fixed a crash in code generated for String.charCodeAt.
2979
2980 Fixed a compilation issue with some GCC versions (issue 727).
2981
2982 Performance optimizations on x64 and ARM platforms.
2983
2984
ricow@chromium.org30ce4112010-05-31 10:38:25 +000029852010-05-31: Version 2.2.13
2986
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002987 Implemented Object.getOwnPropertyDescriptor for element indices and
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002988 strings (issue 599).
2989
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002990 Fixed bug for windows 64 bit C calls from generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002991
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002992 Added new scons flag unalignedaccesses for arm builds.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00002993
2994 Performance improvements on all platforms.
2995
2996
kmillikin@chromium.org9155e252010-05-26 13:27:57 +000029972010-05-26: Version 2.2.12
2998
2999 Allowed accessors to be defined on objects rather than just object
3000 templates.
3001
3002 Changed the ScriptData API.
3003
3004
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000030052010-05-21: Version 2.2.11
3006
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003007 Fixed crash bug in liveedit on 64 bit.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003008
3009 Use 'full compiler' when debugging is active. This should increase
3010 the density of possible break points, making single step more fine
3011 grained. This will only take effect for functions compiled after
3012 debugging has been started, so recompilation of all functions is
3013 required to get the full effect. IA32 and x64 only for now.
3014
3015 Misc. fixes to the Solaris build.
3016
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003017 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003018
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003019 Added filtering of CPU profiles by security context.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003020
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003021 Fixed crash bug on ARM when running without VFP2 or VFP3.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003022
3023 Incremental performance improvements in all backends.
3024
3025
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000030262010-05-17: Version 2.2.10
3027
3028 Performance improvements in the x64 and ARM backends.
3029
3030
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000030312010-05-10: Version 2.2.9
3032
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003033 Allowed Object.create to be called with a function (issue 697).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003034
3035 Fixed bug with Date.parse returning a non-NaN value when called on a
3036 non date string (issue 696).
3037
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003038 Allowed unaligned memory accesses on ARM targets that support it (by
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003039 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003040
3041 C++ API for retrieving JavaScript stack trace information.
3042
3043
ager@chromium.orgac091b72010-05-05 07:34:42 +000030442010-05-05: Version 2.2.8
3045
3046 Performance improvements in the x64 and ARM backends.
3047
3048
kmillikin@chromium.org4111b802010-05-03 10:34:42 +000030492010-05-03: Version 2.2.7
3050
3051 Added support for ES5 date time string format to Date.parse.
3052
3053 Performance improvements in the x64 backend.
3054
3055
lrn@chromium.orgc34f5802010-04-28 12:53:43 +000030562010-04-28: Version 2.2.6
3057
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003058 Added "amd64" as recognized architecture in scons build script
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003059 (by Ryan Dahl <coldredlemur@gmail.com>).
3060
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003061 Fixed bug in String search and replace with very simple RegExps.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003062
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003063 Fixed bug in RegExp containing "\b^".
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003064
3065 Performance improvements on all platforms.
3066
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003067
fschneider@chromium.org013f3e12010-04-26 13:27:52 +000030682010-04-26: Version 2.2.5
3069
3070 Various performance improvements (especially for ARM and x64)
3071
3072 Fixed bug in CPU profiling (http://crbug.com/42137)
3073
3074 Fixed a bug with the natives cache.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003075
3076 Fixed two bugs in the ARM code generator that can cause
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003077 wrong calculations.
3078
3079 Fixed a bug that may cause a wrong result for shift operations.
3080
3081
30822010-04-21: Version 2.2.4
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00003083
3084 Fixed warnings on arm on newer GCC versions.
3085
3086 Fixed a number of minor bugs.
3087
3088 Performance improvements on all platforms.
3089
3090
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +000030912010-04-14: Version 2.2.3
3092
3093 Added stack command and mem command to ARM simulator debugger.
3094
3095 Fixed scons snapshot and ARM build, and Windows X64 build issues.
3096
3097 Performance improvements on all platforms.
3098
3099
ager@chromium.org357bf652010-04-12 11:30:10 +000031002010-04-12: Version 2.2.2
3101
3102 Introduced new profiler API.
3103
3104 Fixed random number generator to produce full 32 random bits.
3105
3106
lrn@chromium.org25156de2010-04-06 13:10:27 +000031072010-04-06: Version 2.2.1
3108
3109 Debugger improvements.
3110
3111 Fixed minor bugs.
3112
3113
ricow@chromium.orgaa1b6162010-03-29 07:44:58 +000031142010-03-29: Version 2.2.0
3115
3116 Fixed a few minor bugs.
3117
3118 Performance improvements for string operations.
3119
3120
ager@chromium.orgb26c50a2010-03-26 09:27:16 +000031212010-03-26: Version 2.1.10
3122
3123 Fixed scons build issues.
3124
3125 Fixed a couple of minor bugs.
3126
3127
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +000031282010-03-25: Version 2.1.9
3129
3130 Added API support for reattaching a global object to a context.
3131
3132 Extended debugger API with access to the internal debugger context.
3133
3134 Fixed Chromium crashes (issues http://crbug.com/39128 and
3135 http://crbug.com/39160)
3136
3137
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000031382010-03-24: Version 2.1.8
3139
3140 Added fine-grained garbage collection callbacks to the API.
3141
3142 Performance improvements on all platforms.
3143
3144
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000031452010-03-22: Version 2.1.7
3146
3147 Fixed issue 650.
3148
3149 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
fschneider@chromium.org086aac62010-03-17 13:18:24 +00003150
3151 Performance improvements for arithmetic operations.
3152
3153 Performance improvements for string operations.
3154
whesse@chromium.orgcec079d2010-03-22 14:44:04 +00003155 Print script name and line number information in stack trace.
3156
3157
31582010-03-17: Version 2.1.6
3159
3160 Performance improvements for arithmetic operations.
3161
3162 Performance improvements for string operations.
3163
3164
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000031652010-03-10: Version 2.1.4
3166
3167 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
3168
3169 Performance improvements on all platforms.
3170
3171
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000031722010-03-10: Version 2.1.3
3173
3174 Added API method for context-disposal notifications.
3175
3176 Added API method for accessing elements by integer index.
3177
3178 Added missing implementation of Uint32::Value and Value::IsUint32
3179 API methods.
3180
3181 Added IsExecutionTerminating API method.
3182
3183 Disabled strict aliasing for GCC 4.4.
3184
3185 Fixed string-concatenation bug (issue 636).
3186
3187 Performance improvements on all platforms.
3188
3189
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +000031902010-02-23: Version 2.1.2
3191
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003192 Fixed a crash bug caused by wrong assert.
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003193
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003194 Fixed a bug with register names on 64-bit V8 (issue 615).
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003195
3196 Performance improvements on all platforms.
3197
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003198
ager@chromium.org5c838252010-02-19 08:53:10 +000031992010-02-19: Version 2.1.1
3200
3201 [ES5] Implemented Object.defineProperty.
3202
3203 Improved profiler support.
3204
3205 Added SetPrototype method in the public V8 API.
3206
3207 Added GetScriptOrigin and GetScriptLineNumber methods to Function
3208 objects in the API.
3209
3210 Performance improvements on all platforms.
3211
3212
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000032132010-02-03: Version 2.1.0
3214
3215 Values are now always wrapped in objects when used as a receiver.
3216 (issue 223).
3217
3218 [ES5] Implemented Object.getOwnPropertyNames.
3219
3220 [ES5] Restrict JSON.parse to only accept strings that conforms to the
3221 JSON grammar.
3222
3223 Improvement of debugger agent (issue 549 and 554).
3224
3225 Fixed problem with skipped stack frame in profiles (issue 553).
3226
3227 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
3228 <ry@tinyclouds.org>.
3229
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003230 Fixed a bug that Math.round() returns incorrect results for huge
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003231 integers.
3232
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003233 Fixed enumeration order for objects created from some constructor
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003234 functions (isue http://crbug.com/3867).
3235
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003236 Fixed arithmetic on some integer constants (issue 580).
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003237
3238 Numerous performance improvements including porting of previous IA-32
3239 optimizations to x64 and ARM architectures.
3240
3241
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000032422010-01-14: Version 2.0.6
3243
3244 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
3245 GetOwnProperty, FromPropertyDescriptor.
3246
3247 Fixed Mac x64 build errors.
3248
3249 Improved performance of some math and string operations.
3250
3251 Improved performance of some regexp operations.
3252
3253 Improved performance of context creation.
3254
3255 Improved performance of hash tables.
3256
3257
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000032582009-12-18: Version 2.0.5
3259
3260 Extended to upper limit of map space to allow for 7 times as many map
3261 to be allocated (issue 524).
3262
3263 Improved performance of code using closures.
3264
3265 Improved performance of some binary operations involving doubles.
3266
3267
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000032682009-12-16: Version 2.0.4
3269
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003270 Added ECMAScript 5 Object.create.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003271
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003272 Improved performance of Math.max and Math.min.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003273
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003274 Optimized adding of strings on 64-bit platforms.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003275
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003276 Improved handling of external strings by using a separate table
3277 instead of weak handles. This improves garbage collection
3278 performance and uses less memory.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003279
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003280 Changed code generation for object and array literals in toplevel
3281 code to be more compact by doing more work in the runtime.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003282
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003283 Fixed a crash bug triggered when garbage collection happened during
3284 generation of a callback load inline cache stub.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003285
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003286 Fixed crash bug sometimes triggered when local variables shadowed
3287 parameters in functions that used the arguments object.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003288
3289
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +000032902009-12-03: Version 2.0.3
3291
3292 Optimized handling and adding of strings, for-in and Array.join.
3293
3294 Heap serialization is now non-destructive.
3295
3296 Improved profiler support with information on time spend in C++
3297 callbacks registered through the API.
3298
3299 Added commands to the debugger protocol for starting/stopping
3300 profiling.
3301
3302 Enabled the non-optimizing compiler for top-level code.
3303
3304 Changed the API to only allow strings to be set as data objects on
3305 Contexts and scripts to avoid potentially keeping global objects
3306 around for too long (issue 528).
3307
3308 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
3309
3310 Fixed bugs.
3311
3312
ager@chromium.org01beca72009-11-24 14:29:16 +000033132009-11-24: Version 2.0.2
3314
3315 Improved profiler support.
3316
3317 Fixed bug that broke compilation of d8 with readline support.
3318
3319
ager@chromium.org6141cbe2009-11-20 12:14:52 +000033202009-11-20: Version 2.0.1
3321
3322 Fixed crash bug in String.prototype.replace.
3323
3324 Reverted a change which caused Chromium interactive ui test
3325 failures.
3326
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003327
ager@chromium.orgc4c92722009-11-18 14:12:51 +000033282009-11-18: Version 2.0.0
3329
3330 Added support for VFP on ARM.
3331
3332 Added TryCatch::ReThrow method to the API.
3333
3334 Reduced the size of snapshots and improved the snapshot load time.
3335
3336 Improved heap profiler support.
3337
3338 64-bit version now supported on Windows.
3339
3340 Fixed a number of debugger issues.
3341
3342 Fixed bugs.
3343
3344
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +000033452009-10-29: Version 1.3.18
3346
3347 Reverted a change which caused crashes in RegExp replace.
3348
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003349 Reverted a change which caused Chromium ui_tests failure.
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +00003350
3351
ager@chromium.org3811b432009-10-28 14:53:37 +000033522009-10-28: Version 1.3.17
3353
3354 Added API method to get simple heap statistics.
3355
3356 Improved heap profiler support.
3357
3358 Fixed the implementation of the resource constraint API so it
3359 works when using snapshots.
3360
3361 Fixed a number of issues in the Windows 64-bit version.
3362
3363 Optimized calls to API getters.
3364
3365 Added valgrind notification on code modification to the 64-bit version.
3366
3367 Fixed issue where we logged shared library addresses on Windows at
3368 startup and never used them.
3369
3370
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000033712009-10-16: Version 1.3.16
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003372
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003373 X64: Convert smis to holding 32 bits of payload.
3374
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003375 Introduced v8::Integer::NewFromUnsigned method.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003376
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003377 Added missing null check in Context::GetCurrent.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003378
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003379 Added trim, trimLeft and trimRight methods to String
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003380 Patch by Jan de Mooij <jandemooij@gmail.com>
3381
3382 Implement ES5 Array.isArray
3383 Patch by Jan de Mooij <jandemooij@gmail.com>
3384
3385 Skip access checks for hidden properties.
3386
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003387 Added String::Concat(Handle<String> left, Handle<String> right) to the
3388 V8 API.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003389
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003390 Fixed GYP-based builds of V8.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003391
3392
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +000033932009-10-07: Version 1.3.15
3394
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003395 Expanded the maximum size of the code space to 512MB for 64-bit mode.
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +00003396
3397 Fixed a crash bug happening when starting profiling (issue
3398 http://crbug.com/23768).
3399
3400
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000034012009-10-07: Version 1.3.14
3402
3403 Added GetRealNamedProperty to the API to lookup real properties
3404 located on the object or in the prototype chain skipping any
3405 interceptors.
3406
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003407 Fixed the stack limits setting API to work correctly with threads. The
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003408 stack limit now needs to be set to each thread thich is used with V8.
3409
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003410 Removed the high-priority flag from IdleNotification()
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003411
3412 Ensure V8 is initialized before locking and unlocking threads.
3413
3414 Implemented a new JavaScript minifier for compressing the source of
ager@chromium.org3811b432009-10-28 14:53:37 +00003415 the built-in JavaScript. This removes non-Open Source code from Douglas
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003416 Crockford from the project.
3417
3418 Added a missing optimization in StringCharAt.
3419
3420 Fixed some flaky socket tests.
3421
3422 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
3423 in 64-bit mode.
3424
3425 Fixed memory leaks in the thread management code.
3426
3427 Fixed the result of assignment to a pixel array. The assigned value
3428 is now the result.
3429
3430 Error reporting for invalid left-hand sides in for-in statements, pre-
3431 and postfix count expressions, and assignments now matches the JSC
3432 behavior in Safari 4.
3433
3434 Follow the spec in disallowing function declarations without a name.
3435
3436 Always allocate code objects within a 2 GB range. On x64 architecture
3437 this is used to use near calls (32-bit displacement) in Code objects.
3438
3439 Optimized array construction ported to x64 and ARM architectures.
3440
3441 [ES5] Changed Object.keys to return strings for element indices.
3442
3443
ager@chromium.org68e7ab72009-09-23 09:40:39 +000034442009-09-23: Version 1.3.13
3445
3446 Fixed uninitialized memory problem.
3447
3448 Improved heap profiler support.
3449
3450
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000034512009-09-22: Version 1.3.12
3452
3453 Changed behavior of |function|.toString() on built-in functions to
3454 be compatible with other implementations. Patch by Jan de Mooij.
3455
3456 Added Object::IsDirty in the API.
3457
3458 Optimized array construction; it is now handled purely in native
3459 code.
3460
3461 [ES5] Made properties of the arguments array enumerable.
3462
3463 [ES5] Added test suite adapter for the es5conform test suite.
3464
3465 [ES5] Added Object.keys function.
3466
ager@chromium.org68e7ab72009-09-23 09:40:39 +00003467
ager@chromium.org4af710e2009-09-15 12:20:11 +000034682009-09-15: Version 1.3.11
3469
3470 Fixed crash in error reporting during bootstrapping.
3471
3472 Optimized generated IA32 math code by using SSE2 instructions when
3473 available.
3474
3475 Implemented missing pieces of debugger infrastructure on ARM. The
3476 debugger is now fully functional on ARM.
3477
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003478 Made 'hidden' the default visibility for gcc.
ager@chromium.org4af710e2009-09-15 12:20:11 +00003479
3480
ager@chromium.orga1645e22009-09-09 19:27:10 +000034812009-09-09: Version 1.3.10
3482
3483 Fixed profiler on Mac in 64-bit mode.
3484
3485 Optimized creation of objects from simple constructor functions on
3486 ARM.
3487
3488 Fixed a number of debugger issues.
3489
3490 Reduced the amount of memory consumed by V8.
3491
3492
ager@chromium.org18ad94b2009-09-02 08:22:29 +000034932009-09-02: Version 1.3.9
3494
3495 Optimized stack guard checks on ARM.
3496
3497 Optimized API operations by inlining more in the API.
3498
3499 Optimized creation of objects from simple constructor functions.
3500
3501 Enabled a number of missing optimizations in the 64-bit port.
3502
3503 Implemented native-code support for regular expressions on ARM.
3504
3505 Stopped using the 'sahf' instruction on 64-bit machines that do
3506 not support it.
3507
3508 Fixed a bug in the support for forceful termination of JavaScript
3509 execution.
3510
3511
ager@chromium.org96c75b52009-08-26 09:13:16 +000035122009-08-26: Version 1.3.8
3513
3514 Changed the handling of idle notifications to allow idle
3515 notifications when V8 has not yet been initialized.
3516
3517 Fixed ARM simulator compilation problem on Windows.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003518
ager@chromium.org96c75b52009-08-26 09:13:16 +00003519
ager@chromium.orgab99eea2009-08-25 07:05:41 +000035202009-08-25: Version 1.3.7
3521
3522 Reduced the size of generated code on ARM platforms by reducing
3523 the size of constant pools.
3524
3525 Changed build files to not include the 'ENV' user environment
3526 variable in the build environment.
3527
3528 Changed the handling of idle notifications.
3529
3530
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +000035312009-08-21: Version 1.3.6
3532
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003533 Added support for forceful termination of JavaScript execution.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00003534
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003535 Added low memory notification to the API. The embedding host can signal
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00003536 a low memory situation to V8.
3537
3538 Changed the handling of global handles (persistent handles in the API
3539 sense) to avoid issues regarding allocation of new global handles
3540 during weak handle callbacks.
3541
3542 Changed the growth policy of the young space.
3543
3544 Fixed a GC issue introduced in version 1.3.5.
3545
3546
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000035472009-08-19: Version 1.3.5
3548
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003549 Optimized initialization of some arrays in the builtins.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00003550
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003551 Fixed mac-nm script to support filenames with spaces.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00003552
3553 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
3554
3555 Changed typeof RegExp from 'object' to 'function' for compatibility.
3556 Fixed bug where regexps were not callable across contexts.
3557
3558 Added context independent script compilation to the API.
3559
3560 Added API call to get the stack trace for an exception.
3561
3562 Added API for getting object mirrors.
3563
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003564 Made sure that SSE3 instructions are used whenever possible even when
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00003565 running off a snapshot generated without using SSE3 instructions.
3566
3567 Tweaked the handling of the initial size and growth policy of the heap.
3568
3569 Added native code generation for RegExp to 64-bit version.
3570
3571 Added JavaScript debugger support to 64-bit version.
3572
3573
ager@chromium.orgadd848f2009-08-13 12:44:13 +000035742009-08-13: Version 1.3.4
3575
3576 Added a readline() command to the d8 shell.
3577
3578 Fixed bug in json parsing.
3579
3580 Added idle notification to the API and reduced memory on idle
3581 notifications.
3582
3583
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +000035842009-08-12: Version 1.3.3
3585
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003586 Fixed issue 417: incorrect %t placeholder expansion.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003587
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003588 Added .gitignore file similar to Chromium's one.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003589
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003590 Fixed SConstruct file to build with new logging code for Android.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003591
3592 API: added function to find instance of template in prototype
3593 chain. Inlined Object::IsInstanceOf.
3594
3595 Land change to notify valgrind when we modify code on x86.
3596
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003597 Added api call to determine whether a string can be externalized.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003598
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003599 Added a write() command to d8.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003600
3601
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +000036022009-08-05: Version 1.3.2
3603
3604 Started new compiler infrastructure for two-pass compilation using a
3605 control flow graph constructed from the AST.
3606
3607 Profiler stack sampling for X64.
3608
3609 Safe handling of NaN to Posix platform-dependent time functions.
3610
3611 Added a new profiler control API to unify controlling various aspects
3612 of profiling.
3613
3614 Fixed issue 392.
3615
3616
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000036172009-07-30: Version 1.3.1
3618
3619 Speed improvements to accessors and interceptors.
3620
3621 Added support for capturing stack information on custom errors.
3622
3623 Added support for morphing an object into a pixel array where its
3624 indexed properties are stored in an external byte array. Values written
3625 are always clamped to the 0..255 interval.
3626
3627 Profiler on x64 now handles C/C++ functions from shared libraries.
3628
3629 Changed the debugger to avoid stepping into function.call/apply if the
3630 function is a built-in.
3631
3632 Initial implementation of constructor heap profile for JS objects.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003633
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00003634 More fine grained control of profiling aspects through the API.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003635
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00003636 Optimized the called as constructor check for API calls.
3637
3638
kasperl@chromium.orge959c182009-07-27 08:59:04 +000036392009-07-27: Version 1.3.0
3640
3641 Allowed RegExp objects to be called as functions (issue 132).
3642
3643 Fixed issue where global property cells would escape after
3644 detaching the global object; see http://crbug.com/16276.
3645
3646 Added support for stepping into setters and getters in the
3647 debugger.
3648
3649 Changed the debugger to avoid stopping in its own JavaScript code
3650 and in the code of built-in functions.
3651
3652 Fixed issue 345 by avoiding duplicate escaping labels.
3653
3654 Fixed ARM code generator crash in short-circuited boolean
3655 expressions and added regression tests.
3656
3657 Added an external allocation limit to avoid issues where small V8
3658 objects would hold on to large amounts of external memory without
3659 causing garbage collections.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003660
3661 Finished more of the inline caching stubs for x64 targets.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003662
3663
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000036642009-07-13: Version 1.2.14
3665
3666 Added separate paged heap space for global property cells and
3667 avoid updating the write barrier when storing into them.
3668
3669 Improved peep-hole optimization on ARM platforms by not emitting
3670 unnecessary debug information.
3671
3672 Re-enabled ICs for loads and calls that skip a global object
3673 during lookup through the prototype chain.
3674
3675 Allowed access through global proxies to use ICs.
3676
3677 Fixed issue 401.
3678
3679
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000036802009-07-09: Version 1.2.13
3681
3682 Fixed issue 397, issue 398, and issue 399.
3683
3684 Added support for breakpoint groups.
3685
3686 Fixed bugs introduced with the new global object representation.
3687
3688 Fixed a few bugs in the ARM code generator.
3689
3690
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000036912009-07-06: Version 1.2.12
3692
3693 Added stack traces collection to Error objects accessible through
3694 the e.stack property.
3695
3696 Changed RegExp parser to use a recursive data structure instead of
3697 stack-based recursion.
3698
3699 Optimized Date object construction and string concatenation.
3700
3701 Improved performance of div, mod, and mul on ARM platforms.
3702
3703
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000037042009-07-02: Version 1.2.11
3705
3706 Improved performance on IA-32 and ARM.
3707
3708 Fixed profiler sampler implementation on Mac OS X.
3709
3710 Changed the representation of global objects to improve
3711 performance of adding a lot of new properties.
3712
3713
ager@chromium.org3e875802009-06-29 08:26:34 +000037142009-06-29: Version 1.2.10
3715
3716 Improved debugger support.
3717
3718 Fixed bug in exception message reporting (issue 390).
3719
3720 Improved overall performance.
3721
3722
ager@chromium.org5aa501c2009-06-23 07:57:28 +000037232009-06-23: Version 1.2.9
3724
3725 Improved math performance on ARM.
3726
3727 Fixed profiler name-inference bug.
3728
3729 Fixed handling of shared libraries in the profiler tick processor
3730 scripts.
3731
3732 Fixed handling of tests that time out in the test scripts.
3733
3734 Fixed compilation on MacOS X version 10.4.
3735
3736 Fixed two bugs in the regular expression engine.
3737
3738 Fixed a bug in the string type inference.
3739
3740 Fixed a bug in the handling of 'constant function' properties.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003741
ager@chromium.org5aa501c2009-06-23 07:57:28 +00003742 Improved overall performance.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003743
ager@chromium.org5aa501c2009-06-23 07:57:28 +00003744
ager@chromium.orgeadaf222009-06-16 09:43:10 +000037452009-06-16: Version 1.2.8
3746
3747 Optimized math on ARM platforms.
3748
3749 Fixed two crash bugs in the handling of getters and setters.
3750
3751 Improved the debugger support by adding scope chain information.
3752
3753 Improved the profiler support by compressing log data transmitted
3754 to clients.
3755
3756 Improved overall performance.
3757
3758
ager@chromium.orge2902be2009-06-08 12:21:35 +000037592009-06-08: Version 1.2.7
3760
3761 Improved debugger and profiler support.
3762
3763 Reduced compilation time by improving the handling of deferred
3764 code.
3765
3766 Optimized interceptor accesses where the property is on the object
3767 on which the interceptors is attached.
3768
3769 Fixed compilation problem on GCC 4.4 by changing the stack
3770 alignment to 16 bytes.
3771
3772 Fixed handle creation to follow stric aliasing rules.
3773
3774 Fixed compilation on FreeBSD.
3775
3776 Introduced API for forcing the deletion of a property ignoring
3777 interceptors and attributes.
3778
3779
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +000037802009-05-29: Version 1.2.6
3781
3782 Added a histogram recording hit rates at different levels of the
3783 compilation cache.
3784
3785 Added stack overflow check for the RegExp analysis phase. Previously a
3786 very long regexp graph could overflow the stack with recursive calls.
3787
3788 Use a dynamic buffer when collecting log events in memory.
3789
3790 Added start/stop events to the profiler log.
3791
3792 Fixed infinite loop which could happen when setting a debug break while
3793 executing a RegExp compiled to native code.
3794
3795 Fixed handling of lastIndexOf called with negative index (issue 351).
3796
3797 Fixed irregular crash in profiler test (issue 358).
3798
3799 Fixed compilation issues with some versions of gcc.
3800
3801
kasperl@chromium.org71affb52009-05-26 05:44:31 +000038022009-05-26: Version 1.2.5
3803
3804 Fixed bug in initial boundary check for Boyer-Moore text
3805 search (issue 349).
3806
3807 Fixed compilation issues with MinGW and gcc 4.3+ and added support
3808 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
3809 Craig Schlenter.
3810
3811 Added a script cache to the debugger.
3812
3813 Optimized compilation performance by improving internal data
3814 structures and avoiding expensive property load optimizations for
3815 code that's infrequently executed.
3816
3817 Exposed the calling JavaScript context through the static API
3818 function Context::GetCalling().
3819
3820
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000038212009-05-18: Version 1.2.4
3822
3823 Improved performance of floating point number allocation for ARM
3824 platforms.
3825
3826 Fixed crash when using the instanceof operator on functions with
3827 number values in their prototype chain (issue 341).
3828
3829 Optimized virtual frame operations in the code generator to speed
3830 up compilation time and allocated the frames in the zone.
3831
3832 Made the representation of virtual frames and jump targets in the
3833 code generator much more compact.
3834
3835 Avoided linear search for non-locals in scope code when resolving
3836 variables inside with and eval scopes.
3837
3838 Optimized lexical scanner by dealing with whitespace as part of
3839 the token scanning instead of as a separate step before it.
3840
3841 Changed the scavenging collector so that promoted objects do not
3842 reside in the old generation while their remembered set is being
3843 swept for pointers into the young generation.
3844
3845 Fixed numeric overflow handling when compiling count operations.
3846
3847
ager@chromium.org9085a012009-05-11 19:22:57 +000038482009-05-11: Version 1.2.3
3849
3850 Fixed bug in reporting of out-of-memory situations.
3851
3852 Introduced hidden prototypes on certain builtin prototype objects
3853 such as String.prototype to emulate JSC's behavior of restoring
3854 the original function when deleting functions from those prototype
3855 objects.
3856
3857 Fixed crash bug in the register allocator.
3858
3859
ager@chromium.org5ec48922009-05-05 07:25:34 +000038602009-05-04: Version 1.2.2
3861
3862 Fixed bug in array sorting for sparse arrays (issue 326).
3863
3864 Added support for adding a soname when building a shared library
3865 on Linux (issue 151).
3866
3867 Fixed bug caused by morphing internal ASCII strings to external
3868 two-byte strings. Slices over ASCII strings have to forward ASCII
3869 checks to the underlying buffer string.
3870
3871 Allowed API call-as-function handlers to be called as
3872 constructors.
3873
3874 Fixed a crash bug where an external string was disposed but a
3875 slice of the external string survived as a symbol.
3876
3877
ager@chromium.org3a37e9b2009-04-27 09:26:21 +000038782009-04-27: Version 1.2.1
3879
3880 Added EcmaScript 5 JSON object.
3881
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003882 Fixed bug in preemption support on ARM.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003883
3884
ager@chromium.org65dad4b2009-04-23 08:48:43 +000038852009-04-23: Version 1.2.0
3886
3887 Optimized floating-point operations on ARM.
3888
3889 Added a number of extensions to the debugger API.
3890
3891 Changed the enumeration order for unsigned integer keys to always
3892 be numerical order.
3893
3894 Added a "read" extension to the shell sample.
3895
3896 Added support for Array.prototype.reduce and
3897 Array.prototype.reduceRight.
3898
3899 Added an option to the SCons build to control Microsoft Visual C++
3900 link-time code generation.
3901
3902 Fixed a number of bugs (in particular issue 315, issue 316,
3903 issue 317 and issue 318).
3904
3905
kasperl@chromium.org2d18d102009-04-15 13:27:32 +000039062009-04-15: Version 1.1.10
3907
3908 Fixed crash bug that occurred when loading a const variable in the
3909 presence of eval.
3910
3911 Allowed using with and eval in registered extensions in debug mode
3912 by fixing bogus assert.
3913
3914 Fixed the source position for function returns to enable the
3915 debugger to break there.
3916
3917
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +000039182009-04-14: Version 1.1.9
3919
3920 Made the stack traversal code in the profiler robust by avoiding
3921 to look into the heap.
3922
3923 Added name inferencing for anonymous functions to facilitate
3924 debugging and profiling.
3925
3926 Re-enabled stats timers in the developer shell (d8).
3927
3928 Fixed issue 303 by avoiding to shortcut cons-symbols.
3929
3930
kasperl@chromium.orgacae3782009-04-11 09:17:08 +000039312009-04-11: Version 1.1.8
3932
3933 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
3934
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003935 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00003936 the debugger (issue 269).
3937
3938 Fixed v8::Object::DeleteHiddenValue to not bail out when there
3939 are no hidden properties.
3940
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003941 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00003942 entries with deleted resources would lead to NPEs when looking
3943 up in the symbol table.
3944
3945
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +000039462009-04-07: Version 1.1.7
3947
3948 Added support for easily importing additional environment
3949 variables into the SCons build.
3950
3951 Optimized strict equality checks.
3952
3953 Fixed crash in indexed setters on objects without a corresponding
3954 getter (issue 298).
3955
3956 Re-enabled script compilation cache.
3957
3958
ager@chromium.org8682a592009-04-01 10:47:14 +000039592009-04-01: Version 1.1.6
3960
3961 Reverted an unsafe code generator change.
3962
3963
ager@chromium.org71daaf62009-04-01 07:22:49 +000039642009-04-01: Version 1.1.5
3965
3966 Fixed bug that caused function literals to not be optimized as
3967 much as other functions.
3968
3969 Improved profiler support.
3970
3971 Fixed a crash bug in connection with debugger unloading.
3972
3973 Fixed a crash bug in the code generator caused by losing the
3974 information that a frame element was copied.
3975
3976 Fixed an exception propagation bug that could cause non-null
3977 return values when exceptions were thrown.
3978
3979
ager@chromium.org41826e72009-03-30 13:30:57 +000039802009-03-30: Version 1.1.4
3981
3982 Optimized String.prototype.match.
3983
3984 Improved the stack information in profiles.
3985
3986 Fixed bug in ARM port making it possible to compile the runtime
3987 system for thumb mode again.
3988
3989 Implemented a number of optimizations in the code generator.
3990
3991 Fixed a number of memory leaks in tests.
3992
3993 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00003994 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +00003995
3996
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +000039972009-03-24: Version 1.1.3
3998
3999 Fixed assertion failures in compilation of loop conditions.
4000
4001 Removed STL dependency from developer shell (d8).
4002
4003 Added infrastructure for protecting the V8 heap from corruption
4004 caused by memory modifications from the outside.
4005
4006
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000040072009-03-24: Version 1.1.2
4008
4009 Improved frame merge code generated by the code generator.
4010
4011 Optimized String.prototype.replace.
4012
4013 Implemented __defineGetter__ and __defineSetter__ for properties
4014 with integer keys on non-array objects.
4015
4016 Improved debugger and profiler support.
4017
4018 Fixed a number of portability issues to allow compilation for
4019 smaller ARM devices.
4020
4021 Exposed object cloning through the API.
4022
4023 Implemented hidden properties. This is used to expose an identity
4024 hash for objects through the API.
4025
4026 Implemented restarting of regular expressions if their input
4027 string changes representation during preemption.
4028
4029 Fixed a code generator bug that could cause assignments in loops
4030 to be ignored if using continue to break out of the loop (issue
4031 284).
4032
4033
ager@chromium.org3a6061e2009-03-12 14:24:36 +000040342009-03-12: Version 1.1.1
4035
4036 Fixed an assertion in the new compiler to take stack overflow
4037 exceptions into account.
4038
4039 Removed exception propagation code that could cause crashes.
4040
4041 Fixed minor bug in debugger line number computations.
4042
4043 8-byte align the C stack on Linux and Windows to speed up floating
4044 point computations.
4045
4046
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000040472009-03-12: Version 1.1.0
4048
4049 Improved code generation infrastructure by doing simple register
4050 allocation and constant folding and propagation.
4051
4052 Optimized regular expression matching by avoiding to create
4053 intermediate string arrays and by flattening nested array
4054 representations of RegExp data.
4055
4056 Traverse a few stack frames when recording profiler samples to
4057 include partial call graphs in the profiling output.
4058
4059 Added support for using OProfile to profile generated code.
4060
4061 Added remote debugging support to the D8 developer shell.
4062
4063 Optimized creation of nested literals like JSON objects.
4064
4065 Fixed a bug in garbage collecting unused maps and turned it on by
4066 default (--collect-maps).
4067
4068 Added support for running tests under Valgrind.
4069
4070
kasperl@chromium.org061ef742009-02-27 12:16:20 +000040712009-02-27: Version 1.0.3
4072
4073 Optimized double-to-integer conversions in bit operations by using
4074 SSE3 instructions if available.
4075
4076 Optimized initialization sequences that store to multiple
4077 properties of the same object.
4078
4079 Changed the D8 debugger frontend to use JSON messages.
4080
4081 Force garbage collections when disposing contexts.
4082
4083 Align code objects at 32-byte boundaries.
4084
4085
ager@chromium.org381abbb2009-02-25 13:23:22 +000040862009-02-25: Version 1.0.2
4087
4088 Improved profiling support by performing simple call stack
4089 sampling for ticks and by fixing a bug in the logging of code
4090 addresses.
4091
4092 Fixed a number of debugger issues.
4093
4094 Optimized code that uses eval.
4095
4096 Fixed a couple of bugs in the regular expression engine.
4097
4098 Reduced the size of generated code for certain regular expressions.
4099
4100 Removed JSCRE completely.
4101
4102 Fixed issue where test could not be run if there was a dot in the
4103 checkout path.
4104
4105
ager@chromium.org6f10e412009-02-13 10:11:16 +000041062009-02-13: Version 1.0.1
4107
4108 Fixed two crash-bugs in irregexp (issue 231 and 233).
4109
4110 Fixed a number of minor bugs (issue 87, 227 and 228).
4111
4112 Added support for morphing strings to external strings on demand
4113 to avoid having to create copies in the embedding code.
4114
4115 Removed experimental support for external symbol callbacks.
4116
4117
iposva@chromium.org245aa852009-02-10 00:49:54 +000041182009-02-09: Version 1.0.0
4119
4120 Fixed crash-bug in the code generation for case independent 16 bit
4121 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004122
iposva@chromium.org245aa852009-02-10 00:49:54 +00004123 Made shells more robust in the presence of string conversion
4124 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004125
iposva@chromium.org245aa852009-02-10 00:49:54 +00004126 Fixed a potential infinite loop when attempting to resolve
4127 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004128
iposva@chromium.org245aa852009-02-10 00:49:54 +00004129 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004130
iposva@chromium.org245aa852009-02-10 00:49:54 +00004131 Reduced binary by stripping unneeded text from JavaScript library and
4132 minifying some JavaScript files.
4133
4134
ager@chromium.orgddb913d2009-01-27 10:01:48 +000041352009-01-27: Version 0.4.9
4136
4137 Enabled new regular expression engine.
4138
4139 Made a number of changes to the debugger protocol.
4140
4141 Fixed a number of bugs in the preemption support.
4142
4143 Added -p option to the developer shell to run files in parallel
4144 using preemption.
4145
4146 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
4147 193, 198 and 201).
4148
4149 Fixed a number of bugs in the serialization/deserialization
4150 support for the ARM platform.
4151
4152
sgjesse@chromium.org715915b2009-01-19 16:08:47 +000041532009-01-19: Version 0.4.8.1
4154
4155 Minor patch to debugger support.
4156
4157
ager@chromium.org32912102009-01-16 10:38:43 +000041582009-01-16: Version 0.4.8
4159
4160 Fixed string length bug on ARM (issue 171).
4161
4162 Made most methods in the API const.
4163
4164 Optimized object literals by improving data locality.
4165
4166 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00004167 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +00004168
4169 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00004170 eval to behave incorrectly when using accessors (issues 186, 190
4171 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +00004172
4173
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000041742009-01-06: Version 0.4.7
4175
ager@chromium.org32912102009-01-16 10:38:43 +00004176 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004177
ager@chromium.org32912102009-01-16 10:38:43 +00004178 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004179
ager@chromium.org32912102009-01-16 10:38:43 +00004180 Fixed subtle bug that caused the wrong 'this' to be used when
4181 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004182
ager@chromium.org32912102009-01-16 10:38:43 +00004183 Inline array loads within loops directly in the code instead of
4184 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004185
ager@chromium.org32912102009-01-16 10:38:43 +00004186
ager@chromium.org8bb60582008-12-11 12:02:20 +000041872008-12-11: Version 0.4.6
4188
4189 Fixed exception reporting bug where certain exceptions were
4190 incorrectly reported as uncaught.
4191
4192 Improved the memory allocation strategy used during compilation to
4193 make running out of memory when compiling huge scripts less
4194 likely.
4195
4196 Optimized String.replace by avoiding the construction of certain
4197 sub strings.
4198
4199 Fixed bug in code generation for large switch statements on ARM.
4200
4201 Fixed bug that caused V8 to change the global object template
4202 passed in by the user.
4203
4204 Changed the API for creating object groups used during garbage
4205 collection. Entire object groups are now passed to V8 instead of
4206 individual members of the groups.
4207
ager@chromium.org32912102009-01-16 10:38:43 +00004208
ager@chromium.orga74f0da2008-12-03 16:05:52 +000042092008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004210
ager@chromium.orga74f0da2008-12-03 16:05:52 +00004211 Added experimental API support for allocating V8 symbols as
4212 external strings.
4213
4214 Fixed bugs in debugging support on ARM.
4215
4216 Changed eval implementation to correctly detect whether or not a
4217 call to eval is aliased.
4218
4219 Fixed bug caused by a combination of the compilation cache and
4220 dictionary probing in native code. The bug caused us to sometimes
4221 call functions that had not yet been compiled.
4222
4223 Added platform support for FreeBSD.
4224
4225 Added support for building V8 on Windows with either the shared or
4226 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +00004227
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004228 Added the v8::jscre namespace around the jscre functions to avoid
4229 link errors (duplicate symbols) when building Google Chrome.
4230
ager@chromium.orga74f0da2008-12-03 16:05:52 +00004231 Added support for calling a JavaScript function with the current
4232 debugger execution context as its argument to the debugger
4233 interface.
4234
4235 Changed the type of names of counters from wchar_t to char.
4236
4237 Changed the Windows system call used to compute daylight savings
4238 time. The system call that we used to use became four times
4239 slower on WinXP SP3.
4240
4241 Added support in the d8 developer shell for memory-mapped counters
4242 and added a stats-viewer tool.
4243
4244 Fixed bug in upper/lower case mappings (issue 149).
4245
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004246
ager@chromium.org3bf7b912008-11-17 09:09:45 +000042472008-11-17: Version 0.4.4
4248
4249 Reduced code size by using shorter instruction encoding when
4250 possible.
4251
4252 Added a --help option to the shell sample and to the d8 shell.
4253
4254 Added visual studio project files for building the ARM simulator.
4255
4256 Fixed a number of ARM simulator issues.
4257
4258 Fixed bug in out-of-memory handling on ARM.
4259
4260 Implemented shell support for passing arguments to a script from
4261 the command line.
4262
4263 Fixed bug in date code that made certain date functions return -0
4264 instead of 0 for dates before the epoch.
4265
4266 Restricted applications of eval so it can only be used in the
4267 context of the associated global object.
4268
4269 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +00004270
4271
ager@chromium.org870a0b62008-11-04 11:43:05 +000042722008-11-04: Version 0.4.3
4273
4274 Added support for API accessors that prohibit overwriting by
4275 accessors defined in JavaScript code by using __defineGetter__ and
4276 __defineSetter__.
4277
4278 Improved handling of conditionals in test status files.
4279
4280 Introduced access control in propertyIsEnumerable.
4281
4282 Improved performance of some string operations by caching
4283 information about the type of the string between operations.
4284
4285 Fixed bug in fast-case code for switch statements that only have
4286 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +00004287
ager@chromium.org870a0b62008-11-04 11:43:05 +00004288
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000042892008-10-30: Version 0.4.2
4290
4291 Improved performance of Array.prototype.concat by moving the
4292 implementation to C++ (issue 123).
4293
4294 Fixed heap growth policy to avoid growing old space to its maximum
4295 capacity before doing a garbage collection and fixed issue that
4296 would lead to artificial out of memory situations (issue 129).
4297
4298 Fixed Date.prototype.toLocaleDateString to return the date in the
4299 same format as WebKit.
4300
4301 Added missing initialization checks to debugger API.
4302
4303 Added removing of unused maps during GC.
4304
4305
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000043062008-10-28: Version 0.4.1
4307
4308 Added caching of RegExp data in compilation cache.
4309
4310 Added Visual Studio project file for d8 shell.
4311
4312 Fixed function call performance regression introduced in version
4313 0.4.0 when splitting the global object in two parts (issue 120).
4314
4315 Fixed issue 131 by checking for empty handles before throwing and
4316 reporting exceptions.
4317
4318
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000043192008-10-23: Version 0.4.0
4320
4321 Split the global object into two parts: The state holding global
4322 object and the global object proxy.
4323
4324 Fixed bug that affected the value of an assignment to an element
4325 in certain cases (issue 116).
4326
4327 Added GetPropertyNames functionality (issue 33) and extra Date
4328 functions (issue 77) to the API.
4329
4330 Changed WeakReferenceCallback to take a Persistent<Value> instead
4331 of a Persistent<Object> (issue 101).
4332
4333 Fixed issues with message reporting for exceptions in try-finally
4334 blocks (issues 73 and 75).
4335
ager@chromium.org32912102009-01-16 10:38:43 +00004336 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004337
4338 Improved Boyer-Moore implementation for faster indexOf operations.
4339
4340 Added development shell (d8) which includes counters and
4341 completion support.
4342
4343 Fixed problem with the receiver passed to functions called from
4344 eval (issue 124).
4345
4346
ager@chromium.org7c537e22008-10-16 08:43:32 +000043472008-10-16: Version 0.3.5
4348
4349 Improved string hash-code distribution by excluding bit-field bits
4350 from the hash-code.
4351
4352 Changed string search algorithm used in indexOf from KMP to
4353 Boyer-Moore.
4354
4355 Improved the generated code for the instanceof operator.
4356
4357 Improved performance of slow-case string equality checks by
4358 specializing the code based on the string representation.
4359
4360 Improve the handling of out-of-memory situations (issue 70).
4361
4362 Improved performance of strict equality checks.
4363
4364 Improved profiler output to make it easier to see anonymous
4365 functions.
4366
4367 Improved performance of slow-case keyed loads.
4368
4369 Improved property access performance by allocating a number of
4370 properties in the front object.
4371
4372 Changed the toString behavior on the built-in object constructors
4373 to print [native code] instead of the actual source. Some web
4374 applications do not like constructors with complex toString
4375 results.
ager@chromium.org32912102009-01-16 10:38:43 +00004376
ager@chromium.org7c537e22008-10-16 08:43:32 +00004377
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000043782008-10-06: Version 0.3.4
4379
4380 Changed Array.prototype.sort to use quick sort.
4381
4382 Fixed code generation issue where leaving a finally block with
4383 break or continue would accumulate elements on the expression
4384 stack (issue 86).
4385
4386 Made sure that the name accessor on functions returns the expected
4387 names for builtin JavaScript functions and C++ callback functions.
4388
4389 Added fast case code for extending the property storage array of
4390 JavaScript objects.
4391
4392 Ported switch statement optimizations introduced in version 0.3.3
4393 to the ARM code generator.
4394
4395 Allowed GCC to use strict-aliasing rules when compiling.
4396
4397 Improved performance of arguments object allocation by taking care
4398 of arguments adaptor frames in the generated code.
4399
4400 Updated the V8 benchmark suite to version 2.
4401
4402
ager@chromium.org236ad962008-09-25 09:45:57 +000044032008-09-25: Version 0.3.3
4404
4405 Improved handling of relocation information to enable more
4406 peep-hole optimizations.
4407
4408 Optimized switch statements where all labels are constant small
4409 integers.
4410
4411 Optimized String.prototype.indexOf for common cases.
4412
4413 Fixed more build issues (issue 80).
4414
4415 Fixed a couple of profiler issues.
4416
4417 Fixed bug where the body of a function created using the Function
4418 constructor was not allowed to end with a single-line comment
4419 (issue 85).
4420
4421 Improved handling of object literals by canonicalizing object
4422 literal maps. This will allow JSON objects with the same set of
4423 properties to share the same map making inline caching work better
4424 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +00004425
ager@chromium.org236ad962008-09-25 09:45:57 +00004426
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000044272008-09-17: Version 0.3.2
4428
4429 Generalized the EvalCache into a CompilationCache and enabled it
4430 for scripts too. The current strategy is to retire all entries
4431 whenever a mark-sweep collection is started.
4432
4433 Fixed bug where switch statements containing only a default case
4434 would lead to an unbalanced stack (issue 69).
4435
4436 Fixed bug that made access to the function in a named function
4437 expression impossible in certain situations (issue 24).
4438
4439 Fixed even more build issues.
4440
4441 Optimized calling conventions on ARM. The conventions on ARM and
4442 IA-32 now match.
4443
4444 Removed static initializers for flags and counters.
4445
4446 Improved inline caching behavior for uncommon cases where lazily
4447 loading Date and RegExp code could force certain code paths go
4448 megamorphic.
4449
4450 Removed arguments adaption for builtins written in C++. This
4451 makes Array.prototype.push and Array.prototype.pop slightly
4452 faster.
4453
4454
ager@chromium.org9258b6b2008-09-11 09:11:10 +000044552008-09-11: Version 0.3.1
4456
4457 Fixed a number of build issues.
4458
4459 Fixed problem with missing I-cache flusing on ARM.
4460
4461 Changed space layout in memory management by splitting up
4462 code space into old data space and code space.
4463
4464 Added utf-8 conversion support to the API (issue 57).
4465
4466 Optimized repeated calls to eval with the same strings. These
4467 repeated calls are common in web applications.
4468
4469 Added Xcode project file.
4470
4471 Optimized a couple of Array operation.
4472
4473 Fixed parser bug by checking for end-of-string when parsing break
4474 and continue (issue 35).
4475
4476 Fixed problem where asian characters were not categorized as
4477 letters.
4478
4479 Fixed bug that disallowed calling functions fetched from an array
4480 using a string as an array index (issue 32).
4481
4482 Fixed bug where the internal field count on object templates were
4483 sometimes ignored (issue 54).
4484
4485 Added -f option to the shell sample for compatibility with other
4486 engines (issue 18).
4487
4488 Added source info to TryCatches in the API.
4489
4490 Fixed problem where the seed for the random number generator was
4491 clipped in a double to unsigned int conversion.
4492
4493 Fixed bug where cons string symbols were sometimes converted to
4494 non-symbol flat strings during GC.
4495
4496 Fixed bug in error reporting when attempting to convert null to an
4497 object.
ager@chromium.org32912102009-01-16 10:38:43 +00004498
4499
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000045002008-09-04: Version 0.3.0
4501
4502 Added support for running tests on the ARM simulator.
4503
4504 Fixed bug in the 'in' operator where negative indices were not
4505 treated correctly.
4506
4507 Fixed build issues on gcc-4.3.1.
4508
4509 Changed Date.prototype.toLocaleTimeString to not print the
4510 timezone part of the time.
4511
4512 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
4513 with user code.
4514
4515
v8.team.kasperl727e9952008-09-02 14:56:44 +000045162008-09-02: Version 0.2.5
4517
4518 Renamed the top level directory 'public' to 'include'.
4519
4520 Added 'env' option to the SCons build scripts to support
4521 overriding the ENV part of the build environment. This is mostly
4522 to support Windows builds in cases where SCons cannot find the
4523 correct paths to the Windows SDK, as these paths cannot be passed
4524 through shell environment variables.
4525
4526 Enabled "Buffer Security Check" on for the Windows SCons build and
4527 added the linker option /OPT:ICF as an optimization.
4528
4529 Added the V8 benchmark suite to the repository.
4530
4531
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000045322008-09-01: Version 0.2.4
4533
4534 Included mjsunit JavaScript test suite and C++ unit tests.
4535
4536 Changed the shell sample to not print the result of executing a
4537 script provided on the command line.
4538
4539 Fixed issue when building samples on Windows using a shared V8
4540 library. Added visibility option on Linux build which makes the
4541 generated library 18% smaller.
4542
4543 Changed build system to accept multiple build modes in one build
4544 and generate separate objects, libraries and executables for each
4545 mode.
4546
4547 Removed deferred negation optimization (a * -b => -(a * b)) since
4548 this visibly changes operand conversion order.
4549
4550 Improved parsing performance by introducing stack guard in
4551 preparsing. Without a stack guard preparsing always bails out
4552 with stack overflow.
4553
4554 Changed shell sample to take flags directly from the command-line.
4555 Added API call that implements this.
4556
4557 Added load, quit and version functions to the shell sample so it's
4558 easier to run benchmarks and tests.
4559
4560 Fixed issue with building samples and cctests on 64-bit machines.
4561
4562 Fixed bug in the runtime system where the prototype chain was not
4563 always searched for a setter when setting a property that does not
4564 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +00004565
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00004566
mads.s.agercbaa0602008-08-14 13:41:48 +000045672008-08-14: Version 0.2.3
4568
4569 Improved performance of garbage collection by moving the
4570 function that updates pointers during compacting collection
4571 into the updating visitor. This gives the compiler a better
4572 chance to inline and avoid a function call per (potential)
4573 pointer.
4574
4575 Extended the shell sample with a --runtime-flags option.
4576
4577 Added Visual Studio project files for the shell.cc and
4578 process.cc samples.
4579
4580
45812008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +00004582
4583 Improved performance of garbage collection by changing the way
4584 we use the marking stack in the event of stack overflow during
4585 full garbage collection and by changing the way we mark roots.
4586
4587 Cleaned up ARM version by removing top of stack caching and by
4588 introducing push/pop elimination.
4589
4590 Cleaned up the way runtime functions are called to allow
4591 runtime calls with no arguments.
4592
4593 Changed Windows build options to make sure that exceptions are
4594 disabled and that optimization flags are enabled.
4595
4596 Added first version of Visual Studio project files.
4597
4598
mads.s.agercbaa0602008-08-14 13:41:48 +000045992008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00004600
4601 Improved performance of unary addition by avoiding runtime calls.
4602
4603 Fixed the handling of '>' and '<=' to use right-to-left conversion
4604 and left-to-right evaluation as specified by ECMA-262.
4605
4606 Fixed a branch elimination bug on the ARM platform where incorrect
4607 code was generated because of overly aggressive branch
4608 elimination.
4609
4610 Improved performance of code that repeatedly assigns the same
4611 function to the same property of different objects with the same
4612 map.
4613
4614 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
4615 no longer expects DEBUG to be defined.
4616
4617 Added platform-nullos.cc to serve as the basis for new platform
4618 implementations.
4619
mads.s.ager31e71382008-08-13 09:32:07 +00004620
mads.s.agercbaa0602008-08-14 13:41:48 +000046212008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +00004622
4623 Changed all text files to have native svn:eol-style.
4624
4625 Added a few samples and support for building them. The samples
4626 include a simple shell that can be used to benchmark and test V8.
4627
4628 Changed V8::GetVersion to return the version as a string.
4629
4630 Added source for lazily loaded scripts to snapshots and made
4631 serialization non-destructive.
4632
4633 Improved ARM support by fixing the write barrier code to use
4634 aligned loads and stores and by removing premature locals
4635 optimization that relied on broken support for callee-saved
4636 registers (removed).
4637
4638 Refactored the code for marking live objects during garbage
4639 collection and the code for allocating objects in paged
4640 spaces. Introduced an abstraction for the map word of a heap-
4641 allocated object and changed the memory allocator to allocate
4642 executable memory only for spaces that may contain code objects.
4643
4644 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
4645 they can be used by debugging and logging modules. Added
4646 thread-safe message queues for dealing with debugger events.
4647
4648 Fixed the source code reported by toString for certain builtin
4649 empty functions and made sure that the prototype property of a
4650 function is enumerable.
4651
4652 Improved performance of converting values to condition flags in
4653 generated code.
4654
4655 Merged disassembler-{arch} files.
4656
4657
mads.s.agercbaa0602008-08-14 13:41:48 +000046582008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +00004659
4660 Added support for storing JavaScript stack traces in a stack
4661 allocated buffer to make it visible in shallow core dumps.
4662 Controlled by the --preallocate-message-memory flag which is
4663 disabled by default.
4664
4665
mads.s.agercbaa0602008-08-14 13:41:48 +000046662008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00004667
4668 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
4669 map transitions would count as properties.
4670
4671 Allowed aliased eval invocations by treating them as evals in the
4672 global context. This may change in the future.
4673
4674 Added support for accessing the last entered context through the
4675 API and renamed Context::Current to Context::GetCurrent and
4676 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
4677
4678 Fixed bug in the debugger that would cause the debugger scripts to
4679 be recursively loaded and changed all disabling of interrupts to
4680 be block-structured.
4681
4682 Made snapshot data read-only to allow it to be more easily shared
4683 across multiple users of V8 when linked as a shared library.
4684
4685
mads.s.agercbaa0602008-08-14 13:41:48 +000046862008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00004687
4688 Fixed building on Mac OS X by recognizing i386 and friends as
4689 IA-32 platforms.
4690
4691 Added propagation of stack overflow exceptions that occur while
4692 compiling nested functions.
4693
4694 Improved debugger with support for recursive break points and
4695 handling of exceptions that occur in the debugger JavaScript code.
4696
4697 Renamed GetInternal to GetInternalField and SetInternal to
4698 SetInternalField in the API and moved InternalFieldCount and
4699 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
4700
4701
mads.s.agercbaa0602008-08-14 13:41:48 +000047022008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00004703
4704 Fixed bug in stack overflow check code for IA-32 targets where a
4705 non-tagged value in register eax was pushed to the stack.
4706
4707 Fixed potential quadratic behavior when converting strings to
4708 numbers.
4709
4710 Fixed bug where the return value from Object::SetProperty could
4711 end up being the property holder instead of the written value.
4712
4713 Improved debugger support by allowing nested break points and by
4714 dealing with stack-overflows when compiling functions before
4715 setting break points in them.
4716
4717
mads.s.agercbaa0602008-08-14 13:41:48 +000047182008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004719
kasper.lundbd3ec4e2008-07-09 11:06:54 +00004720 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004721
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00004722# Local Variables:
4723# mode:text
4724# End: