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