blob: 83ebc02530dd3073a7ce06f06298e0f77119ff24 [file] [log] [blame]
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000012009-07-13: Version 1.2.14
2
3 Added separate paged heap space for global property cells and
4 avoid updating the write barrier when storing into them.
5
6 Improved peep-hole optimization on ARM platforms by not emitting
7 unnecessary debug information.
8
9 Re-enabled ICs for loads and calls that skip a global object
10 during lookup through the prototype chain.
11
12 Allowed access through global proxies to use ICs.
13
14 Fixed issue 401.
15
16
kasperl@chromium.org68ac0092009-07-09 06:00:35 +0000172009-07-09: Version 1.2.13
18
19 Fixed issue 397, issue 398, and issue 399.
20
21 Added support for breakpoint groups.
22
23 Fixed bugs introduced with the new global object representation.
24
25 Fixed a few bugs in the ARM code generator.
26
27
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000282009-07-06: Version 1.2.12
29
30 Added stack traces collection to Error objects accessible through
31 the e.stack property.
32
33 Changed RegExp parser to use a recursive data structure instead of
34 stack-based recursion.
35
36 Optimized Date object construction and string concatenation.
37
38 Improved performance of div, mod, and mul on ARM platforms.
39
40
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000412009-07-02: Version 1.2.11
42
43 Improved performance on IA-32 and ARM.
44
45 Fixed profiler sampler implementation on Mac OS X.
46
47 Changed the representation of global objects to improve
48 performance of adding a lot of new properties.
49
50
ager@chromium.org3e875802009-06-29 08:26:34 +0000512009-06-29: Version 1.2.10
52
53 Improved debugger support.
54
55 Fixed bug in exception message reporting (issue 390).
56
57 Improved overall performance.
58
59
ager@chromium.org5aa501c2009-06-23 07:57:28 +0000602009-06-23: Version 1.2.9
61
62 Improved math performance on ARM.
63
64 Fixed profiler name-inference bug.
65
66 Fixed handling of shared libraries in the profiler tick processor
67 scripts.
68
69 Fixed handling of tests that time out in the test scripts.
70
71 Fixed compilation on MacOS X version 10.4.
72
73 Fixed two bugs in the regular expression engine.
74
75 Fixed a bug in the string type inference.
76
77 Fixed a bug in the handling of 'constant function' properties.
78
79 Improved overall performance.
80
81
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000822009-06-16: Version 1.2.8
83
84 Optimized math on ARM platforms.
85
86 Fixed two crash bugs in the handling of getters and setters.
87
88 Improved the debugger support by adding scope chain information.
89
90 Improved the profiler support by compressing log data transmitted
91 to clients.
92
93 Improved overall performance.
94
95
ager@chromium.orge2902be2009-06-08 12:21:35 +0000962009-06-08: Version 1.2.7
97
98 Improved debugger and profiler support.
99
100 Reduced compilation time by improving the handling of deferred
101 code.
102
103 Optimized interceptor accesses where the property is on the object
104 on which the interceptors is attached.
105
106 Fixed compilation problem on GCC 4.4 by changing the stack
107 alignment to 16 bytes.
108
109 Fixed handle creation to follow stric aliasing rules.
110
111 Fixed compilation on FreeBSD.
112
113 Introduced API for forcing the deletion of a property ignoring
114 interceptors and attributes.
115
116
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00001172009-05-29: Version 1.2.6
118
119 Added a histogram recording hit rates at different levels of the
120 compilation cache.
121
122 Added stack overflow check for the RegExp analysis phase. Previously a
123 very long regexp graph could overflow the stack with recursive calls.
124
125 Use a dynamic buffer when collecting log events in memory.
126
127 Added start/stop events to the profiler log.
128
129 Fixed infinite loop which could happen when setting a debug break while
130 executing a RegExp compiled to native code.
131
132 Fixed handling of lastIndexOf called with negative index (issue 351).
133
134 Fixed irregular crash in profiler test (issue 358).
135
136 Fixed compilation issues with some versions of gcc.
137
138
kasperl@chromium.org71affb52009-05-26 05:44:31 +00001392009-05-26: Version 1.2.5
140
141 Fixed bug in initial boundary check for Boyer-Moore text
142 search (issue 349).
143
144 Fixed compilation issues with MinGW and gcc 4.3+ and added support
145 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
146 Craig Schlenter.
147
148 Added a script cache to the debugger.
149
150 Optimized compilation performance by improving internal data
151 structures and avoiding expensive property load optimizations for
152 code that's infrequently executed.
153
154 Exposed the calling JavaScript context through the static API
155 function Context::GetCalling().
156
157
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00001582009-05-18: Version 1.2.4
159
160 Improved performance of floating point number allocation for ARM
161 platforms.
162
163 Fixed crash when using the instanceof operator on functions with
164 number values in their prototype chain (issue 341).
165
166 Optimized virtual frame operations in the code generator to speed
167 up compilation time and allocated the frames in the zone.
168
169 Made the representation of virtual frames and jump targets in the
170 code generator much more compact.
171
172 Avoided linear search for non-locals in scope code when resolving
173 variables inside with and eval scopes.
174
175 Optimized lexical scanner by dealing with whitespace as part of
176 the token scanning instead of as a separate step before it.
177
178 Changed the scavenging collector so that promoted objects do not
179 reside in the old generation while their remembered set is being
180 swept for pointers into the young generation.
181
182 Fixed numeric overflow handling when compiling count operations.
183
184
ager@chromium.org9085a012009-05-11 19:22:57 +00001852009-05-11: Version 1.2.3
186
187 Fixed bug in reporting of out-of-memory situations.
188
189 Introduced hidden prototypes on certain builtin prototype objects
190 such as String.prototype to emulate JSC's behavior of restoring
191 the original function when deleting functions from those prototype
192 objects.
193
194 Fixed crash bug in the register allocator.
195
196
ager@chromium.org5ec48922009-05-05 07:25:34 +00001972009-05-04: Version 1.2.2
198
199 Fixed bug in array sorting for sparse arrays (issue 326).
200
201 Added support for adding a soname when building a shared library
202 on Linux (issue 151).
203
204 Fixed bug caused by morphing internal ASCII strings to external
205 two-byte strings. Slices over ASCII strings have to forward ASCII
206 checks to the underlying buffer string.
207
208 Allowed API call-as-function handlers to be called as
209 constructors.
210
211 Fixed a crash bug where an external string was disposed but a
212 slice of the external string survived as a symbol.
213
214
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00002152009-04-27: Version 1.2.1
216
217 Added EcmaScript 5 JSON object.
218
219 Fix bug in preemption support on ARM.
220
221
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002222009-04-23: Version 1.2.0
223
224 Optimized floating-point operations on ARM.
225
226 Added a number of extensions to the debugger API.
227
228 Changed the enumeration order for unsigned integer keys to always
229 be numerical order.
230
231 Added a "read" extension to the shell sample.
232
233 Added support for Array.prototype.reduce and
234 Array.prototype.reduceRight.
235
236 Added an option to the SCons build to control Microsoft Visual C++
237 link-time code generation.
238
239 Fixed a number of bugs (in particular issue 315, issue 316,
240 issue 317 and issue 318).
241
242
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00002432009-04-15: Version 1.1.10
244
245 Fixed crash bug that occurred when loading a const variable in the
246 presence of eval.
247
248 Allowed using with and eval in registered extensions in debug mode
249 by fixing bogus assert.
250
251 Fixed the source position for function returns to enable the
252 debugger to break there.
253
254
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +00002552009-04-14: Version 1.1.9
256
257 Made the stack traversal code in the profiler robust by avoiding
258 to look into the heap.
259
260 Added name inferencing for anonymous functions to facilitate
261 debugging and profiling.
262
263 Re-enabled stats timers in the developer shell (d8).
264
265 Fixed issue 303 by avoiding to shortcut cons-symbols.
266
267
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00002682009-04-11: Version 1.1.8
269
270 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
271
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000272 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000273 the debugger (issue 269).
274
275 Fixed v8::Object::DeleteHiddenValue to not bail out when there
276 are no hidden properties.
277
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000278 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000279 entries with deleted resources would lead to NPEs when looking
280 up in the symbol table.
281
282
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00002832009-04-07: Version 1.1.7
284
285 Added support for easily importing additional environment
286 variables into the SCons build.
287
288 Optimized strict equality checks.
289
290 Fixed crash in indexed setters on objects without a corresponding
291 getter (issue 298).
292
293 Re-enabled script compilation cache.
294
295
ager@chromium.org8682a592009-04-01 10:47:14 +00002962009-04-01: Version 1.1.6
297
298 Reverted an unsafe code generator change.
299
300
ager@chromium.org71daaf62009-04-01 07:22:49 +00003012009-04-01: Version 1.1.5
302
303 Fixed bug that caused function literals to not be optimized as
304 much as other functions.
305
306 Improved profiler support.
307
308 Fixed a crash bug in connection with debugger unloading.
309
310 Fixed a crash bug in the code generator caused by losing the
311 information that a frame element was copied.
312
313 Fixed an exception propagation bug that could cause non-null
314 return values when exceptions were thrown.
315
316
ager@chromium.org41826e72009-03-30 13:30:57 +00003172009-03-30: Version 1.1.4
318
319 Optimized String.prototype.match.
320
321 Improved the stack information in profiles.
322
323 Fixed bug in ARM port making it possible to compile the runtime
324 system for thumb mode again.
325
326 Implemented a number of optimizations in the code generator.
327
328 Fixed a number of memory leaks in tests.
329
330 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000331 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +0000332
333
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +00003342009-03-24: Version 1.1.3
335
336 Fixed assertion failures in compilation of loop conditions.
337
338 Removed STL dependency from developer shell (d8).
339
340 Added infrastructure for protecting the V8 heap from corruption
341 caused by memory modifications from the outside.
342
343
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00003442009-03-24: Version 1.1.2
345
346 Improved frame merge code generated by the code generator.
347
348 Optimized String.prototype.replace.
349
350 Implemented __defineGetter__ and __defineSetter__ for properties
351 with integer keys on non-array objects.
352
353 Improved debugger and profiler support.
354
355 Fixed a number of portability issues to allow compilation for
356 smaller ARM devices.
357
358 Exposed object cloning through the API.
359
360 Implemented hidden properties. This is used to expose an identity
361 hash for objects through the API.
362
363 Implemented restarting of regular expressions if their input
364 string changes representation during preemption.
365
366 Fixed a code generator bug that could cause assignments in loops
367 to be ignored if using continue to break out of the loop (issue
368 284).
369
370
ager@chromium.org3a6061e2009-03-12 14:24:36 +00003712009-03-12: Version 1.1.1
372
373 Fixed an assertion in the new compiler to take stack overflow
374 exceptions into account.
375
376 Removed exception propagation code that could cause crashes.
377
378 Fixed minor bug in debugger line number computations.
379
380 8-byte align the C stack on Linux and Windows to speed up floating
381 point computations.
382
383
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00003842009-03-12: Version 1.1.0
385
386 Improved code generation infrastructure by doing simple register
387 allocation and constant folding and propagation.
388
389 Optimized regular expression matching by avoiding to create
390 intermediate string arrays and by flattening nested array
391 representations of RegExp data.
392
393 Traverse a few stack frames when recording profiler samples to
394 include partial call graphs in the profiling output.
395
396 Added support for using OProfile to profile generated code.
397
398 Added remote debugging support to the D8 developer shell.
399
400 Optimized creation of nested literals like JSON objects.
401
402 Fixed a bug in garbage collecting unused maps and turned it on by
403 default (--collect-maps).
404
405 Added support for running tests under Valgrind.
406
407
kasperl@chromium.org061ef742009-02-27 12:16:20 +00004082009-02-27: Version 1.0.3
409
410 Optimized double-to-integer conversions in bit operations by using
411 SSE3 instructions if available.
412
413 Optimized initialization sequences that store to multiple
414 properties of the same object.
415
416 Changed the D8 debugger frontend to use JSON messages.
417
418 Force garbage collections when disposing contexts.
419
420 Align code objects at 32-byte boundaries.
421
422
ager@chromium.org381abbb2009-02-25 13:23:22 +00004232009-02-25: Version 1.0.2
424
425 Improved profiling support by performing simple call stack
426 sampling for ticks and by fixing a bug in the logging of code
427 addresses.
428
429 Fixed a number of debugger issues.
430
431 Optimized code that uses eval.
432
433 Fixed a couple of bugs in the regular expression engine.
434
435 Reduced the size of generated code for certain regular expressions.
436
437 Removed JSCRE completely.
438
439 Fixed issue where test could not be run if there was a dot in the
440 checkout path.
441
442
ager@chromium.org6f10e412009-02-13 10:11:16 +00004432009-02-13: Version 1.0.1
444
445 Fixed two crash-bugs in irregexp (issue 231 and 233).
446
447 Fixed a number of minor bugs (issue 87, 227 and 228).
448
449 Added support for morphing strings to external strings on demand
450 to avoid having to create copies in the embedding code.
451
452 Removed experimental support for external symbol callbacks.
453
454
iposva@chromium.org245aa852009-02-10 00:49:54 +00004552009-02-09: Version 1.0.0
456
457 Fixed crash-bug in the code generation for case independent 16 bit
458 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +0000459
iposva@chromium.org245aa852009-02-10 00:49:54 +0000460 Made shells more robust in the presence of string conversion
461 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +0000462
iposva@chromium.org245aa852009-02-10 00:49:54 +0000463 Fixed a potential infinite loop when attempting to resolve
464 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +0000465
iposva@chromium.org245aa852009-02-10 00:49:54 +0000466 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +0000467
iposva@chromium.org245aa852009-02-10 00:49:54 +0000468 Reduced binary by stripping unneeded text from JavaScript library and
469 minifying some JavaScript files.
470
471
ager@chromium.orgddb913d2009-01-27 10:01:48 +00004722009-01-27: Version 0.4.9
473
474 Enabled new regular expression engine.
475
476 Made a number of changes to the debugger protocol.
477
478 Fixed a number of bugs in the preemption support.
479
480 Added -p option to the developer shell to run files in parallel
481 using preemption.
482
483 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
484 193, 198 and 201).
485
486 Fixed a number of bugs in the serialization/deserialization
487 support for the ARM platform.
488
489
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00004902009-01-19: Version 0.4.8.1
491
492 Minor patch to debugger support.
493
494
ager@chromium.org32912102009-01-16 10:38:43 +00004952009-01-16: Version 0.4.8
496
497 Fixed string length bug on ARM (issue 171).
498
499 Made most methods in the API const.
500
501 Optimized object literals by improving data locality.
502
503 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +0000504 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +0000505
506 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +0000507 eval to behave incorrectly when using accessors (issues 186, 190
508 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +0000509
510
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00005112009-01-06: Version 0.4.7
512
ager@chromium.org32912102009-01-16 10:38:43 +0000513 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000514
ager@chromium.org32912102009-01-16 10:38:43 +0000515 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000516
ager@chromium.org32912102009-01-16 10:38:43 +0000517 Fixed subtle bug that caused the wrong 'this' to be used when
518 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000519
ager@chromium.org32912102009-01-16 10:38:43 +0000520 Inline array loads within loops directly in the code instead of
521 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000522
ager@chromium.org32912102009-01-16 10:38:43 +0000523
ager@chromium.org8bb60582008-12-11 12:02:20 +00005242008-12-11: Version 0.4.6
525
526 Fixed exception reporting bug where certain exceptions were
527 incorrectly reported as uncaught.
528
529 Improved the memory allocation strategy used during compilation to
530 make running out of memory when compiling huge scripts less
531 likely.
532
533 Optimized String.replace by avoiding the construction of certain
534 sub strings.
535
536 Fixed bug in code generation for large switch statements on ARM.
537
538 Fixed bug that caused V8 to change the global object template
539 passed in by the user.
540
541 Changed the API for creating object groups used during garbage
542 collection. Entire object groups are now passed to V8 instead of
543 individual members of the groups.
544
ager@chromium.org32912102009-01-16 10:38:43 +0000545
ager@chromium.orga74f0da2008-12-03 16:05:52 +00005462008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000547
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000548 Added experimental API support for allocating V8 symbols as
549 external strings.
550
551 Fixed bugs in debugging support on ARM.
552
553 Changed eval implementation to correctly detect whether or not a
554 call to eval is aliased.
555
556 Fixed bug caused by a combination of the compilation cache and
557 dictionary probing in native code. The bug caused us to sometimes
558 call functions that had not yet been compiled.
559
560 Added platform support for FreeBSD.
561
562 Added support for building V8 on Windows with either the shared or
563 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +0000564
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000565 Added the v8::jscre namespace around the jscre functions to avoid
566 link errors (duplicate symbols) when building Google Chrome.
567
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000568 Added support for calling a JavaScript function with the current
569 debugger execution context as its argument to the debugger
570 interface.
571
572 Changed the type of names of counters from wchar_t to char.
573
574 Changed the Windows system call used to compute daylight savings
575 time. The system call that we used to use became four times
576 slower on WinXP SP3.
577
578 Added support in the d8 developer shell for memory-mapped counters
579 and added a stats-viewer tool.
580
581 Fixed bug in upper/lower case mappings (issue 149).
582
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000583
ager@chromium.org3bf7b912008-11-17 09:09:45 +00005842008-11-17: Version 0.4.4
585
586 Reduced code size by using shorter instruction encoding when
587 possible.
588
589 Added a --help option to the shell sample and to the d8 shell.
590
591 Added visual studio project files for building the ARM simulator.
592
593 Fixed a number of ARM simulator issues.
594
595 Fixed bug in out-of-memory handling on ARM.
596
597 Implemented shell support for passing arguments to a script from
598 the command line.
599
600 Fixed bug in date code that made certain date functions return -0
601 instead of 0 for dates before the epoch.
602
603 Restricted applications of eval so it can only be used in the
604 context of the associated global object.
605
606 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +0000607
608
ager@chromium.org870a0b62008-11-04 11:43:05 +00006092008-11-04: Version 0.4.3
610
611 Added support for API accessors that prohibit overwriting by
612 accessors defined in JavaScript code by using __defineGetter__ and
613 __defineSetter__.
614
615 Improved handling of conditionals in test status files.
616
617 Introduced access control in propertyIsEnumerable.
618
619 Improved performance of some string operations by caching
620 information about the type of the string between operations.
621
622 Fixed bug in fast-case code for switch statements that only have
623 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +0000624
ager@chromium.org870a0b62008-11-04 11:43:05 +0000625
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00006262008-10-30: Version 0.4.2
627
628 Improved performance of Array.prototype.concat by moving the
629 implementation to C++ (issue 123).
630
631 Fixed heap growth policy to avoid growing old space to its maximum
632 capacity before doing a garbage collection and fixed issue that
633 would lead to artificial out of memory situations (issue 129).
634
635 Fixed Date.prototype.toLocaleDateString to return the date in the
636 same format as WebKit.
637
638 Added missing initialization checks to debugger API.
639
640 Added removing of unused maps during GC.
641
642
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00006432008-10-28: Version 0.4.1
644
645 Added caching of RegExp data in compilation cache.
646
647 Added Visual Studio project file for d8 shell.
648
649 Fixed function call performance regression introduced in version
650 0.4.0 when splitting the global object in two parts (issue 120).
651
652 Fixed issue 131 by checking for empty handles before throwing and
653 reporting exceptions.
654
655
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00006562008-10-23: Version 0.4.0
657
658 Split the global object into two parts: The state holding global
659 object and the global object proxy.
660
661 Fixed bug that affected the value of an assignment to an element
662 in certain cases (issue 116).
663
664 Added GetPropertyNames functionality (issue 33) and extra Date
665 functions (issue 77) to the API.
666
667 Changed WeakReferenceCallback to take a Persistent<Value> instead
668 of a Persistent<Object> (issue 101).
669
670 Fixed issues with message reporting for exceptions in try-finally
671 blocks (issues 73 and 75).
672
ager@chromium.org32912102009-01-16 10:38:43 +0000673 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000674
675 Improved Boyer-Moore implementation for faster indexOf operations.
676
677 Added development shell (d8) which includes counters and
678 completion support.
679
680 Fixed problem with the receiver passed to functions called from
681 eval (issue 124).
682
683
ager@chromium.org7c537e22008-10-16 08:43:32 +00006842008-10-16: Version 0.3.5
685
686 Improved string hash-code distribution by excluding bit-field bits
687 from the hash-code.
688
689 Changed string search algorithm used in indexOf from KMP to
690 Boyer-Moore.
691
692 Improved the generated code for the instanceof operator.
693
694 Improved performance of slow-case string equality checks by
695 specializing the code based on the string representation.
696
697 Improve the handling of out-of-memory situations (issue 70).
698
699 Improved performance of strict equality checks.
700
701 Improved profiler output to make it easier to see anonymous
702 functions.
703
704 Improved performance of slow-case keyed loads.
705
706 Improved property access performance by allocating a number of
707 properties in the front object.
708
709 Changed the toString behavior on the built-in object constructors
710 to print [native code] instead of the actual source. Some web
711 applications do not like constructors with complex toString
712 results.
ager@chromium.org32912102009-01-16 10:38:43 +0000713
ager@chromium.org7c537e22008-10-16 08:43:32 +0000714
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00007152008-10-06: Version 0.3.4
716
717 Changed Array.prototype.sort to use quick sort.
718
719 Fixed code generation issue where leaving a finally block with
720 break or continue would accumulate elements on the expression
721 stack (issue 86).
722
723 Made sure that the name accessor on functions returns the expected
724 names for builtin JavaScript functions and C++ callback functions.
725
726 Added fast case code for extending the property storage array of
727 JavaScript objects.
728
729 Ported switch statement optimizations introduced in version 0.3.3
730 to the ARM code generator.
731
732 Allowed GCC to use strict-aliasing rules when compiling.
733
734 Improved performance of arguments object allocation by taking care
735 of arguments adaptor frames in the generated code.
736
737 Updated the V8 benchmark suite to version 2.
738
739
ager@chromium.org236ad962008-09-25 09:45:57 +00007402008-09-25: Version 0.3.3
741
742 Improved handling of relocation information to enable more
743 peep-hole optimizations.
744
745 Optimized switch statements where all labels are constant small
746 integers.
747
748 Optimized String.prototype.indexOf for common cases.
749
750 Fixed more build issues (issue 80).
751
752 Fixed a couple of profiler issues.
753
754 Fixed bug where the body of a function created using the Function
755 constructor was not allowed to end with a single-line comment
756 (issue 85).
757
758 Improved handling of object literals by canonicalizing object
759 literal maps. This will allow JSON objects with the same set of
760 properties to share the same map making inline caching work better
761 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +0000762
ager@chromium.org236ad962008-09-25 09:45:57 +0000763
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00007642008-09-17: Version 0.3.2
765
766 Generalized the EvalCache into a CompilationCache and enabled it
767 for scripts too. The current strategy is to retire all entries
768 whenever a mark-sweep collection is started.
769
770 Fixed bug where switch statements containing only a default case
771 would lead to an unbalanced stack (issue 69).
772
773 Fixed bug that made access to the function in a named function
774 expression impossible in certain situations (issue 24).
775
776 Fixed even more build issues.
777
778 Optimized calling conventions on ARM. The conventions on ARM and
779 IA-32 now match.
780
781 Removed static initializers for flags and counters.
782
783 Improved inline caching behavior for uncommon cases where lazily
784 loading Date and RegExp code could force certain code paths go
785 megamorphic.
786
787 Removed arguments adaption for builtins written in C++. This
788 makes Array.prototype.push and Array.prototype.pop slightly
789 faster.
790
791
ager@chromium.org9258b6b2008-09-11 09:11:10 +00007922008-09-11: Version 0.3.1
793
794 Fixed a number of build issues.
795
796 Fixed problem with missing I-cache flusing on ARM.
797
798 Changed space layout in memory management by splitting up
799 code space into old data space and code space.
800
801 Added utf-8 conversion support to the API (issue 57).
802
803 Optimized repeated calls to eval with the same strings. These
804 repeated calls are common in web applications.
805
806 Added Xcode project file.
807
808 Optimized a couple of Array operation.
809
810 Fixed parser bug by checking for end-of-string when parsing break
811 and continue (issue 35).
812
813 Fixed problem where asian characters were not categorized as
814 letters.
815
816 Fixed bug that disallowed calling functions fetched from an array
817 using a string as an array index (issue 32).
818
819 Fixed bug where the internal field count on object templates were
820 sometimes ignored (issue 54).
821
822 Added -f option to the shell sample for compatibility with other
823 engines (issue 18).
824
825 Added source info to TryCatches in the API.
826
827 Fixed problem where the seed for the random number generator was
828 clipped in a double to unsigned int conversion.
829
830 Fixed bug where cons string symbols were sometimes converted to
831 non-symbol flat strings during GC.
832
833 Fixed bug in error reporting when attempting to convert null to an
834 object.
ager@chromium.org32912102009-01-16 10:38:43 +0000835
836
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00008372008-09-04: Version 0.3.0
838
839 Added support for running tests on the ARM simulator.
840
841 Fixed bug in the 'in' operator where negative indices were not
842 treated correctly.
843
844 Fixed build issues on gcc-4.3.1.
845
846 Changed Date.prototype.toLocaleTimeString to not print the
847 timezone part of the time.
848
849 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
850 with user code.
851
852
v8.team.kasperl727e9952008-09-02 14:56:44 +00008532008-09-02: Version 0.2.5
854
855 Renamed the top level directory 'public' to 'include'.
856
857 Added 'env' option to the SCons build scripts to support
858 overriding the ENV part of the build environment. This is mostly
859 to support Windows builds in cases where SCons cannot find the
860 correct paths to the Windows SDK, as these paths cannot be passed
861 through shell environment variables.
862
863 Enabled "Buffer Security Check" on for the Windows SCons build and
864 added the linker option /OPT:ICF as an optimization.
865
866 Added the V8 benchmark suite to the repository.
867
868
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00008692008-09-01: Version 0.2.4
870
871 Included mjsunit JavaScript test suite and C++ unit tests.
872
873 Changed the shell sample to not print the result of executing a
874 script provided on the command line.
875
876 Fixed issue when building samples on Windows using a shared V8
877 library. Added visibility option on Linux build which makes the
878 generated library 18% smaller.
879
880 Changed build system to accept multiple build modes in one build
881 and generate separate objects, libraries and executables for each
882 mode.
883
884 Removed deferred negation optimization (a * -b => -(a * b)) since
885 this visibly changes operand conversion order.
886
887 Improved parsing performance by introducing stack guard in
888 preparsing. Without a stack guard preparsing always bails out
889 with stack overflow.
890
891 Changed shell sample to take flags directly from the command-line.
892 Added API call that implements this.
893
894 Added load, quit and version functions to the shell sample so it's
895 easier to run benchmarks and tests.
896
897 Fixed issue with building samples and cctests on 64-bit machines.
898
899 Fixed bug in the runtime system where the prototype chain was not
900 always searched for a setter when setting a property that does not
901 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +0000902
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000903
mads.s.agercbaa0602008-08-14 13:41:48 +00009042008-08-14: Version 0.2.3
905
906 Improved performance of garbage collection by moving the
907 function that updates pointers during compacting collection
908 into the updating visitor. This gives the compiler a better
909 chance to inline and avoid a function call per (potential)
910 pointer.
911
912 Extended the shell sample with a --runtime-flags option.
913
914 Added Visual Studio project files for the shell.cc and
915 process.cc samples.
916
917
9182008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +0000919
920 Improved performance of garbage collection by changing the way
921 we use the marking stack in the event of stack overflow during
922 full garbage collection and by changing the way we mark roots.
923
924 Cleaned up ARM version by removing top of stack caching and by
925 introducing push/pop elimination.
926
927 Cleaned up the way runtime functions are called to allow
928 runtime calls with no arguments.
929
930 Changed Windows build options to make sure that exceptions are
931 disabled and that optimization flags are enabled.
932
933 Added first version of Visual Studio project files.
934
935
mads.s.agercbaa0602008-08-14 13:41:48 +00009362008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000937
938 Improved performance of unary addition by avoiding runtime calls.
939
940 Fixed the handling of '>' and '<=' to use right-to-left conversion
941 and left-to-right evaluation as specified by ECMA-262.
942
943 Fixed a branch elimination bug on the ARM platform where incorrect
944 code was generated because of overly aggressive branch
945 elimination.
946
947 Improved performance of code that repeatedly assigns the same
948 function to the same property of different objects with the same
949 map.
950
951 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
952 no longer expects DEBUG to be defined.
953
954 Added platform-nullos.cc to serve as the basis for new platform
955 implementations.
956
mads.s.ager31e71382008-08-13 09:32:07 +0000957
mads.s.agercbaa0602008-08-14 13:41:48 +00009582008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +0000959
960 Changed all text files to have native svn:eol-style.
961
962 Added a few samples and support for building them. The samples
963 include a simple shell that can be used to benchmark and test V8.
964
965 Changed V8::GetVersion to return the version as a string.
966
967 Added source for lazily loaded scripts to snapshots and made
968 serialization non-destructive.
969
970 Improved ARM support by fixing the write barrier code to use
971 aligned loads and stores and by removing premature locals
972 optimization that relied on broken support for callee-saved
973 registers (removed).
974
975 Refactored the code for marking live objects during garbage
976 collection and the code for allocating objects in paged
977 spaces. Introduced an abstraction for the map word of a heap-
978 allocated object and changed the memory allocator to allocate
979 executable memory only for spaces that may contain code objects.
980
981 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
982 they can be used by debugging and logging modules. Added
983 thread-safe message queues for dealing with debugger events.
984
985 Fixed the source code reported by toString for certain builtin
986 empty functions and made sure that the prototype property of a
987 function is enumerable.
988
989 Improved performance of converting values to condition flags in
990 generated code.
991
992 Merged disassembler-{arch} files.
993
994
mads.s.agercbaa0602008-08-14 13:41:48 +00009952008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +0000996
997 Added support for storing JavaScript stack traces in a stack
998 allocated buffer to make it visible in shallow core dumps.
999 Controlled by the --preallocate-message-memory flag which is
1000 disabled by default.
1001
1002
mads.s.agercbaa0602008-08-14 13:41:48 +000010032008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00001004
1005 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
1006 map transitions would count as properties.
1007
1008 Allowed aliased eval invocations by treating them as evals in the
1009 global context. This may change in the future.
1010
1011 Added support for accessing the last entered context through the
1012 API and renamed Context::Current to Context::GetCurrent and
1013 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
1014
1015 Fixed bug in the debugger that would cause the debugger scripts to
1016 be recursively loaded and changed all disabling of interrupts to
1017 be block-structured.
1018
1019 Made snapshot data read-only to allow it to be more easily shared
1020 across multiple users of V8 when linked as a shared library.
1021
1022
mads.s.agercbaa0602008-08-14 13:41:48 +000010232008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00001024
1025 Fixed building on Mac OS X by recognizing i386 and friends as
1026 IA-32 platforms.
1027
1028 Added propagation of stack overflow exceptions that occur while
1029 compiling nested functions.
1030
1031 Improved debugger with support for recursive break points and
1032 handling of exceptions that occur in the debugger JavaScript code.
1033
1034 Renamed GetInternal to GetInternalField and SetInternal to
1035 SetInternalField in the API and moved InternalFieldCount and
1036 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
1037
1038
mads.s.agercbaa0602008-08-14 13:41:48 +000010392008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001040
1041 Fixed bug in stack overflow check code for IA-32 targets where a
1042 non-tagged value in register eax was pushed to the stack.
1043
1044 Fixed potential quadratic behavior when converting strings to
1045 numbers.
1046
1047 Fixed bug where the return value from Object::SetProperty could
1048 end up being the property holder instead of the written value.
1049
1050 Improved debugger support by allowing nested break points and by
1051 dealing with stack-overflows when compiling functions before
1052 setting break points in them.
1053
1054
mads.s.agercbaa0602008-08-14 13:41:48 +000010552008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001056
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001057 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001058