blob: 636d999ae47c1471f2331697de8ae60f94fbfc34 [file] [log] [blame]
Ben Murdoch3bec4d22010-07-22 14:51:16 +010012010-07-19: Version 2.3.1
2
3 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
4
5 Fixed bug related to code flushing while compiling a lazy
6 compilable function (issue http://crbug.com/49099).
7
8 Performance improvements on all platforms.
9
10
112010-07-15: Version 2.3.0
12
13 Added ES5 Object.seal and Object.isSealed.
14
15 Added debugger API for scheduling debugger commands from a
16 separate thread.
17
18
192010-07-14: Version 2.2.24
20
21 Added API for capturing stack traces for uncaught exceptions.
22
23 Fixed crash bug when preparsing from a non-external V8 string
24 (issue 775).
25
26 Fixed JSON.parse bug causing input not to be converted to string
27 (issue 764).
28
29 Added ES5 Object.freeze and Object.isFrozen.
30
31 Performance improvements on all platforms.
32
33
Leon Clarkeac952652010-07-15 11:15:24 +0100342010-07-07: Version 2.2.23
35
36 API change: Convert Unicode code points outside the basic multilingual
37 plane to the replacement character. Previous behavior was to silently
38 truncate the value to 16 bits.
39
40 Fixed crash: handle all flat string types in regexp replace.
41
42 Prevent invalid pre-parsing data passed in through the API from
43 crashing V8.
44
45 Performance improvements on all platforms.
46
Ben Murdoch3bec4d22010-07-22 14:51:16 +010047
Steve Block8defd9f2010-07-08 12:39:36 +0100482010-07-05: Version 2.2.22
49
50 Added ES5 Object.isExtensible and Object.preventExtensions.
51
52 Enabled building V8 as a DLL.
53
54 Fixed a bug in date code where -0 was not interpreted as 0
55 (issue 736).
56
57 Performance improvements on all platforms.
58
59
602010-06-30: Version 2.2.21
61
62 Fix bug in externalizing some ASCII strings (Chromium issue 47824).
63
64 Update JSON.stringify to floor the space parameter (issue 753).
65
66 Update the Mozilla test expectations to the newest version.
67
68 Update the ES5 Conformance Test expectations to the latest version.
69
70 Update the V8 benchmark suite.
71
72 Provide actual breakpoints locations in response to setBreakpoint
73 and listBreakpoints requests.
74
75
762010-06-28: Version 2.2.20
77
78 Fix bug with for-in on x64 platform (issue 748).
79
80 Fix crash bug on x64 platform (issue 756).
81
82 Fix bug in Object.getOwnPropertyNames. (chromium issue 41243).
83
84 Fix a bug on ARM that caused the result of 1 << x to be
85 miscalculated for some inputs.
86
87 Performance improvements on all platforms.
88
89
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100902010-06-23: Version 2.2.19
91
92 Fix bug that causes the build to break when profillingsupport=off
93 (issue 738).
94
95 Added expose-externalize-string flag for testing extensions.
96
97 Resolve linker issues with using V8 as a DLL causing a number of
98 problems with unresolved symbols.
99
100 Fix build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
101 defined.
102
103 Performance improvements on all platforms.
104
105
1062010-06-16: Version 2.2.18
107
108 Added API functions to retrieve information on indexed properties
109 managed by the embedding layer. Fixes bug 737.
110
111 Make ES5 Object.defineProperty support array elements. Fixes bug 619.
112
113 Add heap profiling to the API.
114
115 Remove old named property query from the API.
116
117 Incremental performance improvements.
118
119
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001202010-06-14: Version 2.2.17
121
122 Improved debugger support for stepping out of functions.
123
124 Incremental performance improvements.
125
126
1272010-06-09: Version 2.2.16
128
Steve Block8defd9f2010-07-08 12:39:36 +0100129 Removed the SetExternalStringDiposeCallback API. Changed the
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100130 disposal of external string resources to call a virtual Dispose
131 method on the resource.
132
Steve Block8defd9f2010-07-08 12:39:36 +0100133 Added support for more precise break points when debugging and
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100134 stepping.
135
136 Memory usage improvements on all platforms.
137
138
1392010-06-07: Version 2.2.15
140
141 Add an API to control the disposal of external string resources.
142
143 Add missing initialization of a couple of variables which makes
144 some compilers complaint when compiling with -Werror.
145
146 Improve performance on all platforms.
147
148
1492010-06-02: Version 2.2.14
150
151 Fixed a crash in code generated for String.charCodeAt.
152
153 Fixed a compilation issue with some GCC versions (issue 727).
154
155 Performance optimizations on x64 and ARM platforms.
156
157
1582010-05-31: Version 2.2.13
159
160 Implement Object.getOwnPropertyDescriptor for element indices and
161 strings (issue 599).
162
163 Fix bug for windows 64 bit C calls from generated code.
164
165 Add new scons flag unalignedaccesses for arm builds.
166
167 Performance improvements on all platforms.
168
169
Leon Clarkef7060e22010-06-03 12:02:55 +01001702010-05-26: Version 2.2.12
171
172 Allowed accessors to be defined on objects rather than just object
173 templates.
174
175 Changed the ScriptData API.
176
177
1782010-05-21: Version 2.2.11
179
180 Fix crash bug in liveedit on 64 bit.
181
182 Use 'full compiler' when debugging is active. This should increase
183 the density of possible break points, making single step more fine
184 grained. This will only take effect for functions compiled after
185 debugging has been started, so recompilation of all functions is
186 required to get the full effect. IA32 and x64 only for now.
187
188 Misc. fixes to the Solaris build.
189
190 Add new flags --print-cumulative-gc-stat and --trace-gc-nvp.
191
192 Add filtering of CPU profiles by security context.
193
194 Fix crash bug on ARM when running without VFP2 or VFP3.
195
196 Incremental performance improvements in all backends.
197
198
Kristian Monsen25f61362010-05-21 11:50:48 +01001992010-05-17: Version 2.2.10
200
201 Performance improvements in the x64 and ARM backends.
202
203
2042010-05-10: Version 2.2.9
205
206 Allow Object.create to be called with a function (issue 697).
207
208 Fixed bug with Date.parse returning a non-NaN value when called on a
209 non date string (issue 696).
210
211 Allow unaligned memory accesses on ARM targets that support it (by
Leon Clarkef7060e22010-06-03 12:02:55 +0100212 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
Kristian Monsen25f61362010-05-21 11:50:48 +0100213
214 C++ API for retrieving JavaScript stack trace information.
215
216
Steve Block6ded16b2010-05-10 14:33:55 +01002172010-05-05: Version 2.2.8
218
219 Performance improvements in the x64 and ARM backends.
220
221
2222010-05-03: Version 2.2.7
223
224 Added support for ES5 date time string format to Date.parse.
225
226 Performance improvements in the x64 backend.
227
228
2292010-04-28: Version 2.2.6
230
231 Added "amd64" as recognized architecture in scons build script
232 (by Ryan Dahl <coldredlemur@gmail.com>).
233
234 Fixed bug in String search and replace with very simple RegExps.
235
236 Fixed bug in RegExp containing "\b^".
237
238 Performance improvements on all platforms.
239
240
2412010-04-26: Version 2.2.5
242
243 Various performance improvements (especially for ARM and x64)
244
245 Fixed bug in CPU profiling (http://crbug.com/42137)
246
247 Fixed a bug with the natives cache.
248
249 Fixed two bugs in the ARM code generator that can cause
250 wrong calculations.
251
252 Fixed a bug that may cause a wrong result for shift operations.
253
254
2552010-04-21: Version 2.2.4
256
257 Fixed warnings on arm on newer GCC versions.
258
259 Fixed a number of minor bugs.
260
261 Performance improvements on all platforms.
262
263
2642010-04-14: Version 2.2.3
265
266 Added stack command and mem command to ARM simulator debugger.
267
268 Fixed scons snapshot and ARM build, and Windows X64 build issues.
269
270 Performance improvements on all platforms.
271
272
2732010-04-12: Version 2.2.2
274
275 Introduced new profiler API.
276
277 Fixed random number generator to produce full 32 random bits.
278
279
2802010-04-06: Version 2.2.1
281
282 Debugger improvements.
283
284 Fixed minor bugs.
285
286
2872010-03-29: Version 2.2.0
288
289 Fixed a few minor bugs.
290
291 Performance improvements for string operations.
292
293
2942010-03-26: Version 2.1.10
295
296 Fixed scons build issues.
297
298 Fixed a couple of minor bugs.
299
300
3012010-03-25: Version 2.1.9
302
303 Added API support for reattaching a global object to a context.
304
305 Extended debugger API with access to the internal debugger context.
306
307 Fixed Chromium crashes (issues http://crbug.com/39128 and
308 http://crbug.com/39160)
309
310
3112010-03-24: Version 2.1.8
312
313 Added fine-grained garbage collection callbacks to the API.
314
315 Performance improvements on all platforms.
316
317
3182010-03-22: Version 2.1.7
319
320 Fixed issue 650.
321
322 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
323
324 Performance improvements for arithmetic operations.
325
326 Performance improvements for string operations.
327
328 Print script name and line number information in stack trace.
329
330
3312010-03-17: Version 2.1.6
332
333 Performance improvements for arithmetic operations.
334
335 Performance improvements for string operations.
336
337
3382010-03-10: Version 2.1.4
339
340 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
341
342 Performance improvements on all platforms.
343
344
3452010-03-10: Version 2.1.3
346
347 Added API method for context-disposal notifications.
348
349 Added API method for accessing elements by integer index.
350
351 Added missing implementation of Uint32::Value and Value::IsUint32
352 API methods.
353
354 Added IsExecutionTerminating API method.
355
356 Disabled strict aliasing for GCC 4.4.
357
358 Fixed string-concatenation bug (issue 636).
359
360 Performance improvements on all platforms.
361
362
Andrei Popescu402d9372010-02-26 13:31:12 +00003632010-02-23: Version 2.1.2
364
365 Fix a crash bug caused by wrong assert.
366
367 Fix a bug with register names on 64-bit V8 (issue 615).
368
369 Performance improvements on all platforms.
370
Steve Block6ded16b2010-05-10 14:33:55 +0100371
Andrei Popescu402d9372010-02-26 13:31:12 +00003722010-02-19: Version 2.1.1
373
374 [ES5] Implemented Object.defineProperty.
375
376 Improved profiler support.
377
378 Added SetPrototype method in the public V8 API.
379
380 Added GetScriptOrigin and GetScriptLineNumber methods to Function
381 objects in the API.
382
383 Performance improvements on all platforms.
384
385
Leon Clarke4515c472010-02-03 11:58:03 +00003862010-02-03: Version 2.1.0
387
388 Values are now always wrapped in objects when used as a receiver.
389 (issue 223).
390
391 [ES5] Implemented Object.getOwnPropertyNames.
392
393 [ES5] Restrict JSON.parse to only accept strings that conforms to the
394 JSON grammar.
395
396 Improvement of debugger agent (issue 549 and 554).
397
398 Fixed problem with skipped stack frame in profiles (issue 553).
399
400 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
401 <ry@tinyclouds.org>.
402
403 Fix a bug that Math.round() returns incorrect results for huge
404 integers.
405
406 Fix enumeration order for objects created from some constructor
407 functions (isue http://crbug.com/3867).
408
409 Fix arithmetic on some integer constants (issue 580).
410
411 Numerous performance improvements including porting of previous IA-32
412 optimizations to x64 and ARM architectures.
413
414
Leon Clarkee46be812010-01-19 14:06:41 +00004152010-01-14: Version 2.0.6
416
417 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
418 GetOwnProperty, FromPropertyDescriptor.
419
420 Fixed Mac x64 build errors.
421
422 Improved performance of some math and string operations.
423
424 Improved performance of some regexp operations.
425
426 Improved performance of context creation.
427
428 Improved performance of hash tables.
429
430
4312009-12-18: Version 2.0.5
432
433 Extended to upper limit of map space to allow for 7 times as many map
434 to be allocated (issue 524).
435
436 Improved performance of code using closures.
437
438 Improved performance of some binary operations involving doubles.
439
440
4412009-12-16: Version 2.0.4
442
443 Added ECMAScript 5 Object.create.
444
445 Improved performance of Math.max and Math.min.
446
447 Optimized adding of strings on 64-bit platforms.
448
449 Improved handling of external strings by using a separate table
450 instead of weak handles. This improves garbage collection
451 performance and uses less memory.
452
453 Changed code generation for object and array literals in toplevel
454 code to be more compact by doing more work in the runtime.
455
456 Fixed a crash bug triggered when garbage collection happened during
457 generation of a callback load inline cache stub.
458
459 Fixed crash bug sometimes triggered when local variables shadowed
460 parameters in functions that used the arguments object.
461
462
Steve Blockd0582a62009-12-15 09:54:21 +00004632009-12-03: Version 2.0.3
464
465 Optimized handling and adding of strings, for-in and Array.join.
466
467 Heap serialization is now non-destructive.
468
469 Improved profiler support with information on time spend in C++
470 callbacks registered through the API.
471
472 Added commands to the debugger protocol for starting/stopping
473 profiling.
474
475 Enabled the non-optimizing compiler for top-level code.
476
477 Changed the API to only allow strings to be set as data objects on
478 Contexts and scripts to avoid potentially keeping global objects
479 around for too long (issue 528).
480
481 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
482
483 Fixed bugs.
484
485
4862009-11-24: Version 2.0.2
487
488 Improved profiler support.
489
490 Fixed bug that broke compilation of d8 with readline support.
491
492
4932009-11-20: Version 2.0.1
494
495 Fixed crash bug in String.prototype.replace.
496
497 Reverted a change which caused Chromium interactive ui test
498 failures.
499
Leon Clarkee46be812010-01-19 14:06:41 +0000500
Steve Blockd0582a62009-12-15 09:54:21 +00005012009-11-18: Version 2.0.0
502
503 Added support for VFP on ARM.
504
505 Added TryCatch::ReThrow method to the API.
506
507 Reduced the size of snapshots and improved the snapshot load time.
508
509 Improved heap profiler support.
510
511 64-bit version now supported on Windows.
512
513 Fixed a number of debugger issues.
514
515 Fixed bugs.
516
517
5182009-10-29: Version 1.3.18
519
520 Reverted a change which caused crashes in RegExp replace.
521
522 Reverted a change which caused Chromium ui_tests failure.
523
524
5252009-10-28: Version 1.3.17
526
527 Added API method to get simple heap statistics.
528
529 Improved heap profiler support.
530
531 Fixed the implementation of the resource constraint API so it
532 works when using snapshots.
533
534 Fixed a number of issues in the Windows 64-bit version.
535
536 Optimized calls to API getters.
537
538 Added valgrind notification on code modification to the 64-bit version.
539
540 Fixed issue where we logged shared library addresses on Windows at
541 startup and never used them.
542
543
Steve Block3ce2e202009-11-05 08:53:23 +00005442009-10-16: Version 1.3.16
Leon Clarkee46be812010-01-19 14:06:41 +0000545
Steve Block3ce2e202009-11-05 08:53:23 +0000546 X64: Convert smis to holding 32 bits of payload.
547
548 Introduce v8::Integer::NewFromUnsigned method.
549
550 Add missing null check in Context::GetCurrent.
551
552 Add trim, trimLeft and trimRight methods to String
553 Patch by Jan de Mooij <jandemooij@gmail.com>
554
555 Implement ES5 Array.isArray
556 Patch by Jan de Mooij <jandemooij@gmail.com>
557
558 Skip access checks for hidden properties.
559
560 Add String::Concat(Handle<String> left, Handle<String> right) to the V8 API.
561
562 Fix GYP-based builds of V8.
563
564
5652009-10-07: Version 1.3.15
566
567 Expand the maximum size of the code space to 512MB for 64-bit mode.
568
569 Fixed a crash bug happening when starting profiling (issue
570 http://crbug.com/23768).
571
572
5732009-10-07: Version 1.3.14
574
575 Added GetRealNamedProperty to the API to lookup real properties
576 located on the object or in the prototype chain skipping any
577 interceptors.
578
579 Fix the stack limits setting API to work correctly with threads. The
580 stack limit now needs to be set to each thread thich is used with V8.
581
582 Remove the high-priority flag from IdleNotification()
583
584 Ensure V8 is initialized before locking and unlocking threads.
585
586 Implemented a new JavaScript minifier for compressing the source of
Steve Blockd0582a62009-12-15 09:54:21 +0000587 the built-in JavaScript. This removes non-Open Source code from Douglas
Steve Block3ce2e202009-11-05 08:53:23 +0000588 Crockford from the project.
589
590 Added a missing optimization in StringCharAt.
591
592 Fixed some flaky socket tests.
593
594 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
595 in 64-bit mode.
596
597 Fixed memory leaks in the thread management code.
598
599 Fixed the result of assignment to a pixel array. The assigned value
600 is now the result.
601
602 Error reporting for invalid left-hand sides in for-in statements, pre-
603 and postfix count expressions, and assignments now matches the JSC
604 behavior in Safari 4.
605
606 Follow the spec in disallowing function declarations without a name.
607
608 Always allocate code objects within a 2 GB range. On x64 architecture
609 this is used to use near calls (32-bit displacement) in Code objects.
610
611 Optimized array construction ported to x64 and ARM architectures.
612
613 [ES5] Changed Object.keys to return strings for element indices.
614
615
Steve Blocka7e24c12009-10-30 11:49:00 +00006162009-09-23: Version 1.3.13
617
618 Fixed uninitialized memory problem.
619
620 Improved heap profiler support.
621
622
6232009-09-22: Version 1.3.12
624
625 Changed behavior of |function|.toString() on built-in functions to
626 be compatible with other implementations. Patch by Jan de Mooij.
627
628 Added Object::IsDirty in the API.
629
630 Optimized array construction; it is now handled purely in native
631 code.
632
633 [ES5] Made properties of the arguments array enumerable.
634
635 [ES5] Added test suite adapter for the es5conform test suite.
636
637 [ES5] Added Object.keys function.
638
639
6402009-09-15: Version 1.3.11
641
642 Fixed crash in error reporting during bootstrapping.
643
644 Optimized generated IA32 math code by using SSE2 instructions when
645 available.
646
647 Implemented missing pieces of debugger infrastructure on ARM. The
648 debugger is now fully functional on ARM.
649
650 Make 'hidden' the default visibility for gcc.
651
652
6532009-09-09: Version 1.3.10
654
655 Fixed profiler on Mac in 64-bit mode.
656
657 Optimized creation of objects from simple constructor functions on
658 ARM.
659
660 Fixed a number of debugger issues.
661
662 Reduced the amount of memory consumed by V8.
663
664
6652009-09-02: Version 1.3.9
666
667 Optimized stack guard checks on ARM.
668
669 Optimized API operations by inlining more in the API.
670
671 Optimized creation of objects from simple constructor functions.
672
673 Enabled a number of missing optimizations in the 64-bit port.
674
675 Implemented native-code support for regular expressions on ARM.
676
677 Stopped using the 'sahf' instruction on 64-bit machines that do
678 not support it.
679
680 Fixed a bug in the support for forceful termination of JavaScript
681 execution.
682
683
6842009-08-26: Version 1.3.8
685
686 Changed the handling of idle notifications to allow idle
687 notifications when V8 has not yet been initialized.
688
689 Fixed ARM simulator compilation problem on Windows.
Leon Clarkee46be812010-01-19 14:06:41 +0000690
Steve Blocka7e24c12009-10-30 11:49:00 +0000691
6922009-08-25: Version 1.3.7
693
694 Reduced the size of generated code on ARM platforms by reducing
695 the size of constant pools.
696
697 Changed build files to not include the 'ENV' user environment
698 variable in the build environment.
699
700 Changed the handling of idle notifications.
701
702
7032009-08-21: Version 1.3.6
704
705 Add support for forceful termination of JavaScript execution.
706
707 Add low memory notification to the API. The embedding host can signal
708 a low memory situation to V8.
709
710 Changed the handling of global handles (persistent handles in the API
711 sense) to avoid issues regarding allocation of new global handles
712 during weak handle callbacks.
713
714 Changed the growth policy of the young space.
715
716 Fixed a GC issue introduced in version 1.3.5.
717
718
7192009-08-19: Version 1.3.5
720
721 Optimize initialization of some arrays in the builtins.
722
723 Fix mac-nm script to support filenames with spaces.
724
725 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
726
727 Changed typeof RegExp from 'object' to 'function' for compatibility.
728 Fixed bug where regexps were not callable across contexts.
729
730 Added context independent script compilation to the API.
731
732 Added API call to get the stack trace for an exception.
733
734 Added API for getting object mirrors.
735
736 Make sure that SSE3 instructions are used whenever possible even when
737 running off a snapshot generated without using SSE3 instructions.
738
739 Tweaked the handling of the initial size and growth policy of the heap.
740
741 Added native code generation for RegExp to 64-bit version.
742
743 Added JavaScript debugger support to 64-bit version.
744
745
7462009-08-13: Version 1.3.4
747
748 Added a readline() command to the d8 shell.
749
750 Fixed bug in json parsing.
751
752 Added idle notification to the API and reduced memory on idle
753 notifications.
754
755
7562009-08-12: Version 1.3.3
757
758 Fix issue 417: incorrect %t placeholder expansion.
759
760 Add .gitignore file similar to Chromium's one.
761
762 Fix SConstruct file to build with new logging code for Android.
763
764 API: added function to find instance of template in prototype
765 chain. Inlined Object::IsInstanceOf.
766
767 Land change to notify valgrind when we modify code on x86.
768
769 Add api call to determine whether a string can be externalized.
770
771 Add a write() command to d8.
772
773
7742009-08-05: Version 1.3.2
775
776 Started new compiler infrastructure for two-pass compilation using a
777 control flow graph constructed from the AST.
778
779 Profiler stack sampling for X64.
780
781 Safe handling of NaN to Posix platform-dependent time functions.
782
783 Added a new profiler control API to unify controlling various aspects
784 of profiling.
785
786 Fixed issue 392.
787
788
7892009-07-30: Version 1.3.1
790
791 Speed improvements to accessors and interceptors.
792
793 Added support for capturing stack information on custom errors.
794
795 Added support for morphing an object into a pixel array where its
796 indexed properties are stored in an external byte array. Values written
797 are always clamped to the 0..255 interval.
798
799 Profiler on x64 now handles C/C++ functions from shared libraries.
800
801 Changed the debugger to avoid stepping into function.call/apply if the
802 function is a built-in.
803
804 Initial implementation of constructor heap profile for JS objects.
Leon Clarkee46be812010-01-19 14:06:41 +0000805
Steve Blocka7e24c12009-10-30 11:49:00 +0000806 More fine grained control of profiling aspects through the API.
Leon Clarkee46be812010-01-19 14:06:41 +0000807
Steve Blocka7e24c12009-10-30 11:49:00 +0000808 Optimized the called as constructor check for API calls.
809
810
8112009-07-27: Version 1.3.0
812
813 Allowed RegExp objects to be called as functions (issue 132).
814
815 Fixed issue where global property cells would escape after
816 detaching the global object; see http://crbug.com/16276.
817
818 Added support for stepping into setters and getters in the
819 debugger.
820
821 Changed the debugger to avoid stopping in its own JavaScript code
822 and in the code of built-in functions.
823
824 Fixed issue 345 by avoiding duplicate escaping labels.
825
826 Fixed ARM code generator crash in short-circuited boolean
827 expressions and added regression tests.
828
829 Added an external allocation limit to avoid issues where small V8
830 objects would hold on to large amounts of external memory without
831 causing garbage collections.
Leon Clarkee46be812010-01-19 14:06:41 +0000832
833 Finished more of the inline caching stubs for x64 targets.
Steve Blocka7e24c12009-10-30 11:49:00 +0000834
835
8362009-07-13: Version 1.2.14
837
838 Added separate paged heap space for global property cells and
839 avoid updating the write barrier when storing into them.
840
841 Improved peep-hole optimization on ARM platforms by not emitting
842 unnecessary debug information.
843
844 Re-enabled ICs for loads and calls that skip a global object
845 during lookup through the prototype chain.
846
847 Allowed access through global proxies to use ICs.
848
849 Fixed issue 401.
850
851
8522009-07-09: Version 1.2.13
853
854 Fixed issue 397, issue 398, and issue 399.
855
856 Added support for breakpoint groups.
857
858 Fixed bugs introduced with the new global object representation.
859
860 Fixed a few bugs in the ARM code generator.
861
862
8632009-07-06: Version 1.2.12
864
865 Added stack traces collection to Error objects accessible through
866 the e.stack property.
867
868 Changed RegExp parser to use a recursive data structure instead of
869 stack-based recursion.
870
871 Optimized Date object construction and string concatenation.
872
873 Improved performance of div, mod, and mul on ARM platforms.
874
875
8762009-07-02: Version 1.2.11
877
878 Improved performance on IA-32 and ARM.
879
880 Fixed profiler sampler implementation on Mac OS X.
881
882 Changed the representation of global objects to improve
883 performance of adding a lot of new properties.
884
885
8862009-06-29: Version 1.2.10
887
888 Improved debugger support.
889
890 Fixed bug in exception message reporting (issue 390).
891
892 Improved overall performance.
893
894
8952009-06-23: Version 1.2.9
896
897 Improved math performance on ARM.
898
899 Fixed profiler name-inference bug.
900
901 Fixed handling of shared libraries in the profiler tick processor
902 scripts.
903
904 Fixed handling of tests that time out in the test scripts.
905
906 Fixed compilation on MacOS X version 10.4.
907
908 Fixed two bugs in the regular expression engine.
909
910 Fixed a bug in the string type inference.
911
912 Fixed a bug in the handling of 'constant function' properties.
Leon Clarkee46be812010-01-19 14:06:41 +0000913
Steve Blocka7e24c12009-10-30 11:49:00 +0000914 Improved overall performance.
Leon Clarkee46be812010-01-19 14:06:41 +0000915
Steve Blocka7e24c12009-10-30 11:49:00 +0000916
9172009-06-16: Version 1.2.8
918
919 Optimized math on ARM platforms.
920
921 Fixed two crash bugs in the handling of getters and setters.
922
923 Improved the debugger support by adding scope chain information.
924
925 Improved the profiler support by compressing log data transmitted
926 to clients.
927
928 Improved overall performance.
929
930
9312009-06-08: Version 1.2.7
932
933 Improved debugger and profiler support.
934
935 Reduced compilation time by improving the handling of deferred
936 code.
937
938 Optimized interceptor accesses where the property is on the object
939 on which the interceptors is attached.
940
941 Fixed compilation problem on GCC 4.4 by changing the stack
942 alignment to 16 bytes.
943
944 Fixed handle creation to follow stric aliasing rules.
945
946 Fixed compilation on FreeBSD.
947
948 Introduced API for forcing the deletion of a property ignoring
949 interceptors and attributes.
950
951
9522009-05-29: Version 1.2.6
953
954 Added a histogram recording hit rates at different levels of the
955 compilation cache.
956
957 Added stack overflow check for the RegExp analysis phase. Previously a
958 very long regexp graph could overflow the stack with recursive calls.
959
960 Use a dynamic buffer when collecting log events in memory.
961
962 Added start/stop events to the profiler log.
963
964 Fixed infinite loop which could happen when setting a debug break while
965 executing a RegExp compiled to native code.
966
967 Fixed handling of lastIndexOf called with negative index (issue 351).
968
969 Fixed irregular crash in profiler test (issue 358).
970
971 Fixed compilation issues with some versions of gcc.
972
973
9742009-05-26: Version 1.2.5
975
976 Fixed bug in initial boundary check for Boyer-Moore text
977 search (issue 349).
978
979 Fixed compilation issues with MinGW and gcc 4.3+ and added support
980 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
981 Craig Schlenter.
982
983 Added a script cache to the debugger.
984
985 Optimized compilation performance by improving internal data
986 structures and avoiding expensive property load optimizations for
987 code that's infrequently executed.
988
989 Exposed the calling JavaScript context through the static API
990 function Context::GetCalling().
991
992
9932009-05-18: Version 1.2.4
994
995 Improved performance of floating point number allocation for ARM
996 platforms.
997
998 Fixed crash when using the instanceof operator on functions with
999 number values in their prototype chain (issue 341).
1000
1001 Optimized virtual frame operations in the code generator to speed
1002 up compilation time and allocated the frames in the zone.
1003
1004 Made the representation of virtual frames and jump targets in the
1005 code generator much more compact.
1006
1007 Avoided linear search for non-locals in scope code when resolving
1008 variables inside with and eval scopes.
1009
1010 Optimized lexical scanner by dealing with whitespace as part of
1011 the token scanning instead of as a separate step before it.
1012
1013 Changed the scavenging collector so that promoted objects do not
1014 reside in the old generation while their remembered set is being
1015 swept for pointers into the young generation.
1016
1017 Fixed numeric overflow handling when compiling count operations.
1018
1019
10202009-05-11: Version 1.2.3
1021
1022 Fixed bug in reporting of out-of-memory situations.
1023
1024 Introduced hidden prototypes on certain builtin prototype objects
1025 such as String.prototype to emulate JSC's behavior of restoring
1026 the original function when deleting functions from those prototype
1027 objects.
1028
1029 Fixed crash bug in the register allocator.
1030
1031
10322009-05-04: Version 1.2.2
1033
1034 Fixed bug in array sorting for sparse arrays (issue 326).
1035
1036 Added support for adding a soname when building a shared library
1037 on Linux (issue 151).
1038
1039 Fixed bug caused by morphing internal ASCII strings to external
1040 two-byte strings. Slices over ASCII strings have to forward ASCII
1041 checks to the underlying buffer string.
1042
1043 Allowed API call-as-function handlers to be called as
1044 constructors.
1045
1046 Fixed a crash bug where an external string was disposed but a
1047 slice of the external string survived as a symbol.
1048
1049
10502009-04-27: Version 1.2.1
1051
1052 Added EcmaScript 5 JSON object.
1053
1054 Fix bug in preemption support on ARM.
1055
1056
10572009-04-23: Version 1.2.0
1058
1059 Optimized floating-point operations on ARM.
1060
1061 Added a number of extensions to the debugger API.
1062
1063 Changed the enumeration order for unsigned integer keys to always
1064 be numerical order.
1065
1066 Added a "read" extension to the shell sample.
1067
1068 Added support for Array.prototype.reduce and
1069 Array.prototype.reduceRight.
1070
1071 Added an option to the SCons build to control Microsoft Visual C++
1072 link-time code generation.
1073
1074 Fixed a number of bugs (in particular issue 315, issue 316,
1075 issue 317 and issue 318).
1076
1077
10782009-04-15: Version 1.1.10
1079
1080 Fixed crash bug that occurred when loading a const variable in the
1081 presence of eval.
1082
1083 Allowed using with and eval in registered extensions in debug mode
1084 by fixing bogus assert.
1085
1086 Fixed the source position for function returns to enable the
1087 debugger to break there.
1088
1089
10902009-04-14: Version 1.1.9
1091
1092 Made the stack traversal code in the profiler robust by avoiding
1093 to look into the heap.
1094
1095 Added name inferencing for anonymous functions to facilitate
1096 debugging and profiling.
1097
1098 Re-enabled stats timers in the developer shell (d8).
1099
1100 Fixed issue 303 by avoiding to shortcut cons-symbols.
1101
1102
11032009-04-11: Version 1.1.8
1104
1105 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
1106
1107 Fixed step-in handling for Function.prototype.apply and call in
1108 the debugger (issue 269).
1109
1110 Fixed v8::Object::DeleteHiddenValue to not bail out when there
1111 are no hidden properties.
1112
1113 Added workaround for crash bug, where external symbol table
1114 entries with deleted resources would lead to NPEs when looking
1115 up in the symbol table.
1116
1117
11182009-04-07: Version 1.1.7
1119
1120 Added support for easily importing additional environment
1121 variables into the SCons build.
1122
1123 Optimized strict equality checks.
1124
1125 Fixed crash in indexed setters on objects without a corresponding
1126 getter (issue 298).
1127
1128 Re-enabled script compilation cache.
1129
1130
11312009-04-01: Version 1.1.6
1132
1133 Reverted an unsafe code generator change.
1134
1135
11362009-04-01: Version 1.1.5
1137
1138 Fixed bug that caused function literals to not be optimized as
1139 much as other functions.
1140
1141 Improved profiler support.
1142
1143 Fixed a crash bug in connection with debugger unloading.
1144
1145 Fixed a crash bug in the code generator caused by losing the
1146 information that a frame element was copied.
1147
1148 Fixed an exception propagation bug that could cause non-null
1149 return values when exceptions were thrown.
1150
1151
11522009-03-30: Version 1.1.4
1153
1154 Optimized String.prototype.match.
1155
1156 Improved the stack information in profiles.
1157
1158 Fixed bug in ARM port making it possible to compile the runtime
1159 system for thumb mode again.
1160
1161 Implemented a number of optimizations in the code generator.
1162
1163 Fixed a number of memory leaks in tests.
1164
1165 Fixed crash bug in connection with script source code and external
1166 strings.
1167
1168
11692009-03-24: Version 1.1.3
1170
1171 Fixed assertion failures in compilation of loop conditions.
1172
1173 Removed STL dependency from developer shell (d8).
1174
1175 Added infrastructure for protecting the V8 heap from corruption
1176 caused by memory modifications from the outside.
1177
1178
11792009-03-24: Version 1.1.2
1180
1181 Improved frame merge code generated by the code generator.
1182
1183 Optimized String.prototype.replace.
1184
1185 Implemented __defineGetter__ and __defineSetter__ for properties
1186 with integer keys on non-array objects.
1187
1188 Improved debugger and profiler support.
1189
1190 Fixed a number of portability issues to allow compilation for
1191 smaller ARM devices.
1192
1193 Exposed object cloning through the API.
1194
1195 Implemented hidden properties. This is used to expose an identity
1196 hash for objects through the API.
1197
1198 Implemented restarting of regular expressions if their input
1199 string changes representation during preemption.
1200
1201 Fixed a code generator bug that could cause assignments in loops
1202 to be ignored if using continue to break out of the loop (issue
1203 284).
1204
1205
12062009-03-12: Version 1.1.1
1207
1208 Fixed an assertion in the new compiler to take stack overflow
1209 exceptions into account.
1210
1211 Removed exception propagation code that could cause crashes.
1212
1213 Fixed minor bug in debugger line number computations.
1214
1215 8-byte align the C stack on Linux and Windows to speed up floating
1216 point computations.
1217
1218
12192009-03-12: Version 1.1.0
1220
1221 Improved code generation infrastructure by doing simple register
1222 allocation and constant folding and propagation.
1223
1224 Optimized regular expression matching by avoiding to create
1225 intermediate string arrays and by flattening nested array
1226 representations of RegExp data.
1227
1228 Traverse a few stack frames when recording profiler samples to
1229 include partial call graphs in the profiling output.
1230
1231 Added support for using OProfile to profile generated code.
1232
1233 Added remote debugging support to the D8 developer shell.
1234
1235 Optimized creation of nested literals like JSON objects.
1236
1237 Fixed a bug in garbage collecting unused maps and turned it on by
1238 default (--collect-maps).
1239
1240 Added support for running tests under Valgrind.
1241
1242
12432009-02-27: Version 1.0.3
1244
1245 Optimized double-to-integer conversions in bit operations by using
1246 SSE3 instructions if available.
1247
1248 Optimized initialization sequences that store to multiple
1249 properties of the same object.
1250
1251 Changed the D8 debugger frontend to use JSON messages.
1252
1253 Force garbage collections when disposing contexts.
1254
1255 Align code objects at 32-byte boundaries.
1256
1257
12582009-02-25: Version 1.0.2
1259
1260 Improved profiling support by performing simple call stack
1261 sampling for ticks and by fixing a bug in the logging of code
1262 addresses.
1263
1264 Fixed a number of debugger issues.
1265
1266 Optimized code that uses eval.
1267
1268 Fixed a couple of bugs in the regular expression engine.
1269
1270 Reduced the size of generated code for certain regular expressions.
1271
1272 Removed JSCRE completely.
1273
1274 Fixed issue where test could not be run if there was a dot in the
1275 checkout path.
1276
1277
12782009-02-13: Version 1.0.1
1279
1280 Fixed two crash-bugs in irregexp (issue 231 and 233).
1281
1282 Fixed a number of minor bugs (issue 87, 227 and 228).
1283
1284 Added support for morphing strings to external strings on demand
1285 to avoid having to create copies in the embedding code.
1286
1287 Removed experimental support for external symbol callbacks.
1288
1289
12902009-02-09: Version 1.0.0
1291
1292 Fixed crash-bug in the code generation for case independent 16 bit
1293 backreferences.
1294
1295 Made shells more robust in the presence of string conversion
1296 failures (issue 224).
1297
1298 Fixed a potential infinite loop when attempting to resolve
1299 eval (issue 221).
1300
1301 Miscellaneous fixes to the new regular expression engine.
1302
1303 Reduced binary by stripping unneeded text from JavaScript library and
1304 minifying some JavaScript files.
1305
1306
13072009-01-27: Version 0.4.9
1308
1309 Enabled new regular expression engine.
1310
1311 Made a number of changes to the debugger protocol.
1312
1313 Fixed a number of bugs in the preemption support.
1314
1315 Added -p option to the developer shell to run files in parallel
1316 using preemption.
1317
1318 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
1319 193, 198 and 201).
1320
1321 Fixed a number of bugs in the serialization/deserialization
1322 support for the ARM platform.
1323
1324
13252009-01-19: Version 0.4.8.1
1326
1327 Minor patch to debugger support.
1328
1329
13302009-01-16: Version 0.4.8
1331
1332 Fixed string length bug on ARM (issue 171).
1333
1334 Made most methods in the API const.
1335
1336 Optimized object literals by improving data locality.
1337
1338 Fixed bug that caused incomplete functions to be cached in case of
1339 stack overflow exceptions.
1340
1341 Fixed bugs that caused catch variables and variables introduced by
1342 eval to behave incorrectly when using accessors (issues 186, 190
1343 and 191).
1344
1345
13462009-01-06: Version 0.4.7
1347
1348 Minor bugfixes and optimizations.
1349
1350 Added command line debugger to D8 shell.
1351
1352 Fixed subtle bug that caused the wrong 'this' to be used when
1353 calling a caught function in a catch clause.
1354
1355 Inline array loads within loops directly in the code instead of
1356 always calling a stub.
1357
1358
13592008-12-11: Version 0.4.6
1360
1361 Fixed exception reporting bug where certain exceptions were
1362 incorrectly reported as uncaught.
1363
1364 Improved the memory allocation strategy used during compilation to
1365 make running out of memory when compiling huge scripts less
1366 likely.
1367
1368 Optimized String.replace by avoiding the construction of certain
1369 sub strings.
1370
1371 Fixed bug in code generation for large switch statements on ARM.
1372
1373 Fixed bug that caused V8 to change the global object template
1374 passed in by the user.
1375
1376 Changed the API for creating object groups used during garbage
1377 collection. Entire object groups are now passed to V8 instead of
1378 individual members of the groups.
1379
1380
13812008-12-03: Version 0.4.5
1382
1383 Added experimental API support for allocating V8 symbols as
1384 external strings.
1385
1386 Fixed bugs in debugging support on ARM.
1387
1388 Changed eval implementation to correctly detect whether or not a
1389 call to eval is aliased.
1390
1391 Fixed bug caused by a combination of the compilation cache and
1392 dictionary probing in native code. The bug caused us to sometimes
1393 call functions that had not yet been compiled.
1394
1395 Added platform support for FreeBSD.
1396
1397 Added support for building V8 on Windows with either the shared or
1398 static version of MSVCRT
1399
1400 Added the v8::jscre namespace around the jscre functions to avoid
1401 link errors (duplicate symbols) when building Google Chrome.
1402
1403 Added support for calling a JavaScript function with the current
1404 debugger execution context as its argument to the debugger
1405 interface.
1406
1407 Changed the type of names of counters from wchar_t to char.
1408
1409 Changed the Windows system call used to compute daylight savings
1410 time. The system call that we used to use became four times
1411 slower on WinXP SP3.
1412
1413 Added support in the d8 developer shell for memory-mapped counters
1414 and added a stats-viewer tool.
1415
1416 Fixed bug in upper/lower case mappings (issue 149).
1417
1418
14192008-11-17: Version 0.4.4
1420
1421 Reduced code size by using shorter instruction encoding when
1422 possible.
1423
1424 Added a --help option to the shell sample and to the d8 shell.
1425
1426 Added visual studio project files for building the ARM simulator.
1427
1428 Fixed a number of ARM simulator issues.
1429
1430 Fixed bug in out-of-memory handling on ARM.
1431
1432 Implemented shell support for passing arguments to a script from
1433 the command line.
1434
1435 Fixed bug in date code that made certain date functions return -0
1436 instead of 0 for dates before the epoch.
1437
1438 Restricted applications of eval so it can only be used in the
1439 context of the associated global object.
1440
1441 Treat byte-order marks as whitespace characters.
1442
1443
14442008-11-04: Version 0.4.3
1445
1446 Added support for API accessors that prohibit overwriting by
1447 accessors defined in JavaScript code by using __defineGetter__ and
1448 __defineSetter__.
1449
1450 Improved handling of conditionals in test status files.
1451
1452 Introduced access control in propertyIsEnumerable.
1453
1454 Improved performance of some string operations by caching
1455 information about the type of the string between operations.
1456
1457 Fixed bug in fast-case code for switch statements that only have
1458 integer labels.
1459
1460
14612008-10-30: Version 0.4.2
1462
1463 Improved performance of Array.prototype.concat by moving the
1464 implementation to C++ (issue 123).
1465
1466 Fixed heap growth policy to avoid growing old space to its maximum
1467 capacity before doing a garbage collection and fixed issue that
1468 would lead to artificial out of memory situations (issue 129).
1469
1470 Fixed Date.prototype.toLocaleDateString to return the date in the
1471 same format as WebKit.
1472
1473 Added missing initialization checks to debugger API.
1474
1475 Added removing of unused maps during GC.
1476
1477
14782008-10-28: Version 0.4.1
1479
1480 Added caching of RegExp data in compilation cache.
1481
1482 Added Visual Studio project file for d8 shell.
1483
1484 Fixed function call performance regression introduced in version
1485 0.4.0 when splitting the global object in two parts (issue 120).
1486
1487 Fixed issue 131 by checking for empty handles before throwing and
1488 reporting exceptions.
1489
1490
14912008-10-23: Version 0.4.0
1492
1493 Split the global object into two parts: The state holding global
1494 object and the global object proxy.
1495
1496 Fixed bug that affected the value of an assignment to an element
1497 in certain cases (issue 116).
1498
1499 Added GetPropertyNames functionality (issue 33) and extra Date
1500 functions (issue 77) to the API.
1501
1502 Changed WeakReferenceCallback to take a Persistent<Value> instead
1503 of a Persistent<Object> (issue 101).
1504
1505 Fixed issues with message reporting for exceptions in try-finally
1506 blocks (issues 73 and 75).
1507
1508 Optimized flattening of strings and string equality checking.
1509
1510 Improved Boyer-Moore implementation for faster indexOf operations.
1511
1512 Added development shell (d8) which includes counters and
1513 completion support.
1514
1515 Fixed problem with the receiver passed to functions called from
1516 eval (issue 124).
1517
1518
15192008-10-16: Version 0.3.5
1520
1521 Improved string hash-code distribution by excluding bit-field bits
1522 from the hash-code.
1523
1524 Changed string search algorithm used in indexOf from KMP to
1525 Boyer-Moore.
1526
1527 Improved the generated code for the instanceof operator.
1528
1529 Improved performance of slow-case string equality checks by
1530 specializing the code based on the string representation.
1531
1532 Improve the handling of out-of-memory situations (issue 70).
1533
1534 Improved performance of strict equality checks.
1535
1536 Improved profiler output to make it easier to see anonymous
1537 functions.
1538
1539 Improved performance of slow-case keyed loads.
1540
1541 Improved property access performance by allocating a number of
1542 properties in the front object.
1543
1544 Changed the toString behavior on the built-in object constructors
1545 to print [native code] instead of the actual source. Some web
1546 applications do not like constructors with complex toString
1547 results.
1548
1549
15502008-10-06: Version 0.3.4
1551
1552 Changed Array.prototype.sort to use quick sort.
1553
1554 Fixed code generation issue where leaving a finally block with
1555 break or continue would accumulate elements on the expression
1556 stack (issue 86).
1557
1558 Made sure that the name accessor on functions returns the expected
1559 names for builtin JavaScript functions and C++ callback functions.
1560
1561 Added fast case code for extending the property storage array of
1562 JavaScript objects.
1563
1564 Ported switch statement optimizations introduced in version 0.3.3
1565 to the ARM code generator.
1566
1567 Allowed GCC to use strict-aliasing rules when compiling.
1568
1569 Improved performance of arguments object allocation by taking care
1570 of arguments adaptor frames in the generated code.
1571
1572 Updated the V8 benchmark suite to version 2.
1573
1574
15752008-09-25: Version 0.3.3
1576
1577 Improved handling of relocation information to enable more
1578 peep-hole optimizations.
1579
1580 Optimized switch statements where all labels are constant small
1581 integers.
1582
1583 Optimized String.prototype.indexOf for common cases.
1584
1585 Fixed more build issues (issue 80).
1586
1587 Fixed a couple of profiler issues.
1588
1589 Fixed bug where the body of a function created using the Function
1590 constructor was not allowed to end with a single-line comment
1591 (issue 85).
1592
1593 Improved handling of object literals by canonicalizing object
1594 literal maps. This will allow JSON objects with the same set of
1595 properties to share the same map making inline caching work better
1596 for JSON objects.
1597
1598
15992008-09-17: Version 0.3.2
1600
1601 Generalized the EvalCache into a CompilationCache and enabled it
1602 for scripts too. The current strategy is to retire all entries
1603 whenever a mark-sweep collection is started.
1604
1605 Fixed bug where switch statements containing only a default case
1606 would lead to an unbalanced stack (issue 69).
1607
1608 Fixed bug that made access to the function in a named function
1609 expression impossible in certain situations (issue 24).
1610
1611 Fixed even more build issues.
1612
1613 Optimized calling conventions on ARM. The conventions on ARM and
1614 IA-32 now match.
1615
1616 Removed static initializers for flags and counters.
1617
1618 Improved inline caching behavior for uncommon cases where lazily
1619 loading Date and RegExp code could force certain code paths go
1620 megamorphic.
1621
1622 Removed arguments adaption for builtins written in C++. This
1623 makes Array.prototype.push and Array.prototype.pop slightly
1624 faster.
1625
1626
16272008-09-11: Version 0.3.1
1628
1629 Fixed a number of build issues.
1630
1631 Fixed problem with missing I-cache flusing on ARM.
1632
1633 Changed space layout in memory management by splitting up
1634 code space into old data space and code space.
1635
1636 Added utf-8 conversion support to the API (issue 57).
1637
1638 Optimized repeated calls to eval with the same strings. These
1639 repeated calls are common in web applications.
1640
1641 Added Xcode project file.
1642
1643 Optimized a couple of Array operation.
1644
1645 Fixed parser bug by checking for end-of-string when parsing break
1646 and continue (issue 35).
1647
1648 Fixed problem where asian characters were not categorized as
1649 letters.
1650
1651 Fixed bug that disallowed calling functions fetched from an array
1652 using a string as an array index (issue 32).
1653
1654 Fixed bug where the internal field count on object templates were
1655 sometimes ignored (issue 54).
1656
1657 Added -f option to the shell sample for compatibility with other
1658 engines (issue 18).
1659
1660 Added source info to TryCatches in the API.
1661
1662 Fixed problem where the seed for the random number generator was
1663 clipped in a double to unsigned int conversion.
1664
1665 Fixed bug where cons string symbols were sometimes converted to
1666 non-symbol flat strings during GC.
1667
1668 Fixed bug in error reporting when attempting to convert null to an
1669 object.
1670
1671
16722008-09-04: Version 0.3.0
1673
1674 Added support for running tests on the ARM simulator.
1675
1676 Fixed bug in the 'in' operator where negative indices were not
1677 treated correctly.
1678
1679 Fixed build issues on gcc-4.3.1.
1680
1681 Changed Date.prototype.toLocaleTimeString to not print the
1682 timezone part of the time.
1683
1684 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
1685 with user code.
1686
1687
16882008-09-02: Version 0.2.5
1689
1690 Renamed the top level directory 'public' to 'include'.
1691
1692 Added 'env' option to the SCons build scripts to support
1693 overriding the ENV part of the build environment. This is mostly
1694 to support Windows builds in cases where SCons cannot find the
1695 correct paths to the Windows SDK, as these paths cannot be passed
1696 through shell environment variables.
1697
1698 Enabled "Buffer Security Check" on for the Windows SCons build and
1699 added the linker option /OPT:ICF as an optimization.
1700
1701 Added the V8 benchmark suite to the repository.
1702
1703
17042008-09-01: Version 0.2.4
1705
1706 Included mjsunit JavaScript test suite and C++ unit tests.
1707
1708 Changed the shell sample to not print the result of executing a
1709 script provided on the command line.
1710
1711 Fixed issue when building samples on Windows using a shared V8
1712 library. Added visibility option on Linux build which makes the
1713 generated library 18% smaller.
1714
1715 Changed build system to accept multiple build modes in one build
1716 and generate separate objects, libraries and executables for each
1717 mode.
1718
1719 Removed deferred negation optimization (a * -b => -(a * b)) since
1720 this visibly changes operand conversion order.
1721
1722 Improved parsing performance by introducing stack guard in
1723 preparsing. Without a stack guard preparsing always bails out
1724 with stack overflow.
1725
1726 Changed shell sample to take flags directly from the command-line.
1727 Added API call that implements this.
1728
1729 Added load, quit and version functions to the shell sample so it's
1730 easier to run benchmarks and tests.
1731
1732 Fixed issue with building samples and cctests on 64-bit machines.
1733
1734 Fixed bug in the runtime system where the prototype chain was not
1735 always searched for a setter when setting a property that does not
1736 exist locally.
1737
1738
17392008-08-14: Version 0.2.3
1740
1741 Improved performance of garbage collection by moving the
1742 function that updates pointers during compacting collection
1743 into the updating visitor. This gives the compiler a better
1744 chance to inline and avoid a function call per (potential)
1745 pointer.
1746
1747 Extended the shell sample with a --runtime-flags option.
1748
1749 Added Visual Studio project files for the shell.cc and
1750 process.cc samples.
1751
1752
17532008-08-13: Version 0.2.2
1754
1755 Improved performance of garbage collection by changing the way
1756 we use the marking stack in the event of stack overflow during
1757 full garbage collection and by changing the way we mark roots.
1758
1759 Cleaned up ARM version by removing top of stack caching and by
1760 introducing push/pop elimination.
1761
1762 Cleaned up the way runtime functions are called to allow
1763 runtime calls with no arguments.
1764
1765 Changed Windows build options to make sure that exceptions are
1766 disabled and that optimization flags are enabled.
1767
1768 Added first version of Visual Studio project files.
1769
1770
17712008-08-06: Version 0.2.1
1772
1773 Improved performance of unary addition by avoiding runtime calls.
1774
1775 Fixed the handling of '>' and '<=' to use right-to-left conversion
1776 and left-to-right evaluation as specified by ECMA-262.
1777
1778 Fixed a branch elimination bug on the ARM platform where incorrect
1779 code was generated because of overly aggressive branch
1780 elimination.
1781
1782 Improved performance of code that repeatedly assigns the same
1783 function to the same property of different objects with the same
1784 map.
1785
1786 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
1787 no longer expects DEBUG to be defined.
1788
1789 Added platform-nullos.cc to serve as the basis for new platform
1790 implementations.
1791
1792
17932008-07-30: Version 0.2.0
1794
1795 Changed all text files to have native svn:eol-style.
1796
1797 Added a few samples and support for building them. The samples
1798 include a simple shell that can be used to benchmark and test V8.
1799
1800 Changed V8::GetVersion to return the version as a string.
1801
1802 Added source for lazily loaded scripts to snapshots and made
1803 serialization non-destructive.
1804
1805 Improved ARM support by fixing the write barrier code to use
1806 aligned loads and stores and by removing premature locals
1807 optimization that relied on broken support for callee-saved
1808 registers (removed).
1809
1810 Refactored the code for marking live objects during garbage
1811 collection and the code for allocating objects in paged
1812 spaces. Introduced an abstraction for the map word of a heap-
1813 allocated object and changed the memory allocator to allocate
1814 executable memory only for spaces that may contain code objects.
1815
1816 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
1817 they can be used by debugging and logging modules. Added
1818 thread-safe message queues for dealing with debugger events.
1819
1820 Fixed the source code reported by toString for certain builtin
1821 empty functions and made sure that the prototype property of a
1822 function is enumerable.
1823
1824 Improved performance of converting values to condition flags in
1825 generated code.
1826
1827 Merged disassembler-{arch} files.
1828
1829
18302008-07-28: Version 0.1.4
1831
1832 Added support for storing JavaScript stack traces in a stack
1833 allocated buffer to make it visible in shallow core dumps.
1834 Controlled by the --preallocate-message-memory flag which is
1835 disabled by default.
1836
1837
18382008-07-25: Version 0.1.3
1839
1840 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
1841 map transitions would count as properties.
1842
1843 Allowed aliased eval invocations by treating them as evals in the
1844 global context. This may change in the future.
1845
1846 Added support for accessing the last entered context through the
1847 API and renamed Context::Current to Context::GetCurrent and
1848 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
1849
1850 Fixed bug in the debugger that would cause the debugger scripts to
1851 be recursively loaded and changed all disabling of interrupts to
1852 be block-structured.
1853
1854 Made snapshot data read-only to allow it to be more easily shared
1855 across multiple users of V8 when linked as a shared library.
1856
1857
18582008-07-16: Version 0.1.2
1859
1860 Fixed building on Mac OS X by recognizing i386 and friends as
1861 IA-32 platforms.
1862
1863 Added propagation of stack overflow exceptions that occur while
1864 compiling nested functions.
1865
1866 Improved debugger with support for recursive break points and
1867 handling of exceptions that occur in the debugger JavaScript code.
1868
1869 Renamed GetInternal to GetInternalField and SetInternal to
1870 SetInternalField in the API and moved InternalFieldCount and
1871 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
1872
1873
18742008-07-09: Version 0.1.1
1875
1876 Fixed bug in stack overflow check code for IA-32 targets where a
1877 non-tagged value in register eax was pushed to the stack.
1878
1879 Fixed potential quadratic behavior when converting strings to
1880 numbers.
1881
1882 Fixed bug where the return value from Object::SetProperty could
1883 end up being the property holder instead of the written value.
1884
1885 Improved debugger support by allowing nested break points and by
1886 dealing with stack-overflows when compiling functions before
1887 setting break points in them.
1888
1889
18902008-07-03: Version 0.1.0
1891
1892 Initial export.
1893