blob: d9d2b02baf315696db46dd2001c897df71dea555 [file] [log] [blame]
ager@chromium.orgab99eea2009-08-25 07:05:41 +000012009-08-25: Version 1.3.7
2
3 Reduced the size of generated code on ARM platforms by reducing
4 the size of constant pools.
5
6 Changed build files to not include the 'ENV' user environment
7 variable in the build environment.
8
9 Changed the handling of idle notifications.
10
11
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +0000122009-08-21: Version 1.3.6
13
14 Add support for forceful termination of JavaScript execution.
15
16 Add low memory notification to the API. The embedding host can signal
17 a low memory situation to V8.
18
19 Changed the handling of global handles (persistent handles in the API
20 sense) to avoid issues regarding allocation of new global handles
21 during weak handle callbacks.
22
23 Changed the growth policy of the young space.
24
25 Fixed a GC issue introduced in version 1.3.5.
26
27
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000282009-08-19: Version 1.3.5
29
30 Optimize initialization of some arrays in the builtins.
31
32 Fix mac-nm script to support filenames with spaces.
33
34 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
35
36 Changed typeof RegExp from 'object' to 'function' for compatibility.
37 Fixed bug where regexps were not callable across contexts.
38
39 Added context independent script compilation to the API.
40
41 Added API call to get the stack trace for an exception.
42
43 Added API for getting object mirrors.
44
45 Make sure that SSE3 instructions are used whenever possible even when
46 running off a snapshot generated without using SSE3 instructions.
47
48 Tweaked the handling of the initial size and growth policy of the heap.
49
50 Added native code generation for RegExp to 64-bit version.
51
52 Added JavaScript debugger support to 64-bit version.
53
54
ager@chromium.orgadd848f2009-08-13 12:44:13 +0000552009-08-13: Version 1.3.4
56
57 Added a readline() command to the d8 shell.
58
59 Fixed bug in json parsing.
60
61 Added idle notification to the API and reduced memory on idle
62 notifications.
63
64
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +0000652009-08-12: Version 1.3.3
66
67 Fix issue 417: incorrect %t placeholder expansion.
68
69 Add .gitignore file similar to Chromium's one.
70
71 Fix SConstruct file to build with new logging code for Android.
72
73 API: added function to find instance of template in prototype
74 chain. Inlined Object::IsInstanceOf.
75
76 Land change to notify valgrind when we modify code on x86.
77
78 Add api call to determine whether a string can be externalized.
79
80 Add a write() command to d8.
81
82
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +0000832009-08-05: Version 1.3.2
84
85 Started new compiler infrastructure for two-pass compilation using a
86 control flow graph constructed from the AST.
87
88 Profiler stack sampling for X64.
89
90 Safe handling of NaN to Posix platform-dependent time functions.
91
92 Added a new profiler control API to unify controlling various aspects
93 of profiling.
94
95 Fixed issue 392.
96
97
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000982009-07-30: Version 1.3.1
99
100 Speed improvements to accessors and interceptors.
101
102 Added support for capturing stack information on custom errors.
103
104 Added support for morphing an object into a pixel array where its
105 indexed properties are stored in an external byte array. Values written
106 are always clamped to the 0..255 interval.
107
108 Profiler on x64 now handles C/C++ functions from shared libraries.
109
110 Changed the debugger to avoid stepping into function.call/apply if the
111 function is a built-in.
112
113 Initial implementation of constructor heap profile for JS objects.
114
115 More fine grained control of profiling aspects through the API.
116
117 Optimized the called as constructor check for API calls.
118
119
kasperl@chromium.orge959c182009-07-27 08:59:04 +00001202009-07-27: Version 1.3.0
121
122 Allowed RegExp objects to be called as functions (issue 132).
123
124 Fixed issue where global property cells would escape after
125 detaching the global object; see http://crbug.com/16276.
126
127 Added support for stepping into setters and getters in the
128 debugger.
129
130 Changed the debugger to avoid stopping in its own JavaScript code
131 and in the code of built-in functions.
132
133 Fixed issue 345 by avoiding duplicate escaping labels.
134
135 Fixed ARM code generator crash in short-circuited boolean
136 expressions and added regression tests.
137
138 Added an external allocation limit to avoid issues where small V8
139 objects would hold on to large amounts of external memory without
140 causing garbage collections.
141
142 Finished more of the inline caching stubs for x64 targets.
143
144
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +00001452009-07-13: Version 1.2.14
146
147 Added separate paged heap space for global property cells and
148 avoid updating the write barrier when storing into them.
149
150 Improved peep-hole optimization on ARM platforms by not emitting
151 unnecessary debug information.
152
153 Re-enabled ICs for loads and calls that skip a global object
154 during lookup through the prototype chain.
155
156 Allowed access through global proxies to use ICs.
157
158 Fixed issue 401.
159
160
kasperl@chromium.org68ac0092009-07-09 06:00:35 +00001612009-07-09: Version 1.2.13
162
163 Fixed issue 397, issue 398, and issue 399.
164
165 Added support for breakpoint groups.
166
167 Fixed bugs introduced with the new global object representation.
168
169 Fixed a few bugs in the ARM code generator.
170
171
kasperl@chromium.org86f77b72009-07-06 08:21:57 +00001722009-07-06: Version 1.2.12
173
174 Added stack traces collection to Error objects accessible through
175 the e.stack property.
176
177 Changed RegExp parser to use a recursive data structure instead of
178 stack-based recursion.
179
180 Optimized Date object construction and string concatenation.
181
182 Improved performance of div, mod, and mul on ARM platforms.
183
184
kasperl@chromium.org2abc4502009-07-02 07:00:29 +00001852009-07-02: Version 1.2.11
186
187 Improved performance on IA-32 and ARM.
188
189 Fixed profiler sampler implementation on Mac OS X.
190
191 Changed the representation of global objects to improve
192 performance of adding a lot of new properties.
193
194
ager@chromium.org3e875802009-06-29 08:26:34 +00001952009-06-29: Version 1.2.10
196
197 Improved debugger support.
198
199 Fixed bug in exception message reporting (issue 390).
200
201 Improved overall performance.
202
203
ager@chromium.org5aa501c2009-06-23 07:57:28 +00002042009-06-23: Version 1.2.9
205
206 Improved math performance on ARM.
207
208 Fixed profiler name-inference bug.
209
210 Fixed handling of shared libraries in the profiler tick processor
211 scripts.
212
213 Fixed handling of tests that time out in the test scripts.
214
215 Fixed compilation on MacOS X version 10.4.
216
217 Fixed two bugs in the regular expression engine.
218
219 Fixed a bug in the string type inference.
220
221 Fixed a bug in the handling of 'constant function' properties.
222
223 Improved overall performance.
224
225
ager@chromium.orgeadaf222009-06-16 09:43:10 +00002262009-06-16: Version 1.2.8
227
228 Optimized math on ARM platforms.
229
230 Fixed two crash bugs in the handling of getters and setters.
231
232 Improved the debugger support by adding scope chain information.
233
234 Improved the profiler support by compressing log data transmitted
235 to clients.
236
237 Improved overall performance.
238
239
ager@chromium.orge2902be2009-06-08 12:21:35 +00002402009-06-08: Version 1.2.7
241
242 Improved debugger and profiler support.
243
244 Reduced compilation time by improving the handling of deferred
245 code.
246
247 Optimized interceptor accesses where the property is on the object
248 on which the interceptors is attached.
249
250 Fixed compilation problem on GCC 4.4 by changing the stack
251 alignment to 16 bytes.
252
253 Fixed handle creation to follow stric aliasing rules.
254
255 Fixed compilation on FreeBSD.
256
257 Introduced API for forcing the deletion of a property ignoring
258 interceptors and attributes.
259
260
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +00002612009-05-29: Version 1.2.6
262
263 Added a histogram recording hit rates at different levels of the
264 compilation cache.
265
266 Added stack overflow check for the RegExp analysis phase. Previously a
267 very long regexp graph could overflow the stack with recursive calls.
268
269 Use a dynamic buffer when collecting log events in memory.
270
271 Added start/stop events to the profiler log.
272
273 Fixed infinite loop which could happen when setting a debug break while
274 executing a RegExp compiled to native code.
275
276 Fixed handling of lastIndexOf called with negative index (issue 351).
277
278 Fixed irregular crash in profiler test (issue 358).
279
280 Fixed compilation issues with some versions of gcc.
281
282
kasperl@chromium.org71affb52009-05-26 05:44:31 +00002832009-05-26: Version 1.2.5
284
285 Fixed bug in initial boundary check for Boyer-Moore text
286 search (issue 349).
287
288 Fixed compilation issues with MinGW and gcc 4.3+ and added support
289 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
290 Craig Schlenter.
291
292 Added a script cache to the debugger.
293
294 Optimized compilation performance by improving internal data
295 structures and avoiding expensive property load optimizations for
296 code that's infrequently executed.
297
298 Exposed the calling JavaScript context through the static API
299 function Context::GetCalling().
300
301
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +00003022009-05-18: Version 1.2.4
303
304 Improved performance of floating point number allocation for ARM
305 platforms.
306
307 Fixed crash when using the instanceof operator on functions with
308 number values in their prototype chain (issue 341).
309
310 Optimized virtual frame operations in the code generator to speed
311 up compilation time and allocated the frames in the zone.
312
313 Made the representation of virtual frames and jump targets in the
314 code generator much more compact.
315
316 Avoided linear search for non-locals in scope code when resolving
317 variables inside with and eval scopes.
318
319 Optimized lexical scanner by dealing with whitespace as part of
320 the token scanning instead of as a separate step before it.
321
322 Changed the scavenging collector so that promoted objects do not
323 reside in the old generation while their remembered set is being
324 swept for pointers into the young generation.
325
326 Fixed numeric overflow handling when compiling count operations.
327
328
ager@chromium.org9085a012009-05-11 19:22:57 +00003292009-05-11: Version 1.2.3
330
331 Fixed bug in reporting of out-of-memory situations.
332
333 Introduced hidden prototypes on certain builtin prototype objects
334 such as String.prototype to emulate JSC's behavior of restoring
335 the original function when deleting functions from those prototype
336 objects.
337
338 Fixed crash bug in the register allocator.
339
340
ager@chromium.org5ec48922009-05-05 07:25:34 +00003412009-05-04: Version 1.2.2
342
343 Fixed bug in array sorting for sparse arrays (issue 326).
344
345 Added support for adding a soname when building a shared library
346 on Linux (issue 151).
347
348 Fixed bug caused by morphing internal ASCII strings to external
349 two-byte strings. Slices over ASCII strings have to forward ASCII
350 checks to the underlying buffer string.
351
352 Allowed API call-as-function handlers to be called as
353 constructors.
354
355 Fixed a crash bug where an external string was disposed but a
356 slice of the external string survived as a symbol.
357
358
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00003592009-04-27: Version 1.2.1
360
361 Added EcmaScript 5 JSON object.
362
363 Fix bug in preemption support on ARM.
364
365
ager@chromium.org65dad4b2009-04-23 08:48:43 +00003662009-04-23: Version 1.2.0
367
368 Optimized floating-point operations on ARM.
369
370 Added a number of extensions to the debugger API.
371
372 Changed the enumeration order for unsigned integer keys to always
373 be numerical order.
374
375 Added a "read" extension to the shell sample.
376
377 Added support for Array.prototype.reduce and
378 Array.prototype.reduceRight.
379
380 Added an option to the SCons build to control Microsoft Visual C++
381 link-time code generation.
382
383 Fixed a number of bugs (in particular issue 315, issue 316,
384 issue 317 and issue 318).
385
386
kasperl@chromium.org2d18d102009-04-15 13:27:32 +00003872009-04-15: Version 1.1.10
388
389 Fixed crash bug that occurred when loading a const variable in the
390 presence of eval.
391
392 Allowed using with and eval in registered extensions in debug mode
393 by fixing bogus assert.
394
395 Fixed the source position for function returns to enable the
396 debugger to break there.
397
398
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +00003992009-04-14: Version 1.1.9
400
401 Made the stack traversal code in the profiler robust by avoiding
402 to look into the heap.
403
404 Added name inferencing for anonymous functions to facilitate
405 debugging and profiling.
406
407 Re-enabled stats timers in the developer shell (d8).
408
409 Fixed issue 303 by avoiding to shortcut cons-symbols.
410
411
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00004122009-04-11: Version 1.1.8
413
414 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
415
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000416 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000417 the debugger (issue 269).
418
419 Fixed v8::Object::DeleteHiddenValue to not bail out when there
420 are no hidden properties.
421
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000422 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000423 entries with deleted resources would lead to NPEs when looking
424 up in the symbol table.
425
426
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00004272009-04-07: Version 1.1.7
428
429 Added support for easily importing additional environment
430 variables into the SCons build.
431
432 Optimized strict equality checks.
433
434 Fixed crash in indexed setters on objects without a corresponding
435 getter (issue 298).
436
437 Re-enabled script compilation cache.
438
439
ager@chromium.org8682a592009-04-01 10:47:14 +00004402009-04-01: Version 1.1.6
441
442 Reverted an unsafe code generator change.
443
444
ager@chromium.org71daaf62009-04-01 07:22:49 +00004452009-04-01: Version 1.1.5
446
447 Fixed bug that caused function literals to not be optimized as
448 much as other functions.
449
450 Improved profiler support.
451
452 Fixed a crash bug in connection with debugger unloading.
453
454 Fixed a crash bug in the code generator caused by losing the
455 information that a frame element was copied.
456
457 Fixed an exception propagation bug that could cause non-null
458 return values when exceptions were thrown.
459
460
ager@chromium.org41826e72009-03-30 13:30:57 +00004612009-03-30: Version 1.1.4
462
463 Optimized String.prototype.match.
464
465 Improved the stack information in profiles.
466
467 Fixed bug in ARM port making it possible to compile the runtime
468 system for thumb mode again.
469
470 Implemented a number of optimizations in the code generator.
471
472 Fixed a number of memory leaks in tests.
473
474 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000475 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +0000476
477
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +00004782009-03-24: Version 1.1.3
479
480 Fixed assertion failures in compilation of loop conditions.
481
482 Removed STL dependency from developer shell (d8).
483
484 Added infrastructure for protecting the V8 heap from corruption
485 caused by memory modifications from the outside.
486
487
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00004882009-03-24: Version 1.1.2
489
490 Improved frame merge code generated by the code generator.
491
492 Optimized String.prototype.replace.
493
494 Implemented __defineGetter__ and __defineSetter__ for properties
495 with integer keys on non-array objects.
496
497 Improved debugger and profiler support.
498
499 Fixed a number of portability issues to allow compilation for
500 smaller ARM devices.
501
502 Exposed object cloning through the API.
503
504 Implemented hidden properties. This is used to expose an identity
505 hash for objects through the API.
506
507 Implemented restarting of regular expressions if their input
508 string changes representation during preemption.
509
510 Fixed a code generator bug that could cause assignments in loops
511 to be ignored if using continue to break out of the loop (issue
512 284).
513
514
ager@chromium.org3a6061e2009-03-12 14:24:36 +00005152009-03-12: Version 1.1.1
516
517 Fixed an assertion in the new compiler to take stack overflow
518 exceptions into account.
519
520 Removed exception propagation code that could cause crashes.
521
522 Fixed minor bug in debugger line number computations.
523
524 8-byte align the C stack on Linux and Windows to speed up floating
525 point computations.
526
527
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00005282009-03-12: Version 1.1.0
529
530 Improved code generation infrastructure by doing simple register
531 allocation and constant folding and propagation.
532
533 Optimized regular expression matching by avoiding to create
534 intermediate string arrays and by flattening nested array
535 representations of RegExp data.
536
537 Traverse a few stack frames when recording profiler samples to
538 include partial call graphs in the profiling output.
539
540 Added support for using OProfile to profile generated code.
541
542 Added remote debugging support to the D8 developer shell.
543
544 Optimized creation of nested literals like JSON objects.
545
546 Fixed a bug in garbage collecting unused maps and turned it on by
547 default (--collect-maps).
548
549 Added support for running tests under Valgrind.
550
551
kasperl@chromium.org061ef742009-02-27 12:16:20 +00005522009-02-27: Version 1.0.3
553
554 Optimized double-to-integer conversions in bit operations by using
555 SSE3 instructions if available.
556
557 Optimized initialization sequences that store to multiple
558 properties of the same object.
559
560 Changed the D8 debugger frontend to use JSON messages.
561
562 Force garbage collections when disposing contexts.
563
564 Align code objects at 32-byte boundaries.
565
566
ager@chromium.org381abbb2009-02-25 13:23:22 +00005672009-02-25: Version 1.0.2
568
569 Improved profiling support by performing simple call stack
570 sampling for ticks and by fixing a bug in the logging of code
571 addresses.
572
573 Fixed a number of debugger issues.
574
575 Optimized code that uses eval.
576
577 Fixed a couple of bugs in the regular expression engine.
578
579 Reduced the size of generated code for certain regular expressions.
580
581 Removed JSCRE completely.
582
583 Fixed issue where test could not be run if there was a dot in the
584 checkout path.
585
586
ager@chromium.org6f10e412009-02-13 10:11:16 +00005872009-02-13: Version 1.0.1
588
589 Fixed two crash-bugs in irregexp (issue 231 and 233).
590
591 Fixed a number of minor bugs (issue 87, 227 and 228).
592
593 Added support for morphing strings to external strings on demand
594 to avoid having to create copies in the embedding code.
595
596 Removed experimental support for external symbol callbacks.
597
598
iposva@chromium.org245aa852009-02-10 00:49:54 +00005992009-02-09: Version 1.0.0
600
601 Fixed crash-bug in the code generation for case independent 16 bit
602 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +0000603
iposva@chromium.org245aa852009-02-10 00:49:54 +0000604 Made shells more robust in the presence of string conversion
605 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +0000606
iposva@chromium.org245aa852009-02-10 00:49:54 +0000607 Fixed a potential infinite loop when attempting to resolve
608 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +0000609
iposva@chromium.org245aa852009-02-10 00:49:54 +0000610 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +0000611
iposva@chromium.org245aa852009-02-10 00:49:54 +0000612 Reduced binary by stripping unneeded text from JavaScript library and
613 minifying some JavaScript files.
614
615
ager@chromium.orgddb913d2009-01-27 10:01:48 +00006162009-01-27: Version 0.4.9
617
618 Enabled new regular expression engine.
619
620 Made a number of changes to the debugger protocol.
621
622 Fixed a number of bugs in the preemption support.
623
624 Added -p option to the developer shell to run files in parallel
625 using preemption.
626
627 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
628 193, 198 and 201).
629
630 Fixed a number of bugs in the serialization/deserialization
631 support for the ARM platform.
632
633
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00006342009-01-19: Version 0.4.8.1
635
636 Minor patch to debugger support.
637
638
ager@chromium.org32912102009-01-16 10:38:43 +00006392009-01-16: Version 0.4.8
640
641 Fixed string length bug on ARM (issue 171).
642
643 Made most methods in the API const.
644
645 Optimized object literals by improving data locality.
646
647 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +0000648 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +0000649
650 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +0000651 eval to behave incorrectly when using accessors (issues 186, 190
652 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +0000653
654
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00006552009-01-06: Version 0.4.7
656
ager@chromium.org32912102009-01-16 10:38:43 +0000657 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000658
ager@chromium.org32912102009-01-16 10:38:43 +0000659 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000660
ager@chromium.org32912102009-01-16 10:38:43 +0000661 Fixed subtle bug that caused the wrong 'this' to be used when
662 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000663
ager@chromium.org32912102009-01-16 10:38:43 +0000664 Inline array loads within loops directly in the code instead of
665 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000666
ager@chromium.org32912102009-01-16 10:38:43 +0000667
ager@chromium.org8bb60582008-12-11 12:02:20 +00006682008-12-11: Version 0.4.6
669
670 Fixed exception reporting bug where certain exceptions were
671 incorrectly reported as uncaught.
672
673 Improved the memory allocation strategy used during compilation to
674 make running out of memory when compiling huge scripts less
675 likely.
676
677 Optimized String.replace by avoiding the construction of certain
678 sub strings.
679
680 Fixed bug in code generation for large switch statements on ARM.
681
682 Fixed bug that caused V8 to change the global object template
683 passed in by the user.
684
685 Changed the API for creating object groups used during garbage
686 collection. Entire object groups are now passed to V8 instead of
687 individual members of the groups.
688
ager@chromium.org32912102009-01-16 10:38:43 +0000689
ager@chromium.orga74f0da2008-12-03 16:05:52 +00006902008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000691
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000692 Added experimental API support for allocating V8 symbols as
693 external strings.
694
695 Fixed bugs in debugging support on ARM.
696
697 Changed eval implementation to correctly detect whether or not a
698 call to eval is aliased.
699
700 Fixed bug caused by a combination of the compilation cache and
701 dictionary probing in native code. The bug caused us to sometimes
702 call functions that had not yet been compiled.
703
704 Added platform support for FreeBSD.
705
706 Added support for building V8 on Windows with either the shared or
707 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +0000708
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000709 Added the v8::jscre namespace around the jscre functions to avoid
710 link errors (duplicate symbols) when building Google Chrome.
711
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000712 Added support for calling a JavaScript function with the current
713 debugger execution context as its argument to the debugger
714 interface.
715
716 Changed the type of names of counters from wchar_t to char.
717
718 Changed the Windows system call used to compute daylight savings
719 time. The system call that we used to use became four times
720 slower on WinXP SP3.
721
722 Added support in the d8 developer shell for memory-mapped counters
723 and added a stats-viewer tool.
724
725 Fixed bug in upper/lower case mappings (issue 149).
726
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000727
ager@chromium.org3bf7b912008-11-17 09:09:45 +00007282008-11-17: Version 0.4.4
729
730 Reduced code size by using shorter instruction encoding when
731 possible.
732
733 Added a --help option to the shell sample and to the d8 shell.
734
735 Added visual studio project files for building the ARM simulator.
736
737 Fixed a number of ARM simulator issues.
738
739 Fixed bug in out-of-memory handling on ARM.
740
741 Implemented shell support for passing arguments to a script from
742 the command line.
743
744 Fixed bug in date code that made certain date functions return -0
745 instead of 0 for dates before the epoch.
746
747 Restricted applications of eval so it can only be used in the
748 context of the associated global object.
749
750 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +0000751
752
ager@chromium.org870a0b62008-11-04 11:43:05 +00007532008-11-04: Version 0.4.3
754
755 Added support for API accessors that prohibit overwriting by
756 accessors defined in JavaScript code by using __defineGetter__ and
757 __defineSetter__.
758
759 Improved handling of conditionals in test status files.
760
761 Introduced access control in propertyIsEnumerable.
762
763 Improved performance of some string operations by caching
764 information about the type of the string between operations.
765
766 Fixed bug in fast-case code for switch statements that only have
767 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +0000768
ager@chromium.org870a0b62008-11-04 11:43:05 +0000769
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00007702008-10-30: Version 0.4.2
771
772 Improved performance of Array.prototype.concat by moving the
773 implementation to C++ (issue 123).
774
775 Fixed heap growth policy to avoid growing old space to its maximum
776 capacity before doing a garbage collection and fixed issue that
777 would lead to artificial out of memory situations (issue 129).
778
779 Fixed Date.prototype.toLocaleDateString to return the date in the
780 same format as WebKit.
781
782 Added missing initialization checks to debugger API.
783
784 Added removing of unused maps during GC.
785
786
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00007872008-10-28: Version 0.4.1
788
789 Added caching of RegExp data in compilation cache.
790
791 Added Visual Studio project file for d8 shell.
792
793 Fixed function call performance regression introduced in version
794 0.4.0 when splitting the global object in two parts (issue 120).
795
796 Fixed issue 131 by checking for empty handles before throwing and
797 reporting exceptions.
798
799
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00008002008-10-23: Version 0.4.0
801
802 Split the global object into two parts: The state holding global
803 object and the global object proxy.
804
805 Fixed bug that affected the value of an assignment to an element
806 in certain cases (issue 116).
807
808 Added GetPropertyNames functionality (issue 33) and extra Date
809 functions (issue 77) to the API.
810
811 Changed WeakReferenceCallback to take a Persistent<Value> instead
812 of a Persistent<Object> (issue 101).
813
814 Fixed issues with message reporting for exceptions in try-finally
815 blocks (issues 73 and 75).
816
ager@chromium.org32912102009-01-16 10:38:43 +0000817 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000818
819 Improved Boyer-Moore implementation for faster indexOf operations.
820
821 Added development shell (d8) which includes counters and
822 completion support.
823
824 Fixed problem with the receiver passed to functions called from
825 eval (issue 124).
826
827
ager@chromium.org7c537e22008-10-16 08:43:32 +00008282008-10-16: Version 0.3.5
829
830 Improved string hash-code distribution by excluding bit-field bits
831 from the hash-code.
832
833 Changed string search algorithm used in indexOf from KMP to
834 Boyer-Moore.
835
836 Improved the generated code for the instanceof operator.
837
838 Improved performance of slow-case string equality checks by
839 specializing the code based on the string representation.
840
841 Improve the handling of out-of-memory situations (issue 70).
842
843 Improved performance of strict equality checks.
844
845 Improved profiler output to make it easier to see anonymous
846 functions.
847
848 Improved performance of slow-case keyed loads.
849
850 Improved property access performance by allocating a number of
851 properties in the front object.
852
853 Changed the toString behavior on the built-in object constructors
854 to print [native code] instead of the actual source. Some web
855 applications do not like constructors with complex toString
856 results.
ager@chromium.org32912102009-01-16 10:38:43 +0000857
ager@chromium.org7c537e22008-10-16 08:43:32 +0000858
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00008592008-10-06: Version 0.3.4
860
861 Changed Array.prototype.sort to use quick sort.
862
863 Fixed code generation issue where leaving a finally block with
864 break or continue would accumulate elements on the expression
865 stack (issue 86).
866
867 Made sure that the name accessor on functions returns the expected
868 names for builtin JavaScript functions and C++ callback functions.
869
870 Added fast case code for extending the property storage array of
871 JavaScript objects.
872
873 Ported switch statement optimizations introduced in version 0.3.3
874 to the ARM code generator.
875
876 Allowed GCC to use strict-aliasing rules when compiling.
877
878 Improved performance of arguments object allocation by taking care
879 of arguments adaptor frames in the generated code.
880
881 Updated the V8 benchmark suite to version 2.
882
883
ager@chromium.org236ad962008-09-25 09:45:57 +00008842008-09-25: Version 0.3.3
885
886 Improved handling of relocation information to enable more
887 peep-hole optimizations.
888
889 Optimized switch statements where all labels are constant small
890 integers.
891
892 Optimized String.prototype.indexOf for common cases.
893
894 Fixed more build issues (issue 80).
895
896 Fixed a couple of profiler issues.
897
898 Fixed bug where the body of a function created using the Function
899 constructor was not allowed to end with a single-line comment
900 (issue 85).
901
902 Improved handling of object literals by canonicalizing object
903 literal maps. This will allow JSON objects with the same set of
904 properties to share the same map making inline caching work better
905 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +0000906
ager@chromium.org236ad962008-09-25 09:45:57 +0000907
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00009082008-09-17: Version 0.3.2
909
910 Generalized the EvalCache into a CompilationCache and enabled it
911 for scripts too. The current strategy is to retire all entries
912 whenever a mark-sweep collection is started.
913
914 Fixed bug where switch statements containing only a default case
915 would lead to an unbalanced stack (issue 69).
916
917 Fixed bug that made access to the function in a named function
918 expression impossible in certain situations (issue 24).
919
920 Fixed even more build issues.
921
922 Optimized calling conventions on ARM. The conventions on ARM and
923 IA-32 now match.
924
925 Removed static initializers for flags and counters.
926
927 Improved inline caching behavior for uncommon cases where lazily
928 loading Date and RegExp code could force certain code paths go
929 megamorphic.
930
931 Removed arguments adaption for builtins written in C++. This
932 makes Array.prototype.push and Array.prototype.pop slightly
933 faster.
934
935
ager@chromium.org9258b6b2008-09-11 09:11:10 +00009362008-09-11: Version 0.3.1
937
938 Fixed a number of build issues.
939
940 Fixed problem with missing I-cache flusing on ARM.
941
942 Changed space layout in memory management by splitting up
943 code space into old data space and code space.
944
945 Added utf-8 conversion support to the API (issue 57).
946
947 Optimized repeated calls to eval with the same strings. These
948 repeated calls are common in web applications.
949
950 Added Xcode project file.
951
952 Optimized a couple of Array operation.
953
954 Fixed parser bug by checking for end-of-string when parsing break
955 and continue (issue 35).
956
957 Fixed problem where asian characters were not categorized as
958 letters.
959
960 Fixed bug that disallowed calling functions fetched from an array
961 using a string as an array index (issue 32).
962
963 Fixed bug where the internal field count on object templates were
964 sometimes ignored (issue 54).
965
966 Added -f option to the shell sample for compatibility with other
967 engines (issue 18).
968
969 Added source info to TryCatches in the API.
970
971 Fixed problem where the seed for the random number generator was
972 clipped in a double to unsigned int conversion.
973
974 Fixed bug where cons string symbols were sometimes converted to
975 non-symbol flat strings during GC.
976
977 Fixed bug in error reporting when attempting to convert null to an
978 object.
ager@chromium.org32912102009-01-16 10:38:43 +0000979
980
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00009812008-09-04: Version 0.3.0
982
983 Added support for running tests on the ARM simulator.
984
985 Fixed bug in the 'in' operator where negative indices were not
986 treated correctly.
987
988 Fixed build issues on gcc-4.3.1.
989
990 Changed Date.prototype.toLocaleTimeString to not print the
991 timezone part of the time.
992
993 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
994 with user code.
995
996
v8.team.kasperl727e9952008-09-02 14:56:44 +00009972008-09-02: Version 0.2.5
998
999 Renamed the top level directory 'public' to 'include'.
1000
1001 Added 'env' option to the SCons build scripts to support
1002 overriding the ENV part of the build environment. This is mostly
1003 to support Windows builds in cases where SCons cannot find the
1004 correct paths to the Windows SDK, as these paths cannot be passed
1005 through shell environment variables.
1006
1007 Enabled "Buffer Security Check" on for the Windows SCons build and
1008 added the linker option /OPT:ICF as an optimization.
1009
1010 Added the V8 benchmark suite to the repository.
1011
1012
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000010132008-09-01: Version 0.2.4
1014
1015 Included mjsunit JavaScript test suite and C++ unit tests.
1016
1017 Changed the shell sample to not print the result of executing a
1018 script provided on the command line.
1019
1020 Fixed issue when building samples on Windows using a shared V8
1021 library. Added visibility option on Linux build which makes the
1022 generated library 18% smaller.
1023
1024 Changed build system to accept multiple build modes in one build
1025 and generate separate objects, libraries and executables for each
1026 mode.
1027
1028 Removed deferred negation optimization (a * -b => -(a * b)) since
1029 this visibly changes operand conversion order.
1030
1031 Improved parsing performance by introducing stack guard in
1032 preparsing. Without a stack guard preparsing always bails out
1033 with stack overflow.
1034
1035 Changed shell sample to take flags directly from the command-line.
1036 Added API call that implements this.
1037
1038 Added load, quit and version functions to the shell sample so it's
1039 easier to run benchmarks and tests.
1040
1041 Fixed issue with building samples and cctests on 64-bit machines.
1042
1043 Fixed bug in the runtime system where the prototype chain was not
1044 always searched for a setter when setting a property that does not
1045 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +00001046
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001047
mads.s.agercbaa0602008-08-14 13:41:48 +000010482008-08-14: Version 0.2.3
1049
1050 Improved performance of garbage collection by moving the
1051 function that updates pointers during compacting collection
1052 into the updating visitor. This gives the compiler a better
1053 chance to inline and avoid a function call per (potential)
1054 pointer.
1055
1056 Extended the shell sample with a --runtime-flags option.
1057
1058 Added Visual Studio project files for the shell.cc and
1059 process.cc samples.
1060
1061
10622008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +00001063
1064 Improved performance of garbage collection by changing the way
1065 we use the marking stack in the event of stack overflow during
1066 full garbage collection and by changing the way we mark roots.
1067
1068 Cleaned up ARM version by removing top of stack caching and by
1069 introducing push/pop elimination.
1070
1071 Cleaned up the way runtime functions are called to allow
1072 runtime calls with no arguments.
1073
1074 Changed Windows build options to make sure that exceptions are
1075 disabled and that optimization flags are enabled.
1076
1077 Added first version of Visual Studio project files.
1078
1079
mads.s.agercbaa0602008-08-14 13:41:48 +000010802008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00001081
1082 Improved performance of unary addition by avoiding runtime calls.
1083
1084 Fixed the handling of '>' and '<=' to use right-to-left conversion
1085 and left-to-right evaluation as specified by ECMA-262.
1086
1087 Fixed a branch elimination bug on the ARM platform where incorrect
1088 code was generated because of overly aggressive branch
1089 elimination.
1090
1091 Improved performance of code that repeatedly assigns the same
1092 function to the same property of different objects with the same
1093 map.
1094
1095 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
1096 no longer expects DEBUG to be defined.
1097
1098 Added platform-nullos.cc to serve as the basis for new platform
1099 implementations.
1100
mads.s.ager31e71382008-08-13 09:32:07 +00001101
mads.s.agercbaa0602008-08-14 13:41:48 +000011022008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +00001103
1104 Changed all text files to have native svn:eol-style.
1105
1106 Added a few samples and support for building them. The samples
1107 include a simple shell that can be used to benchmark and test V8.
1108
1109 Changed V8::GetVersion to return the version as a string.
1110
1111 Added source for lazily loaded scripts to snapshots and made
1112 serialization non-destructive.
1113
1114 Improved ARM support by fixing the write barrier code to use
1115 aligned loads and stores and by removing premature locals
1116 optimization that relied on broken support for callee-saved
1117 registers (removed).
1118
1119 Refactored the code for marking live objects during garbage
1120 collection and the code for allocating objects in paged
1121 spaces. Introduced an abstraction for the map word of a heap-
1122 allocated object and changed the memory allocator to allocate
1123 executable memory only for spaces that may contain code objects.
1124
1125 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
1126 they can be used by debugging and logging modules. Added
1127 thread-safe message queues for dealing with debugger events.
1128
1129 Fixed the source code reported by toString for certain builtin
1130 empty functions and made sure that the prototype property of a
1131 function is enumerable.
1132
1133 Improved performance of converting values to condition flags in
1134 generated code.
1135
1136 Merged disassembler-{arch} files.
1137
1138
mads.s.agercbaa0602008-08-14 13:41:48 +000011392008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +00001140
1141 Added support for storing JavaScript stack traces in a stack
1142 allocated buffer to make it visible in shallow core dumps.
1143 Controlled by the --preallocate-message-memory flag which is
1144 disabled by default.
1145
1146
mads.s.agercbaa0602008-08-14 13:41:48 +000011472008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00001148
1149 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
1150 map transitions would count as properties.
1151
1152 Allowed aliased eval invocations by treating them as evals in the
1153 global context. This may change in the future.
1154
1155 Added support for accessing the last entered context through the
1156 API and renamed Context::Current to Context::GetCurrent and
1157 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
1158
1159 Fixed bug in the debugger that would cause the debugger scripts to
1160 be recursively loaded and changed all disabling of interrupts to
1161 be block-structured.
1162
1163 Made snapshot data read-only to allow it to be more easily shared
1164 across multiple users of V8 when linked as a shared library.
1165
1166
mads.s.agercbaa0602008-08-14 13:41:48 +000011672008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00001168
1169 Fixed building on Mac OS X by recognizing i386 and friends as
1170 IA-32 platforms.
1171
1172 Added propagation of stack overflow exceptions that occur while
1173 compiling nested functions.
1174
1175 Improved debugger with support for recursive break points and
1176 handling of exceptions that occur in the debugger JavaScript code.
1177
1178 Renamed GetInternal to GetInternalField and SetInternal to
1179 SetInternalField in the API and moved InternalFieldCount and
1180 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
1181
1182
mads.s.agercbaa0602008-08-14 13:41:48 +000011832008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001184
1185 Fixed bug in stack overflow check code for IA-32 targets where a
1186 non-tagged value in register eax was pushed to the stack.
1187
1188 Fixed potential quadratic behavior when converting strings to
1189 numbers.
1190
1191 Fixed bug where the return value from Object::SetProperty could
1192 end up being the property holder instead of the written value.
1193
1194 Improved debugger support by allowing nested break points and by
1195 dealing with stack-overflows when compiling functions before
1196 setting break points in them.
1197
1198
mads.s.agercbaa0602008-08-14 13:41:48 +000011992008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001200
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001201 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001202