blob: c36e107b77804d409f9fa7f00dae549024e59155 [file] [log] [blame]
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000012009-05-18: Version 1.2.4
2
3 Improved performance of floating point number allocation for ARM
4 platforms.
5
6 Fixed crash when using the instanceof operator on functions with
7 number values in their prototype chain (issue 341).
8
9 Optimized virtual frame operations in the code generator to speed
10 up compilation time and allocated the frames in the zone.
11
12 Made the representation of virtual frames and jump targets in the
13 code generator much more compact.
14
15 Avoided linear search for non-locals in scope code when resolving
16 variables inside with and eval scopes.
17
18 Optimized lexical scanner by dealing with whitespace as part of
19 the token scanning instead of as a separate step before it.
20
21 Changed the scavenging collector so that promoted objects do not
22 reside in the old generation while their remembered set is being
23 swept for pointers into the young generation.
24
25 Fixed numeric overflow handling when compiling count operations.
26
27
ager@chromium.org9085a012009-05-11 19:22:57 +0000282009-05-11: Version 1.2.3
29
30 Fixed bug in reporting of out-of-memory situations.
31
32 Introduced hidden prototypes on certain builtin prototype objects
33 such as String.prototype to emulate JSC's behavior of restoring
34 the original function when deleting functions from those prototype
35 objects.
36
37 Fixed crash bug in the register allocator.
38
39
ager@chromium.org5ec48922009-05-05 07:25:34 +0000402009-05-04: Version 1.2.2
41
42 Fixed bug in array sorting for sparse arrays (issue 326).
43
44 Added support for adding a soname when building a shared library
45 on Linux (issue 151).
46
47 Fixed bug caused by morphing internal ASCII strings to external
48 two-byte strings. Slices over ASCII strings have to forward ASCII
49 checks to the underlying buffer string.
50
51 Allowed API call-as-function handlers to be called as
52 constructors.
53
54 Fixed a crash bug where an external string was disposed but a
55 slice of the external string survived as a symbol.
56
57
ager@chromium.org3a37e9b2009-04-27 09:26:21 +0000582009-04-27: Version 1.2.1
59
60 Added EcmaScript 5 JSON object.
61
62 Fix bug in preemption support on ARM.
63
64
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000652009-04-23: Version 1.2.0
66
67 Optimized floating-point operations on ARM.
68
69 Added a number of extensions to the debugger API.
70
71 Changed the enumeration order for unsigned integer keys to always
72 be numerical order.
73
74 Added a "read" extension to the shell sample.
75
76 Added support for Array.prototype.reduce and
77 Array.prototype.reduceRight.
78
79 Added an option to the SCons build to control Microsoft Visual C++
80 link-time code generation.
81
82 Fixed a number of bugs (in particular issue 315, issue 316,
83 issue 317 and issue 318).
84
85
kasperl@chromium.org2d18d102009-04-15 13:27:32 +0000862009-04-15: Version 1.1.10
87
88 Fixed crash bug that occurred when loading a const variable in the
89 presence of eval.
90
91 Allowed using with and eval in registered extensions in debug mode
92 by fixing bogus assert.
93
94 Fixed the source position for function returns to enable the
95 debugger to break there.
96
97
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +0000982009-04-14: Version 1.1.9
99
100 Made the stack traversal code in the profiler robust by avoiding
101 to look into the heap.
102
103 Added name inferencing for anonymous functions to facilitate
104 debugging and profiling.
105
106 Re-enabled stats timers in the developer shell (d8).
107
108 Fixed issue 303 by avoiding to shortcut cons-symbols.
109
110
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00001112009-04-11: Version 1.1.8
112
113 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
114
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000115 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000116 the debugger (issue 269).
117
118 Fixed v8::Object::DeleteHiddenValue to not bail out when there
119 are no hidden properties.
120
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000121 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +0000122 entries with deleted resources would lead to NPEs when looking
123 up in the symbol table.
124
125
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00001262009-04-07: Version 1.1.7
127
128 Added support for easily importing additional environment
129 variables into the SCons build.
130
131 Optimized strict equality checks.
132
133 Fixed crash in indexed setters on objects without a corresponding
134 getter (issue 298).
135
136 Re-enabled script compilation cache.
137
138
ager@chromium.org8682a592009-04-01 10:47:14 +00001392009-04-01: Version 1.1.6
140
141 Reverted an unsafe code generator change.
142
143
ager@chromium.org71daaf62009-04-01 07:22:49 +00001442009-04-01: Version 1.1.5
145
146 Fixed bug that caused function literals to not be optimized as
147 much as other functions.
148
149 Improved profiler support.
150
151 Fixed a crash bug in connection with debugger unloading.
152
153 Fixed a crash bug in the code generator caused by losing the
154 information that a frame element was copied.
155
156 Fixed an exception propagation bug that could cause non-null
157 return values when exceptions were thrown.
158
159
ager@chromium.org41826e72009-03-30 13:30:57 +00001602009-03-30: Version 1.1.4
161
162 Optimized String.prototype.match.
163
164 Improved the stack information in profiles.
165
166 Fixed bug in ARM port making it possible to compile the runtime
167 system for thumb mode again.
168
169 Implemented a number of optimizations in the code generator.
170
171 Fixed a number of memory leaks in tests.
172
173 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000174 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +0000175
176
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +00001772009-03-24: Version 1.1.3
178
179 Fixed assertion failures in compilation of loop conditions.
180
181 Removed STL dependency from developer shell (d8).
182
183 Added infrastructure for protecting the V8 heap from corruption
184 caused by memory modifications from the outside.
185
186
ager@chromium.orgbb29dc92009-03-24 13:25:23 +00001872009-03-24: Version 1.1.2
188
189 Improved frame merge code generated by the code generator.
190
191 Optimized String.prototype.replace.
192
193 Implemented __defineGetter__ and __defineSetter__ for properties
194 with integer keys on non-array objects.
195
196 Improved debugger and profiler support.
197
198 Fixed a number of portability issues to allow compilation for
199 smaller ARM devices.
200
201 Exposed object cloning through the API.
202
203 Implemented hidden properties. This is used to expose an identity
204 hash for objects through the API.
205
206 Implemented restarting of regular expressions if their input
207 string changes representation during preemption.
208
209 Fixed a code generator bug that could cause assignments in loops
210 to be ignored if using continue to break out of the loop (issue
211 284).
212
213
ager@chromium.org3a6061e2009-03-12 14:24:36 +00002142009-03-12: Version 1.1.1
215
216 Fixed an assertion in the new compiler to take stack overflow
217 exceptions into account.
218
219 Removed exception propagation code that could cause crashes.
220
221 Fixed minor bug in debugger line number computations.
222
223 8-byte align the C stack on Linux and Windows to speed up floating
224 point computations.
225
226
kasperl@chromium.org7be3c992009-03-12 07:19:55 +00002272009-03-12: Version 1.1.0
228
229 Improved code generation infrastructure by doing simple register
230 allocation and constant folding and propagation.
231
232 Optimized regular expression matching by avoiding to create
233 intermediate string arrays and by flattening nested array
234 representations of RegExp data.
235
236 Traverse a few stack frames when recording profiler samples to
237 include partial call graphs in the profiling output.
238
239 Added support for using OProfile to profile generated code.
240
241 Added remote debugging support to the D8 developer shell.
242
243 Optimized creation of nested literals like JSON objects.
244
245 Fixed a bug in garbage collecting unused maps and turned it on by
246 default (--collect-maps).
247
248 Added support for running tests under Valgrind.
249
250
kasperl@chromium.org061ef742009-02-27 12:16:20 +00002512009-02-27: Version 1.0.3
252
253 Optimized double-to-integer conversions in bit operations by using
254 SSE3 instructions if available.
255
256 Optimized initialization sequences that store to multiple
257 properties of the same object.
258
259 Changed the D8 debugger frontend to use JSON messages.
260
261 Force garbage collections when disposing contexts.
262
263 Align code objects at 32-byte boundaries.
264
265
ager@chromium.org381abbb2009-02-25 13:23:22 +00002662009-02-25: Version 1.0.2
267
268 Improved profiling support by performing simple call stack
269 sampling for ticks and by fixing a bug in the logging of code
270 addresses.
271
272 Fixed a number of debugger issues.
273
274 Optimized code that uses eval.
275
276 Fixed a couple of bugs in the regular expression engine.
277
278 Reduced the size of generated code for certain regular expressions.
279
280 Removed JSCRE completely.
281
282 Fixed issue where test could not be run if there was a dot in the
283 checkout path.
284
285
ager@chromium.org6f10e412009-02-13 10:11:16 +00002862009-02-13: Version 1.0.1
287
288 Fixed two crash-bugs in irregexp (issue 231 and 233).
289
290 Fixed a number of minor bugs (issue 87, 227 and 228).
291
292 Added support for morphing strings to external strings on demand
293 to avoid having to create copies in the embedding code.
294
295 Removed experimental support for external symbol callbacks.
296
297
iposva@chromium.org245aa852009-02-10 00:49:54 +00002982009-02-09: Version 1.0.0
299
300 Fixed crash-bug in the code generation for case independent 16 bit
301 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +0000302
iposva@chromium.org245aa852009-02-10 00:49:54 +0000303 Made shells more robust in the presence of string conversion
304 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +0000305
iposva@chromium.org245aa852009-02-10 00:49:54 +0000306 Fixed a potential infinite loop when attempting to resolve
307 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +0000308
iposva@chromium.org245aa852009-02-10 00:49:54 +0000309 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +0000310
iposva@chromium.org245aa852009-02-10 00:49:54 +0000311 Reduced binary by stripping unneeded text from JavaScript library and
312 minifying some JavaScript files.
313
314
ager@chromium.orgddb913d2009-01-27 10:01:48 +00003152009-01-27: Version 0.4.9
316
317 Enabled new regular expression engine.
318
319 Made a number of changes to the debugger protocol.
320
321 Fixed a number of bugs in the preemption support.
322
323 Added -p option to the developer shell to run files in parallel
324 using preemption.
325
326 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
327 193, 198 and 201).
328
329 Fixed a number of bugs in the serialization/deserialization
330 support for the ARM platform.
331
332
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00003332009-01-19: Version 0.4.8.1
334
335 Minor patch to debugger support.
336
337
ager@chromium.org32912102009-01-16 10:38:43 +00003382009-01-16: Version 0.4.8
339
340 Fixed string length bug on ARM (issue 171).
341
342 Made most methods in the API const.
343
344 Optimized object literals by improving data locality.
345
346 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +0000347 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +0000348
349 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +0000350 eval to behave incorrectly when using accessors (issues 186, 190
351 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +0000352
353
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00003542009-01-06: Version 0.4.7
355
ager@chromium.org32912102009-01-16 10:38:43 +0000356 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000357
ager@chromium.org32912102009-01-16 10:38:43 +0000358 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000359
ager@chromium.org32912102009-01-16 10:38:43 +0000360 Fixed subtle bug that caused the wrong 'this' to be used when
361 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000362
ager@chromium.org32912102009-01-16 10:38:43 +0000363 Inline array loads within loops directly in the code instead of
364 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000365
ager@chromium.org32912102009-01-16 10:38:43 +0000366
ager@chromium.org8bb60582008-12-11 12:02:20 +00003672008-12-11: Version 0.4.6
368
369 Fixed exception reporting bug where certain exceptions were
370 incorrectly reported as uncaught.
371
372 Improved the memory allocation strategy used during compilation to
373 make running out of memory when compiling huge scripts less
374 likely.
375
376 Optimized String.replace by avoiding the construction of certain
377 sub strings.
378
379 Fixed bug in code generation for large switch statements on ARM.
380
381 Fixed bug that caused V8 to change the global object template
382 passed in by the user.
383
384 Changed the API for creating object groups used during garbage
385 collection. Entire object groups are now passed to V8 instead of
386 individual members of the groups.
387
ager@chromium.org32912102009-01-16 10:38:43 +0000388
ager@chromium.orga74f0da2008-12-03 16:05:52 +00003892008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000390
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000391 Added experimental API support for allocating V8 symbols as
392 external strings.
393
394 Fixed bugs in debugging support on ARM.
395
396 Changed eval implementation to correctly detect whether or not a
397 call to eval is aliased.
398
399 Fixed bug caused by a combination of the compilation cache and
400 dictionary probing in native code. The bug caused us to sometimes
401 call functions that had not yet been compiled.
402
403 Added platform support for FreeBSD.
404
405 Added support for building V8 on Windows with either the shared or
406 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +0000407
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000408 Added the v8::jscre namespace around the jscre functions to avoid
409 link errors (duplicate symbols) when building Google Chrome.
410
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000411 Added support for calling a JavaScript function with the current
412 debugger execution context as its argument to the debugger
413 interface.
414
415 Changed the type of names of counters from wchar_t to char.
416
417 Changed the Windows system call used to compute daylight savings
418 time. The system call that we used to use became four times
419 slower on WinXP SP3.
420
421 Added support in the d8 developer shell for memory-mapped counters
422 and added a stats-viewer tool.
423
424 Fixed bug in upper/lower case mappings (issue 149).
425
iposva@chromium.org96f667e2008-11-26 23:48:02 +0000426
ager@chromium.org3bf7b912008-11-17 09:09:45 +00004272008-11-17: Version 0.4.4
428
429 Reduced code size by using shorter instruction encoding when
430 possible.
431
432 Added a --help option to the shell sample and to the d8 shell.
433
434 Added visual studio project files for building the ARM simulator.
435
436 Fixed a number of ARM simulator issues.
437
438 Fixed bug in out-of-memory handling on ARM.
439
440 Implemented shell support for passing arguments to a script from
441 the command line.
442
443 Fixed bug in date code that made certain date functions return -0
444 instead of 0 for dates before the epoch.
445
446 Restricted applications of eval so it can only be used in the
447 context of the associated global object.
448
449 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +0000450
451
ager@chromium.org870a0b62008-11-04 11:43:05 +00004522008-11-04: Version 0.4.3
453
454 Added support for API accessors that prohibit overwriting by
455 accessors defined in JavaScript code by using __defineGetter__ and
456 __defineSetter__.
457
458 Improved handling of conditionals in test status files.
459
460 Introduced access control in propertyIsEnumerable.
461
462 Improved performance of some string operations by caching
463 information about the type of the string between operations.
464
465 Fixed bug in fast-case code for switch statements that only have
466 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +0000467
ager@chromium.org870a0b62008-11-04 11:43:05 +0000468
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +00004692008-10-30: Version 0.4.2
470
471 Improved performance of Array.prototype.concat by moving the
472 implementation to C++ (issue 123).
473
474 Fixed heap growth policy to avoid growing old space to its maximum
475 capacity before doing a garbage collection and fixed issue that
476 would lead to artificial out of memory situations (issue 129).
477
478 Fixed Date.prototype.toLocaleDateString to return the date in the
479 same format as WebKit.
480
481 Added missing initialization checks to debugger API.
482
483 Added removing of unused maps during GC.
484
485
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +00004862008-10-28: Version 0.4.1
487
488 Added caching of RegExp data in compilation cache.
489
490 Added Visual Studio project file for d8 shell.
491
492 Fixed function call performance regression introduced in version
493 0.4.0 when splitting the global object in two parts (issue 120).
494
495 Fixed issue 131 by checking for empty handles before throwing and
496 reporting exceptions.
497
498
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00004992008-10-23: Version 0.4.0
500
501 Split the global object into two parts: The state holding global
502 object and the global object proxy.
503
504 Fixed bug that affected the value of an assignment to an element
505 in certain cases (issue 116).
506
507 Added GetPropertyNames functionality (issue 33) and extra Date
508 functions (issue 77) to the API.
509
510 Changed WeakReferenceCallback to take a Persistent<Value> instead
511 of a Persistent<Object> (issue 101).
512
513 Fixed issues with message reporting for exceptions in try-finally
514 blocks (issues 73 and 75).
515
ager@chromium.org32912102009-01-16 10:38:43 +0000516 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000517
518 Improved Boyer-Moore implementation for faster indexOf operations.
519
520 Added development shell (d8) which includes counters and
521 completion support.
522
523 Fixed problem with the receiver passed to functions called from
524 eval (issue 124).
525
526
ager@chromium.org7c537e22008-10-16 08:43:32 +00005272008-10-16: Version 0.3.5
528
529 Improved string hash-code distribution by excluding bit-field bits
530 from the hash-code.
531
532 Changed string search algorithm used in indexOf from KMP to
533 Boyer-Moore.
534
535 Improved the generated code for the instanceof operator.
536
537 Improved performance of slow-case string equality checks by
538 specializing the code based on the string representation.
539
540 Improve the handling of out-of-memory situations (issue 70).
541
542 Improved performance of strict equality checks.
543
544 Improved profiler output to make it easier to see anonymous
545 functions.
546
547 Improved performance of slow-case keyed loads.
548
549 Improved property access performance by allocating a number of
550 properties in the front object.
551
552 Changed the toString behavior on the built-in object constructors
553 to print [native code] instead of the actual source. Some web
554 applications do not like constructors with complex toString
555 results.
ager@chromium.org32912102009-01-16 10:38:43 +0000556
ager@chromium.org7c537e22008-10-16 08:43:32 +0000557
kasperl@chromium.org41044eb2008-10-06 08:24:46 +00005582008-10-06: Version 0.3.4
559
560 Changed Array.prototype.sort to use quick sort.
561
562 Fixed code generation issue where leaving a finally block with
563 break or continue would accumulate elements on the expression
564 stack (issue 86).
565
566 Made sure that the name accessor on functions returns the expected
567 names for builtin JavaScript functions and C++ callback functions.
568
569 Added fast case code for extending the property storage array of
570 JavaScript objects.
571
572 Ported switch statement optimizations introduced in version 0.3.3
573 to the ARM code generator.
574
575 Allowed GCC to use strict-aliasing rules when compiling.
576
577 Improved performance of arguments object allocation by taking care
578 of arguments adaptor frames in the generated code.
579
580 Updated the V8 benchmark suite to version 2.
581
582
ager@chromium.org236ad962008-09-25 09:45:57 +00005832008-09-25: Version 0.3.3
584
585 Improved handling of relocation information to enable more
586 peep-hole optimizations.
587
588 Optimized switch statements where all labels are constant small
589 integers.
590
591 Optimized String.prototype.indexOf for common cases.
592
593 Fixed more build issues (issue 80).
594
595 Fixed a couple of profiler issues.
596
597 Fixed bug where the body of a function created using the Function
598 constructor was not allowed to end with a single-line comment
599 (issue 85).
600
601 Improved handling of object literals by canonicalizing object
602 literal maps. This will allow JSON objects with the same set of
603 properties to share the same map making inline caching work better
604 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +0000605
ager@chromium.org236ad962008-09-25 09:45:57 +0000606
kasperl@chromium.orgb9123622008-09-17 14:05:56 +00006072008-09-17: Version 0.3.2
608
609 Generalized the EvalCache into a CompilationCache and enabled it
610 for scripts too. The current strategy is to retire all entries
611 whenever a mark-sweep collection is started.
612
613 Fixed bug where switch statements containing only a default case
614 would lead to an unbalanced stack (issue 69).
615
616 Fixed bug that made access to the function in a named function
617 expression impossible in certain situations (issue 24).
618
619 Fixed even more build issues.
620
621 Optimized calling conventions on ARM. The conventions on ARM and
622 IA-32 now match.
623
624 Removed static initializers for flags and counters.
625
626 Improved inline caching behavior for uncommon cases where lazily
627 loading Date and RegExp code could force certain code paths go
628 megamorphic.
629
630 Removed arguments adaption for builtins written in C++. This
631 makes Array.prototype.push and Array.prototype.pop slightly
632 faster.
633
634
ager@chromium.org9258b6b2008-09-11 09:11:10 +00006352008-09-11: Version 0.3.1
636
637 Fixed a number of build issues.
638
639 Fixed problem with missing I-cache flusing on ARM.
640
641 Changed space layout in memory management by splitting up
642 code space into old data space and code space.
643
644 Added utf-8 conversion support to the API (issue 57).
645
646 Optimized repeated calls to eval with the same strings. These
647 repeated calls are common in web applications.
648
649 Added Xcode project file.
650
651 Optimized a couple of Array operation.
652
653 Fixed parser bug by checking for end-of-string when parsing break
654 and continue (issue 35).
655
656 Fixed problem where asian characters were not categorized as
657 letters.
658
659 Fixed bug that disallowed calling functions fetched from an array
660 using a string as an array index (issue 32).
661
662 Fixed bug where the internal field count on object templates were
663 sometimes ignored (issue 54).
664
665 Added -f option to the shell sample for compatibility with other
666 engines (issue 18).
667
668 Added source info to TryCatches in the API.
669
670 Fixed problem where the seed for the random number generator was
671 clipped in a double to unsigned int conversion.
672
673 Fixed bug where cons string symbols were sometimes converted to
674 non-symbol flat strings during GC.
675
676 Fixed bug in error reporting when attempting to convert null to an
677 object.
ager@chromium.org32912102009-01-16 10:38:43 +0000678
679
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00006802008-09-04: Version 0.3.0
681
682 Added support for running tests on the ARM simulator.
683
684 Fixed bug in the 'in' operator where negative indices were not
685 treated correctly.
686
687 Fixed build issues on gcc-4.3.1.
688
689 Changed Date.prototype.toLocaleTimeString to not print the
690 timezone part of the time.
691
692 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
693 with user code.
694
695
v8.team.kasperl727e9952008-09-02 14:56:44 +00006962008-09-02: Version 0.2.5
697
698 Renamed the top level directory 'public' to 'include'.
699
700 Added 'env' option to the SCons build scripts to support
701 overriding the ENV part of the build environment. This is mostly
702 to support Windows builds in cases where SCons cannot find the
703 correct paths to the Windows SDK, as these paths cannot be passed
704 through shell environment variables.
705
706 Enabled "Buffer Security Check" on for the Windows SCons build and
707 added the linker option /OPT:ICF as an optimization.
708
709 Added the V8 benchmark suite to the repository.
710
711
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00007122008-09-01: Version 0.2.4
713
714 Included mjsunit JavaScript test suite and C++ unit tests.
715
716 Changed the shell sample to not print the result of executing a
717 script provided on the command line.
718
719 Fixed issue when building samples on Windows using a shared V8
720 library. Added visibility option on Linux build which makes the
721 generated library 18% smaller.
722
723 Changed build system to accept multiple build modes in one build
724 and generate separate objects, libraries and executables for each
725 mode.
726
727 Removed deferred negation optimization (a * -b => -(a * b)) since
728 this visibly changes operand conversion order.
729
730 Improved parsing performance by introducing stack guard in
731 preparsing. Without a stack guard preparsing always bails out
732 with stack overflow.
733
734 Changed shell sample to take flags directly from the command-line.
735 Added API call that implements this.
736
737 Added load, quit and version functions to the shell sample so it's
738 easier to run benchmarks and tests.
739
740 Fixed issue with building samples and cctests on 64-bit machines.
741
742 Fixed bug in the runtime system where the prototype chain was not
743 always searched for a setter when setting a property that does not
744 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +0000745
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000746
mads.s.agercbaa0602008-08-14 13:41:48 +00007472008-08-14: Version 0.2.3
748
749 Improved performance of garbage collection by moving the
750 function that updates pointers during compacting collection
751 into the updating visitor. This gives the compiler a better
752 chance to inline and avoid a function call per (potential)
753 pointer.
754
755 Extended the shell sample with a --runtime-flags option.
756
757 Added Visual Studio project files for the shell.cc and
758 process.cc samples.
759
760
7612008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +0000762
763 Improved performance of garbage collection by changing the way
764 we use the marking stack in the event of stack overflow during
765 full garbage collection and by changing the way we mark roots.
766
767 Cleaned up ARM version by removing top of stack caching and by
768 introducing push/pop elimination.
769
770 Cleaned up the way runtime functions are called to allow
771 runtime calls with no arguments.
772
773 Changed Windows build options to make sure that exceptions are
774 disabled and that optimization flags are enabled.
775
776 Added first version of Visual Studio project files.
777
778
mads.s.agercbaa0602008-08-14 13:41:48 +00007792008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000780
781 Improved performance of unary addition by avoiding runtime calls.
782
783 Fixed the handling of '>' and '<=' to use right-to-left conversion
784 and left-to-right evaluation as specified by ECMA-262.
785
786 Fixed a branch elimination bug on the ARM platform where incorrect
787 code was generated because of overly aggressive branch
788 elimination.
789
790 Improved performance of code that repeatedly assigns the same
791 function to the same property of different objects with the same
792 map.
793
794 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
795 no longer expects DEBUG to be defined.
796
797 Added platform-nullos.cc to serve as the basis for new platform
798 implementations.
799
mads.s.ager31e71382008-08-13 09:32:07 +0000800
mads.s.agercbaa0602008-08-14 13:41:48 +00008012008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +0000802
803 Changed all text files to have native svn:eol-style.
804
805 Added a few samples and support for building them. The samples
806 include a simple shell that can be used to benchmark and test V8.
807
808 Changed V8::GetVersion to return the version as a string.
809
810 Added source for lazily loaded scripts to snapshots and made
811 serialization non-destructive.
812
813 Improved ARM support by fixing the write barrier code to use
814 aligned loads and stores and by removing premature locals
815 optimization that relied on broken support for callee-saved
816 registers (removed).
817
818 Refactored the code for marking live objects during garbage
819 collection and the code for allocating objects in paged
820 spaces. Introduced an abstraction for the map word of a heap-
821 allocated object and changed the memory allocator to allocate
822 executable memory only for spaces that may contain code objects.
823
824 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
825 they can be used by debugging and logging modules. Added
826 thread-safe message queues for dealing with debugger events.
827
828 Fixed the source code reported by toString for certain builtin
829 empty functions and made sure that the prototype property of a
830 function is enumerable.
831
832 Improved performance of converting values to condition flags in
833 generated code.
834
835 Merged disassembler-{arch} files.
836
837
mads.s.agercbaa0602008-08-14 13:41:48 +00008382008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +0000839
840 Added support for storing JavaScript stack traces in a stack
841 allocated buffer to make it visible in shallow core dumps.
842 Controlled by the --preallocate-message-memory flag which is
843 disabled by default.
844
845
mads.s.agercbaa0602008-08-14 13:41:48 +00008462008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +0000847
848 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
849 map transitions would count as properties.
850
851 Allowed aliased eval invocations by treating them as evals in the
852 global context. This may change in the future.
853
854 Added support for accessing the last entered context through the
855 API and renamed Context::Current to Context::GetCurrent and
856 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
857
858 Fixed bug in the debugger that would cause the debugger scripts to
859 be recursively loaded and changed all disabling of interrupts to
860 be block-structured.
861
862 Made snapshot data read-only to allow it to be more easily shared
863 across multiple users of V8 when linked as a shared library.
864
865
mads.s.agercbaa0602008-08-14 13:41:48 +00008662008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +0000867
868 Fixed building on Mac OS X by recognizing i386 and friends as
869 IA-32 platforms.
870
871 Added propagation of stack overflow exceptions that occur while
872 compiling nested functions.
873
874 Improved debugger with support for recursive break points and
875 handling of exceptions that occur in the debugger JavaScript code.
876
877 Renamed GetInternal to GetInternalField and SetInternal to
878 SetInternalField in the API and moved InternalFieldCount and
879 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
880
881
mads.s.agercbaa0602008-08-14 13:41:48 +00008822008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000883
884 Fixed bug in stack overflow check code for IA-32 targets where a
885 non-tagged value in register eax was pushed to the stack.
886
887 Fixed potential quadratic behavior when converting strings to
888 numbers.
889
890 Fixed bug where the return value from Object::SetProperty could
891 end up being the property holder instead of the written value.
892
893 Improved debugger support by allowing nested break points and by
894 dealing with stack-overflows when compiling functions before
895 setting break points in them.
896
897
mads.s.agercbaa0602008-08-14 13:41:48 +00008982008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000899
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000900 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000901