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