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