blob: eb64afbe6e8bcebd3c4748edf829b263287a5421 [file] [log] [blame]
mvstanton@chromium.org6bec0092013-01-23 13:46:53 +000012013-01-23: Version 3.16.8
2
3 Correctly reset lastIndex in an RegExp object.
4 (Chromium issue 170856)
5
6 Added a workaround for Windows compilation problems related to V8EXPORT.
7 (issue 2507)
8
9 tools/run-tests.py: shlex.split() the value of --command-prefix
10 (Chromium issue 171553)
11
12 Fixed pattern detection for replacing shifts by rotation.
13 (Chromium issue 2499)
14
15 Performance and stability improvements on all platforms.
16
17
yangguo@chromium.org28381b42013-01-21 14:39:38 +0000182013-01-21: Version 3.16.7
19
20 Removed <(library) usage from v8.gyp.
21 (Chromium issue 111541)
22
23 Fixed out of bounds memory access in TestJSArrayForAllocationSiteInfo.
24 (Chromium issue 169928)
25
26 Performance and stability improvements on all platforms.
27
28
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000292013-01-18: Version 3.16.6
30
31 Made the Isolate parameter mandatory in Locker and Unlocker classes.
32 (issue 2487)
33
34 Avoid pointer underflow in CopyCharsUnsigned.
35 (issue 2493)
36
37 Generate shim headers when using system v8.
38 (Chromium issue 165264)
39
40 Fixed arguments materialization for inlined apply().
41 (issue 2489)
42
43 Sync'ed laziness between BuildFunctionInfo and MakeFunctionInfo.
44 (Chromium issue 147497)
45
46 Added sanity check to CodeFlusher::AddCandidate.
47 (Chromium issue 169209)
48
49 Performance and stability improvements on all platforms.
50
51
522013-01-15: Version 3.16.5
53
54 Removed deprecated functions from V8's external API.
55
56 Prepared API for WebKit use of Latin-1.
57
58 Fixed V8 issue 2486.
59
60 Fixed Chromium issue 169723.
61
62 Performance and stability improvements on all platforms.
63
64
yangguo@chromium.org9768bf12013-01-11 14:51:07 +0000652013-01-11: Version 3.16.4
66
67 Fixed Chromium issues 168545 and 169209.
68
69 Performance and stability improvements on all platforms.
70
71
jkummerow@chromium.org59297c72013-01-09 16:32:23 +0000722013-01-09: Version 3.16.3
73
74 Improved GC performance when moving parts of a FixedArray (issue 2452).
75
76 Enabled readline on d8 while building a shared lib (issue 1781).
77
78 Fixed missing exception check in typed array constructor
79 (Chromium issue 168545).
80
81 Check for read-only-ness when preparing for array sort (issue 2419).
82
83 Performance and stability improvements on all platforms.
84
85
yangguo@chromium.org4cd70b42013-01-04 08:57:54 +0000862013-01-04: Version 3.16.2
87
88 Added Makefile options to build for the Raspberry Pi (armv7=0,
89 arm_fpu=vfp2).
90
91 Performance and stability improvements on all platforms.
92
93
ulan@chromium.org4121f232012-12-27 15:57:11 +0000942012-12-27: Version 3.16.1
95
96 Fixed x64 MathMinMax for negative untagged int32 arguments.
97 (Chromium issue 164442)
98
99 Fixed FloatingPointHelper::CheckSSE2OperandIsInt32.
100 (issue 2458)
101
102 Performance and stability improvements on all platforms.
103
104
yangguo@chromium.org9b8fc9f2012-12-21 13:47:00 +00001052012-12-21: Version 3.16.0
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +0000106
107 V8_Fatal now prints C++ stack trace in debug mode.
108
109 Added HTML-based tick processor.
110
111 Continued implementation of Object.observe (V8 issue 2409).
112
113 Fixed V8 issues 2243, 2340, 2393, 2399, 2457.
114
115 Fixed Chromium issues 125308, 165637, 166379, 166553.
116
117 Performance and stability improvements on all platforms.
118
119
jkummerow@chromium.org5323a9c2012-12-10 19:00:50 +00001202012-12-10: Version 3.15.11
121
122 Define CAN_USE_VFP2/3_INSTRUCTIONS based on arm_neon and arm_fpu GYP
123 flags.
124
125 Performance and stability improvements on all platforms.
126
127
rossberg@chromium.orgcddc71f2012-12-07 12:40:13 +00001282012-12-07: Version 3.15.10
129
130 Enabled optimisation of functions inside eval. (issue 2315)
131
132 Fixed spec violations in methods of Number.prototype. (issue 2443)
133
134 Added GCTracer metrics for a scavenger GC for DOM wrappers.
135
136 Performance and stability improvements on all platforms.
137
138
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +00001392012-12-06: Version 3.15.9
140
141 Fixed candidate eviction in code flusher.
142 (Chromium issue 159140)
143
144 Iterate through all arguments for side effects in Math.min/max.
145 (issue 2444)
146
147 Fixed spec violations related to regexp.lastIndex
148 (issue 2437, issue 2438)
149
150 Performance and stability improvements on all platforms.
151
152
mmassi@chromium.org49a44672012-12-04 13:52:03 +00001532012-12-04: Version 3.15.8
154
155 Enforced stack allocation of TryCatch blocks.
156 (issue 2166,chromium:152389)
157
158 Fixed external exceptions in external try-catch handlers.
159 (issue 2166)
160
161 Activated incremental code flushing by default.
162
163 Performance and stability improvements on all platforms.
164
165
svenpanne@chromium.org83130cf2012-11-30 10:13:25 +00001662012-11-30: Version 3.15.7
167
168 Activated code aging by default.
169
170 Included more information in --prof log.
171
172 Removed eager sweeping for lazy swept spaces. Try to find in
173 SlowAllocateRaw a bounded number of times a big enough memory slot.
174 (issue 2194)
175
176 Performance and stability improvements on all platforms.
177
178
danno@chromium.org1f34ad32012-11-26 14:53:56 +00001792012-11-26: Version 3.15.6
180
181 Ensure double arrays are filled with holes when extended from
182 variations of empty arrays. (Chromium issue 162085)
183
184 Performance and stability improvements on all platforms.
185
186
ulan@chromium.org8e8d8822012-11-23 14:36:46 +00001872012-11-23: Version 3.15.5
188
189 Fixed JSON.stringify for objects with interceptor handlers.
190 (Chromium issue 161028)
191
192 Fixed corner case in x64 compare stubs. (issue 2416)
193
194 Performance and stability improvements on all platforms.
195
196
yangguo@chromium.orgfb377212012-11-16 14:43:43 +00001972012-11-16: Version 3.15.4
198
199 Fixed Array.prototype.join evaluation order. (issue 2263)
200
201 Perform CPU sampling by CPU sampling thread only iff processing thread
202 is not running. (issue 2364)
203
204 When using an Object as a set in Object.getOwnPropertyNames, null out
205 the proto. (issue 2410)
206
207 Disabled EXTRA_CHECKS in Release build.
208
209 Heap explorer: Show representation of strings.
210
211 Removed 'type' and 'arguments' properties from Error object.
212 (issue 2397)
213
214 Added atomics implementation for ThreadSanitizer v2.
215 (Chromium issue 128314)
216
217 Fixed LiveEdit crashes when object/array literal is added. (issue 2368)
218
219 Performance and stability improvements on all platforms.
220
221
yangguo@chromium.orgeeb44b62012-11-13 13:56:09 +00002222012-11-13: Version 3.15.3
223
224 Changed sample shell to send non-JS output (e.g. errors) to stderr
225 instead of stdout.
226
227 Correctly check for stack overflow even when interrupt is pending.
228 (issue 214)
229
230 Collect stack trace on stack overflow. (issue 2394)
231
232 Performance and stability improvements on all platforms.
233
234
mvstanton@chromium.orge4ac3ef2012-11-12 14:53:34 +00002352012-11-12: Version 3.15.2
236
237 Function::GetScriptOrigin supplies sourceURL when script name is
238 not available. (Chromium issue 159413)
239
240 Made formatting error message side-effect-free. (issue 2398)
241
242 Fixed length check in JSON.stringify. (Chromium issue 160010)
243
244 ES6: Added support for Set and Map clear method (issue 2400)
245
246 Fixed slack tracking when instance prototype changes.
247 (Chromium issue 157019)
248
249 Fixed disabling of code flusher while marking. (Chromium issue 159140)
250
251 Added a test case for object grouping in a scavenger GC (issue 2077)
252
253 Support shared library build of Android for v8.
254 (Chromium issue 158821)
255
256 ES6: Added support for size to Set and Map (issue 2395)
257
258 Performance and stability improvements on all platforms.
259
260
verwaest@chromium.orge4ee6de2012-11-06 12:13:00 +00002612012-11-06: Version 3.15.1
262
263 Put incremental code flushing behind a flag. (Chromium issue 159140)
264
265 Performance and stability improvements on all platforms.
266
267
danno@chromium.org72204d52012-10-31 10:02:10 +00002682012-10-31: Version 3.15.0
269
270 Loosened aligned code target requirement on ARM (issue 2380)
271
272 Fixed JSON.parse to treat leading zeros correctly.
273 (Chromium issue 158185)
274
275 Performance and stability improvements on all platforms.
276
277
rossberg@chromium.org89e18f52012-10-22 13:09:53 +00002782012-10-22: Version 3.14.5
279
280 Killed off the SCons based build.
281
282 Added a faster API for creating v8::Integer objects.
283
284 Speeded up function deoptimization by avoiding quadratic pass over
285 optimized function list. (Chromium issue 155270)
286
287 Always invoke the default Array.sort functions from builtin functions.
288 (issue 2372)
289
290 Reverted recent CPU profiler changes because they broke --prof.
291 (issue 2364)
292
293 Switched code flushing to use different JSFunction field.
294 (issue 1609)
295
296 Performance and stability improvements on all platforms.
297
298
svenpanne@chromium.orgc859c4f2012-10-15 11:51:39 +00002992012-10-15: Version 3.14.4
300
301 Allow evals for debugger even if they are prohibited in the debugee
302 context. (Chromium issue 154733)
303
304 Enabled --verify-heap in release mode (issue 2120)
305
306 Performance and stability improvements on all platforms.
307
308
jkummerow@chromium.orgc1956672012-10-11 15:57:38 +00003092012-10-11: Version 3.14.3
310
311 Use native context to retrieve ErrorMessageForCodeGenerationFromStrings
312 (Chromium issue 155076).
313
314 Bumped variable limit further to 2^17 (Chromium issue 151625).
315
316 Performance and stability improvements on all platforms.
317
318
verwaest@chromium.org33e09c82012-10-10 17:07:22 +00003192012-10-10: Version 3.14.2
320
321 ARM: allowed VFP3 instructions when hardfloat is enabled.
322 (Chromium issue 152506)
323
324 Fixed instance_descriptors() and PushStackTraceAndDie regressions.
325 (Chromium issue 151749)
326
327 Made GDBJIT interface compile again. (issue 1804)
328
329 Fixed Accessors::FunctionGetPrototype's proto chain traversal.
330 (Chromium issue 143967)
331
332 Made sure that names of temporaries do not clash with real variables.
333 (issue 2322)
334
335 Rejected local module declarations. (Chromium issue 150628)
336
337 Rejected uses of lexical for-loop variable on the RHS. (issue 2322)
338
339 Fixed slot recording of code target patches.
340 (Chromium issue 152615,chromium:144230)
341
342 Changed the Android makefile to use GCC 4.6 instead of GCC 4.4.3.
343
344 Performance and stability improvements on all platforms.
345
346
jkummerow@chromium.org7a96c2a2012-10-01 16:24:39 +00003472012-10-01: Version 3.14.1
348
349 Don't set -m32 flag when compiling with Android ARM compiler.
350 (Chromium issue 143889)
351
352 Restore the descriptor array before returning allocation failure.
353 (Chromium issue 151750)
354
355 Lowered kMaxVirtualRegisters (v8 issue 2139, Chromium issues 123822 and
356 128252).
357
358 Pull more recent gyp in 'make dependencies'.
359
360 Made sure that the generic KeyedStoreIC changes length and element_kind
361 atomically (issue 2346).
362
363 Bumped number of allowed variables per scope to 65535, to address GWT.
364 (Chromium issue 151625)
365
366 Support sourceURL for dynamically inserted scripts (issue 2342).
367
368 Performance and stability improvements on all platforms.
369
370
ulan@chromium.org56c14af2012-09-20 12:51:09 +00003712012-09-20: Version 3.14.0
372
373 Fixed missing slot recording during clearing of CallICs.
374 (Chromium issue 144230)
375
376 Fixed LBoundsCheck on x64 to handle (stack slot + constant) correctly.
377 (Chromium issue 150729)
378
379 Fixed minus zero test. (Issue 2133)
380
381 Fixed setting array length to zero for slow elements.
382 (Chromium issue 146910)
383
384 Fixed lost arguments dropping in HLeaveInlined.
385 (Chromium issue 150545)
386
387 Fixed casting error for receiver of interceptors.
388 (Chromium issue 149912)
389
390 Throw a more descriptive exception when blocking 'eval' via CSP.
391 (Chromium issue 140191)
392
393 Fixed debugger's eval when close to stack overflow. (issue 2318)
394
395 Added checks to live edit. (issue 2297)
396
397 Switched on code compaction on incremental GCs.
398
399 Fixed caching of optimized code for OSR. (issue 2326)
400
401 Not mask exception thrown by toString in String::UtfValue etc.
402 (issue 2317)
403
404 Fixed API check for length of external arrays. (Chromium issue 148896)
405
406 Ensure correct enumeration indices in the dict (Chromium issue 148376)
407
408 Correctly initialize regexp global cache. (Chromium issue 148378)
409
410 Fixed arguments object materialization during deopt. (issue 2261)
411
412 Introduced new API to expose external string resource regardless of
413 encoding.
414
415 Fixed CHECK failure in LCodeGen::DoWrapReceiver when
416 --deopt-every-n-times flag is present
417 (Chromium issue 148389)
418
419 Fixed edge case of extension with NULL as source string.
420 (Chromium issue 144649)
421
422 Fixed array index dehoisting. (Chromium issue 141395)
423
424 Performance and stability improvements on all platforms.
425
426
mstarzinger@chromium.orgde886792012-09-11 13:22:37 +00004272012-09-11: Version 3.13.7
428
429 Enable/disable LiveEdit using the (C++) debug API.
430
431 Performance and stability improvements on all platforms.
432
433
jkummerow@chromium.org78502a92012-09-06 13:50:42 +00004342012-09-06: Version 3.13.6
435
436 Added validity checking to API functions and calls.
437
438 Disabled accessor inlining (Chromium issue 134609).
439
440 Fixed bug in Math.min/max in optimized code (Chromium issue 145961).
441
442 Directly use %ObjectKeys in json stringify (Chromium issue 2312).
443
444 Fixed VS2005 build (issue 2313).
445
446 Activated fixed ES5 readonly semantics by default.
447
448 Added hardfp flag to the Makefile.
449
450 Performance and stability improvements on all platforms.
451
452
yangguo@chromium.org355cfd12012-08-29 15:32:24 +00004532012-08-29: Version 3.13.5
454
455 Release stack trace data after firing Error.stack accessor.
456 (issue 2308)
457
458 Added a new API V8::SetJitCodeEventHandler to push code name and
459 location to users such as profilers.
460
461 Allocate block-scoped global bindings to global context.
462
463 Performance and stability improvements on all platforms.
464
465
yangguo@chromium.org46839fb2012-08-28 09:06:19 +00004662012-08-28: Version 3.13.4
467
468 Print reason for disabling optimization. Kill --trace-bailout flag.
469
470 Provided option to disable full DEBUG build on Android.
471
472 Introduced global contexts to represent lexical global scope(s).
473
474 Fixed rounding in Uint8ClampedArray setter. (issue 2294)
475
476 Performance and stability improvements on all platforms.
477
478
yangguo@chromium.org08eb1962012-08-21 11:19:20 +00004792012-08-21: Version 3.13.3
480
481 Performance and stability improvements on all platforms.
482
483
4842012-08-20: Version 3.13.2
485
486 Performance and stability improvements on all platforms.
487
488
verwaest@chromium.orgde64f722012-08-16 15:44:54 +00004892012-08-16: Version 3.13.1
490
491 Performance and stability improvements on all platforms.
492
493
mstarzinger@chromium.org471f2f12012-08-10 14:46:33 +00004942012-08-10: Version 3.13.0
495
496 Added histograms for total allocated/live heap size, as well as
497 allocated size and percentage of total for map and cell space.
498
499 Fixed parseInt's octal parsing behavior (ECMA-262 Annex E 15.1.2.2).
500 (issue 1645)
501
502 Added checks for interceptors to negative lookup code in Crankshaft.
503 (Chromium issue 140473)
504
505 Made incremental marking clear ICs and type feedback cells.
506
507 Performance and stability improvements on all platforms.
508
509
jkummerow@chromium.org000f7fb2012-08-01 11:14:42 +00005102012-08-01: Version 3.12.19
511
512 Performance and stability improvements on all platforms.
513
514
ulan@chromium.orgea52b5f2012-07-30 13:05:33 +00005152012-07-30: Version 3.12.18
516
517 Forced using bit-pattern for signed zero double. (issue 2239)
518
519 Made sure double to int conversion is correct. (issue 2260)
520
521 Performance and stability improvements on all platforms.
522
523
verwaest@chromium.orgb6d052d2012-07-27 08:03:27 +00005242012-07-27: Version 3.12.17
525
526 Always set the callee's context when calling a function from optimized
527 code.
528 (Chromium issue 138887)
529
530 Fixed building with GCC 3.x
531 (issue 2016, 2017)
532
533 Improved API calls that return empty handles.
534 (issue 2245)
535
536 Performance and stability improvements on all platforms.
537
538
danno@chromium.org129d3982012-07-25 15:01:47 +00005392012-07-25: Version 3.12.16
540
541 Performance and stability improvements on all platforms.
542
543
yangguo@chromium.org304cc332012-07-24 07:59:48 +00005442012-07-24: Version 3.12.15
545
546 Added PRESERVE_ASCII_NULL option to String::WriteAscii.
547 (issue 2252)
548
549 Added dependency to HLoadKeyed* instructions to prevent invalid
550 hoisting. (Chromium issue 137768)
551
552 Enabled building d8 for Android on Mac.
553
554 Interpret negative hexadecimal literals as NaN.
555 (issue 2240)
556
557 Expose counters in javascript when using --track-gc-object-stats.
558
559 Enabled building and testing V8 on Android IA.
560
561 Added --trace-parse flag to parser.
562
563 Performance and stability improvements on all platforms.
564
565
verwaest@chromium.org178fb152012-07-18 11:21:48 +00005662012-07-18: Version 3.12.14
567
568 Deactivated optimization of packed arrays.
569 (Chromium issue 137768)
570
571 Fixed broken accessor transition.
572 (Chromium issue 137689)
573
574 Performance and stability improvements on all platforms.
575
576
verwaest@chromium.org753aee42012-07-17 16:15:42 +00005772012-07-17: Version 3.12.13
578
579 Fixed missing tagging of stack value in finally block.
580 (Chromium issue 137496)
581
582 Added more support for heap analysis.
583
584 Performance and stability improvements on all platforms.
585
586
jkummerow@chromium.org28583c92012-07-16 11:31:55 +00005872012-07-16: Version 3.12.12
588
589 Added an option to the tickprocessor to specify the directory for lib
590 lookup.
591
592 Fixed ICs for slow objects with native accessor (Chromium issue 137002).
593
594 Fixed transcendental cache on ARM in optimized code (issue 2234).
595
596 New heap inspection tools: counters for object sizes and counts,
597 histograms for external fragmentation.
598
599 Incorporated constness into inferred interfaces (in preparation for
600 handling imports) (issue 1569).
601
602 Performance and stability improvements on all platforms.
603
604
rossberg@chromium.org657d53b2012-07-12 11:06:03 +00006052012-07-12: Version 3.12.11
606
607 Renamed "mips" arch to "mipsel" in the GYP build.
608
609 Fixed computation of call targets on prototypes in Crankshaft.
610 (Chromium issue 125148)
611
612 Removed use of __lookupGetter__ when generating stack trace.
613 (issue 1591)
614
615 Turned on ES 5.2 globals semantics by default.
616 (issue 1991, Chromium issue 80591)
617
618 Synced preparser and parser wrt syntax error in switch..case.
619 (issue 2210)
620
621 Fixed reporting of octal literals in strict mode when preparsing.
622 (issue 2220)
623
624 Fixed inline constructors for Harmony Proxy prototypes.
625 (issue 2225)
626
627 Performance and stability improvements on all platforms.
628
629
danno@chromium.org81cac2b2012-07-10 11:28:27 +00006302012-07-10: Version 3.12.10
631
632 Re-enabled and fixed issue with array bounds check elimination
633 (Chromium issue 132114).
634
635 Fixed Debug::Break crash. (Chromium issue 131642)
636
637 Added optimizing compiler support for JavaScript getters.
638
639 Performance and stability improvements on all platforms.
640
641
yangguo@chromium.org99aa4902012-07-06 16:21:55 +00006422012-07-06: Version 3.12.9
643
644 Correctly advance the scanner when scanning unicode regexp flag.
645 (Chromium issue 136084)
646
647 Fixed unhandlified code calling Harmony Proxy traps.
648 (issue 2219)
649
650 Performance and stability improvements on all platforms.
651
652
svenpanne@chromium.org619781a2012-07-05 08:22:44 +00006532012-07-05: Version 3.12.8
654
655 Implemented TypedArray.set and ArrayBuffer.slice in d8.
656
657 Performance and stability improvements on all platforms.
658
659
mstarzinger@chromium.orgc6d9cee2012-07-03 10:03:19 +00006602012-07-03: Version 3.12.7
661
662 Fixed lazy compilation for strict eval scopes.
663 (Chromium issue 135066)
664
665 Made MACOSX_DEPLOYMENT_TARGET configurable in GYP.
666 (issue 2151)
667
668 Report "hidden properties" in heap profiler for properties case.
669 (issue 2212)
670
671 Activated optimization of packed arrays by default.
672
673 Performance and stability improvements on all platforms.
674
675
yangguo@chromium.orgc74d6742012-06-29 15:15:45 +00006762012-06-29: Version 3.12.6
677
678 Cleaned up hardfp ABI detection for ARM (V8 issue 2140).
679
680 Extended TypedArray support in d8.
681
682
yangguo@chromium.org9c741c82012-06-28 15:04:22 +00006832012-06-28: Version 3.12.5
684
685 Fixed lazy parsing heuristics to respect outer scope.
686 (Chromium issue 135008)
687
688 Allow using test-wrapper-gypbuild.py on Windows when no python
689 interpreter is registered.
690
691 Performance and stability improvements on all platforms.
692
693
jkummerow@chromium.org7a6fc812012-06-27 11:12:38 +00006942012-06-27: Version 3.12.4
695
696 Removed -fomit-frame-pointer flag from Release builds to make
697 the stack walkable by TCMalloc (Chromium issue 133723).
698
699 Ported r7868 (constant masking) to x64 (issue 1374).
700
701 Expose more detailed memory statistics (issue 2201).
702
703 Fixed Harmony Maps and WeakMaps for undefined values
704 (Chromium issue 132744).
705
706 Correctly throw reference error in strict mode with ICs disabled
707 (issue 2119).
708
709 Performance and stability improvements on all platforms.
710
711
ulan@chromium.orgd9e468a2012-06-25 09:47:40 +00007122012-06-25: Version 3.12.3
713
714 Reverted r11835 'Unify promotion and allocation limit computation' due
715 to V8 Splay performance regression on Mac. (Chromium issue 134183)
716
717 Fixed sharing of literal boilerplates for optimized code. (issue 2193)
718
719 Performance and stability improvements on all platforms.
720
721
yangguo@chromium.orgde0db002012-06-22 13:44:28 +00007222012-06-22: Version 3.12.2
723
724 Made near-jump check more strict in LoadNamedFieldPolymorphic on
725 ia32/x64. (Chromium issue 134055)
726
727 Fixed lazy sweeping heuristics to prevent old-space expansion.
728 (issue 2194)
729
730 Performance and stability improvements on all platforms.
731
732
yangguo@chromium.orgd2899aa2012-06-21 11:16:20 +00007332012-06-21: Version 3.12.1
734
735 Performance and stability improvements on all platforms.
736
737
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +00007382012-06-20: Version 3.12.0
739
740 Fixed Chromium issues:
741 115100, 129628, 131994, 132727, 132741, 132742, 133211
742
743 Fixed V8 issues:
744 915, 1914, 2034, 2087, 2094, 2134, 2156, 2166, 2172, 2177, 2179, 2185
745
746 Added --extra-code flag to mksnapshot to load JS code into the VM
747 before creating the snapshot.
748
749 Support 'restart call frame' command in the debugger.
750
751 Performance and stability improvements on all platforms.
752
753
mmassi@chromium.org7028c052012-06-13 11:51:58 +00007542012-06-13: Version 3.11.10
755
756 Implemented heap profiler memory usage reporting.
757
758 Preserved error message during finally block in try..finally.
759 (Chromium issue 129171)
760
761 Fixed EnsureCanContainElements to properly handle double values.
762 (issue 2170)
763
764 Improved heuristics to keep objects in fast mode with inherited
765 constructors.
766
767 Performance and stability improvements on all platforms.
768
769
rossberg@chromium.org400388e2012-06-06 09:29:22 +00007702012-06-06: Version 3.11.9
771
772 Implemented ES5-conformant semantics for inherited setters and read-only
773 properties. Currently behind --es5_readonly flag, because it breaks
774 WebKit bindings.
775
776 Exposed last seen heap object id via v8 public api.
777
778 Performance and stability improvements on all platforms.
779
780
verwaest@chromium.org37141392012-05-31 13:27:02 +00007812012-05-31: Version 3.11.8
782
783 Avoid overdeep recursion in regexp where a guarded expression with a
784 minimum repetition count is inside another quantifier.
785 (Chromium issue 129926)
786
787 Fixed missing write barrier in store field stub.
788 (issues 2143, 1465, Chromium issue 129355)
789
790 Proxies: Fixed receiver for setters inherited from proxies.
791 Proxies: Fixed ToStringArray function so that it does not reject some
792 keys.
793 (issue 1543)
794
795 Performance and stability improvements on all platforms.
796
797
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +00007982012-05-29: Version 3.11.7
799
800 Get better function names in stack traces.
801
802 Performance and stability improvements on all platforms.
803
804
jkummerow@chromium.org777db6f2012-05-24 09:33:09 +00008052012-05-24: Version 3.11.6
806
807 Fixed RegExp.prototype.toString for incompatible receivers
808 (issue 1981).
809
810 Performance and stability improvements on all platforms.
811
812
mstarzinger@chromium.org15613d02012-05-23 12:04:37 +00008132012-05-23: Version 3.11.5
814
815 Performance and stability improvements on all platforms.
816
817
ulan@chromium.org0e3f88b2012-05-22 09:16:05 +00008182012-05-22: Version 3.11.4
819
820 Some cleanup to common.gypi. This fixes some host/target combinations
821 that weren't working in the Make build on Mac.
822
823 Handle EINTR in socket functions and continue incomplete sends.
824 (issue 2098)
825
826 Fixed python deprecations. (issue 1391)
827
828 Made socket send and receive more robust and return 0 on failure.
829 (Chromium issue 15719)
830
831 Fixed GCC 4.7 (C++11) compilation. (issue 2136)
832
833 Set '-m32' option for host and target platforms
834
835 Performance and stability improvements on all platforms.
836
837
ulan@chromium.orgd6899c32012-05-18 14:12:25 +00008382012-05-18: Version 3.11.3
839
840 Disable optimization for functions that have scopes that cannot be
841 reconstructed from the context chain. (issue 2071)
842
843 Define V8_EXPORT to nothing for clients of v8. (Chromium issue 90078)
844
845 Correctly check for native error objects. (Chromium issue 2138)
846
847 Performance and stability improvements on all platforms.
848
849
yangguo@chromium.org5f0b8ea2012-05-16 12:37:04 +00008502012-05-16: Version 3.11.2
851
852 Revert r11496. (Chromium issue 128146)
853
854 Implement map collection for incremental marking. (issue 1465)
855
856 Add toString method to CallSite (which describes a frame of the
857 stack trace).
858
859
yangguo@chromium.orgcb9affa2012-05-15 12:16:38 +00008602012-05-15: Version 3.11.1
861
862 Added a readbuffer function to d8 that reads a file into an ArrayBuffer.
863
864 Fix freebsd build. (V8 issue 2126)
865
866 Performance and stability improvements on all platforms.
867
868
jkummerow@chromium.org212d9642012-05-11 15:02:09 +00008692012-05-11: Version 3.11.0
870
871 Fixed compose-discard crasher from r11524 (issue 2123).
872
873 Activated new global semantics by default. Global variables can
874 now shadow properties of the global object (ES5.1 erratum).
875
876 Properly set ElementsKind of empty FAST_DOUBLE_ELEMENTS arrays when
877 transitioning (Chromium issue 117409).
878
879 Made Error.prototype.name writable again, as required by the spec and
880 the web (Chromium issue 69187).
881
882 Implemented map collection with incremental marking (issue 1465).
883
884 Regexp: Fixed overflow in min-match-length calculation
885 (Chromium issue 126412).
886
887 MIPS: Fixed illegal instruction use on Loongson in code for
888 Math.random() (issue 2115).
889
890 Fixed crash bug in VisitChoice (Chromium issue 126272).
891
892 Fixed unsigned-Smi check in MappedArgumentsLookup
893 (Chromium issue 126414).
894
895 Fixed LiveEdit for function with no locals (issue 825).
896
897 Fixed register clobbering in LoadIC for interceptors
898 (Chromium issue 125988).
899
900 Implemented clearing of CompareICs (issue 2102).
901
902 Performance and stability improvements on all platforms.
903
904
danno@chromium.org2c26cb12012-05-03 09:06:43 +00009052012-05-03: Version 3.10.8
906
907 Enabled MIPS cross-compilation.
908
909 Ensured reload of elements pointer in StoreFastDoubleElement stub.
910 (Chromium issue 125515)
911
912 Fixed corner cases in truncation behavior when storing to
913 TypedArrays. (issue 2110)
914
915 Fixed failure to properly recognize and report out-of-memory
916 conditions when allocating code space pages. (Chromium issue
917 118625)
918
919 Fixed idle notifications to perform a round of incremental GCs
920 after context disposal. (issue 2107)
921
922 Fixed preparser for try statement. (issue 2109)
923
924 Performance and stability improvements on all platforms.
925
926
danno@chromium.org1044a4d2012-04-30 12:34:39 +00009272012-04-30: Version 3.10.7
928
929 Performance and stability improvements on all platforms.
930
931
yangguo@chromium.orgefdb9d72012-04-26 08:21:05 +00009322012-04-26: Version 3.10.6
933
934 Fixed some bugs in accessing details of the last regexp match.
935
936 Fixed source property of empty RegExp objects. (issue 1982)
937
938 Enabled inlining some V8 API functions.
939
940 Performance and stability improvements on all platforms.
941
942
mstarzinger@chromium.org88d326b2012-04-23 12:57:22 +00009432012-04-23: Version 3.10.5
944
945 Put new global var semantics behind a flag until WebKit tests are
946 cleaned up.
947
948 Enabled stepping into callback passed to builtins.
949 (Chromium issue 109564)
950
951 Performance and stability improvements on all platforms.
952
953
svenpanne@chromium.orgfb046332012-04-19 12:02:44 +00009542012-04-19: Version 3.10.4
955
956 Fixed issues when stressing compaction with WeakMaps.
957
958 Fixed missing GVN flag for new-space promotion. (Chromium issue 123919)
959
960 Simplify invocation sequence at monomorphic function invocation sites.
961 (issue 2079)
962
963 Performance and stability improvements on all platforms.
964
965
erik.corry@gmail.comed49e962012-04-17 11:57:53 +00009662012-04-17: Version 3.10.3
967
968 Fixed several bugs in heap profiles (including issue 2078).
969
970 Throw syntax errors on illegal escape sequences.
971
972 Implemented rudimentary module linking (behind --harmony flag)
973
974 Implemented ES5 erratum: Global declarations should shadow
975 inherited properties.
976
977 Made handling of const more consistent when combined with 'eval'
978 and 'with'.
979
980 Fixed V8 on MinGW-x64 (issue 2026).
981
982 Performance and stability improvements on all platforms.
983
984
jkummerow@chromium.org28faa982012-04-13 09:58:30 +00009852012-04-13: Version 3.10.2
986
987 Fixed native ARM build (issues 1744, 539)
988
989 Return LOOKUP variable instead of CONTEXT for non-context allocated
990 outer scope parameters (Chromium issue 119609).
991
992 Fixed regular and ElementsKind transitions interfering with each other
993 (Chromium issue 122271).
994
995 Improved performance of keyed loads/stores which have a HeapNumber
996 index (issues 1388, 1295).
997
998 Fixed WeakMap processing for evacuation candidates (issue 2060).
999
1000 Bailout on possible direct eval calls (Chromium issue 122681).
1001
1002 Do not assume that names of function expressions are context-allocated
1003 (issue 2051).
1004
1005 Performance and stability improvements on all platforms.
1006
1007
fschneider@chromium.org7d10be52012-04-10 12:30:14 +000010082012-04-10: Version 3.10.1
1009
1010 Fixed bug with arguments object in inlined functions (issue 2045).
1011
1012 Fixed performance bug with lazy initialization (Chromium issue
1013 118686).
1014
1015 Added suppport for Mac OS X 64bit builds with GYP.
1016 (Patch contributed by Filipe David Manana <fdmanana@gmail.com>)
1017
1018 Fixed bug with hidden properties (issue 2034).
1019
1020 Fixed a performance bug when reloading pages (Chromium issue 117767,
1021 V8 issue 1902).
1022
1023 Fixed bug when optimizing throw in top-level code (issue 2054).
1024
1025 Fixed two bugs with array literals (issue 2055, Chromium issue 121407).
1026
1027 Fixed bug with Math.min/Math.max with NaN inputs (issue 2056).
1028
1029 Fixed a bug with the new runtime profiler (Chromium issue 121147).
1030
1031 Fixed compilation of V8 using uClibc.
1032
1033 Optimized boot-up memory use.
1034
1035 Optimized regular expressions.
1036
1037
jkummerow@chromium.org1456e702012-03-30 08:38:13 +000010382012-03-30: Version 3.10.0
1039
1040 Fixed store IC writability check in strict mode
1041 (Chromium issue 120099).
1042
1043 Resynchronize timers if the Windows system time was changed.
1044 (Chromium issue 119815)
1045
1046 Removed "-mfloat-abi=hard" from host compiler cflags when building for
1047 hardfp ARM
1048 (https://code.google.com/p/chrome-os-partner/issues/detail?id=8539)
1049
1050 Fixed edge case for case independent regexp character classes
1051 (issue 2032).
1052
1053 Reset function info counters after context disposal.
1054 (Chromium issue 117767, V8 issue 1902)
1055
1056 Fixed missing write barrier in CopyObjectToObjectElements.
1057 (Chromium issue 119926)
1058
1059 Fixed missing bounds check in HasElementImpl.
1060 (Chromium issue 119925)
1061
1062 Performance and stability improvements on all platforms.
1063
1064
danno@chromium.org88aa0582012-03-23 15:11:57 +000010652012-03-23: Version 3.9.24
1066
1067 Activated count-based profiler for ARM.
1068
1069 Fixed use of proxies as f.prototype properties. (issue 2021)
1070
1071 Enabled snapshots on MIPS.
1072
1073 Performance and stability improvements on all platforms.
1074
1075
ulan@chromium.org6ff65142012-03-21 09:52:17 +000010762012-03-21: Version 3.9.23
1077
1078 Use correct arguments adaptation environment when inlining function
1079 containing arguments. (Issue 2014)
1080
1081 Performance and stability improvements on all platforms.
1082
1083
jkummerow@chromium.org531dfe82012-03-20 13:01:16 +000010842012-03-20: Version 3.9.22
1085
1086 Enabled count-based profiler by default.
1087
1088 Implemented a hash based look-up to speed up address checks
1089 in large object space (issue 853).
1090
1091 Performance and stability improvements on all platforms.
1092
1093
rossberg@chromium.org2c067b12012-03-19 11:01:52 +000010942012-03-19: Version 3.9.21
1095
1096 Fixed push-to-trunk script (and re-push).
1097
1098 Added API call that identifies strings that are guaranteed only to
1099 contain ASCII characters.
1100
1101
11022012-03-19: Version 3.9.20
1103
1104 Fixed declarations escaping global strict eval. (Issue 1624)
1105
1106 Fixed wrapping of receiver for non-strict callbacks. (Issue 1973)
1107
1108 Fixed function declarations overwriting read-only global properties.
1109 (Chromium issue 115452)
1110
1111 Fixed --use-strict flag in combination with --harmony[-scoping].
1112
1113 Debugger: naive implementation of "step into Function.prototype.bind".
1114
1115 Debugger: added ability to set script source from within OnBeforeCompile
1116
1117 Added flag to always call DebugBreak on abort.
1118
1119 Re-enabled constructor inlining and inline === comparison with boolean
1120 constants. (Issue 2009)
1121
1122 Don't use an explicit s0 in ClampDoubleToUint8. (Issue 2004)
1123
1124 Performance and stability improvements on all platforms.
1125
1126
mstarzinger@chromium.org3233d2f2012-03-14 11:16:03 +000011272012-03-14: Version 3.9.19
1128
1129 Ensure there is a smi check of the receiver for global load and call
1130 ICs (Chromium issue 117794).
1131
1132 Performance and stability improvements on all platforms.
1133
1134
yangguo@chromium.org154ff992012-03-13 08:09:54 +000011352012-03-13: Version 3.9.18
1136
1137 Ensure consistency of Math.sqrt on Intel platforms.
1138
1139 Remove static initializers in v8. (issue 1859)
1140
1141 Add explicit dependency on v8_base in the GYP-based build.
1142
1143 Performance and stability improvements on all platforms.
1144
1145
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +000011462012-03-12: Version 3.9.17
1147
1148 Fixed VFP detection through compiler defines. (issue 1996)
1149
1150 Add Code-related fields to postmortem metadata.
1151
1152 Performance and stability improvements on all platforms.
1153
1154
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000011552012-03-09: Version 3.9.16
1156
1157 Added basic interface inference for modules (behind the --harmony flag).
1158
1159 Added Object.is, Number.isFinite, Number.isNaN.
1160
1161 Updated the Unicode tables to Unicode version 6.1.0.
1162
1163 Performance and stability improvements on all platforms.
1164
1165
ulan@chromium.org9a21ec42012-03-06 08:42:24 +000011662012-03-06: Version 3.9.15
1167
1168 Fix the heap profiler crash caused by memory layout changes between
1169 passes.
1170
1171 Fix Error.prototype.toString to throw TypeError. (issue 1980)
1172
1173 Fix double-rounding in strtod for MinGW. (issue 1062)
1174
1175 Fix corrupted snapshot serializaton on ia32. (Chromium issue v8/1985)
1176
1177 Performance and stability improvements on all platforms.
1178
1179
fschneider@chromium.org35814e52012-03-01 15:43:35 +000011802012-03-01: Version 3.9.14
1181
1182 Performance and stability improvements on all platforms.
1183
1184
ulan@chromium.org812308e2012-02-29 15:58:45 +000011852012-02-29: Version 3.9.13
1186
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001187 Added code kind check before preparing for OSR. (issue 1900, 115073)
ulan@chromium.org812308e2012-02-29 15:58:45 +00001188
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001189 Fixed issue 1802: Pass zone explicitly to zone-allocation on x64 and
1190 ARM.
ulan@chromium.org812308e2012-02-29 15:58:45 +00001191
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001192 Ported string construct stub to x64. (issue 849)
ulan@chromium.org812308e2012-02-29 15:58:45 +00001193
1194 Performance and stability improvements on all platforms.
1195
1196
ulan@chromium.org967e2702012-02-28 09:49:15 +000011972012-02-28: Version 3.9.12
1198
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001199 Fixed the negative lookup stub to handle deleted entries in a
1200 dictionary. (issue 1964)
ulan@chromium.org967e2702012-02-28 09:49:15 +00001201
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001202 Added a new API where the host can supply a callback function. The
ulan@chromium.org967e2702012-02-28 09:49:15 +00001203 callback function can resolve the location of a return address on stack
1204 to the location where a return-address rewriting profiler stashed the
1205 original return address.
1206
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001207 Fixed Chromium issue http://crbug.com/115646: When compiling for-in
1208 pass correct context value to the increment instruction.
ulan@chromium.org967e2702012-02-28 09:49:15 +00001209
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001210 Fixed issue 1853: Update breakpoints set with partial file name after
1211 compile.
ulan@chromium.org967e2702012-02-28 09:49:15 +00001212
1213
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +000012142012-02-27: Version 3.9.11
1215
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001216 Made 'module' a context-sensitive keyword (V8 issue 1957).
yangguo@chromium.orga7d3df92012-02-27 11:46:55 +00001217
1218
yangguo@chromium.orgab30bb82012-02-24 14:41:46 +000012192012-02-24: Version 3.9.10
1220
1221 Fixed V8 issues 1322, 1772 and 1969.
1222
1223 Conformance improvements.
1224
1225 Performance and stability improvements on all platforms.
1226
1227
kmillikin@chromium.orgbe6bd102012-02-23 08:45:21 +000012282012-02-23: Version 3.9.9
1229
1230 Supported fast case for-in in Crankshaft.
1231
1232 Sped up heap snapshot serialization and dominators construction.
1233
1234 Randomized allocation addresses on windows. (Chromium issue 115151)
1235
1236 Fixed compilation with MinGW-w64. (issue 1943)
1237
1238 Fixed incorrect value of assignments to non-extensible properties.
1239
1240 Fixed a crash bug in generated code on ia32.
1241
1242 Performance and stability improvements on all platforms.
1243
1244
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +000012452012-02-21: Version 3.9.8
1246
1247 Fixed memory leak and missing #include in StartupDataDecompressor
1248 (issue 1960).
1249
1250 Renamed static methods to avoid shadowing virtual methods and fix Clang
1251 C++11 compile error.
1252
1253 Fixed sequence of element access in array builtins (issue 1790).
1254
1255 Performance and stability improvements on all platforms.
1256
1257
yangguo@chromium.org56454712012-02-16 15:33:53 +000012582012-02-16: Version 3.9.7
1259
1260 Fixed V8 issues 1322, 1878, 1942, 1945 and Chromium issue 113924.
1261
1262 Fixed GCC-4.7 warnings.
1263
1264 Added Navier-Stokes benchmark.
1265
1266 Performance and stability improvements on all platforms.
1267
1268
ulan@chromium.org65a89c22012-02-14 11:46:07 +000012692012-02-14: Version 3.9.6
1270
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001271 Fixed template-related linker error. (issue 1936)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001272
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001273 Allowed inlining of functions containing object literals. (issue 1322)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001274
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001275 Added --call-graph-size option to tickprocessor. (issue 1937)
ulan@chromium.org65a89c22012-02-14 11:46:07 +00001276
1277 Heap Snapshot maximum size limit is too low for really big apps. At the
1278 moment the limit is 256MB. (Chromium issue 113015)
1279
1280 Performance and stability improvements on all platforms.
1281
1282
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000012832012-02-09: Version 3.9.5
1284
1285 Removed unused command line flags.
1286
1287 Performance and stability improvements on all platforms.
1288
1289
svenpanne@chromium.orgb1df11d2012-02-08 10:26:21 +000012902012-02-08: Version 3.9.4
1291
1292 Properly initialize element-transitioning array literals on ARM.
1293 (issue 1930)
1294
1295 Bug fixes on all platforms.
1296
1297
jkummerow@chromium.orgab7dad42012-02-07 12:07:34 +000012982012-02-07: Version 3.9.3
1299
1300 When rethrowing an exception, print the stack trace of its original
1301 site instead of rethrow site (Chromium issue 60240).
1302
1303 Increased size of small stacks from 32k to 64k to avoid hitting limits
1304 in Chromium (Chromium issue 112843).
1305
1306
rossberg@chromium.org994edf62012-02-06 10:12:55 +000013072012-02-06: Version 3.9.2
1308
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001309 Added timestamp to --trace-gc output. (issue 1932)
rossberg@chromium.org994edf62012-02-06 10:12:55 +00001310
1311 Heap profiler reports implicit references.
1312
1313 Optionally export metadata with libv8 to enable debuggers to inspect V8
1314 state.
1315
1316
jkummerow@chromium.org1145ef82012-02-02 16:21:15 +000013172012-02-02: Version 3.9.1
1318
1319 Fixed memory leak in NativeObjectsExplorer::FindOrAddGroupInfo
1320 (Chromium issue 112315).
1321
1322 Fixed a crash in dev tools (Chromium issue 107996).
1323
1324 Added 'dependencies_traverse': 1 to v8 GYP target.
1325
1326 Performance and stability improvements on all platforms.
1327
1328
danno@chromium.orgfa458e42012-02-01 10:48:36 +000013292012-02-01: Version 3.9.0
1330
fschneider@chromium.org35814e52012-03-01 15:43:35 +00001331 Reduced memory use immediately after starting V8.
danno@chromium.orgfa458e42012-02-01 10:48:36 +00001332
1333 Stability fixes and performance improvements on all platforms.
1334
1335
yangguo@chromium.org659ceec2012-01-26 07:37:54 +000013362012-01-26: Version 3.8.9
1337
1338 Flush number string cache on GC (issue 1605).
1339
1340 Provide access to function inferred name with
1341 v8::Function::GetInferredName in V8 public API.
1342
1343 Fix building with Clang (issue 1912).
1344
1345 Reduce the space used by the stack for the profiling thread.
1346
1347 Fix misleading documentation of v8::Locker (issue 542).
1348
1349 Introduce readbinary function in d8 to read binary files.
1350
1351 Performance and stability improvements on all platforms.
1352
1353
jkummerow@chromium.org05ed9dd2012-01-23 14:42:48 +000013542012-01-23: Version 3.8.8
1355
1356 Limited number of loop iterations in Heap::ReserveSpace
1357 (Chromium issue 99027).
1358
1359 Fixed solaris build (VirtualMemory) (issue 1761).
1360
1361 Fixed strict vs. non-strict handling of function proxies in
1362 higher-order array and string methods.
1363
1364 Enabled asynchronous remote debugging with d8 (issue 1691).
1365
1366 Stability and performance improvements on all platforms.
1367
1368
ulan@chromium.org2efb9002012-01-19 15:36:35 +000013692012-01-19: Version 3.8.7
1370
1371 Ensure that LRandom restores rsi after call to the C function on x64.
1372 (Chromium issue http://crbug.com/110509)
1373
1374 Fixing include issues on *bsd when building with scons.
1375 (issue 1897)
1376
1377 Provide a switch to specify -fno-strict-aliasing
1378 (issue 1887)
1379
1380 Move WIN32 define from standalone.gypi to common.gypi
1381 (issue 1760)
1382
1383 Fix corner-case in heap size estimation.
1384 (issue 1893)
1385
1386 Fix and enable NEW_NON_STRICT_FAST ArgumentsAccess stub on x64.
1387 (issue 1903)
1388
1389 Performance improvements and bug fixes.
1390
1391
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +000013922012-01-16: Version 3.8.6
1393
1394 Add primitive WebGL array support to d8.
1395
1396 Improve heap size estimation (issue 1893).
1397
1398 Hash collision DOS workaround extended from string keys
1399 to numeric keys.
1400
1401 Provide an API for iterating through all external strings referenced
1402 from the JS heap.
1403
1404 Adjust position recorded for call expressions. http://crbug.com/109195
1405
1406 Fix GC crash related to instanceof. http://crbug.com/109448
1407
1408 Performance improvements and bug fixes.
1409
1410
rossberg@chromium.orgfab14982012-01-05 15:02:15 +000014112012-01-05: Version 3.8.5
1412
1413 Fix broken test that assumes that no GC can clear the regexp cache (GC
1414 can happen at any time due to Crankshaft).
1415
1416 Fix handling of bogus receivers for Harmony collections. (issue 1884)
1417
1418 Add netbsd support to gyp build.
1419
1420 Determine page size at runtime on posix platforms.
1421
1422 Ensure that store buffer filtering hash sets are cleared after
1423 StoreBuffer::Filter.
1424
1425 Randomize the seed used for string hashing. This helps guard against
1426 CPU-eating DOS attacks against node.js servers. Based on code from
1427 Bert Belder. This version only solves the issue for those that compile
1428 V8 themselves or those that do not use snapshots. A snapshot-based
1429 precompiled V8 will still have predictable string hash codes.
1430
1431 Implement callback when script finishes running in V8 API.
1432
1433 Improve performance of Math.min and Math.max for the case of two
1434 arguments. (issue 1325)
1435
1436
svenpanne@chromium.org3c93e772012-01-02 09:26:59 +000014372012-01-02: Version 3.8.4
1438
1439 Performance improvements for large Smi-only arrays.
1440
1441 Fixed InternalArrays construction. (issue 1878)
1442
1443
danno@chromium.orgbf0c8202011-12-27 10:09:42 +000014442011-12-27: Version 3.8.3
1445
1446 Avoid embedding new space objects into code objects in the lithium gap
1447 resolver. (chromium:108296)
1448
1449 Bug fixes and performance optimizations on all platforms.
1450
1451
danno@chromium.orge78f9fc2011-12-21 08:29:34 +000014522011-12-21: Version 3.8.2
1453
1454 Add max optimization flag to v8 gyp build to ensure V8 is always built
1455 fully optimized in Chrome.
1456
1457 MIPS: Bring MIPS to parity with other platforms.
1458
1459 Optimizations and stability improvements on all platforms.
1460
1461
ricow@chromium.org7ad65222011-12-19 12:13:11 +000014622011-12-19: Version 3.8.1
1463
1464 Fixed GCC 4.7 warnings. Patch from Tobias Burnus.
1465
1466 Stability improvements on all platforms.
1467
1468
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000014692011-12-13: Version 3.8.0
1470
1471 Fixed handling of arrays in DefineOwnProperty. (issue 1756)
1472
1473 Sync parser and preparser on do-while and return statements.
1474 (issue 1856)
1475
1476 Fixed another corner case for DefineOwnProperty on arrays (issue 1756).
1477
1478 Stability and performance improvements on all platforms.
1479
1480
svenpanne@chromium.orgecb9dd62011-12-01 08:22:35 +000014812011-12-01: Version 3.7.12
1482
1483 Increase tick interval for the android platform.
1484
1485 Fix a bug in the register allocator. (chromium:105112)
1486
1487 Fix handling of recompiling code. (chromium:105375, v8:1782)
1488
1489 Start incremental marking on idle notification. (v8:1458)
1490
1491 Build fixes for various platforms.
1492
1493 Various performance improvements.
1494
1495
mstarzinger@chromium.org1b3afd12011-11-29 14:28:56 +000014962011-11-29: Version 3.7.11
1497
1498 Fixed bug when generating padding to ensure space for lazy
1499 deoptimization.
1500 (issue 1846)
1501
1502 Further reduced pause times due to GC.
1503
1504 Stability and performance improvements on all platforms.
1505
1506
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +000015072011-11-23: Version 3.7.10
1508
1509 Set maximum length of FixedArray in terms of elements instead an
1510 absolute number of bytes.
1511 (Chromium issue 103103)
1512
1513 Stability and performance improvements on all platforms.
1514
1515
15162011-11-21: Version 3.7.9
1517
1518 Removed exit-time destructors.
1519
1520 Stability and performance improvements on all platforms.
1521
1522
ricow@chromium.org27bf2882011-11-17 08:34:43 +000015232011-11-17: Version 3.7.8
1524
mstarzinger@chromium.orgf8c6bd52011-11-23 12:13:52 +00001525 Removed hidden prototype from builtins, i.e., deleting an overridden
ricow@chromium.org27bf2882011-11-17 08:34:43 +00001526 function on builtins will not make the original function reappear.
1527
1528 Added NetBSD support for scons build.
1529
1530 Performance improvements on all platforms.
1531
1532
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +000015332011-11-14: Version 3.7.7
1534
1535 Fix missing fast property accessors in heap snapshots.
1536 (issue 1818)
1537
1538
danno@chromium.org2c456792011-11-11 12:00:53 +000015392011-11-11: Version 3.7.6
1540
1541 Fixed filtering of store buffer for large object pages.
1542 (issue 1817)
1543
1544 Fixed generated hash function on all platforms.
1545 (issue 1808)
1546
1547 Fixed Heap::Shrink to ensure that it does not free pages that are
1548 still in use.
1549 (Chromium issue 100414)
1550
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001551 Stability and performance improvements on all platforms.
danno@chromium.org2c456792011-11-11 12:00:53 +00001552
1553
danno@chromium.orgc612e022011-11-10 11:38:15 +000015542011-11-10: Version 3.7.5
1555
1556 Added initial gyp infrastructure for MIPS.
1557
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001558 Implemented performance improvements to the incremental garbage
danno@chromium.orgc612e022011-11-10 11:38:15 +00001559 collector.
1560
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001561 Added optimizations and stability improvements on all platforms.
danno@chromium.orgc612e022011-11-10 11:38:15 +00001562
1563
jkummerow@chromium.orgc3b37122011-11-07 10:14:12 +000015642011-11-07: Version 3.7.4
1565
1566 Proper "libv8.so.3.7.4" SONAME for Linux shared library (issue 1786).
1567
1568 Fix Harmony sets and maps to allow null and undefined as keys
1569 (still hidden behind --harmony flag) (issue 1622).
1570
1571 Implement VirtualMemory on FreeBSD to fix build (issue 1807).
1572
1573 Enable VFP instructions for Android.
1574
1575 Fix error handling in Date.prototype.toISOString (issue 1792).
1576
1577 Bug fixes and performance improvements for all platforms.
1578
1579 Not officially supported but noteworthy: Crankshaft for MIPS :-)
1580
1581
erik.corry@gmail.combecbc522011-10-28 07:45:20 +000015822011-10-28: Version 3.7.3
1583
1584 Slight deoptimization as a workaround for issue with jslint: Issue
1585 1789.
1586
1587
erik.corry@gmail.com6e28b562011-10-27 14:20:17 +000015882011-10-27: Version 3.7.2
1589
1590 Fix bug in deoptimization. Known issue with jslint: Issue 1789.
1591
1592
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +000015932011-10-26: Version 3.7.1
1594
1595 Achieved 33% speedup in debug-mode tests.
1596
1597 Removed special casing of calls to RegExp test and exec methods with no
1598 argument. Now matches new JSC behaviour. crbug.com/75740.
1599
1600 Return the empty string on cyclic references in toString (ES5
1601 conformance).
1602
1603 Fixed bug triggered by JSBeautifier. crbug.com/100409.
1604
1605 Made Math.random state per-context instead of per-process (issue 864).
1606
1607 Fixed stack traces to skip native functions.
1608
1609 Make snapshots (new contexts) smaller and faster.
1610
1611 Fixed handling of Function.apply for non-array arguments.
1612
1613 Fixed evaluation order in defineProperties to match FireFox.
1614
1615 Fixed handling of non-object receivers for array builtins,
1616 crbug.com/100702.
1617
1618 Multiple fixes to improve compliance with test262.
1619
1620 Fixed compatibility with older Android releases.
1621
1622 Fixed compilation with gcc-4.5.3.
1623
1624 Improved performance of WriteUtf8, issue 1665.
1625
1626 Made native syntax an early error in the preparser.
1627
1628 Fixed issues 793 and 893 relating to Function.prototype.bind.
1629
1630 Improved let, const, Set and Map support and other Harmony features
1631 (behind the --harmony flag).
1632
1633 Changed evaluation order for > and <= to match ES5 instead of ES3.
1634
1635 Bug fixes and performance improvements on all platforms.
1636
1637
rossberg@chromium.orgb4b2aa62011-10-13 09:49:59 +000016382011-10-13: Version 3.7.0
1639
1640 Fixed array handling for Object.defineOwnProperty (ES5 conformance).
1641
1642 Fixed issue 1757 (string slices of external strings).
1643
1644 Fixed issue 1759 (ARM).
1645
1646 Added flag --noclever-optimizations to disable some things that
1647 caused trouble in the past.
1648
1649 Added flag --stress-compaction for testing.
1650
1651 Added flag --harmony to activate all experimental Harmony features.
1652
1653
svenpanne@chromium.orga8bb4d92011-10-10 13:20:40 +000016542011-10-10: Version 3.6.6
1655
1656 Added a GC pause visualization tool.
1657
1658 Added presubmit=no and werror=no flags to Makefile.
1659
1660 ES5/Test262 conformance improvements.
1661
1662 Fixed compilation issues with GCC 4.5.x (issue 1743).
1663
1664 Bug fixes and performance improvements on all platforms.
1665
1666
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000016672011-10-05: Version 3.6.5
1668
1669 New incremental garbage collector.
1670
1671 Removed the hard heap size limit (soft heap size limit is still
1672 700/1400Mbytes by default).
1673
1674 Implemented ES5 generic Array.prototype.toString (Issue 1361).
1675
1676 V8 now allows surrogate pair codes in decodeURIComponent (Issue 1415).
1677
1678 Fixed x64 RegExp start-of-string bug (Issues 1746, 1748).
1679
1680 Fixed propertyIsEnumerable for numeric properties (Issue 1692).
1681
1682 Fixed the MinGW and Windows 2000 builds.
1683
1684 Fixed "Prototype chain is not searched if named property handler does
1685 not set a property" (Issue 1636).
1686
1687 Made the RegExp.prototype object be a RegExp object (Issue 1217).
1688
1689 Disallowed future reserved words as labels in strict mode.
1690
1691 Fixed string split to correctly coerce the separator to a string
1692 (Issue 1711).
1693
1694 API: Added an optional source length field to the Extension
1695 constructor.
1696
1697 API: Added Debug::DisableAgent to match existing Debug::EnableAgent
1698 (Issue 1573).
1699
1700 Added "native" target to Makefile for the benefit of Linux distros.
1701
1702 Fixed: debugger stops stepping outside evaluate (Issue 1639).
1703
1704 More work on ES-Harmony proxies. Still hidden behind a flag.
1705
1706 Bug fixes and performance improvements on all platforms.
1707
1708
lrn@chromium.org34e60782011-09-15 07:25:40 +000017092011-09-15: Version 3.6.4
1710
1711 Fixed d8's broken readline history.
1712
1713 Removed the need for code delete events in CPU profiler (Issue 1466).
1714
1715 Fixed debugger stepping next with trycatch recursion (Issue 1639).
1716
1717 Fixing parallel execution in d8 (with -p) and some memory leaks.
1718
1719 Support for precise stepping in functions compiled before debugging was
1720 started (step 1).
1721
1722
kmillikin@chromium.org83e16822011-09-13 08:21:47 +000017232011-09-13: Version 3.6.3
1724
1725 Implemented better support of typed arrays in the d8 shell.
1726
1727 Bug fixes and performance improvements on all platforms.
1728
1729
ricow@chromium.org55ee8072011-09-08 16:33:10 +000017302011-09-08: Version 3.6.2
1731
1732 Added "dependencies" target to top-level Makefile.
1733
1734 Added ability to turn profiler on/off in d8.
1735
1736 Added "soname_version" parameter to common.gypi, v8.gyp, and Makefile.
1737
1738 Fixed several crash bugs.
1739
1740
jkummerow@chromium.org486075a2011-09-07 12:44:28 +000017412011-09-07: Version 3.6.1
1742
1743 Fixed a bug in abrupt exit from with or catch inside finally.
1744
1745 Fixed possible crash in FixedDoubleArray::Initialize() (Chromium
1746 issue 95113).
1747
1748 Fixed a bug in Page::GetRegionMaskForSpan (Chromium issue 94425).
1749
1750 Fixed a few clang warnings (which -Werror treated as errors).
1751
1752 Performance improvements on all platforms.
1753
1754
fschneider@chromium.org1805e212011-09-05 10:49:12 +000017552011-09-05: Version 3.6.0
1756
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001757 Fixed a bug when optimizing named function expression (issue 1647).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001758
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001759 Fixed a bug when optimizing f.call.apply (issue 1650).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001760
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001761 Made arguments and caller always be null on native functions
1762 (issues 1548 and 1643).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001763
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001764 Fixed issue 1648 (cross-compiling x64 targeting ia32).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001765
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001766 Fixed issue 371 (d8 printing of strings containing \0).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001767
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001768 Fixed order of evaluation in arguments to parseInt (issue 1649).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001769
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001770 Fixed a problem with large heap snapshots in Chrome DevTools
1771 (issue 1658, chromium issue 89268).
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001772
ricow@chromium.org55ee8072011-09-08 16:33:10 +00001773 Upped default maximum heap size from 512M to 700M.
fschneider@chromium.org1805e212011-09-05 10:49:12 +00001774
1775
yangguo@chromium.org80c42ed2011-08-31 09:03:56 +000017762011-08-31: Version 3.5.10
1777
1778 Added dependency of v8_base on WinSocket2 Windows library in
1779 the GYP-build.
1780
1781 Various bugfixes.
1782
1783
ricow@chromium.org4668a2c2011-08-29 10:41:00 +000017842011-08-29: Version 3.5.9
1785
1786 Made FromPropertyDescriptor not trigger inherited setters.
1787
1788 Fixed .gyp files to work on the ARM simulator.
1789
1790 Fixed shared library build warnings for MSVS.
1791
1792
ricow@chromium.orgddd545c2011-08-24 12:02:41 +000017932011-08-24: Version 3.5.8
1794
1795 Added V8EXPORT attributes for v8::Array::CheckCast and
1796 v8::Number::CheckCast.
1797
1798 Made a slight API change enabling opting out from null termination
1799 in String::Write*().
1800
1801 Fixed arm build for gcc-4.6.
1802
1803
rossberg@chromium.org28a37082011-08-22 11:03:23 +000018042011-08-22: Version 3.5.7
1805
1806 Make scanner handle invalid unicode escapes in identifiers correctly.
1807
1808 Make regexp flag parsing stricter.
1809
1810 Fix several memory leaks.
1811
1812
danno@chromium.orgb6451162011-08-17 14:33:23 +000018132011-08-17: Version 3.5.6
1814
1815 Fixed issue that could cause crashes when running with --heap-stats.
1816
1817 Fixed compilation on Linux 2.6.9 and older.
1818
1819 Fixed live-object-list to work with isolates.
1820
1821 Fixed memory leaks in zones and isolates.
1822
1823 Fixed a performance regression for TypedArrays on x64.
1824
1825 Stability improvements on all platforms.
1826
1827
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +000018282011-08-15: Version 3.5.5
1829
1830 Fixed bugs involving negative zero and the optimizing compiler.
1831
1832 Fixed optimized version of Function.apply(x, arguments). (issue 1592)
1833
1834 Eliminated uses of deprecated ARM instructions.
1835
1836 Sped up Math.floor by using SSE 4.1 roundsd instruction on ia32.
1837
1838 Removed restriction on the size of disassembled code that is printed.
1839
1840
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000018412011-08-10: Version 3.5.4
1842
1843 Added a preliminary implementation of ES Harmony weak maps. Weak
1844 maps can be enabled by the flag --harmony-weakmaps.
1845
1846 Introduced a toplevel Makefile to support GYP-based building. GYP
1847 can be obtained from http://gyp.googlecode.com.
1848
1849 Fixed a bug in the length property of functions created by
1850 Function.prototype.bind.
1851
1852 Reduced malloc heap allocation on process startup.
1853
1854 Several important code generation bug fixes.
1855
1856 Performance improvements on all platforms.
1857
1858
lrn@chromium.orgd4e9e222011-08-03 12:01:58 +000018592011-08-03: Version 3.5.3
1860
1861 MIPS: Port of fix to ClassOf check from ARM.
1862 Patch from Paul Lind <plind44@gmail.com>.
1863
1864 Stopped using mprotect on Cygwin.
1865 Avoided uninitialized member warning on gcc 4.3.4
1866 Both patches by Bert Belder.
1867
1868 Bug fixes and performance improvements on all platforms.
1869
1870
vegorov@chromium.org7943d462011-08-01 11:41:52 +000018712011-08-01: Version 3.5.2
1872
1873 Performance improvements on all platforms.
1874
1875
ricow@chromium.org2c99e282011-07-28 09:15:17 +000018762011-07-28: Version 3.5.1
1877
1878 Fixed setting the readonly flag on the prototype property using the
1879 API call FunctionTemplate::SetPrototypeAttributes (issue 1539).
1880
1881 Changed the tools/test.py script to use d8 instead of shell for
1882 testing.
1883
1884 Fixed crash in ToBooleanStub when GC happens during invocation.
1885
1886 Enabled automatic unboxing of double arrays.
1887
1888 Performance improvements on all platforms.
1889
1890
ricow@chromium.org9fa09672011-07-25 11:05:35 +000018912011-07-25: Version 3.5.0
1892
1893 Implemented Object.prototype.{hasOwnProperty, propertyIsEnumerable} for
1894 proxies.
1895
1896 Removed logging to memory support.
1897
1898 Bugfixes and performance work.
1899
1900
rossberg@chromium.org717967f2011-07-20 13:44:42 +000019012011-07-20: Version 3.4.14
1902
1903 Fix the debugger for strict-mode functions. (Chromium issue 89236)
1904
jkummerow@chromium.org04e4f1e2011-11-14 13:36:17 +00001905 Add GetPropertyAttribute method for Object in the API. (Patch by
ricow@chromium.org9fa09672011-07-25 11:05:35 +00001906 Peter Varga)
rossberg@chromium.org717967f2011-07-20 13:44:42 +00001907
1908 Fix -Wunused-but-set-variable for gcc-4.6 on x64. (Issue 1291)
1909
1910
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000019112011-07-18: Version 3.4.13
1912
1913 Improved debugger support to allow inspection of optimized frames (issue
1914 1140).
1915
1916 Fixed a bug in prototype transitions cache clearing introduced by r8165.
1917
1918 Fixed shortcutting bug in HInferRepresentation. Patch by Andy Wingo.
1919
1920 Fixed a memory leak in sample/shell.cc (dispose semaphores).
1921
1922 Simplified HClampToUint8. Patch by Andy Wingo.
1923
1924 Exposed APIs for detecting boxed primitives, native errors. Patch by
1925 Luke Zarko.
1926
1927 Added map check for COW elements to crankshaft array handling code
1928 (issue 1560).
1929
1930 Sample shell and (a light version of) D8 links against a shared library
1931 now.
1932
1933 Fixed bug in array filter and reduce functions (issue 1559).
1934
1935 Avoid TLS load in AstNode constructor.
1936
1937 Introduced a random entropy source which can optionally be provided at
1938 initialization. (Chromium issue 89462).
1939
1940
whesse@chromium.org030d38e2011-07-13 13:23:34 +000019412011-07-13: Version 3.4.12
1942
1943 Added --prof profiling option to d8 shell.
1944
1945 Fixed a bug where reading a directory in d8 shell hangs (issue 1533).
1946
1947 Fixed a potential assertion failure in const declarations.
1948
1949 Fixed an assertion failure in descriptor arrays (issue 1526).
1950
1951 Enabled fast thread-local storage by default on supported platforms.
1952
1953 Improved reporting of source position for global variable loads
1954 (issue 1527).
1955
1956
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000019572011-07-11: Version 3.4.11
1958
1959 Fixed MinGW32 build.
1960
1961 Fixed a GC bug with RegExp code flushing.
1962
1963 Implemented Object.defineProperty for proxies.
1964
1965 Fixed a bug in for/in iteration of arguments objects (issue 1531).
1966
1967 Added debugger support for inspecting optimized frames (issue 1140).
1968
1969 Allowed JSObject::PreventExtensions to work for arguments objects.
1970
1971 Bugfixes and performance work.
1972
1973
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +000019742011-07-06: Version 3.4.10
1975
1976 Fixed debugger not breaking on certain "if" statements (issue 1523).
1977
1978 Fixed assertion failure in runtime profiler when running on IA32
1979 without snapshot (issue 1522).
1980
1981 Fixed ABI for API calls on IA32 (for clang compatibility).
1982
1983 Introduced code flushing of RegExp code to free memory used by
1984 RegExps sooner.
1985
1986 Fixed linux-tick-processor built wrong version of v8 (issue 1532).
1987
1988 Fixed assertion failure in v8::TryCache::StackTrace (issue 1529).
1989
1990 Performance improvements on all platforms.
1991
1992
ricow@chromium.org4f693d62011-07-04 14:01:31 +000019932011-07-04: Version 3.4.9
1994
1995 Added support for debugger inspection of locals in optimized frames
1996 (issue 1140).
1997
1998 Fixed SConstruct to pass correct defines to samples/preparser when
1999 building with library=shared.
2000
2001 Made date parser handle ES5 Date Time Strings correctly (issue 1498).
2002
2003 Fixed a bug in Object.defineProperty on the arguments object.
2004
2005 Performance improvements on all platforms.
2006
2007
vegorov@chromium.org3cf47312011-06-29 13:20:01 +000020082011-06-29: Version 3.4.8
2009
2010 Ensure 16-byte stack alignment on Solaris (issue 1505).
2011
sgjesse@chromium.org6db88712011-07-11 11:41:22 +00002012 Fix "illegal access" when calling parseInt with a radix
vegorov@chromium.org3cf47312011-06-29 13:20:01 +00002013 that is not a smi. (issue 1246).
2014
2015
ager@chromium.org04921a82011-06-27 13:21:41 +000020162011-06-27: Version 3.4.7
2017
2018 Fixed 64-bit build on FreeBSD.
2019
2020 Added API to set the property attributes for the prototype
2021 property on functions created from FunctionTemplates.
2022
2023 Bugfixes and performance work.
2024
2025
lrn@chromium.orgac2828d2011-06-23 06:29:21 +000020262011-06-22: Version 3.4.6
2027
2028 Lowered limit on code space for systems with low memory supply.
2029
2030 Allowed compiling v8_shell with the 'host' toolset (issue 82437).
2031
2032 Extended setBreakpoint API to accept partial script name (issue 1418).
2033
2034 Made multi-line comments not count when deciding whether the '-->'
2035 comment starter is first on a line. This matches Safari.
2036
2037 Made handling of non-array recievers in Array length setter correct
2038 (issue 1491).
2039
2040 Added ability to heap profiler to iterate over snapshot's node
2041 (issue 1481).
2042
2043
whesse@chromium.org7b260152011-06-20 15:33:18 +000020442011-06-20: Version 3.4.5
2045
2046 Fixed issues 794, 1097, 1215(partial), 1417, 1435, 1472, 1473,
2047 1476, and 1477.
2048
2049 Improved code generation for !0 and !1.
2050
2051 Reduced memory usage for regular expressions with nested qualifiers.
2052 (issue 1472)
2053
2054 Fixed V8 to count line terminators in multi-line comments.
2055 (Chromium issue 86431)
2056
2057 Fixed disassembler=on option for release-mode builds. (issue 1473)
2058
2059 Performance improvements on all platforms.
2060
2061
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +000020622011-06-15: Version 3.4.4
2063
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002064 Added snapshot compression support and --stress-opt flag to d8.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002065
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002066 Improved performance of try/catch.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002067
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002068 Several GYP-related changes: Added support for building Xcode project
2069 files. Make the ARM simulator build with GYP again. Generate Makefiles
2070 for all architectures on Linux.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002071
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002072 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the
2073 receiver for strict mode callbacks. (issue 1436)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002074
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002075 Fixed a bug where an array load was incorrectly hoisted by GVN.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002076
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002077 Handle 'undefined' correctly when === has been specialized for doubles.
2078 (issue 1434)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002079
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002080 Corrected the limit of local variables in an optimized function from 64
2081 to 63.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002082
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002083 Correctly set ReadOnly flag on indexed properties when using the API Set
2084 method. (issue 1470)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002085
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002086 Give the correct error message when Object.isExtensible is called on a
2087 non-object. (issue 1452)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002088
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002089 Added GetOwnPropertyNames method for Object in the API. Patch by Peter
2090 Varga.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002091
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002092 Do not redefine properties unneccesarily in seal and freeze. (issue
2093 1447)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002094
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002095 IsExecutionTerminating has an Isolate parameter now.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002096
ricow@chromium.org4f693d62011-07-04 14:01:31 +00002097 Distinguish keyed loads with a symbol key from fast elements loads,
2098 avoiding some useless deoptimizations. (issue 1471)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002099
2100
jkummerow@chromium.orge297f592011-06-08 10:05:15 +000021012011-06-08: Version 3.4.3
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002102
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00002103 Clear the global thread table when an isolate is disposed
2104 (issue 1433).
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002105
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00002106 Converted time zone name to UTF8 on Windows (issue 1290).
2107
2108 Limited the number of arguments in a function call to 32766
2109 (issue 1413).
2110
2111 Compress sources of JS libraries in addition to the snapshot.
2112
2113 Fixed a bug in Lithium environment iteration.
2114
2115 Performance improvements on all platforms.
erik.corry@gmail.com8a177112011-06-08 07:23:54 +00002116
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002117
erik.corry@gmail.comd6076d92011-06-06 09:39:18 +000021182011-06-06: Version 3.4.2
2119
2120 More work on ES-Harmony proxies. Still hidden behind a flag.
2121
2122 Fixed some crash bugs and improved performance.
2123
2124 Fixed building with gdb debugging support.
2125
2126 Do not install SIGPROF handler until it is needed.
2127
2128 Added DateTimeFormat to i18n API.
2129
2130 Fixed compilation on OpenBSD.
2131
2132 Take the ulimit into account when sizing the heap. OpenBSD users
2133 may still have to increase the default ulimit to run heavy pages in
2134 the browser.
2135
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00002136
ricow@chromium.orgd2be9012011-06-01 06:00:58 +000021372011-06-01: Version 3.4.1
2138
2139 Fixed JSON stringify issue with arrays.
2140
2141 Changed calls to JS builtins to be passed undefined when called with
2142 implicit receiver.
2143
2144 Implemented the set trap for Harmony proxies. Proxies still need to
2145 be enabled with the --harmony-proxies flag.
2146
2147
ricow@chromium.orgc54d3652011-05-30 09:20:16 +000021482011-05-30: Version 3.4.0
2149
2150 Changed calls to undefined property setters to not throw (issue 1355).
2151
2152 Made RegExp objects not callable.
2153
2154 Fixed issues on special case large JSON strings in new json parser
2155 (issues http://crbug.com/83877 and http://crbug.com/84186).
2156
2157 Performance improvements on all platforms.
2158
2159
danno@chromium.org40cb8782011-05-25 07:58:50 +000021602011-05-25: Version 3.3.10
2161
2162 Fixed calls of strict mode function with an implicit receiver.
2163
2164 Fixed fast handling of arrays to properly deal with changes to the
2165 Object prototype (issue 1403).
2166
2167 Changed strict mode poison pill to be the same type error function
2168 (issue 1387).
2169
2170 Fixed a debug crash in arguments object handling (issue 1227).
2171
2172 Fixed a bug in deoptimization on x64 (issue 1404).
2173
2174 Performance improvements and bug fixes on all platforms.
2175
2176
ager@chromium.orgea91cc52011-05-23 06:06:11 +000021772011-05-23: Version 3.3.9
2178
2179 Added DateTimeFormat class to experimental i18n API.
2180
2181 Extended preparser to give early errors for some strict mode
2182 restrictions.
2183
2184 Removed legacy execScript function from V8.
2185
2186 Extended isolate API with the ability to add embedder-specific
2187 data to an isolate.
2188
2189 Added basic support for polymorphic loads from JS and external
2190 arrays.
2191
2192 Fixed bug in handling of switch statements in the optimizing
2193 compiler.
2194
2195
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +000021962011-05-18: Version 3.3.8
2197
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002198 Added MarkIndependent to the persistent handle API. Independent
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00002199 handles are independent of all other persistent handles and can be
2200 garbage collected more frequently.
2201
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002202 Implemented the get trap for Harmony proxies. Proxies are enabled
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00002203 with the --harmony-proxies flag.
2204
2205 Performance improvements and bug fixes on all platforms.
2206
2207
vegorov@chromium.org7304bca2011-05-16 12:14:13 +000022082011-05-16: Version 3.3.7
2209
2210 Updated MIPS infrastructure files.
2211
2212 Performance improvements and bug fixes on all platforms.
2213
2214
karlklose@chromium.org83a47282011-05-11 11:54:09 +000022152011-05-11: Version 3.3.6
2216
2217 Updated MIPS infrastructure files.
2218
2219 Added method IsCallable for Object to the API.
2220 Patch by Peter Varga.
2221
2222
lrn@chromium.org1c092762011-05-09 09:42:16 +000022232011-05-09: Version 3.3.5
2224
2225 Fixed build on FreeBSD. Patch by Akinori MUSHA.
2226
2227 Added check that receiver is JSObject on API calls.
2228
2229 Implemented CallAsConstructor method for Object in the API (Issue 1348).
2230 Patch by Peter Varga.
2231
2232 Added CallAsFunction method to the Object class in the API (Issue 1336).
2233 Patch by Peter Varga.
2234
2235 Added per-isolate locking and unlocking.
2236
2237 Fixed bug in x64 >>> operator (Issue 1359).
2238
2239
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +000022402011-05-04: Version 3.3.4
2241
2242 Implemented API to disallow code generation from strings for a context
2243 (issue 1258).
2244
2245 Fixed bug with whitespaces in parseInt (issue 955).
2246
2247 Fixed bug with == comparison of Date objects (issue 1356).
2248
2249 Added GYP variables for ARM code generation:
2250 v8_can_use_vfp_instructions, v8_can_use_unaligned_accesses
2251 and v8_use_arm_eabi_hardfloat.
2252
2253
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000022542011-05-02: Version 3.3.3
2255
2256 Added support for generating Visual Studio solution and project files
2257 using GYP.
2258
2259 Implemented support for ARM EABI calling convention variation where
2260 floating-point arguments are passed in registers (hardfloat).
2261
2262 Added Object::HasOwnProperty() to the API.
2263
2264 Added support for compressing startup data to reduce binary size. This
2265 includes build time support and an API for the embedder to decompress
2266 the startup data before initializing V8.
2267
2268 Reduced the profiling hooks overhead from >400% to 25% when using
2269 ll_prof.
2270
2271 Performance improvements and bug fixes on all platforms.
2272
2273
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +000022742011-04-27: Version 3.3.2
2275
2276 Fixed crash bug on ARM with no VFP3 hardware.
2277
2278 Fixed compilation of V8 without debugger support.
2279
2280 Improved performance on JSLint.
2281
2282 Added support Float64 WebGL arrays.
2283
2284 Fixed crash bug in regexp replace.
2285
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +00002286
ricow@chromium.orgdcebac02011-04-20 09:44:50 +000022872011-04-20: Version 3.3.1
2288
2289 Reduced V8 binary size by removing virtual functions from hydrogen.
2290
2291 Fixed crash bug on x64.
2292
2293 Performance improvements on ARM and IA32.
2294
2295
danno@chromium.org160a7b02011-04-18 15:51:38 +000022962011-04-18: Version 3.3.0
2297
2298 Fixed bug in floating point rounding in Crankshaft on ARM
2299 (issue 958)
2300
2301 Fixed a number of issues with running without VFPv3 support on ARM
2302 (issue 1315)
2303
2304 Introduced v8Locale.Collator, a partial implementation of Collator
2305 per last ECMAScript meeting + mailing list.
2306
2307 Minor performance improvements and bug fixes.
2308
2309
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000023102011-04-13: Version 3.2.10
2311
2312 Fixed bug in external float arrays on ARM (issue 1323).
2313
2314 Minor performance improvements and bug fixes.
2315
2316
karlklose@chromium.org44bc7082011-04-11 12:33:05 +000023172011-04-11: Version 3.2.9
2318
2319 Removed support for ABI prior to EABI on ARM.
2320
2321 Fixed multiple crash bugs.
2322
2323 Added GCMole to the repository, a simple static analysis tool that
2324 searches for GC-unsafe evaluation order dependent callsites.
2325
2326 Made preparser API be exported in shared libraries.
2327
2328 Fixed multiple issues in EcmaScript 5 strict mode implementation.
2329
2330 Fixed mutable __proto__ property if object is not extensible
2331 (Issue 1309).
2332
2333 Fixed auto suspension of the sampler thread.
2334
2335
vegorov@chromium.org74f333b2011-04-06 11:17:46 +000023362011-04-06: Version 3.2.8
2337
2338 Exposed WebGL typed array constructors in the shell sample.
2339
2340 Performance improvements on all platforms.
2341
2342
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +000023432011-04-04: Version 3.2.7
2344
2345 Disabled the original 'classic' V8 code generator. Crankshaft is
2346 now the default on all platforms.
2347
2348 Changed the heap profiler to use more descriptive names.
2349
2350 Performance and stability improvements to isolates on all platforms.
2351
2352
lrn@chromium.org7516f052011-03-30 08:52:27 +000023532011-03-30: Version 3.2.6
2354
2355 Fixed xcode build warning in shell.cc (out of order initialization).
2356
2357 Fixed null-pointer dereference in the compiler when running without
2358 SSE3 support (Chromium issue 77654).
2359
2360 Fixed x64 compilation error due to some dead code. (Issue 1286)
2361
2362 Introduced scons target to build the preparser stand-alone example.
2363
2364 Made FreeBSD build and pass all tests.
2365
2366
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +000023672011-03-28: Version 3.2.5
2368
lrn@chromium.org7516f052011-03-30 08:52:27 +00002369 Fixed build with Irregexp interpreter (issue 1266).
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00002370
2371 Added Crankshaft support for external arrays.
2372
2373 Fixed two potential crash bugs.
2374
2375
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000023762011-03-23: Version 3.2.4
2377
2378 Added isolates which allows several V8 instances in the same process.
2379 This is controlled through the new Isolate class in the API.
2380
2381 Implemented more of EcmaScript 5 strict mode.
2382
2383 Reduced the time it takes to make detailed heap snapshot.
2384
2385 Added a number of commands to the ARM simulator and enhanced the ARM
2386 disassembler.
2387
2388
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +000023892011-03-17: Version 3.2.3
2390
2391 Fixed a number of crash bugs.
2392
2393 Fixed Array::New(length) to return an array with a length (issue 1256).
2394
2395 Fixed FreeBSD build.
2396
2397 Changed __defineGetter__ to not throw (matching the behavior of Safari).
2398
2399 Implemented more of EcmaScript 5 strict mode.
2400
2401 Improved Crankshaft performance on all platforms.
2402
2403
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000024042011-03-14: Version 3.2.2
2405
2406 Fixed a number of crash and correctness bugs.
2407
2408 Improved Crankshaft performance on all platforms.
2409
2410 Fixed Crankshaft on Solaris/Illumos.
2411
2412
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +000024132011-03-10: Version 3.2.1
2414
2415 Fixed a number of crash bugs.
2416
2417 Improved Crankshaft for x64 and ARM.
2418
2419 Implemented more of EcmaScript 5 strict mode.
2420
2421
karlklose@chromium.org8f806e82011-03-07 14:06:08 +000024222011-03-07: Version 3.2.0
2423
2424 Fixed a number of crash bugs.
2425
2426 Turned on Crankshaft by default on x64 and ARM.
2427
2428 Improved Crankshaft for x64 and ARM.
2429
2430 Implemented more of EcmaScript 5 strict mode.
2431
2432
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000024332011-03-02: Version 3.1.8
2434
2435 Fixed a number of crash bugs.
2436
2437 Improved Crankshaft for x64 and ARM.
2438
2439 Implemented more of EcmaScript 5 strict mode.
2440
2441 Fixed issue with unaligned reads and writes on ARM.
2442
2443 Improved heap profiler support.
2444
2445
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +000024462011-02-28: Version 3.1.7
2447
2448 Fixed a number of crash bugs.
2449
2450 Improved Crankshaft for x64 and ARM.
2451
ager@chromium.org9ee27ae2011-03-02 13:43:26 +00002452 Fixed implementation of indexOf/lastIndexOf for sparse
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +00002453 arrays (http://crbug.com/73940).
2454
2455 Fixed bug in map space compaction (http://crbug.com/59688).
2456
2457 Added support for direct getter accessors calls on ARM.
2458
2459
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000024602011-02-24: Version 3.1.6
2461
2462 Fixed a number of crash bugs.
2463
2464 Added support for Cygwin (issue 64).
2465
2466 Improved Crankshaft for x64 and ARM.
2467
2468 Added Crankshaft support for stores to pixel arrays.
2469
2470 Fixed issue in CPU profiler with Crankshaft.
2471
2472
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +000024732011-02-16: Version 3.1.5
2474
2475 Change RegExp parsing to disallow /(*)/.
2476
2477 Added GDB JIT support for ARM.
2478
2479 Fixed several crash bugs.
2480
2481 Performance improvements on the IA32 platform.
2482
2483
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +000024842011-02-14: Version 3.1.4
2485
2486 Fixed incorrect compare of prototypes of the global object (issue
2487 1082).
2488
2489 Fixed a bug in optimizing calls to global functions (issue 1106).
2490
2491 Made optimized Function.prototype.apply safe for non-JSObject first
2492 arguments (issue 1128).
2493
2494 Fixed an error related to element accessors on Object.prototype and
2495 parser errors (issue 1130).
2496
2497 Fixed a bug in sorting an array with large array indices (issue 1131).
2498
2499 Properly treat exceptions thrown while compiling (issue 1132).
2500
2501 Fixed bug in register requirements for function.apply (issue 1133).
2502
2503 Fixed a representation change bug in the Hydrogen graph construction
2504 (issue 1134).
2505
2506 Fixed the semantics of delete on parameters (issue 1136).
2507
2508 Fixed a optimizer bug related to moving instructions with side effects
2509 (issue 1138).
2510
2511 Added support for the global object in Object.keys (issue 1150).
2512
2513 Fixed incorrect value for Math.LOG10E
2514 (issue http://code.google.com/p/chromium/issues/detail?id=72555)
2515
2516 Performance improvements on the IA32 platform.
2517
2518 Implement assignment to undefined reference in ES5 Strict Mode.
2519
2520
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +000025212011-02-09: Version 3.1.3
2522
2523 Fixed a bug triggered by functions with huge numbers of declared
2524 arguments.
2525
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002526 Fixed zap value aliasing a real object - debug mode only (issue 866).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00002527
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002528 Fixed issue where Array.prototype.__proto__ had been set to null
2529 (issue 1121).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00002530
2531 Fixed stability bugs in Crankshaft for x86.
2532
2533
ricow@chromium.org83aa5492011-02-07 12:42:56 +000025342011-02-07: Version 3.1.2
2535
2536 Added better security checks when accessing properties via
2537 Object.getOwnPropertyDescriptor.
2538
2539 Fixed bug in Object.defineProperty and related access bugs (issues
2540 992, 1083 and 1092).
2541
2542 Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease
2543 copyright notice generation for embedders.
2544
2545
kmillikin@chromium.org31b12772011-02-02 16:08:26 +000025462011-02-02: Version 3.1.1
2547
2548 Perform security checks before fetching the value in
2549 Object.getOwnPropertyDescriptor.
2550
2551 Fixed a bug in Array.prototype.splice triggered by passing no
2552 arguments.
2553
2554 Fixed bugs in -0 in arithmetic and in Math.pow.
2555
2556 Fixed bugs in the register allocator and in switching from optimized
2557 to unoptimized code.
2558
2559
25602011-01-31: Version 3.1.0
2561
whesse@chromium.org7a392b32011-01-31 11:30:36 +00002562 Performance improvements on all platforms.
2563
2564
ager@chromium.org378b34e2011-01-28 08:04:38 +000025652011-01-28: Version 3.0.12
2566
2567 Added support for strict mode parameter and object property
2568 validation.
2569
2570 Fixed a couple of crash bugs.
2571
2572
ager@chromium.org0ee099b2011-01-25 14:06:47 +000025732011-01-25: Version 3.0.11
2574
2575 Fixed a bug in deletion of lookup slots that could cause global
2576 variables to be accidentally deleted (http://crbug.com/70066).
2577
2578 Added support for strict mode octal literal verification.
2579
2580 Fixed a couple of crash bugs (issues 1070 and 1071).
2581
2582
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +000025832011-01-24: Version 3.0.10
2584
2585 Fixed External::Wrap for 64-bit addresses (issue 1037).
2586
ager@chromium.org0ee099b2011-01-25 14:06:47 +00002587 Fixed incorrect .arguments variable proxy handling in the full
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002588 code generator (issue 1060).
2589
2590 Introduced partial strict mode support.
2591
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00002592 Changed formatting of recursive error messages to match Firefox and
2593 Safari (issue http://crbug.com/70334).
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002594
2595 Fixed incorrect rounding for float-to-integer conversions for external
ager@chromium.org0ee099b2011-01-25 14:06:47 +00002596 array types, which implement the Typed Array spec
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00002597 (issue http://crbug.com/50972).
2598
2599 Performance improvements on the IA32 platform.
2600
2601
erik.corry@gmail.com0511e242011-01-19 11:11:08 +000026022011-01-19: Version 3.0.9
2603
2604 Added basic GDB JIT Interface integration.
2605
2606 Make invalid break/continue statements a syntax error instead of a
2607 runtime error.
2608
2609
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000026102011-01-17: Version 3.0.8
2611
2612 Exposed heap size limit to the heap statistics gathered by
erik.corry@gmail.com0511e242011-01-19 11:11:08 +00002613 the GetHeapStatistics API.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00002614
2615 Wrapped external pointers more carefully (issue 1037).
2616
2617 Hardened the implementation of error objects to avoid setters
2618 intercepting the properties set then throwing an error.
2619
2620 Avoided trashing the FPSCR when calculating Math.floor on ARM.
2621
2622 Performance improvements on the IA32 platform.
2623
2624
26252011-01-10: Version 3.0.7
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002626
2627 Stopped calling inherited setters when creating object literals
2628 (issue 1015).
2629
2630 Changed interpretation of malformed \c? escapes in RegExp to match
2631 JSC.
2632
2633 Enhanced the command-line debugger interface and fixed some minor
2634 bugs in the debugger.
2635
2636 Performance improvements on the IA32 platform.
2637
2638
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +000026392011-01-05: Version 3.0.6
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002640
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002641 Allowed getters and setters on JSArray elements (issue 900).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002642
2643 Stopped JSON objects from hitting inherited setters (part of
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002644 issue 1015).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002645
2646 Allowed numbers and strings as names of getters/setters in object
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002647 initializer (issue 820).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002648
2649 Added use_system_v8 option to gyp (off by default), to make it easier
2650 for Linux distributions to ship with system-provided V8 library.
2651
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002652 Exported external array data accessors (issue 1016).
lrn@chromium.org5d00b602011-01-05 09:51:43 +00002653
2654 Added labelled thread names to help with debugging (on Linux).
2655
2656
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +000026572011-01-03: Version 3.0.5
2658
2659 Fixed a couple of cast errors for gcc-3.4.3.
2660
2661 Performance improvements in GC and IA32 code generator.
2662
2663
whesse@chromium.org023421e2010-12-21 12:19:12 +000026642010-12-21: Version 3.0.4
2665
2666 Added Date::ResetCache() to the API so that the cached values in the
2667 Date object can be reset to allow live DST / timezone changes.
2668
2669 Extended existing support for printing (while debugging) the contents
2670 of objects. Added support for printing objects from release builds.
2671
2672 Fixed V8 issues 989, 1006, and 1007.
2673
2674
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000026752010-12-17: Version 3.0.3
2676
2677 Reapplied all changes for version 3.0.1.
2678
2679 Improved debugger protocol for remote debugging.
2680
2681 Added experimental support for using gyp to generate build files
2682 for V8.
2683
2684 Fixed implementation of String::Write in the API (issue 975).
2685
2686
lrn@chromium.org8541d772010-12-15 12:05:09 +000026872010-12-15: Version 3.0.2
2688
2689 Revert version 3.0.1 and patch 3.0.1.1.
2690
2691
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +000026922010-12-13: Version 3.0.1
2693
2694 Added support for an experimental internationalization API as an
2695 extension. This extension is disabled by default but can be enabled
2696 when building V8. The ECMAScript internationalization strawman is
2697 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
2698
2699 Made RegExp character class parsing stricter. This mirrors a change
2700 to RegExp parsing in WebKit.
2701
2702 Fixed a bug in Object.defineProperty when used to change attributes
2703 of an existing property. It incorrectly set the property value to
2704 undefined (issue 965).
2705
2706 Fixed several different compilation failures on various platforms
2707 caused by the 3.0.0 release.
2708
2709 Optimized Math.pow so it can work on unboxed doubles.
2710
2711 Sped up quoting of JSON strings by removing one traversal of the
2712 string.
2713
2714
kasperl@chromium.orga5551262010-12-07 12:49:48 +000027152010-12-07: Version 3.0.0
2716
2717 Improved performance by (partially) addressing issue 957 on
2718 IA-32. Still needs more work for the other architectures.
2719
2720
ager@chromium.orgbeb25712010-11-29 08:02:25 +000027212010-11-29: Version 2.5.9
2722
2723 Fixed crashes during GC caused by partially initialize heap
2724 objects.
2725
2726 Fixed bug in process sample that caused memory leaks.
2727
2728 Improved performance on ARM by implementing missing stubs and
2729 inlining.
2730
2731 Improved heap profiler support.
2732
2733 Added separate seeding on Windows of the random number generator
2734 used internally by the compiler (issue 936).
2735
2736 Exposed API for getting the name of the function used to construct
2737 an object.
2738
2739 Fixed date parser to handle one and two digit millisecond
2740 values (issue 944).
2741
2742 Fixed number parsing to disallow space between sign and
2743 digits (issue 946).
2744
2745
vegorov@chromium.org21b5e952010-11-23 10:24:40 +000027462010-11-23: Version 2.5.8
2747
2748 Removed dependency on Gay's dtoa.
2749
2750 Improved heap profiler precision and speed.
2751
2752 Reduced overhead of callback invocations on ARM.
2753
2754
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +000027552010-11-18: Version 2.5.7
2756
2757 Fixed obscure evaluation order bug (issue 931).
2758
2759 Split the random number state between JavaScript and the private API.
2760
2761 Fixed performance bug causing GCs when generating stack traces on
2762 code from very large scripts.
2763
2764 Fixed bug in parser that allowed (foo):42 as a labelled statement
2765 (issue 918).
2766
2767 Provide more accurate results about used heap size via
2768 GetHeapStatistics.
2769
2770 Allow build-time customization of the max semispace size.
2771
2772 Made String.prototype.split honor limit when separator is empty
2773 (issue 929).
2774
2775 Added missing failure check after expecting an identifier in
2776 preparser (Chromium issue 62639).
2777
2778
ager@chromium.org01fe7df2010-11-10 11:59:11 +000027792010-11-10: Version 2.5.6
2780
2781 Added support for VFP rounding modes to the ARM simulator.
2782
2783 Fixed multiplication overflow bug (issue 927).
2784
2785 Added a limit for the amount of executable memory (issue 925).
2786
2787
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +000027882010-11-08: Version 2.5.5
2789
2790 Added more aggressive GC of external objects in near out-of-memory
2791 situations.
2792
2793 Fixed a bug that gave the incorrect result for String.split called
2794 on the empty string (issue 924).
2795
2796
lrn@chromium.orgfa943b72010-11-03 08:14:36 +000027972010-11-03: Version 2.5.4
2798
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +00002799 Improved V8 VFPv3 runtime detection to address issue 914.
lrn@chromium.orgfa943b72010-11-03 08:14:36 +00002800
2801
fschneider@chromium.orge03fb642010-11-01 12:34:09 +000028022010-11-01: Version 2.5.3
2803
2804 Fixed a bug that prevents constants from overwriting function values
2805 in object literals (issue 907).
2806
2807 Fixed a bug with reporting of impossible nested calls of DOM functions
2808 (issue http://crbug.com/60753).
2809
2810
lrn@chromium.org303ada72010-10-27 09:33:13 +000028112010-10-27: Version 2.5.2
2812
2813 Improved sampler resolution on Linux.
2814
2815 Allowed forcing the use of a simulator from the build script
2816 independently of the host architecture.
2817
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +00002818 Fixed FreeBSD port (issue 912).
lrn@chromium.org303ada72010-10-27 09:33:13 +00002819
2820 Made windows-tick-processor respect D8_PATH.
2821
2822 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
2823
2824
whesse@chromium.org4a5224e2010-10-20 12:37:07 +000028252010-10-20: Version 2.5.1
2826
2827 Fixed bug causing spurious out of memory exceptions
2828 (issue http://crbug.com/54580).
2829
2830 Fixed compilation error on Solaris platform (issue 901).
2831
2832 Fixed error in strtod (string to floating point number conversion)
2833 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
2834
2835 Adjusted randomized allocations of executable memory to have 64k
2836 granularity (issue http://crbug.com/56036).
2837
2838 Supported profiling using kernel perf_events on linux. Added ll_prof
2839 script to tools and --ll-prof flag to V8.
2840
2841
vegorov@chromium.org42841962010-10-18 11:18:59 +000028422010-10-18: Version 2.5.0
2843
2844 Fixed bug in cache handling of lastIndex on global regexps
2845 (issue http://crbug.com/58740).
2846
2847 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
2848 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +00002849 from Hewlett-Packard Development Company, LP).
vegorov@chromium.org42841962010-10-18 11:18:59 +00002850
2851 Fixed compilation error on ARM with gcc 4.4 (issue 894).
2852
2853
28542010-10-13: Version 2.4.9
ager@chromium.orgb61a0d12010-10-13 08:35:23 +00002855
2856 Fixed a bug in the handling of conditional expressions in test
2857 contexts in compiler for top-level code.
2858
2859 Added "//@ sourceURL" information to the StackTrace API.
2860
2861 Exposed RegExp construction through the API.
2862
2863
ricow@chromium.orgeb7c1442010-10-04 08:54:21 +000028642010-10-04: Version 2.4.8
2865
2866 Fixed a bug in ResumeProfilerEx causing it to not always write out the
2867 whole snapshot (issue 868).
2868
2869 Performance improvements on all platforms.
2870
2871
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +000028722010-09-30: Version 2.4.7
2873
2874 Changed the command-line flag --max-new-space-size to be in kB and the
2875 flag --max-old-space-size to be in MB (previously they were in bytes).
2876
2877 Added Debug::CancelDebugBreak to the debugger API.
2878
2879 Fixed a bug in getters for negative numeric property names
2880 (https://bugs.webkit.org/show_bug.cgi?id=46689).
2881
2882 Performance improvements on all platforms.
2883
2884
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +000028852010-09-27: Version 2.4.6
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00002886
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00002887 Fixed assertion failure related to copy-on-write arrays (issue 876).
2888
2889 Fixed build failure of 64-bit V8 on Windows.
2890
2891 Fixed a bug in RegExp (issue http://crbug.com/52801).
2892
2893 Improved the profiler's coverage to cover more functions (issue 858).
2894
2895 Fixed error in shift operators on 64-bit V8
2896 (issue http://crbug.com/54521).
2897
2898
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +000028992010-09-22: Version 2.4.5
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00002900
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002901 Changed the RegExp benchmark to exercise the regexp engine on different
2902 inputs by scrambling the input strings.
2903
2904 Fixed a bug in keyed loads on strings.
2905
2906 Fixed a bug with loading global function prototypes.
2907
2908 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
2909
2910 Performance improvements on all platforms.
2911
2912
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +000029132010-09-15: Version 2.4.4
2914
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002915 Fixed bug with hangs on very large sparse arrays.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002916
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002917 Now tries harder to free up memory when running out of space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002918
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002919 Added heap snapshots to JSON format to API.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002920
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002921 Recalibrated benchmarks.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00002922
2923
sgjesse@chromium.org2ec107f2010-09-13 09:19:46 +000029242010-09-13: Version 2.4.3
2925
2926 Made Date.parse properly handle TZ offsets (issue 857).
2927
2928 Performance improvements on all platforms.
2929
2930
ager@chromium.org5b2fbee2010-09-08 06:38:15 +000029312010-09-08: Version 2.4.2
2932
2933 Fixed GC crash bug.
2934
2935 Fixed stack corruption bug.
2936
2937 Fixed compilation for newer C++ compilers that found Operand(0)
2938 ambiguous.
2939
2940
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +000029412010-09-06: Version 2.4.1
2942
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002943 Added the ability for an embedding application to receive a callback
2944 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
2945 (V8::RemoveMemoryAllocationCallback) from the OS.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002946
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002947 Fixed several JSON bugs (including issue 855).
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002948
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002949 Fixed memory overrun crash bug triggered during V8's tick-based
2950 profiling.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002951
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002952 Performance improvements on all platforms.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002953
2954
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000029552010-09-01: Version 2.4.0
2956
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002957 Fixed bug in Object.freeze and Object.seal when Array.prototype or
2958 Object.prototype are changed (issue 842).
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002959
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002960 Updated Array.splice to follow Safari and Firefox when called
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002961 with zero arguments.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002962
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002963 Fixed a missing live register when breaking at keyed loads on ARM.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002964
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002965 Performance improvements on all platforms.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00002966
2967
ricow@chromium.org65fae842010-08-25 15:26:24 +000029682010-08-25: Version 2.3.11
2969
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002970 Fixed bug in RegExp related to copy-on-write arrays.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002971
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002972 Refactored tools/test.py script, including the introduction of
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002973 VARIANT_FLAGS that allows specification of sets of flags with which
2974 all tests should be run.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002975
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002976 Fixed a bug in the handling of debug breaks in CallIC.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002977
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00002978 Performance improvements on all platforms.
ricow@chromium.org65fae842010-08-25 15:26:24 +00002979
2980
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000029812010-08-23: Version 2.3.10
2982
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002983 Fixed bug in bitops on ARM.
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00002984
2985 Build fixes for unusual compilers.
2986
2987 Track high water mark for RWX memory.
2988
2989 Performance improvements on all platforms.
2990
2991
ricow@chromium.org0b9f8502010-08-18 07:45:01 +000029922010-08-18: Version 2.3.9
2993
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002994 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00002995
2996 Removed specialized handling of GCC 4.4 (issue 830).
2997
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00002998 Fixed DST cache to take into account the suspension of DST in
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00002999 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
3000
ricow@chromium.org65fae842010-08-25 15:26:24 +00003001 Performance improvements on all platforms.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00003002
3003
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000030042010-08-16: Version 2.3.8
3005
3006 Fixed build with strict aliasing on GCC 4.4 (issue 463).
3007
3008 Fixed issue with incorrect handling of custom valueOf methods on
3009 string wrappers (issue 760).
3010
3011 Fixed compilation for ARMv4 (issue 590).
3012
3013 Improved performance.
3014
3015
vegorov@chromium.org26c16f82010-08-11 13:41:03 +000030162010-08-11: Version 2.3.7
3017
3018 Reduced size of heap snapshots produced by heap profiler (issue 783).
3019
3020 Introduced v8::Value::IsRegExp method.
3021
3022 Fixed CPU profiler crash in start / stop sequence when non-existent
3023 name is passed (issue http://crbug.com/51594).
3024
3025 Introduced new indexed property query callbacks API (issue 816). This
3026 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
3027 by default.
3028
3029 Removed support for object literal get/set with number/string
3030 property name.
3031
3032 Fixed handling of JSObject::elements in CalculateNetworkSize
3033 (issue 822).
3034
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003035 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003036
3037
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000030382010-08-09: Version 2.3.6
3039
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003040 RegExp literals create a new object every time they are evaluated
3041 (issue 704).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003042
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00003043 Object.seal and Object.freeze return the modified object (issue 809).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003044
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003045 Fixed building using GCC 4.4.4.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00003046
3047
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +000030482010-08-04: Version 2.3.5
3049
3050 Added support for ES5 property names. Object initialisers and
3051 dot-notation property access now allows keywords. Also allowed
3052 non-identifiers after "get" or "set" in an object initialiser.
3053
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003054 Randomized the addresses of allocated executable memory on Windows.
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +00003055
3056
whesse@chromium.orge90029b2010-08-02 11:52:17 +000030572010-08-02: Version 2.3.4
3058
3059 Fixed problems in implementation of ES5 function.prototype.bind.
3060
3061 Fixed error when using apply with arguments object on ARM (issue 784).
3062
3063 Added setting of global flags to debugger protocol.
3064
3065 Fixed an error affecting cached results of sin and cos (issue 792).
3066
3067 Removed memory leak from a boundary case where V8 is not initialized.
3068
3069 Fixed issue where debugger could set breakpoints outside the body
3070 of a function.
3071
3072 Fixed issue in debugger when using both live edit and step in features.
3073
3074 Added Number-letter (Nl) category to Unicode tables. These characters
3075 can now be used in identifiers.
3076
3077 Fixed an assert failure on X64 (issue 806).
3078
3079 Performance improvements on all platforms.
3080
3081
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +000030822010-07-26: Version 2.3.3
3083
3084 Fixed error when building the d8 shell in a fresh checkout.
3085
3086 Implemented Function.prototype.bind (ES5 15.3.4.5).
3087
3088 Fixed an error in inlined stores on ia32.
3089
3090 Fixed an error when setting a breakpoint at the end of a function
3091 that does not end with a newline character.
3092
3093 Performance improvements on all platforms.
3094
3095
fschneider@chromium.orged78ffd2010-07-21 11:05:19 +000030962010-07-21: Version 2.3.2
3097
3098 Fixed compiler warnings when building with LLVM.
3099
3100 Fixed a bug with for-in applied to strings (issue 785).
3101
3102 Performance improvements on all platforms.
3103
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00003104
ricow@chromium.org4980dff2010-07-19 08:33:45 +000031052010-07-19: Version 2.3.1
3106
3107 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
3108
3109 Fixed bug related to code flushing while compiling a lazy
3110 compilable function (issue http://crbug.com/49099).
3111
3112 Performance improvements on all platforms.
3113
3114
ager@chromium.orgb5737492010-07-15 09:29:43 +000031152010-07-15: Version 2.3.0
3116
3117 Added ES5 Object.seal and Object.isSealed.
3118
3119 Added debugger API for scheduling debugger commands from a
3120 separate thread.
3121
3122
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +000031232010-07-14: Version 2.2.24
3124
3125 Added API for capturing stack traces for uncaught exceptions.
3126
3127 Fixed crash bug when preparsing from a non-external V8 string
3128 (issue 775).
3129
3130 Fixed JSON.parse bug causing input not to be converted to string
3131 (issue 764).
3132
3133 Added ES5 Object.freeze and Object.isFrozen.
3134
3135 Performance improvements on all platforms.
3136
3137
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000031382010-07-07: Version 2.2.23
3139
3140 API change: Convert Unicode code points outside the basic multilingual
3141 plane to the replacement character. Previous behavior was to silently
3142 truncate the value to 16 bits.
3143
3144 Fixed crash: handle all flat string types in regexp replace.
3145
3146 Prevent invalid pre-parsing data passed in through the API from
3147 crashing V8.
3148
3149 Performance improvements on all platforms.
3150
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00003151
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000031522010-07-05: Version 2.2.22
3153
3154 Added ES5 Object.isExtensible and Object.preventExtensions.
3155
3156 Enabled building V8 as a DLL.
3157
3158 Fixed a bug in date code where -0 was not interpreted as 0
3159 (issue 736).
3160
3161 Performance improvements on all platforms.
3162
3163
lrn@chromium.org32d961d2010-06-30 09:09:34 +000031642010-06-30: Version 2.2.21
3165
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003166 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003167
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003168 Updated JSON.stringify to floor the space parameter (issue 753).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003169
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003170 Updated the Mozilla test expectations to the newest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003171
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003172 Updated the ES5 Conformance Test expectations to the latest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003173
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003174 Updated the V8 benchmark suite.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00003175
3176 Provide actual breakpoints locations in response to setBreakpoint
3177 and listBreakpoints requests.
3178
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003179
fschneider@chromium.org40b9da32010-06-28 11:29:21 +000031802010-06-28: Version 2.2.20
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003181
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003182 Fixed bug with for-in on x64 platform (issue 748).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003183
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003184 Fixed crash bug on x64 platform (issue 756).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003185
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003186 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003187
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003188 Fixed a bug on ARM that caused the result of 1 << x to be
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00003189 miscalculated for some inputs.
3190
3191 Performance improvements on all platforms.
3192
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003193
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000031942010-06-23: Version 2.2.19
3195
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003196 Fixed bug that causes the build to break when profillingsupport=off
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003197 (issue 738).
3198
3199 Added expose-externalize-string flag for testing extensions.
3200
3201 Resolve linker issues with using V8 as a DLL causing a number of
3202 problems with unresolved symbols.
3203
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003204 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00003205 defined.
3206
3207 Performance improvements on all platforms.
3208
3209
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000032102010-06-16: Version 2.2.18
3211
3212 Added API functions to retrieve information on indexed properties
3213 managed by the embedding layer. Fixes bug 737.
3214
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003215 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003216
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003217 Added heap profiling to the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003218
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003219 Removed old named property query from the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00003220
3221 Incremental performance improvements.
3222
3223
ager@chromium.org2cc82ae2010-06-14 07:35:38 +000032242010-06-14: Version 2.2.17
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003225
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00003226 Improved debugger support for stepping out of functions.
3227
3228 Incremental performance improvements.
3229
3230
32312010-06-09: Version 2.2.16
3232
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003233 Removed the SetExternalStringDiposeCallback API. Changed the
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003234 disposal of external string resources to call a virtual Dispose
3235 method on the resource.
3236
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00003237 Added support for more precise break points when debugging and
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00003238 stepping.
3239
3240 Memory usage improvements on all platforms.
3241
3242
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000032432010-06-07: Version 2.2.15
3244
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003245 Added an API to control the disposal of external string resources.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003246
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003247 Added missing initialization of a couple of variables which makes
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003248 some compilers complaint when compiling with -Werror.
3249
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003250 Improved performance on all platforms.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00003251
3252
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +000032532010-06-02: Version 2.2.14
3254
3255 Fixed a crash in code generated for String.charCodeAt.
3256
3257 Fixed a compilation issue with some GCC versions (issue 727).
3258
3259 Performance optimizations on x64 and ARM platforms.
3260
3261
ricow@chromium.org30ce4112010-05-31 10:38:25 +000032622010-05-31: Version 2.2.13
3263
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003264 Implemented Object.getOwnPropertyDescriptor for element indices and
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003265 strings (issue 599).
3266
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003267 Fixed bug for windows 64 bit C calls from generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003268
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003269 Added new scons flag unalignedaccesses for arm builds.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00003270
3271 Performance improvements on all platforms.
3272
3273
kmillikin@chromium.org9155e252010-05-26 13:27:57 +000032742010-05-26: Version 2.2.12
3275
3276 Allowed accessors to be defined on objects rather than just object
3277 templates.
3278
3279 Changed the ScriptData API.
3280
3281
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000032822010-05-21: Version 2.2.11
3283
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003284 Fixed crash bug in liveedit on 64 bit.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003285
3286 Use 'full compiler' when debugging is active. This should increase
3287 the density of possible break points, making single step more fine
3288 grained. This will only take effect for functions compiled after
3289 debugging has been started, so recompilation of all functions is
3290 required to get the full effect. IA32 and x64 only for now.
3291
3292 Misc. fixes to the Solaris build.
3293
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003294 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003295
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003296 Added filtering of CPU profiles by security context.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003297
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003298 Fixed crash bug on ARM when running without VFP2 or VFP3.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003299
3300 Incremental performance improvements in all backends.
3301
3302
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000033032010-05-17: Version 2.2.10
3304
3305 Performance improvements in the x64 and ARM backends.
3306
3307
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000033082010-05-10: Version 2.2.9
3309
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003310 Allowed Object.create to be called with a function (issue 697).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003311
3312 Fixed bug with Date.parse returning a non-NaN value when called on a
3313 non date string (issue 696).
3314
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003315 Allowed unaligned memory accesses on ARM targets that support it (by
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00003316 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00003317
3318 C++ API for retrieving JavaScript stack trace information.
3319
3320
ager@chromium.orgac091b72010-05-05 07:34:42 +000033212010-05-05: Version 2.2.8
3322
3323 Performance improvements in the x64 and ARM backends.
3324
3325
kmillikin@chromium.org4111b802010-05-03 10:34:42 +000033262010-05-03: Version 2.2.7
3327
3328 Added support for ES5 date time string format to Date.parse.
3329
3330 Performance improvements in the x64 backend.
3331
3332
lrn@chromium.orgc34f5802010-04-28 12:53:43 +000033332010-04-28: Version 2.2.6
3334
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003335 Added "amd64" as recognized architecture in scons build script
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003336 (by Ryan Dahl <coldredlemur@gmail.com>).
3337
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003338 Fixed bug in String search and replace with very simple RegExps.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003339
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003340 Fixed bug in RegExp containing "\b^".
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003341
3342 Performance improvements on all platforms.
3343
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00003344
fschneider@chromium.org013f3e12010-04-26 13:27:52 +000033452010-04-26: Version 2.2.5
3346
3347 Various performance improvements (especially for ARM and x64)
3348
3349 Fixed bug in CPU profiling (http://crbug.com/42137)
3350
3351 Fixed a bug with the natives cache.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00003352
3353 Fixed two bugs in the ARM code generator that can cause
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00003354 wrong calculations.
3355
3356 Fixed a bug that may cause a wrong result for shift operations.
3357
3358
33592010-04-21: Version 2.2.4
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00003360
3361 Fixed warnings on arm on newer GCC versions.
3362
3363 Fixed a number of minor bugs.
3364
3365 Performance improvements on all platforms.
3366
3367
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +000033682010-04-14: Version 2.2.3
3369
3370 Added stack command and mem command to ARM simulator debugger.
3371
3372 Fixed scons snapshot and ARM build, and Windows X64 build issues.
3373
3374 Performance improvements on all platforms.
3375
3376
ager@chromium.org357bf652010-04-12 11:30:10 +000033772010-04-12: Version 2.2.2
3378
3379 Introduced new profiler API.
3380
3381 Fixed random number generator to produce full 32 random bits.
3382
3383
lrn@chromium.org25156de2010-04-06 13:10:27 +000033842010-04-06: Version 2.2.1
3385
3386 Debugger improvements.
3387
3388 Fixed minor bugs.
3389
3390
ricow@chromium.orgaa1b6162010-03-29 07:44:58 +000033912010-03-29: Version 2.2.0
3392
3393 Fixed a few minor bugs.
3394
3395 Performance improvements for string operations.
3396
3397
ager@chromium.orgb26c50a2010-03-26 09:27:16 +000033982010-03-26: Version 2.1.10
3399
3400 Fixed scons build issues.
3401
3402 Fixed a couple of minor bugs.
3403
3404
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +000034052010-03-25: Version 2.1.9
3406
3407 Added API support for reattaching a global object to a context.
3408
3409 Extended debugger API with access to the internal debugger context.
3410
3411 Fixed Chromium crashes (issues http://crbug.com/39128 and
3412 http://crbug.com/39160)
3413
3414
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000034152010-03-24: Version 2.1.8
3416
3417 Added fine-grained garbage collection callbacks to the API.
3418
3419 Performance improvements on all platforms.
3420
3421
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000034222010-03-22: Version 2.1.7
3423
3424 Fixed issue 650.
3425
3426 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
fschneider@chromium.org086aac62010-03-17 13:18:24 +00003427
3428 Performance improvements for arithmetic operations.
3429
3430 Performance improvements for string operations.
3431
whesse@chromium.orgcec079d2010-03-22 14:44:04 +00003432 Print script name and line number information in stack trace.
3433
3434
34352010-03-17: Version 2.1.6
3436
3437 Performance improvements for arithmetic operations.
3438
3439 Performance improvements for string operations.
3440
3441
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000034422010-03-10: Version 2.1.4
3443
3444 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
3445
3446 Performance improvements on all platforms.
3447
3448
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000034492010-03-10: Version 2.1.3
3450
3451 Added API method for context-disposal notifications.
3452
3453 Added API method for accessing elements by integer index.
3454
3455 Added missing implementation of Uint32::Value and Value::IsUint32
3456 API methods.
3457
3458 Added IsExecutionTerminating API method.
3459
3460 Disabled strict aliasing for GCC 4.4.
3461
3462 Fixed string-concatenation bug (issue 636).
3463
3464 Performance improvements on all platforms.
3465
3466
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +000034672010-02-23: Version 2.1.2
3468
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003469 Fixed a crash bug caused by wrong assert.
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003470
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003471 Fixed a bug with register names on 64-bit V8 (issue 615).
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00003472
3473 Performance improvements on all platforms.
3474
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00003475
ager@chromium.org5c838252010-02-19 08:53:10 +000034762010-02-19: Version 2.1.1
3477
3478 [ES5] Implemented Object.defineProperty.
3479
3480 Improved profiler support.
3481
3482 Added SetPrototype method in the public V8 API.
3483
3484 Added GetScriptOrigin and GetScriptLineNumber methods to Function
3485 objects in the API.
3486
3487 Performance improvements on all platforms.
3488
3489
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000034902010-02-03: Version 2.1.0
3491
3492 Values are now always wrapped in objects when used as a receiver.
3493 (issue 223).
3494
3495 [ES5] Implemented Object.getOwnPropertyNames.
3496
3497 [ES5] Restrict JSON.parse to only accept strings that conforms to the
3498 JSON grammar.
3499
3500 Improvement of debugger agent (issue 549 and 554).
3501
3502 Fixed problem with skipped stack frame in profiles (issue 553).
3503
3504 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
3505 <ry@tinyclouds.org>.
3506
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003507 Fixed a bug that Math.round() returns incorrect results for huge
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003508 integers.
3509
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003510 Fixed enumeration order for objects created from some constructor
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003511 functions (isue http://crbug.com/3867).
3512
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003513 Fixed arithmetic on some integer constants (issue 580).
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00003514
3515 Numerous performance improvements including porting of previous IA-32
3516 optimizations to x64 and ARM architectures.
3517
3518
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000035192010-01-14: Version 2.0.6
3520
3521 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
3522 GetOwnProperty, FromPropertyDescriptor.
3523
3524 Fixed Mac x64 build errors.
3525
3526 Improved performance of some math and string operations.
3527
3528 Improved performance of some regexp operations.
3529
3530 Improved performance of context creation.
3531
3532 Improved performance of hash tables.
3533
3534
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000035352009-12-18: Version 2.0.5
3536
3537 Extended to upper limit of map space to allow for 7 times as many map
3538 to be allocated (issue 524).
3539
3540 Improved performance of code using closures.
3541
3542 Improved performance of some binary operations involving doubles.
3543
3544
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000035452009-12-16: Version 2.0.4
3546
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003547 Added ECMAScript 5 Object.create.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003548
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003549 Improved performance of Math.max and Math.min.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003550
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003551 Optimized adding of strings on 64-bit platforms.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003552
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003553 Improved handling of external strings by using a separate table
3554 instead of weak handles. This improves garbage collection
3555 performance and uses less memory.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003556
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003557 Changed code generation for object and array literals in toplevel
3558 code to be more compact by doing more work in the runtime.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003559
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003560 Fixed a crash bug triggered when garbage collection happened during
3561 generation of a callback load inline cache stub.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003562
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00003563 Fixed crash bug sometimes triggered when local variables shadowed
3564 parameters in functions that used the arguments object.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003565
3566
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +000035672009-12-03: Version 2.0.3
3568
3569 Optimized handling and adding of strings, for-in and Array.join.
3570
3571 Heap serialization is now non-destructive.
3572
3573 Improved profiler support with information on time spend in C++
3574 callbacks registered through the API.
3575
3576 Added commands to the debugger protocol for starting/stopping
3577 profiling.
3578
3579 Enabled the non-optimizing compiler for top-level code.
3580
3581 Changed the API to only allow strings to be set as data objects on
3582 Contexts and scripts to avoid potentially keeping global objects
3583 around for too long (issue 528).
3584
3585 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
3586
3587 Fixed bugs.
3588
3589
ager@chromium.org01beca72009-11-24 14:29:16 +000035902009-11-24: Version 2.0.2
3591
3592 Improved profiler support.
3593
3594 Fixed bug that broke compilation of d8 with readline support.
3595
3596
ager@chromium.org6141cbe2009-11-20 12:14:52 +000035972009-11-20: Version 2.0.1
3598
3599 Fixed crash bug in String.prototype.replace.
3600
3601 Reverted a change which caused Chromium interactive ui test
3602 failures.
3603
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003604
ager@chromium.orgc4c92722009-11-18 14:12:51 +000036052009-11-18: Version 2.0.0
3606
3607 Added support for VFP on ARM.
3608
3609 Added TryCatch::ReThrow method to the API.
3610
3611 Reduced the size of snapshots and improved the snapshot load time.
3612
3613 Improved heap profiler support.
3614
3615 64-bit version now supported on Windows.
3616
3617 Fixed a number of debugger issues.
3618
3619 Fixed bugs.
3620
3621
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +000036222009-10-29: Version 1.3.18
3623
3624 Reverted a change which caused crashes in RegExp replace.
3625
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00003626 Reverted a change which caused Chromium ui_tests failure.
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +00003627
3628
ager@chromium.org3811b432009-10-28 14:53:37 +000036292009-10-28: Version 1.3.17
3630
3631 Added API method to get simple heap statistics.
3632
3633 Improved heap profiler support.
3634
3635 Fixed the implementation of the resource constraint API so it
3636 works when using snapshots.
3637
3638 Fixed a number of issues in the Windows 64-bit version.
3639
3640 Optimized calls to API getters.
3641
3642 Added valgrind notification on code modification to the 64-bit version.
3643
3644 Fixed issue where we logged shared library addresses on Windows at
3645 startup and never used them.
3646
3647
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000036482009-10-16: Version 1.3.16
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003649
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003650 X64: Convert smis to holding 32 bits of payload.
3651
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003652 Introduced v8::Integer::NewFromUnsigned method.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003653
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003654 Added missing null check in Context::GetCurrent.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003655
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003656 Added trim, trimLeft and trimRight methods to String
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003657 Patch by Jan de Mooij <jandemooij@gmail.com>
3658
3659 Implement ES5 Array.isArray
3660 Patch by Jan de Mooij <jandemooij@gmail.com>
3661
3662 Skip access checks for hidden properties.
3663
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003664 Added String::Concat(Handle<String> left, Handle<String> right) to the
3665 V8 API.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003666
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003667 Fixed GYP-based builds of V8.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00003668
3669
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +000036702009-10-07: Version 1.3.15
3671
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003672 Expanded the maximum size of the code space to 512MB for 64-bit mode.
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +00003673
3674 Fixed a crash bug happening when starting profiling (issue
3675 http://crbug.com/23768).
3676
3677
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000036782009-10-07: Version 1.3.14
3679
3680 Added GetRealNamedProperty to the API to lookup real properties
3681 located on the object or in the prototype chain skipping any
3682 interceptors.
3683
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003684 Fixed the stack limits setting API to work correctly with threads. The
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003685 stack limit now needs to be set to each thread thich is used with V8.
3686
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003687 Removed the high-priority flag from IdleNotification()
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003688
3689 Ensure V8 is initialized before locking and unlocking threads.
3690
3691 Implemented a new JavaScript minifier for compressing the source of
ager@chromium.org3811b432009-10-28 14:53:37 +00003692 the built-in JavaScript. This removes non-Open Source code from Douglas
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00003693 Crockford from the project.
3694
3695 Added a missing optimization in StringCharAt.
3696
3697 Fixed some flaky socket tests.
3698
3699 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
3700 in 64-bit mode.
3701
3702 Fixed memory leaks in the thread management code.
3703
3704 Fixed the result of assignment to a pixel array. The assigned value
3705 is now the result.
3706
3707 Error reporting for invalid left-hand sides in for-in statements, pre-
3708 and postfix count expressions, and assignments now matches the JSC
3709 behavior in Safari 4.
3710
3711 Follow the spec in disallowing function declarations without a name.
3712
3713 Always allocate code objects within a 2 GB range. On x64 architecture
3714 this is used to use near calls (32-bit displacement) in Code objects.
3715
3716 Optimized array construction ported to x64 and ARM architectures.
3717
3718 [ES5] Changed Object.keys to return strings for element indices.
3719
3720
ager@chromium.org68e7ab72009-09-23 09:40:39 +000037212009-09-23: Version 1.3.13
3722
3723 Fixed uninitialized memory problem.
3724
3725 Improved heap profiler support.
3726
3727
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000037282009-09-22: Version 1.3.12
3729
3730 Changed behavior of |function|.toString() on built-in functions to
3731 be compatible with other implementations. Patch by Jan de Mooij.
3732
3733 Added Object::IsDirty in the API.
3734
3735 Optimized array construction; it is now handled purely in native
3736 code.
3737
3738 [ES5] Made properties of the arguments array enumerable.
3739
3740 [ES5] Added test suite adapter for the es5conform test suite.
3741
3742 [ES5] Added Object.keys function.
3743
ager@chromium.org68e7ab72009-09-23 09:40:39 +00003744
ager@chromium.org4af710e2009-09-15 12:20:11 +000037452009-09-15: Version 1.3.11
3746
3747 Fixed crash in error reporting during bootstrapping.
3748
3749 Optimized generated IA32 math code by using SSE2 instructions when
3750 available.
3751
3752 Implemented missing pieces of debugger infrastructure on ARM. The
3753 debugger is now fully functional on ARM.
3754
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003755 Made 'hidden' the default visibility for gcc.
ager@chromium.org4af710e2009-09-15 12:20:11 +00003756
3757
ager@chromium.orga1645e22009-09-09 19:27:10 +000037582009-09-09: Version 1.3.10
3759
3760 Fixed profiler on Mac in 64-bit mode.
3761
3762 Optimized creation of objects from simple constructor functions on
3763 ARM.
3764
3765 Fixed a number of debugger issues.
3766
3767 Reduced the amount of memory consumed by V8.
3768
3769
ager@chromium.org18ad94b2009-09-02 08:22:29 +000037702009-09-02: Version 1.3.9
3771
3772 Optimized stack guard checks on ARM.
3773
3774 Optimized API operations by inlining more in the API.
3775
3776 Optimized creation of objects from simple constructor functions.
3777
3778 Enabled a number of missing optimizations in the 64-bit port.
3779
3780 Implemented native-code support for regular expressions on ARM.
3781
3782 Stopped using the 'sahf' instruction on 64-bit machines that do
3783 not support it.
3784
3785 Fixed a bug in the support for forceful termination of JavaScript
3786 execution.
3787
3788
ager@chromium.org96c75b52009-08-26 09:13:16 +000037892009-08-26: Version 1.3.8
3790
3791 Changed the handling of idle notifications to allow idle
3792 notifications when V8 has not yet been initialized.
3793
3794 Fixed ARM simulator compilation problem on Windows.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003795
ager@chromium.org96c75b52009-08-26 09:13:16 +00003796
ager@chromium.orgab99eea2009-08-25 07:05:41 +000037972009-08-25: Version 1.3.7
3798
3799 Reduced the size of generated code on ARM platforms by reducing
3800 the size of constant pools.
3801
3802 Changed build files to not include the 'ENV' user environment
3803 variable in the build environment.
3804
3805 Changed the handling of idle notifications.
3806
3807
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +000038082009-08-21: Version 1.3.6
3809
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003810 Added support for forceful termination of JavaScript execution.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00003811
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003812 Added low memory notification to the API. The embedding host can signal
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00003813 a low memory situation to V8.
3814
3815 Changed the handling of global handles (persistent handles in the API
3816 sense) to avoid issues regarding allocation of new global handles
3817 during weak handle callbacks.
3818
3819 Changed the growth policy of the young space.
3820
3821 Fixed a GC issue introduced in version 1.3.5.
3822
3823
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000038242009-08-19: Version 1.3.5
3825
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003826 Optimized initialization of some arrays in the builtins.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00003827
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003828 Fixed mac-nm script to support filenames with spaces.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00003829
3830 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
3831
3832 Changed typeof RegExp from 'object' to 'function' for compatibility.
3833 Fixed bug where regexps were not callable across contexts.
3834
3835 Added context independent script compilation to the API.
3836
3837 Added API call to get the stack trace for an exception.
3838
3839 Added API for getting object mirrors.
3840
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003841 Made sure that SSE3 instructions are used whenever possible even when
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00003842 running off a snapshot generated without using SSE3 instructions.
3843
3844 Tweaked the handling of the initial size and growth policy of the heap.
3845
3846 Added native code generation for RegExp to 64-bit version.
3847
3848 Added JavaScript debugger support to 64-bit version.
3849
3850
ager@chromium.orgadd848f2009-08-13 12:44:13 +000038512009-08-13: Version 1.3.4
3852
3853 Added a readline() command to the d8 shell.
3854
3855 Fixed bug in json parsing.
3856
3857 Added idle notification to the API and reduced memory on idle
3858 notifications.
3859
3860
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +000038612009-08-12: Version 1.3.3
3862
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003863 Fixed issue 417: incorrect %t placeholder expansion.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003864
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003865 Added .gitignore file similar to Chromium's one.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003866
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003867 Fixed SConstruct file to build with new logging code for Android.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003868
3869 API: added function to find instance of template in prototype
3870 chain. Inlined Object::IsInstanceOf.
3871
3872 Land change to notify valgrind when we modify code on x86.
3873
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003874 Added api call to determine whether a string can be externalized.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003875
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00003876 Added a write() command to d8.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00003877
3878
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +000038792009-08-05: Version 1.3.2
3880
3881 Started new compiler infrastructure for two-pass compilation using a
3882 control flow graph constructed from the AST.
3883
3884 Profiler stack sampling for X64.
3885
3886 Safe handling of NaN to Posix platform-dependent time functions.
3887
3888 Added a new profiler control API to unify controlling various aspects
3889 of profiling.
3890
3891 Fixed issue 392.
3892
3893
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000038942009-07-30: Version 1.3.1
3895
3896 Speed improvements to accessors and interceptors.
3897
3898 Added support for capturing stack information on custom errors.
3899
3900 Added support for morphing an object into a pixel array where its
3901 indexed properties are stored in an external byte array. Values written
3902 are always clamped to the 0..255 interval.
3903
3904 Profiler on x64 now handles C/C++ functions from shared libraries.
3905
3906 Changed the debugger to avoid stepping into function.call/apply if the
3907 function is a built-in.
3908
3909 Initial implementation of constructor heap profile for JS objects.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003910
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00003911 More fine grained control of profiling aspects through the API.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003912
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00003913 Optimized the called as constructor check for API calls.
3914
3915
kasperl@chromium.orge959c182009-07-27 08:59:04 +000039162009-07-27: Version 1.3.0
3917
3918 Allowed RegExp objects to be called as functions (issue 132).
3919
3920 Fixed issue where global property cells would escape after
3921 detaching the global object; see http://crbug.com/16276.
3922
3923 Added support for stepping into setters and getters in the
3924 debugger.
3925
3926 Changed the debugger to avoid stopping in its own JavaScript code
3927 and in the code of built-in functions.
3928
3929 Fixed issue 345 by avoiding duplicate escaping labels.
3930
3931 Fixed ARM code generator crash in short-circuited boolean
3932 expressions and added regression tests.
3933
3934 Added an external allocation limit to avoid issues where small V8
3935 objects would hold on to large amounts of external memory without
3936 causing garbage collections.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00003937
3938 Finished more of the inline caching stubs for x64 targets.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00003939
3940
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000039412009-07-13: Version 1.2.14
3942
3943 Added separate paged heap space for global property cells and
3944 avoid updating the write barrier when storing into them.
3945
3946 Improved peep-hole optimization on ARM platforms by not emitting
3947 unnecessary debug information.
3948
3949 Re-enabled ICs for loads and calls that skip a global object
3950 during lookup through the prototype chain.
3951
3952 Allowed access through global proxies to use ICs.
3953
3954 Fixed issue 401.
3955
3956
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000039572009-07-09: Version 1.2.13
3958
3959 Fixed issue 397, issue 398, and issue 399.
3960
3961 Added support for breakpoint groups.
3962
3963 Fixed bugs introduced with the new global object representation.
3964
3965 Fixed a few bugs in the ARM code generator.
3966
3967
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000039682009-07-06: Version 1.2.12
3969
3970 Added stack traces collection to Error objects accessible through
3971 the e.stack property.
3972
3973 Changed RegExp parser to use a recursive data structure instead of
3974 stack-based recursion.
3975
3976 Optimized Date object construction and string concatenation.
3977
3978 Improved performance of div, mod, and mul on ARM platforms.
3979
3980
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000039812009-07-02: Version 1.2.11
3982
3983 Improved performance on IA-32 and ARM.
3984
3985 Fixed profiler sampler implementation on Mac OS X.
3986
3987 Changed the representation of global objects to improve
3988 performance of adding a lot of new properties.
3989
3990
ager@chromium.org3e875802009-06-29 08:26:34 +000039912009-06-29: Version 1.2.10
3992
3993 Improved debugger support.
3994
3995 Fixed bug in exception message reporting (issue 390).
3996
3997 Improved overall performance.
3998
3999
ager@chromium.org5aa501c2009-06-23 07:57:28 +000040002009-06-23: Version 1.2.9
4001
4002 Improved math performance on ARM.
4003
4004 Fixed profiler name-inference bug.
4005
4006 Fixed handling of shared libraries in the profiler tick processor
4007 scripts.
4008
4009 Fixed handling of tests that time out in the test scripts.
4010
4011 Fixed compilation on MacOS X version 10.4.
4012
4013 Fixed two bugs in the regular expression engine.
4014
4015 Fixed a bug in the string type inference.
4016
4017 Fixed a bug in the handling of 'constant function' properties.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004018
ager@chromium.org5aa501c2009-06-23 07:57:28 +00004019 Improved overall performance.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00004020
ager@chromium.org5aa501c2009-06-23 07:57:28 +00004021
ager@chromium.orgeadaf222009-06-16 09:43:10 +000040222009-06-16: Version 1.2.8
4023
4024 Optimized math on ARM platforms.
4025
4026 Fixed two crash bugs in the handling of getters and setters.
4027
4028 Improved the debugger support by adding scope chain information.
4029
4030 Improved the profiler support by compressing log data transmitted
4031 to clients.
4032
4033 Improved overall performance.
4034
4035
ager@chromium.orge2902be2009-06-08 12:21:35 +000040362009-06-08: Version 1.2.7
4037
4038 Improved debugger and profiler support.
4039
4040 Reduced compilation time by improving the handling of deferred
4041 code.
4042
4043 Optimized interceptor accesses where the property is on the object
4044 on which the interceptors is attached.
4045
4046 Fixed compilation problem on GCC 4.4 by changing the stack
4047 alignment to 16 bytes.
4048
4049 Fixed handle creation to follow stric aliasing rules.
4050
4051 Fixed compilation on FreeBSD.
4052
4053 Introduced API for forcing the deletion of a property ignoring
4054 interceptors and attributes.
4055
4056
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +000040572009-05-29: Version 1.2.6
4058
4059 Added a histogram recording hit rates at different levels of the
4060 compilation cache.
4061
4062 Added stack overflow check for the RegExp analysis phase. Previously a
4063 very long regexp graph could overflow the stack with recursive calls.
4064
4065 Use a dynamic buffer when collecting log events in memory.
4066
4067 Added start/stop events to the profiler log.
4068
4069 Fixed infinite loop which could happen when setting a debug break while
4070 executing a RegExp compiled to native code.
4071
4072 Fixed handling of lastIndexOf called with negative index (issue 351).
4073
4074 Fixed irregular crash in profiler test (issue 358).
4075
4076 Fixed compilation issues with some versions of gcc.
4077
4078
kasperl@chromium.org71affb52009-05-26 05:44:31 +000040792009-05-26: Version 1.2.5
4080
4081 Fixed bug in initial boundary check for Boyer-Moore text
4082 search (issue 349).
4083
4084 Fixed compilation issues with MinGW and gcc 4.3+ and added support
4085 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
4086 Craig Schlenter.
4087
4088 Added a script cache to the debugger.
4089
4090 Optimized compilation performance by improving internal data
4091 structures and avoiding expensive property load optimizations for
4092 code that's infrequently executed.
4093
4094 Exposed the calling JavaScript context through the static API
4095 function Context::GetCalling().
4096
4097
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000040982009-05-18: Version 1.2.4
4099
4100 Improved performance of floating point number allocation for ARM
4101 platforms.
4102
4103 Fixed crash when using the instanceof operator on functions with
4104 number values in their prototype chain (issue 341).
4105
4106 Optimized virtual frame operations in the code generator to speed
4107 up compilation time and allocated the frames in the zone.
4108
4109 Made the representation of virtual frames and jump targets in the
4110 code generator much more compact.
4111
4112 Avoided linear search for non-locals in scope code when resolving
4113 variables inside with and eval scopes.
4114
4115 Optimized lexical scanner by dealing with whitespace as part of
4116 the token scanning instead of as a separate step before it.
4117
4118 Changed the scavenging collector so that promoted objects do not
4119 reside in the old generation while their remembered set is being
4120 swept for pointers into the young generation.
4121
4122 Fixed numeric overflow handling when compiling count operations.
4123
4124
ager@chromium.org9085a012009-05-11 19:22:57 +000041252009-05-11: Version 1.2.3
4126
4127 Fixed bug in reporting of out-of-memory situations.
4128
4129 Introduced hidden prototypes on certain builtin prototype objects
4130 such as String.prototype to emulate JSC's behavior of restoring
4131 the original function when deleting functions from those prototype
4132 objects.
4133
4134 Fixed crash bug in the register allocator.
4135
4136
ager@chromium.org5ec48922009-05-05 07:25:34 +000041372009-05-04: Version 1.2.2
4138
4139 Fixed bug in array sorting for sparse arrays (issue 326).
4140
4141 Added support for adding a soname when building a shared library
4142 on Linux (issue 151).
4143
4144 Fixed bug caused by morphing internal ASCII strings to external
4145 two-byte strings. Slices over ASCII strings have to forward ASCII
4146 checks to the underlying buffer string.
4147
4148 Allowed API call-as-function handlers to be called as
4149 constructors.
4150
4151 Fixed a crash bug where an external string was disposed but a
4152 slice of the external string survived as a symbol.
4153
4154
ager@chromium.org3a37e9b2009-04-27 09:26:21 +000041552009-04-27: Version 1.2.1
4156
4157 Added EcmaScript 5 JSON object.
4158
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00004159 Fixed bug in preemption support on ARM.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00004160
4161
ager@chromium.org65dad4b2009-04-23 08:48:43 +000041622009-04-23: Version 1.2.0
4163
4164 Optimized floating-point operations on ARM.
4165
4166 Added a number of extensions to the debugger API.
4167
4168 Changed the enumeration order for unsigned integer keys to always
4169 be numerical order.
4170
4171 Added a "read" extension to the shell sample.
4172
4173 Added support for Array.prototype.reduce and
4174 Array.prototype.reduceRight.
4175
4176 Added an option to the SCons build to control Microsoft Visual C++
4177 link-time code generation.
4178
4179 Fixed a number of bugs (in particular issue 315, issue 316,
4180 issue 317 and issue 318).
4181
4182
kasperl@chromium.org2d18d102009-04-15 13:27:32 +000041832009-04-15: Version 1.1.10
4184
4185 Fixed crash bug that occurred when loading a const variable in the
4186 presence of eval.
4187
4188 Allowed using with and eval in registered extensions in debug mode
4189 by fixing bogus assert.
4190
4191 Fixed the source position for function returns to enable the
4192 debugger to break there.
4193
4194
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +000041952009-04-14: Version 1.1.9
4196
4197 Made the stack traversal code in the profiler robust by avoiding
4198 to look into the heap.
4199
4200 Added name inferencing for anonymous functions to facilitate
4201 debugging and profiling.
4202
4203 Re-enabled stats timers in the developer shell (d8).
4204
4205 Fixed issue 303 by avoiding to shortcut cons-symbols.
4206
4207
kasperl@chromium.orgacae3782009-04-11 09:17:08 +000042082009-04-11: Version 1.1.8
4209
4210 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
4211
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004212 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00004213 the debugger (issue 269).
4214
4215 Fixed v8::Object::DeleteHiddenValue to not bail out when there
4216 are no hidden properties.
4217
ager@chromium.org65dad4b2009-04-23 08:48:43 +00004218 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00004219 entries with deleted resources would lead to NPEs when looking
4220 up in the symbol table.
4221
4222
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +000042232009-04-07: Version 1.1.7
4224
4225 Added support for easily importing additional environment
4226 variables into the SCons build.
4227
4228 Optimized strict equality checks.
4229
4230 Fixed crash in indexed setters on objects without a corresponding
4231 getter (issue 298).
4232
4233 Re-enabled script compilation cache.
4234
4235
ager@chromium.org8682a592009-04-01 10:47:14 +000042362009-04-01: Version 1.1.6
4237
4238 Reverted an unsafe code generator change.
4239
4240
ager@chromium.org71daaf62009-04-01 07:22:49 +000042412009-04-01: Version 1.1.5
4242
4243 Fixed bug that caused function literals to not be optimized as
4244 much as other functions.
4245
4246 Improved profiler support.
4247
4248 Fixed a crash bug in connection with debugger unloading.
4249
4250 Fixed a crash bug in the code generator caused by losing the
4251 information that a frame element was copied.
4252
4253 Fixed an exception propagation bug that could cause non-null
4254 return values when exceptions were thrown.
4255
4256
ager@chromium.org41826e72009-03-30 13:30:57 +000042572009-03-30: Version 1.1.4
4258
4259 Optimized String.prototype.match.
4260
4261 Improved the stack information in profiles.
4262
4263 Fixed bug in ARM port making it possible to compile the runtime
4264 system for thumb mode again.
4265
4266 Implemented a number of optimizations in the code generator.
4267
4268 Fixed a number of memory leaks in tests.
4269
4270 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00004271 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +00004272
4273
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +000042742009-03-24: Version 1.1.3
4275
4276 Fixed assertion failures in compilation of loop conditions.
4277
4278 Removed STL dependency from developer shell (d8).
4279
4280 Added infrastructure for protecting the V8 heap from corruption
4281 caused by memory modifications from the outside.
4282
4283
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000042842009-03-24: Version 1.1.2
4285
4286 Improved frame merge code generated by the code generator.
4287
4288 Optimized String.prototype.replace.
4289
4290 Implemented __defineGetter__ and __defineSetter__ for properties
4291 with integer keys on non-array objects.
4292
4293 Improved debugger and profiler support.
4294
4295 Fixed a number of portability issues to allow compilation for
4296 smaller ARM devices.
4297
4298 Exposed object cloning through the API.
4299
4300 Implemented hidden properties. This is used to expose an identity
4301 hash for objects through the API.
4302
4303 Implemented restarting of regular expressions if their input
4304 string changes representation during preemption.
4305
4306 Fixed a code generator bug that could cause assignments in loops
4307 to be ignored if using continue to break out of the loop (issue
4308 284).
4309
4310
ager@chromium.org3a6061e2009-03-12 14:24:36 +000043112009-03-12: Version 1.1.1
4312
4313 Fixed an assertion in the new compiler to take stack overflow
4314 exceptions into account.
4315
4316 Removed exception propagation code that could cause crashes.
4317
4318 Fixed minor bug in debugger line number computations.
4319
4320 8-byte align the C stack on Linux and Windows to speed up floating
4321 point computations.
4322
4323
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000043242009-03-12: Version 1.1.0
4325
4326 Improved code generation infrastructure by doing simple register
4327 allocation and constant folding and propagation.
4328
4329 Optimized regular expression matching by avoiding to create
4330 intermediate string arrays and by flattening nested array
4331 representations of RegExp data.
4332
4333 Traverse a few stack frames when recording profiler samples to
4334 include partial call graphs in the profiling output.
4335
4336 Added support for using OProfile to profile generated code.
4337
4338 Added remote debugging support to the D8 developer shell.
4339
4340 Optimized creation of nested literals like JSON objects.
4341
4342 Fixed a bug in garbage collecting unused maps and turned it on by
4343 default (--collect-maps).
4344
4345 Added support for running tests under Valgrind.
4346
4347
kasperl@chromium.org061ef742009-02-27 12:16:20 +000043482009-02-27: Version 1.0.3
4349
4350 Optimized double-to-integer conversions in bit operations by using
4351 SSE3 instructions if available.
4352
4353 Optimized initialization sequences that store to multiple
4354 properties of the same object.
4355
4356 Changed the D8 debugger frontend to use JSON messages.
4357
4358 Force garbage collections when disposing contexts.
4359
4360 Align code objects at 32-byte boundaries.
4361
4362
ager@chromium.org381abbb2009-02-25 13:23:22 +000043632009-02-25: Version 1.0.2
4364
4365 Improved profiling support by performing simple call stack
4366 sampling for ticks and by fixing a bug in the logging of code
4367 addresses.
4368
4369 Fixed a number of debugger issues.
4370
4371 Optimized code that uses eval.
4372
4373 Fixed a couple of bugs in the regular expression engine.
4374
4375 Reduced the size of generated code for certain regular expressions.
4376
4377 Removed JSCRE completely.
4378
4379 Fixed issue where test could not be run if there was a dot in the
4380 checkout path.
4381
4382
ager@chromium.org6f10e412009-02-13 10:11:16 +000043832009-02-13: Version 1.0.1
4384
4385 Fixed two crash-bugs in irregexp (issue 231 and 233).
4386
4387 Fixed a number of minor bugs (issue 87, 227 and 228).
4388
4389 Added support for morphing strings to external strings on demand
4390 to avoid having to create copies in the embedding code.
4391
4392 Removed experimental support for external symbol callbacks.
4393
4394
iposva@chromium.org245aa852009-02-10 00:49:54 +000043952009-02-09: Version 1.0.0
4396
4397 Fixed crash-bug in the code generation for case independent 16 bit
4398 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004399
iposva@chromium.org245aa852009-02-10 00:49:54 +00004400 Made shells more robust in the presence of string conversion
4401 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004402
iposva@chromium.org245aa852009-02-10 00:49:54 +00004403 Fixed a potential infinite loop when attempting to resolve
4404 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +00004405
iposva@chromium.org245aa852009-02-10 00:49:54 +00004406 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +00004407
iposva@chromium.org245aa852009-02-10 00:49:54 +00004408 Reduced binary by stripping unneeded text from JavaScript library and
4409 minifying some JavaScript files.
4410
4411
ager@chromium.orgddb913d2009-01-27 10:01:48 +000044122009-01-27: Version 0.4.9
4413
4414 Enabled new regular expression engine.
4415
4416 Made a number of changes to the debugger protocol.
4417
4418 Fixed a number of bugs in the preemption support.
4419
4420 Added -p option to the developer shell to run files in parallel
4421 using preemption.
4422
4423 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
4424 193, 198 and 201).
4425
4426 Fixed a number of bugs in the serialization/deserialization
4427 support for the ARM platform.
4428
4429
sgjesse@chromium.org715915b2009-01-19 16:08:47 +000044302009-01-19: Version 0.4.8.1
4431
4432 Minor patch to debugger support.
4433
4434
ager@chromium.org32912102009-01-16 10:38:43 +000044352009-01-16: Version 0.4.8
4436
4437 Fixed string length bug on ARM (issue 171).
4438
4439 Made most methods in the API const.
4440
4441 Optimized object literals by improving data locality.
4442
4443 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00004444 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +00004445
4446 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00004447 eval to behave incorrectly when using accessors (issues 186, 190
4448 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +00004449
4450
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000044512009-01-06: Version 0.4.7
4452
ager@chromium.org32912102009-01-16 10:38:43 +00004453 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004454
ager@chromium.org32912102009-01-16 10:38:43 +00004455 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004456
ager@chromium.org32912102009-01-16 10:38:43 +00004457 Fixed subtle bug that caused the wrong 'this' to be used when
4458 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004459
ager@chromium.org32912102009-01-16 10:38:43 +00004460 Inline array loads within loops directly in the code instead of
4461 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00004462
ager@chromium.org32912102009-01-16 10:38:43 +00004463
ager@chromium.org8bb60582008-12-11 12:02:20 +000044642008-12-11: Version 0.4.6
4465
4466 Fixed exception reporting bug where certain exceptions were
4467 incorrectly reported as uncaught.
4468
4469 Improved the memory allocation strategy used during compilation to
4470 make running out of memory when compiling huge scripts less
4471 likely.
4472
4473 Optimized String.replace by avoiding the construction of certain
4474 sub strings.
4475
4476 Fixed bug in code generation for large switch statements on ARM.
4477
4478 Fixed bug that caused V8 to change the global object template
4479 passed in by the user.
4480
4481 Changed the API for creating object groups used during garbage
4482 collection. Entire object groups are now passed to V8 instead of
4483 individual members of the groups.
4484
ager@chromium.org32912102009-01-16 10:38:43 +00004485
ager@chromium.orga74f0da2008-12-03 16:05:52 +000044862008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004487
ager@chromium.orga74f0da2008-12-03 16:05:52 +00004488 Added experimental API support for allocating V8 symbols as
4489 external strings.
4490
4491 Fixed bugs in debugging support on ARM.
4492
4493 Changed eval implementation to correctly detect whether or not a
4494 call to eval is aliased.
4495
4496 Fixed bug caused by a combination of the compilation cache and
4497 dictionary probing in native code. The bug caused us to sometimes
4498 call functions that had not yet been compiled.
4499
4500 Added platform support for FreeBSD.
4501
4502 Added support for building V8 on Windows with either the shared or
4503 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +00004504
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004505 Added the v8::jscre namespace around the jscre functions to avoid
4506 link errors (duplicate symbols) when building Google Chrome.
4507
ager@chromium.orga74f0da2008-12-03 16:05:52 +00004508 Added support for calling a JavaScript function with the current
4509 debugger execution context as its argument to the debugger
4510 interface.
4511
4512 Changed the type of names of counters from wchar_t to char.
4513
4514 Changed the Windows system call used to compute daylight savings
4515 time. The system call that we used to use became four times
4516 slower on WinXP SP3.
4517
4518 Added support in the d8 developer shell for memory-mapped counters
4519 and added a stats-viewer tool.
4520
4521 Fixed bug in upper/lower case mappings (issue 149).
4522
iposva@chromium.org96f667e2008-11-26 23:48:02 +00004523
ager@chromium.org3bf7b912008-11-17 09:09:45 +000045242008-11-17: Version 0.4.4
4525
4526 Reduced code size by using shorter instruction encoding when
4527 possible.
4528
4529 Added a --help option to the shell sample and to the d8 shell.
4530
4531 Added visual studio project files for building the ARM simulator.
4532
4533 Fixed a number of ARM simulator issues.
4534
4535 Fixed bug in out-of-memory handling on ARM.
4536
4537 Implemented shell support for passing arguments to a script from
4538 the command line.
4539
4540 Fixed bug in date code that made certain date functions return -0
4541 instead of 0 for dates before the epoch.
4542
4543 Restricted applications of eval so it can only be used in the
4544 context of the associated global object.
4545
4546 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +00004547
4548
ager@chromium.org870a0b62008-11-04 11:43:05 +000045492008-11-04: Version 0.4.3
4550
4551 Added support for API accessors that prohibit overwriting by
4552 accessors defined in JavaScript code by using __defineGetter__ and
4553 __defineSetter__.
4554
4555 Improved handling of conditionals in test status files.
4556
4557 Introduced access control in propertyIsEnumerable.
4558
4559 Improved performance of some string operations by caching
4560 information about the type of the string between operations.
4561
4562 Fixed bug in fast-case code for switch statements that only have
4563 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +00004564
ager@chromium.org870a0b62008-11-04 11:43:05 +00004565
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000045662008-10-30: Version 0.4.2
4567
4568 Improved performance of Array.prototype.concat by moving the
4569 implementation to C++ (issue 123).
4570
4571 Fixed heap growth policy to avoid growing old space to its maximum
4572 capacity before doing a garbage collection and fixed issue that
4573 would lead to artificial out of memory situations (issue 129).
4574
4575 Fixed Date.prototype.toLocaleDateString to return the date in the
4576 same format as WebKit.
4577
4578 Added missing initialization checks to debugger API.
4579
4580 Added removing of unused maps during GC.
4581
4582
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000045832008-10-28: Version 0.4.1
4584
4585 Added caching of RegExp data in compilation cache.
4586
4587 Added Visual Studio project file for d8 shell.
4588
4589 Fixed function call performance regression introduced in version
4590 0.4.0 when splitting the global object in two parts (issue 120).
4591
4592 Fixed issue 131 by checking for empty handles before throwing and
4593 reporting exceptions.
4594
4595
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000045962008-10-23: Version 0.4.0
4597
4598 Split the global object into two parts: The state holding global
4599 object and the global object proxy.
4600
4601 Fixed bug that affected the value of an assignment to an element
4602 in certain cases (issue 116).
4603
4604 Added GetPropertyNames functionality (issue 33) and extra Date
4605 functions (issue 77) to the API.
4606
4607 Changed WeakReferenceCallback to take a Persistent<Value> instead
4608 of a Persistent<Object> (issue 101).
4609
4610 Fixed issues with message reporting for exceptions in try-finally
4611 blocks (issues 73 and 75).
4612
ager@chromium.org32912102009-01-16 10:38:43 +00004613 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004614
4615 Improved Boyer-Moore implementation for faster indexOf operations.
4616
4617 Added development shell (d8) which includes counters and
4618 completion support.
4619
4620 Fixed problem with the receiver passed to functions called from
4621 eval (issue 124).
4622
4623
ager@chromium.org7c537e22008-10-16 08:43:32 +000046242008-10-16: Version 0.3.5
4625
4626 Improved string hash-code distribution by excluding bit-field bits
4627 from the hash-code.
4628
4629 Changed string search algorithm used in indexOf from KMP to
4630 Boyer-Moore.
4631
4632 Improved the generated code for the instanceof operator.
4633
4634 Improved performance of slow-case string equality checks by
4635 specializing the code based on the string representation.
4636
4637 Improve the handling of out-of-memory situations (issue 70).
4638
4639 Improved performance of strict equality checks.
4640
4641 Improved profiler output to make it easier to see anonymous
4642 functions.
4643
4644 Improved performance of slow-case keyed loads.
4645
4646 Improved property access performance by allocating a number of
4647 properties in the front object.
4648
4649 Changed the toString behavior on the built-in object constructors
4650 to print [native code] instead of the actual source. Some web
4651 applications do not like constructors with complex toString
4652 results.
ager@chromium.org32912102009-01-16 10:38:43 +00004653
ager@chromium.org7c537e22008-10-16 08:43:32 +00004654
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000046552008-10-06: Version 0.3.4
4656
4657 Changed Array.prototype.sort to use quick sort.
4658
4659 Fixed code generation issue where leaving a finally block with
4660 break or continue would accumulate elements on the expression
4661 stack (issue 86).
4662
4663 Made sure that the name accessor on functions returns the expected
4664 names for builtin JavaScript functions and C++ callback functions.
4665
4666 Added fast case code for extending the property storage array of
4667 JavaScript objects.
4668
4669 Ported switch statement optimizations introduced in version 0.3.3
4670 to the ARM code generator.
4671
4672 Allowed GCC to use strict-aliasing rules when compiling.
4673
4674 Improved performance of arguments object allocation by taking care
4675 of arguments adaptor frames in the generated code.
4676
4677 Updated the V8 benchmark suite to version 2.
4678
4679
ager@chromium.org236ad962008-09-25 09:45:57 +000046802008-09-25: Version 0.3.3
4681
4682 Improved handling of relocation information to enable more
4683 peep-hole optimizations.
4684
4685 Optimized switch statements where all labels are constant small
4686 integers.
4687
4688 Optimized String.prototype.indexOf for common cases.
4689
4690 Fixed more build issues (issue 80).
4691
4692 Fixed a couple of profiler issues.
4693
4694 Fixed bug where the body of a function created using the Function
4695 constructor was not allowed to end with a single-line comment
4696 (issue 85).
4697
4698 Improved handling of object literals by canonicalizing object
4699 literal maps. This will allow JSON objects with the same set of
4700 properties to share the same map making inline caching work better
4701 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +00004702
ager@chromium.org236ad962008-09-25 09:45:57 +00004703
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000047042008-09-17: Version 0.3.2
4705
4706 Generalized the EvalCache into a CompilationCache and enabled it
4707 for scripts too. The current strategy is to retire all entries
4708 whenever a mark-sweep collection is started.
4709
4710 Fixed bug where switch statements containing only a default case
4711 would lead to an unbalanced stack (issue 69).
4712
4713 Fixed bug that made access to the function in a named function
4714 expression impossible in certain situations (issue 24).
4715
4716 Fixed even more build issues.
4717
4718 Optimized calling conventions on ARM. The conventions on ARM and
4719 IA-32 now match.
4720
4721 Removed static initializers for flags and counters.
4722
4723 Improved inline caching behavior for uncommon cases where lazily
4724 loading Date and RegExp code could force certain code paths go
4725 megamorphic.
4726
4727 Removed arguments adaption for builtins written in C++. This
4728 makes Array.prototype.push and Array.prototype.pop slightly
4729 faster.
4730
4731
ager@chromium.org9258b6b2008-09-11 09:11:10 +000047322008-09-11: Version 0.3.1
4733
4734 Fixed a number of build issues.
4735
4736 Fixed problem with missing I-cache flusing on ARM.
4737
4738 Changed space layout in memory management by splitting up
4739 code space into old data space and code space.
4740
4741 Added utf-8 conversion support to the API (issue 57).
4742
4743 Optimized repeated calls to eval with the same strings. These
4744 repeated calls are common in web applications.
4745
4746 Added Xcode project file.
4747
4748 Optimized a couple of Array operation.
4749
4750 Fixed parser bug by checking for end-of-string when parsing break
4751 and continue (issue 35).
4752
4753 Fixed problem where asian characters were not categorized as
4754 letters.
4755
4756 Fixed bug that disallowed calling functions fetched from an array
4757 using a string as an array index (issue 32).
4758
4759 Fixed bug where the internal field count on object templates were
4760 sometimes ignored (issue 54).
4761
4762 Added -f option to the shell sample for compatibility with other
4763 engines (issue 18).
4764
4765 Added source info to TryCatches in the API.
4766
4767 Fixed problem where the seed for the random number generator was
4768 clipped in a double to unsigned int conversion.
4769
4770 Fixed bug where cons string symbols were sometimes converted to
4771 non-symbol flat strings during GC.
4772
4773 Fixed bug in error reporting when attempting to convert null to an
4774 object.
ager@chromium.org32912102009-01-16 10:38:43 +00004775
4776
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000047772008-09-04: Version 0.3.0
4778
4779 Added support for running tests on the ARM simulator.
4780
4781 Fixed bug in the 'in' operator where negative indices were not
4782 treated correctly.
4783
4784 Fixed build issues on gcc-4.3.1.
4785
4786 Changed Date.prototype.toLocaleTimeString to not print the
4787 timezone part of the time.
4788
4789 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
4790 with user code.
4791
4792
v8.team.kasperl727e9952008-09-02 14:56:44 +000047932008-09-02: Version 0.2.5
4794
4795 Renamed the top level directory 'public' to 'include'.
4796
4797 Added 'env' option to the SCons build scripts to support
4798 overriding the ENV part of the build environment. This is mostly
4799 to support Windows builds in cases where SCons cannot find the
4800 correct paths to the Windows SDK, as these paths cannot be passed
4801 through shell environment variables.
4802
4803 Enabled "Buffer Security Check" on for the Windows SCons build and
4804 added the linker option /OPT:ICF as an optimization.
4805
4806 Added the V8 benchmark suite to the repository.
4807
4808
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000048092008-09-01: Version 0.2.4
4810
4811 Included mjsunit JavaScript test suite and C++ unit tests.
4812
4813 Changed the shell sample to not print the result of executing a
4814 script provided on the command line.
4815
4816 Fixed issue when building samples on Windows using a shared V8
4817 library. Added visibility option on Linux build which makes the
4818 generated library 18% smaller.
4819
4820 Changed build system to accept multiple build modes in one build
4821 and generate separate objects, libraries and executables for each
4822 mode.
4823
4824 Removed deferred negation optimization (a * -b => -(a * b)) since
4825 this visibly changes operand conversion order.
4826
4827 Improved parsing performance by introducing stack guard in
4828 preparsing. Without a stack guard preparsing always bails out
4829 with stack overflow.
4830
4831 Changed shell sample to take flags directly from the command-line.
4832 Added API call that implements this.
4833
4834 Added load, quit and version functions to the shell sample so it's
4835 easier to run benchmarks and tests.
4836
4837 Fixed issue with building samples and cctests on 64-bit machines.
4838
4839 Fixed bug in the runtime system where the prototype chain was not
4840 always searched for a setter when setting a property that does not
4841 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +00004842
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00004843
mads.s.agercbaa0602008-08-14 13:41:48 +000048442008-08-14: Version 0.2.3
4845
4846 Improved performance of garbage collection by moving the
4847 function that updates pointers during compacting collection
4848 into the updating visitor. This gives the compiler a better
4849 chance to inline and avoid a function call per (potential)
4850 pointer.
4851
4852 Extended the shell sample with a --runtime-flags option.
4853
4854 Added Visual Studio project files for the shell.cc and
4855 process.cc samples.
4856
4857
48582008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +00004859
4860 Improved performance of garbage collection by changing the way
4861 we use the marking stack in the event of stack overflow during
4862 full garbage collection and by changing the way we mark roots.
4863
4864 Cleaned up ARM version by removing top of stack caching and by
4865 introducing push/pop elimination.
4866
4867 Cleaned up the way runtime functions are called to allow
4868 runtime calls with no arguments.
4869
4870 Changed Windows build options to make sure that exceptions are
4871 disabled and that optimization flags are enabled.
4872
4873 Added first version of Visual Studio project files.
4874
4875
mads.s.agercbaa0602008-08-14 13:41:48 +000048762008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00004877
4878 Improved performance of unary addition by avoiding runtime calls.
4879
4880 Fixed the handling of '>' and '<=' to use right-to-left conversion
4881 and left-to-right evaluation as specified by ECMA-262.
4882
4883 Fixed a branch elimination bug on the ARM platform where incorrect
4884 code was generated because of overly aggressive branch
4885 elimination.
4886
4887 Improved performance of code that repeatedly assigns the same
4888 function to the same property of different objects with the same
4889 map.
4890
4891 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
4892 no longer expects DEBUG to be defined.
4893
4894 Added platform-nullos.cc to serve as the basis for new platform
4895 implementations.
4896
mads.s.ager31e71382008-08-13 09:32:07 +00004897
mads.s.agercbaa0602008-08-14 13:41:48 +000048982008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +00004899
4900 Changed all text files to have native svn:eol-style.
4901
4902 Added a few samples and support for building them. The samples
4903 include a simple shell that can be used to benchmark and test V8.
4904
4905 Changed V8::GetVersion to return the version as a string.
4906
4907 Added source for lazily loaded scripts to snapshots and made
4908 serialization non-destructive.
4909
4910 Improved ARM support by fixing the write barrier code to use
4911 aligned loads and stores and by removing premature locals
4912 optimization that relied on broken support for callee-saved
4913 registers (removed).
4914
4915 Refactored the code for marking live objects during garbage
4916 collection and the code for allocating objects in paged
4917 spaces. Introduced an abstraction for the map word of a heap-
4918 allocated object and changed the memory allocator to allocate
4919 executable memory only for spaces that may contain code objects.
4920
4921 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
4922 they can be used by debugging and logging modules. Added
4923 thread-safe message queues for dealing with debugger events.
4924
4925 Fixed the source code reported by toString for certain builtin
4926 empty functions and made sure that the prototype property of a
4927 function is enumerable.
4928
4929 Improved performance of converting values to condition flags in
4930 generated code.
4931
4932 Merged disassembler-{arch} files.
4933
4934
mads.s.agercbaa0602008-08-14 13:41:48 +000049352008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +00004936
4937 Added support for storing JavaScript stack traces in a stack
4938 allocated buffer to make it visible in shallow core dumps.
4939 Controlled by the --preallocate-message-memory flag which is
4940 disabled by default.
4941
4942
mads.s.agercbaa0602008-08-14 13:41:48 +000049432008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00004944
4945 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
4946 map transitions would count as properties.
4947
4948 Allowed aliased eval invocations by treating them as evals in the
4949 global context. This may change in the future.
4950
4951 Added support for accessing the last entered context through the
4952 API and renamed Context::Current to Context::GetCurrent and
4953 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
4954
4955 Fixed bug in the debugger that would cause the debugger scripts to
4956 be recursively loaded and changed all disabling of interrupts to
4957 be block-structured.
4958
4959 Made snapshot data read-only to allow it to be more easily shared
4960 across multiple users of V8 when linked as a shared library.
4961
4962
mads.s.agercbaa0602008-08-14 13:41:48 +000049632008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00004964
4965 Fixed building on Mac OS X by recognizing i386 and friends as
4966 IA-32 platforms.
4967
4968 Added propagation of stack overflow exceptions that occur while
4969 compiling nested functions.
4970
4971 Improved debugger with support for recursive break points and
4972 handling of exceptions that occur in the debugger JavaScript code.
4973
4974 Renamed GetInternal to GetInternalField and SetInternal to
4975 SetInternalField in the API and moved InternalFieldCount and
4976 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
4977
4978
mads.s.agercbaa0602008-08-14 13:41:48 +000049792008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00004980
4981 Fixed bug in stack overflow check code for IA-32 targets where a
4982 non-tagged value in register eax was pushed to the stack.
4983
4984 Fixed potential quadratic behavior when converting strings to
4985 numbers.
4986
4987 Fixed bug where the return value from Object::SetProperty could
4988 end up being the property holder instead of the written value.
4989
4990 Improved debugger support by allowing nested break points and by
4991 dealing with stack-overflows when compiling functions before
4992 setting break points in them.
4993
4994
mads.s.agercbaa0602008-08-14 13:41:48 +000049952008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004996
kasper.lundbd3ec4e2008-07-09 11:06:54 +00004997 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00004998
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00004999# Local Variables:
5000# mode:text
5001# End: