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