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