blob: 7e7df06809e4b2b9b217f6a01e7bd258ae433b5f [file] [log] [blame]
whesse@chromium.org030d38e2011-07-13 13:23:34 +000012011-07-13: Version 3.4.12
2
3 Added --prof profiling option to d8 shell.
4
5 Fixed a bug where reading a directory in d8 shell hangs (issue 1533).
6
7 Fixed a potential assertion failure in const declarations.
8
9 Fixed an assertion failure in descriptor arrays (issue 1526).
10
11 Enabled fast thread-local storage by default on supported platforms.
12
13 Improved reporting of source position for global variable loads
14 (issue 1527).
15
16
sgjesse@chromium.org6db88712011-07-11 11:41:22 +0000172011-07-11: Version 3.4.11
18
19 Fixed MinGW32 build.
20
21 Fixed a GC bug with RegExp code flushing.
22
23 Implemented Object.defineProperty for proxies.
24
25 Fixed a bug in for/in iteration of arguments objects (issue 1531).
26
27 Added debugger support for inspecting optimized frames (issue 1140).
28
29 Allowed JSObject::PreventExtensions to work for arguments objects.
30
31 Bugfixes and performance work.
32
33
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +0000342011-07-06: Version 3.4.10
35
36 Fixed debugger not breaking on certain "if" statements (issue 1523).
37
38 Fixed assertion failure in runtime profiler when running on IA32
39 without snapshot (issue 1522).
40
41 Fixed ABI for API calls on IA32 (for clang compatibility).
42
43 Introduced code flushing of RegExp code to free memory used by
44 RegExps sooner.
45
46 Fixed linux-tick-processor built wrong version of v8 (issue 1532).
47
48 Fixed assertion failure in v8::TryCache::StackTrace (issue 1529).
49
50 Performance improvements on all platforms.
51
52
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000532011-07-04: Version 3.4.9
54
55 Added support for debugger inspection of locals in optimized frames
56 (issue 1140).
57
58 Fixed SConstruct to pass correct defines to samples/preparser when
59 building with library=shared.
60
61 Made date parser handle ES5 Date Time Strings correctly (issue 1498).
62
63 Fixed a bug in Object.defineProperty on the arguments object.
64
65 Performance improvements on all platforms.
66
67
vegorov@chromium.org3cf47312011-06-29 13:20:01 +0000682011-06-29: Version 3.4.8
69
70 Ensure 16-byte stack alignment on Solaris (issue 1505).
71
sgjesse@chromium.org6db88712011-07-11 11:41:22 +000072 Fix "illegal access" when calling parseInt with a radix
vegorov@chromium.org3cf47312011-06-29 13:20:01 +000073 that is not a smi. (issue 1246).
74
75
ager@chromium.org04921a82011-06-27 13:21:41 +0000762011-06-27: Version 3.4.7
77
78 Fixed 64-bit build on FreeBSD.
79
80 Added API to set the property attributes for the prototype
81 property on functions created from FunctionTemplates.
82
83 Bugfixes and performance work.
84
85
lrn@chromium.orgac2828d2011-06-23 06:29:21 +0000862011-06-22: Version 3.4.6
87
88 Lowered limit on code space for systems with low memory supply.
89
90 Allowed compiling v8_shell with the 'host' toolset (issue 82437).
91
92 Extended setBreakpoint API to accept partial script name (issue 1418).
93
94 Made multi-line comments not count when deciding whether the '-->'
95 comment starter is first on a line. This matches Safari.
96
97 Made handling of non-array recievers in Array length setter correct
98 (issue 1491).
99
100 Added ability to heap profiler to iterate over snapshot's node
101 (issue 1481).
102
103
whesse@chromium.org7b260152011-06-20 15:33:18 +00001042011-06-20: Version 3.4.5
105
106 Fixed issues 794, 1097, 1215(partial), 1417, 1435, 1472, 1473,
107 1476, and 1477.
108
109 Improved code generation for !0 and !1.
110
111 Reduced memory usage for regular expressions with nested qualifiers.
112 (issue 1472)
113
114 Fixed V8 to count line terminators in multi-line comments.
115 (Chromium issue 86431)
116
117 Fixed disassembler=on option for release-mode builds. (issue 1473)
118
119 Performance improvements on all platforms.
120
121
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001222011-06-15: Version 3.4.4
123
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000124 Added snapshot compression support and --stress-opt flag to d8.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000125
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000126 Improved performance of try/catch.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000127
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000128 Several GYP-related changes: Added support for building Xcode project
129 files. Make the ARM simulator build with GYP again. Generate Makefiles
130 for all architectures on Linux.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000131
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000132 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the
133 receiver for strict mode callbacks. (issue 1436)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000134
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000135 Fixed a bug where an array load was incorrectly hoisted by GVN.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000136
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000137 Handle 'undefined' correctly when === has been specialized for doubles.
138 (issue 1434)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000139
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000140 Corrected the limit of local variables in an optimized function from 64
141 to 63.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000142
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000143 Correctly set ReadOnly flag on indexed properties when using the API Set
144 method. (issue 1470)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000145
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000146 Give the correct error message when Object.isExtensible is called on a
147 non-object. (issue 1452)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000148
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000149 Added GetOwnPropertyNames method for Object in the API. Patch by Peter
150 Varga.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000151
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000152 Do not redefine properties unneccesarily in seal and freeze. (issue
153 1447)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000154
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000155 IsExecutionTerminating has an Isolate parameter now.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000156
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000157 Distinguish keyed loads with a symbol key from fast elements loads,
158 avoiding some useless deoptimizations. (issue 1471)
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000159
160
jkummerow@chromium.orge297f592011-06-08 10:05:15 +00001612011-06-08: Version 3.4.3
erik.corry@gmail.com8a177112011-06-08 07:23:54 +0000162
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000163 Clear the global thread table when an isolate is disposed
164 (issue 1433).
erik.corry@gmail.com8a177112011-06-08 07:23:54 +0000165
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000166 Converted time zone name to UTF8 on Windows (issue 1290).
167
168 Limited the number of arguments in a function call to 32766
169 (issue 1413).
170
171 Compress sources of JS libraries in addition to the snapshot.
172
173 Fixed a bug in Lithium environment iteration.
174
175 Performance improvements on all platforms.
erik.corry@gmail.com8a177112011-06-08 07:23:54 +0000176
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000177
erik.corry@gmail.comd6076d92011-06-06 09:39:18 +00001782011-06-06: Version 3.4.2
179
180 More work on ES-Harmony proxies. Still hidden behind a flag.
181
182 Fixed some crash bugs and improved performance.
183
184 Fixed building with gdb debugging support.
185
186 Do not install SIGPROF handler until it is needed.
187
188 Added DateTimeFormat to i18n API.
189
190 Fixed compilation on OpenBSD.
191
192 Take the ulimit into account when sizing the heap. OpenBSD users
193 may still have to increase the default ulimit to run heavy pages in
194 the browser.
195
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000196
ricow@chromium.orgd2be9012011-06-01 06:00:58 +00001972011-06-01: Version 3.4.1
198
199 Fixed JSON stringify issue with arrays.
200
201 Changed calls to JS builtins to be passed undefined when called with
202 implicit receiver.
203
204 Implemented the set trap for Harmony proxies. Proxies still need to
205 be enabled with the --harmony-proxies flag.
206
207
ricow@chromium.orgc54d3652011-05-30 09:20:16 +00002082011-05-30: Version 3.4.0
209
210 Changed calls to undefined property setters to not throw (issue 1355).
211
212 Made RegExp objects not callable.
213
214 Fixed issues on special case large JSON strings in new json parser
215 (issues http://crbug.com/83877 and http://crbug.com/84186).
216
217 Performance improvements on all platforms.
218
219
danno@chromium.org40cb8782011-05-25 07:58:50 +00002202011-05-25: Version 3.3.10
221
222 Fixed calls of strict mode function with an implicit receiver.
223
224 Fixed fast handling of arrays to properly deal with changes to the
225 Object prototype (issue 1403).
226
227 Changed strict mode poison pill to be the same type error function
228 (issue 1387).
229
230 Fixed a debug crash in arguments object handling (issue 1227).
231
232 Fixed a bug in deoptimization on x64 (issue 1404).
233
234 Performance improvements and bug fixes on all platforms.
235
236
ager@chromium.orgea91cc52011-05-23 06:06:11 +00002372011-05-23: Version 3.3.9
238
239 Added DateTimeFormat class to experimental i18n API.
240
241 Extended preparser to give early errors for some strict mode
242 restrictions.
243
244 Removed legacy execScript function from V8.
245
246 Extended isolate API with the ability to add embedder-specific
247 data to an isolate.
248
249 Added basic support for polymorphic loads from JS and external
250 arrays.
251
252 Fixed bug in handling of switch statements in the optimizing
253 compiler.
254
255
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +00002562011-05-18: Version 3.3.8
257
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000258 Added MarkIndependent to the persistent handle API. Independent
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +0000259 handles are independent of all other persistent handles and can be
260 garbage collected more frequently.
261
ager@chromium.orgea91cc52011-05-23 06:06:11 +0000262 Implemented the get trap for Harmony proxies. Proxies are enabled
kmillikin@chromium.orgc53e10d2011-05-18 09:12:58 +0000263 with the --harmony-proxies flag.
264
265 Performance improvements and bug fixes on all platforms.
266
267
vegorov@chromium.org7304bca2011-05-16 12:14:13 +00002682011-05-16: Version 3.3.7
269
270 Updated MIPS infrastructure files.
271
272 Performance improvements and bug fixes on all platforms.
273
274
karlklose@chromium.org83a47282011-05-11 11:54:09 +00002752011-05-11: Version 3.3.6
276
277 Updated MIPS infrastructure files.
278
279 Added method IsCallable for Object to the API.
280 Patch by Peter Varga.
281
282
lrn@chromium.org1c092762011-05-09 09:42:16 +00002832011-05-09: Version 3.3.5
284
285 Fixed build on FreeBSD. Patch by Akinori MUSHA.
286
287 Added check that receiver is JSObject on API calls.
288
289 Implemented CallAsConstructor method for Object in the API (Issue 1348).
290 Patch by Peter Varga.
291
292 Added CallAsFunction method to the Object class in the API (Issue 1336).
293 Patch by Peter Varga.
294
295 Added per-isolate locking and unlocking.
296
297 Fixed bug in x64 >>> operator (Issue 1359).
298
299
fschneider@chromium.orgfb144a02011-05-04 12:43:48 +00003002011-05-04: Version 3.3.4
301
302 Implemented API to disallow code generation from strings for a context
303 (issue 1258).
304
305 Fixed bug with whitespaces in parseInt (issue 955).
306
307 Fixed bug with == comparison of Date objects (issue 1356).
308
309 Added GYP variables for ARM code generation:
310 v8_can_use_vfp_instructions, v8_can_use_unaligned_accesses
311 and v8_use_arm_eabi_hardfloat.
312
313
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +00003142011-05-02: Version 3.3.3
315
316 Added support for generating Visual Studio solution and project files
317 using GYP.
318
319 Implemented support for ARM EABI calling convention variation where
320 floating-point arguments are passed in registers (hardfloat).
321
322 Added Object::HasOwnProperty() to the API.
323
324 Added support for compressing startup data to reduce binary size. This
325 includes build time support and an API for the embedder to decompress
326 the startup data before initializing V8.
327
328 Reduced the profiling hooks overhead from >400% to 25% when using
329 ll_prof.
330
331 Performance improvements and bug fixes on all platforms.
332
333
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +00003342011-04-27: Version 3.3.2
335
336 Fixed crash bug on ARM with no VFP3 hardware.
337
338 Fixed compilation of V8 without debugger support.
339
340 Improved performance on JSLint.
341
342 Added support Float64 WebGL arrays.
343
344 Fixed crash bug in regexp replace.
345
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000346
ricow@chromium.orgdcebac02011-04-20 09:44:50 +00003472011-04-20: Version 3.3.1
348
349 Reduced V8 binary size by removing virtual functions from hydrogen.
350
351 Fixed crash bug on x64.
352
353 Performance improvements on ARM and IA32.
354
355
danno@chromium.org160a7b02011-04-18 15:51:38 +00003562011-04-18: Version 3.3.0
357
358 Fixed bug in floating point rounding in Crankshaft on ARM
359 (issue 958)
360
361 Fixed a number of issues with running without VFPv3 support on ARM
362 (issue 1315)
363
364 Introduced v8Locale.Collator, a partial implementation of Collator
365 per last ECMAScript meeting + mailing list.
366
367 Minor performance improvements and bug fixes.
368
369
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +00003702011-04-13: Version 3.2.10
371
372 Fixed bug in external float arrays on ARM (issue 1323).
373
374 Minor performance improvements and bug fixes.
375
376
karlklose@chromium.org44bc7082011-04-11 12:33:05 +00003772011-04-11: Version 3.2.9
378
379 Removed support for ABI prior to EABI on ARM.
380
381 Fixed multiple crash bugs.
382
383 Added GCMole to the repository, a simple static analysis tool that
384 searches for GC-unsafe evaluation order dependent callsites.
385
386 Made preparser API be exported in shared libraries.
387
388 Fixed multiple issues in EcmaScript 5 strict mode implementation.
389
390 Fixed mutable __proto__ property if object is not extensible
391 (Issue 1309).
392
393 Fixed auto suspension of the sampler thread.
394
395
vegorov@chromium.org74f333b2011-04-06 11:17:46 +00003962011-04-06: Version 3.2.8
397
398 Exposed WebGL typed array constructors in the shell sample.
399
400 Performance improvements on all platforms.
401
402
kmillikin@chromium.orgc36ce6e2011-04-04 08:25:31 +00004032011-04-04: Version 3.2.7
404
405 Disabled the original 'classic' V8 code generator. Crankshaft is
406 now the default on all platforms.
407
408 Changed the heap profiler to use more descriptive names.
409
410 Performance and stability improvements to isolates on all platforms.
411
412
lrn@chromium.org7516f052011-03-30 08:52:27 +00004132011-03-30: Version 3.2.6
414
415 Fixed xcode build warning in shell.cc (out of order initialization).
416
417 Fixed null-pointer dereference in the compiler when running without
418 SSE3 support (Chromium issue 77654).
419
420 Fixed x64 compilation error due to some dead code. (Issue 1286)
421
422 Introduced scons target to build the preparser stand-alone example.
423
424 Made FreeBSD build and pass all tests.
425
426
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +00004272011-03-28: Version 3.2.5
428
lrn@chromium.org7516f052011-03-30 08:52:27 +0000429 Fixed build with Irregexp interpreter (issue 1266).
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000430
431 Added Crankshaft support for external arrays.
432
433 Fixed two potential crash bugs.
434
435
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +00004362011-03-23: Version 3.2.4
437
438 Added isolates which allows several V8 instances in the same process.
439 This is controlled through the new Isolate class in the API.
440
441 Implemented more of EcmaScript 5 strict mode.
442
443 Reduced the time it takes to make detailed heap snapshot.
444
445 Added a number of commands to the ARM simulator and enhanced the ARM
446 disassembler.
447
448
ricow@chromium.orgbadaffc2011-03-17 12:15:27 +00004492011-03-17: Version 3.2.3
450
451 Fixed a number of crash bugs.
452
453 Fixed Array::New(length) to return an array with a length (issue 1256).
454
455 Fixed FreeBSD build.
456
457 Changed __defineGetter__ to not throw (matching the behavior of Safari).
458
459 Implemented more of EcmaScript 5 strict mode.
460
461 Improved Crankshaft performance on all platforms.
462
463
whesse@chromium.orgb08986c2011-03-14 16:13:42 +00004642011-03-14: Version 3.2.2
465
466 Fixed a number of crash and correctness bugs.
467
468 Improved Crankshaft performance on all platforms.
469
470 Fixed Crankshaft on Solaris/Illumos.
471
472
danno@chromium.org4d3fe4e2011-03-10 10:14:28 +00004732011-03-10: Version 3.2.1
474
475 Fixed a number of crash bugs.
476
477 Improved Crankshaft for x64 and ARM.
478
479 Implemented more of EcmaScript 5 strict mode.
480
481
karlklose@chromium.org8f806e82011-03-07 14:06:08 +00004822011-03-07: Version 3.2.0
483
484 Fixed a number of crash bugs.
485
486 Turned on Crankshaft by default on x64 and ARM.
487
488 Improved Crankshaft for x64 and ARM.
489
490 Implemented more of EcmaScript 5 strict mode.
491
492
ager@chromium.org9ee27ae2011-03-02 13:43:26 +00004932011-03-02: Version 3.1.8
494
495 Fixed a number of crash bugs.
496
497 Improved Crankshaft for x64 and ARM.
498
499 Implemented more of EcmaScript 5 strict mode.
500
501 Fixed issue with unaligned reads and writes on ARM.
502
503 Improved heap profiler support.
504
505
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +00005062011-02-28: Version 3.1.7
507
508 Fixed a number of crash bugs.
509
510 Improved Crankshaft for x64 and ARM.
511
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000512 Fixed implementation of indexOf/lastIndexOf for sparse
vegorov@chromium.org5d6c1f52011-02-28 13:13:38 +0000513 arrays (http://crbug.com/73940).
514
515 Fixed bug in map space compaction (http://crbug.com/59688).
516
517 Added support for direct getter accessors calls on ARM.
518
519
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +00005202011-02-24: Version 3.1.6
521
522 Fixed a number of crash bugs.
523
524 Added support for Cygwin (issue 64).
525
526 Improved Crankshaft for x64 and ARM.
527
528 Added Crankshaft support for stores to pixel arrays.
529
530 Fixed issue in CPU profiler with Crankshaft.
531
532
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +00005332011-02-16: Version 3.1.5
534
535 Change RegExp parsing to disallow /(*)/.
536
537 Added GDB JIT support for ARM.
538
539 Fixed several crash bugs.
540
541 Performance improvements on the IA32 platform.
542
543
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +00005442011-02-14: Version 3.1.4
545
546 Fixed incorrect compare of prototypes of the global object (issue
547 1082).
548
549 Fixed a bug in optimizing calls to global functions (issue 1106).
550
551 Made optimized Function.prototype.apply safe for non-JSObject first
552 arguments (issue 1128).
553
554 Fixed an error related to element accessors on Object.prototype and
555 parser errors (issue 1130).
556
557 Fixed a bug in sorting an array with large array indices (issue 1131).
558
559 Properly treat exceptions thrown while compiling (issue 1132).
560
561 Fixed bug in register requirements for function.apply (issue 1133).
562
563 Fixed a representation change bug in the Hydrogen graph construction
564 (issue 1134).
565
566 Fixed the semantics of delete on parameters (issue 1136).
567
568 Fixed a optimizer bug related to moving instructions with side effects
569 (issue 1138).
570
571 Added support for the global object in Object.keys (issue 1150).
572
573 Fixed incorrect value for Math.LOG10E
574 (issue http://code.google.com/p/chromium/issues/detail?id=72555)
575
576 Performance improvements on the IA32 platform.
577
578 Implement assignment to undefined reference in ES5 Strict Mode.
579
580
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +00005812011-02-09: Version 3.1.3
582
583 Fixed a bug triggered by functions with huge numbers of declared
584 arguments.
585
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000586 Fixed zap value aliasing a real object - debug mode only (issue 866).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +0000587
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000588 Fixed issue where Array.prototype.__proto__ had been set to null
589 (issue 1121).
erik.corry@gmail.comd91075f2011-02-10 07:45:38 +0000590
591 Fixed stability bugs in Crankshaft for x86.
592
593
ricow@chromium.org83aa5492011-02-07 12:42:56 +00005942011-02-07: Version 3.1.2
595
596 Added better security checks when accessing properties via
597 Object.getOwnPropertyDescriptor.
598
599 Fixed bug in Object.defineProperty and related access bugs (issues
600 992, 1083 and 1092).
601
602 Added LICENSE.v8, LICENSE.strongtalk and LICENSE.valgrind to ease
603 copyright notice generation for embedders.
604
605
kmillikin@chromium.org31b12772011-02-02 16:08:26 +00006062011-02-02: Version 3.1.1
607
608 Perform security checks before fetching the value in
609 Object.getOwnPropertyDescriptor.
610
611 Fixed a bug in Array.prototype.splice triggered by passing no
612 arguments.
613
614 Fixed bugs in -0 in arithmetic and in Math.pow.
615
616 Fixed bugs in the register allocator and in switching from optimized
617 to unoptimized code.
618
619
6202011-01-31: Version 3.1.0
621
whesse@chromium.org7a392b32011-01-31 11:30:36 +0000622 Performance improvements on all platforms.
623
624
ager@chromium.org378b34e2011-01-28 08:04:38 +00006252011-01-28: Version 3.0.12
626
627 Added support for strict mode parameter and object property
628 validation.
629
630 Fixed a couple of crash bugs.
631
632
ager@chromium.org0ee099b2011-01-25 14:06:47 +00006332011-01-25: Version 3.0.11
634
635 Fixed a bug in deletion of lookup slots that could cause global
636 variables to be accidentally deleted (http://crbug.com/70066).
637
638 Added support for strict mode octal literal verification.
639
640 Fixed a couple of crash bugs (issues 1070 and 1071).
641
642
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +00006432011-01-24: Version 3.0.10
644
645 Fixed External::Wrap for 64-bit addresses (issue 1037).
646
ager@chromium.org0ee099b2011-01-25 14:06:47 +0000647 Fixed incorrect .arguments variable proxy handling in the full
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000648 code generator (issue 1060).
649
650 Introduced partial strict mode support.
651
sgjesse@chromium.org496c03a2011-02-14 12:05:43 +0000652 Changed formatting of recursive error messages to match Firefox and
653 Safari (issue http://crbug.com/70334).
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000654
655 Fixed incorrect rounding for float-to-integer conversions for external
ager@chromium.org0ee099b2011-01-25 14:06:47 +0000656 array types, which implement the Typed Array spec
vegorov@chromium.org0a4e9012011-01-24 12:33:13 +0000657 (issue http://crbug.com/50972).
658
659 Performance improvements on the IA32 platform.
660
661
erik.corry@gmail.com0511e242011-01-19 11:11:08 +00006622011-01-19: Version 3.0.9
663
664 Added basic GDB JIT Interface integration.
665
666 Make invalid break/continue statements a syntax error instead of a
667 runtime error.
668
669
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00006702011-01-17: Version 3.0.8
671
672 Exposed heap size limit to the heap statistics gathered by
erik.corry@gmail.com0511e242011-01-19 11:11:08 +0000673 the GetHeapStatistics API.
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +0000674
675 Wrapped external pointers more carefully (issue 1037).
676
677 Hardened the implementation of error objects to avoid setters
678 intercepting the properties set then throwing an error.
679
680 Avoided trashing the FPSCR when calculating Math.floor on ARM.
681
682 Performance improvements on the IA32 platform.
683
684
6852011-01-10: Version 3.0.7
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000686
687 Stopped calling inherited setters when creating object literals
688 (issue 1015).
689
690 Changed interpretation of malformed \c? escapes in RegExp to match
691 JSC.
692
693 Enhanced the command-line debugger interface and fixed some minor
694 bugs in the debugger.
695
696 Performance improvements on the IA32 platform.
697
698
sgjesse@chromium.orgc6c57182011-01-17 12:24:25 +00006992011-01-05: Version 3.0.6
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000700
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000701 Allowed getters and setters on JSArray elements (issue 900).
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000702
703 Stopped JSON objects from hitting inherited setters (part of
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000704 issue 1015).
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000705
706 Allowed numbers and strings as names of getters/setters in object
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000707 initializer (issue 820).
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000708
709 Added use_system_v8 option to gyp (off by default), to make it easier
710 for Linux distributions to ship with system-provided V8 library.
711
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000712 Exported external array data accessors (issue 1016).
lrn@chromium.org5d00b602011-01-05 09:51:43 +0000713
714 Added labelled thread names to help with debugging (on Linux).
715
716
fschneider@chromium.org9e3e0b62011-01-03 10:16:46 +00007172011-01-03: Version 3.0.5
718
719 Fixed a couple of cast errors for gcc-3.4.3.
720
721 Performance improvements in GC and IA32 code generator.
722
723
whesse@chromium.org023421e2010-12-21 12:19:12 +00007242010-12-21: Version 3.0.4
725
726 Added Date::ResetCache() to the API so that the cached values in the
727 Date object can be reset to allow live DST / timezone changes.
728
729 Extended existing support for printing (while debugging) the contents
730 of objects. Added support for printing objects from release builds.
731
732 Fixed V8 issues 989, 1006, and 1007.
733
734
ager@chromium.org5f0c45f2010-12-17 08:51:21 +00007352010-12-17: Version 3.0.3
736
737 Reapplied all changes for version 3.0.1.
738
739 Improved debugger protocol for remote debugging.
740
741 Added experimental support for using gyp to generate build files
742 for V8.
743
744 Fixed implementation of String::Write in the API (issue 975).
745
746
lrn@chromium.org8541d772010-12-15 12:05:09 +00007472010-12-15: Version 3.0.2
748
749 Revert version 3.0.1 and patch 3.0.1.1.
750
751
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +00007522010-12-13: Version 3.0.1
753
754 Added support for an experimental internationalization API as an
755 extension. This extension is disabled by default but can be enabled
756 when building V8. The ECMAScript internationalization strawman is
757 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
758
759 Made RegExp character class parsing stricter. This mirrors a change
760 to RegExp parsing in WebKit.
761
762 Fixed a bug in Object.defineProperty when used to change attributes
763 of an existing property. It incorrectly set the property value to
764 undefined (issue 965).
765
766 Fixed several different compilation failures on various platforms
767 caused by the 3.0.0 release.
768
769 Optimized Math.pow so it can work on unboxed doubles.
770
771 Sped up quoting of JSON strings by removing one traversal of the
772 string.
773
774
kasperl@chromium.orga5551262010-12-07 12:49:48 +00007752010-12-07: Version 3.0.0
776
777 Improved performance by (partially) addressing issue 957 on
778 IA-32. Still needs more work for the other architectures.
779
780
ager@chromium.orgbeb25712010-11-29 08:02:25 +00007812010-11-29: Version 2.5.9
782
783 Fixed crashes during GC caused by partially initialize heap
784 objects.
785
786 Fixed bug in process sample that caused memory leaks.
787
788 Improved performance on ARM by implementing missing stubs and
789 inlining.
790
791 Improved heap profiler support.
792
793 Added separate seeding on Windows of the random number generator
794 used internally by the compiler (issue 936).
795
796 Exposed API for getting the name of the function used to construct
797 an object.
798
799 Fixed date parser to handle one and two digit millisecond
800 values (issue 944).
801
802 Fixed number parsing to disallow space between sign and
803 digits (issue 946).
804
805
vegorov@chromium.org21b5e952010-11-23 10:24:40 +00008062010-11-23: Version 2.5.8
807
808 Removed dependency on Gay's dtoa.
809
810 Improved heap profiler precision and speed.
811
812 Reduced overhead of callback invocations on ARM.
813
814
erik.corry@gmail.com4a6c3272010-11-18 12:04:40 +00008152010-11-18: Version 2.5.7
816
817 Fixed obscure evaluation order bug (issue 931).
818
819 Split the random number state between JavaScript and the private API.
820
821 Fixed performance bug causing GCs when generating stack traces on
822 code from very large scripts.
823
824 Fixed bug in parser that allowed (foo):42 as a labelled statement
825 (issue 918).
826
827 Provide more accurate results about used heap size via
828 GetHeapStatistics.
829
830 Allow build-time customization of the max semispace size.
831
832 Made String.prototype.split honor limit when separator is empty
833 (issue 929).
834
835 Added missing failure check after expecting an identifier in
836 preparser (Chromium issue 62639).
837
838
ager@chromium.org01fe7df2010-11-10 11:59:11 +00008392010-11-10: Version 2.5.6
840
841 Added support for VFP rounding modes to the ARM simulator.
842
843 Fixed multiplication overflow bug (issue 927).
844
845 Added a limit for the amount of executable memory (issue 925).
846
847
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +00008482010-11-08: Version 2.5.5
849
850 Added more aggressive GC of external objects in near out-of-memory
851 situations.
852
853 Fixed a bug that gave the incorrect result for String.split called
854 on the empty string (issue 924).
855
856
lrn@chromium.orgfa943b72010-11-03 08:14:36 +00008572010-11-03: Version 2.5.4
858
whesse@chromium.orgf0ac72d2010-11-08 12:47:26 +0000859 Improved V8 VFPv3 runtime detection to address issue 914.
lrn@chromium.orgfa943b72010-11-03 08:14:36 +0000860
861
fschneider@chromium.orge03fb642010-11-01 12:34:09 +00008622010-11-01: Version 2.5.3
863
864 Fixed a bug that prevents constants from overwriting function values
865 in object literals (issue 907).
866
867 Fixed a bug with reporting of impossible nested calls of DOM functions
868 (issue http://crbug.com/60753).
869
870
lrn@chromium.org303ada72010-10-27 09:33:13 +00008712010-10-27: Version 2.5.2
872
873 Improved sampler resolution on Linux.
874
875 Allowed forcing the use of a simulator from the build script
876 independently of the host architecture.
877
kmillikin@chromium.orgd2c22f02011-01-10 08:15:37 +0000878 Fixed FreeBSD port (issue 912).
lrn@chromium.org303ada72010-10-27 09:33:13 +0000879
880 Made windows-tick-processor respect D8_PATH.
881
882 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms.
883
884
whesse@chromium.org4a5224e2010-10-20 12:37:07 +00008852010-10-20: Version 2.5.1
886
887 Fixed bug causing spurious out of memory exceptions
888 (issue http://crbug.com/54580).
889
890 Fixed compilation error on Solaris platform (issue 901).
891
892 Fixed error in strtod (string to floating point number conversion)
893 due to glibc's use of 80-bit floats in the FPU on 32-bit linux.
894
895 Adjusted randomized allocations of executable memory to have 64k
896 granularity (issue http://crbug.com/56036).
897
898 Supported profiling using kernel perf_events on linux. Added ll_prof
899 script to tools and --ll-prof flag to V8.
900
901
vegorov@chromium.org42841962010-10-18 11:18:59 +00009022010-10-18: Version 2.5.0
903
904 Fixed bug in cache handling of lastIndex on global regexps
905 (issue http://crbug.com/58740).
906
907 Added USE_SIMULATOR macro that explicitly indicates that we wish to use
908 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
kmillikin@chromium.orgfacd82d2010-12-13 18:00:51 +0000909 from Hewlett-Packard Development Company, LP).
vegorov@chromium.org42841962010-10-18 11:18:59 +0000910
911 Fixed compilation error on ARM with gcc 4.4 (issue 894).
912
913
9142010-10-13: Version 2.4.9
ager@chromium.orgb61a0d12010-10-13 08:35:23 +0000915
916 Fixed a bug in the handling of conditional expressions in test
917 contexts in compiler for top-level code.
918
919 Added "//@ sourceURL" information to the StackTrace API.
920
921 Exposed RegExp construction through the API.
922
923
ricow@chromium.orgeb7c1442010-10-04 08:54:21 +00009242010-10-04: Version 2.4.8
925
926 Fixed a bug in ResumeProfilerEx causing it to not always write out the
927 whole snapshot (issue 868).
928
929 Performance improvements on all platforms.
930
931
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +00009322010-09-30: Version 2.4.7
933
934 Changed the command-line flag --max-new-space-size to be in kB and the
935 flag --max-old-space-size to be in MB (previously they were in bytes).
936
937 Added Debug::CancelDebugBreak to the debugger API.
938
939 Fixed a bug in getters for negative numeric property names
940 (https://bugs.webkit.org/show_bug.cgi?id=46689).
941
942 Performance improvements on all platforms.
943
944
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +00009452010-09-27: Version 2.4.6
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +0000946
whesse@chromium.org4a1fe7d2010-09-27 12:32:04 +0000947 Fixed assertion failure related to copy-on-write arrays (issue 876).
948
949 Fixed build failure of 64-bit V8 on Windows.
950
951 Fixed a bug in RegExp (issue http://crbug.com/52801).
952
953 Improved the profiler's coverage to cover more functions (issue 858).
954
955 Fixed error in shift operators on 64-bit V8
956 (issue http://crbug.com/54521).
957
958
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00009592010-09-22: Version 2.4.5
kmillikin@chromium.orgf05f2912010-09-30 10:07:24 +0000960
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +0000961 Changed the RegExp benchmark to exercise the regexp engine on different
962 inputs by scrambling the input strings.
963
964 Fixed a bug in keyed loads on strings.
965
966 Fixed a bug with loading global function prototypes.
967
968 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999).
969
970 Performance improvements on all platforms.
971
972
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +00009732010-09-15: Version 2.4.4
974
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +0000975 Fixed bug with hangs on very large sparse arrays.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000976
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +0000977 Now tries harder to free up memory when running out of space.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000978
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +0000979 Added heap snapshots to JSON format to API.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000980
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +0000981 Recalibrated benchmarks.
erik.corry@gmail.comd88afa22010-09-15 12:33:05 +0000982
983
sgjesse@chromium.org2ec107f2010-09-13 09:19:46 +00009842010-09-13: Version 2.4.3
985
986 Made Date.parse properly handle TZ offsets (issue 857).
987
988 Performance improvements on all platforms.
989
990
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00009912010-09-08: Version 2.4.2
992
993 Fixed GC crash bug.
994
995 Fixed stack corruption bug.
996
997 Fixed compilation for newer C++ compilers that found Operand(0)
998 ambiguous.
999
1000
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +000010012010-09-06: Version 2.4.1
1002
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001003 Added the ability for an embedding application to receive a callback
1004 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates
1005 (V8::RemoveMemoryAllocationCallback) from the OS.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001006
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001007 Fixed several JSON bugs (including issue 855).
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001008
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001009 Fixed memory overrun crash bug triggered during V8's tick-based
1010 profiling.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001011
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001012 Performance improvements on all platforms.
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001013
1014
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +000010152010-09-01: Version 2.4.0
1016
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001017 Fixed bug in Object.freeze and Object.seal when Array.prototype or
1018 Object.prototype are changed (issue 842).
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001019
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001020 Updated Array.splice to follow Safari and Firefox when called
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001021 with zero arguments.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001022
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001023 Fixed a missing live register when breaking at keyed loads on ARM.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001024
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001025 Performance improvements on all platforms.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +00001026
1027
ricow@chromium.org65fae842010-08-25 15:26:24 +000010282010-08-25: Version 2.3.11
1029
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001030 Fixed bug in RegExp related to copy-on-write arrays.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001031
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001032 Refactored tools/test.py script, including the introduction of
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001033 VARIANT_FLAGS that allows specification of sets of flags with which
1034 all tests should be run.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001035
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001036 Fixed a bug in the handling of debug breaks in CallIC.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001037
ager@chromium.org5b2fbee2010-09-08 06:38:15 +00001038 Performance improvements on all platforms.
ricow@chromium.org65fae842010-08-25 15:26:24 +00001039
1040
erik.corry@gmail.com145eff52010-08-23 11:36:18 +000010412010-08-23: Version 2.3.10
1042
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001043 Fixed bug in bitops on ARM.
erik.corry@gmail.com145eff52010-08-23 11:36:18 +00001044
1045 Build fixes for unusual compilers.
1046
1047 Track high water mark for RWX memory.
1048
1049 Performance improvements on all platforms.
1050
1051
ricow@chromium.org0b9f8502010-08-18 07:45:01 +000010522010-08-18: Version 2.3.9
1053
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001054 Fixed compilation for ARMv4 on OpenBSD/FreeBSD.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00001055
1056 Removed specialized handling of GCC 4.4 (issue 830).
1057
kmillikin@chromium.org3cdd9e12010-09-06 11:39:48 +00001058 Fixed DST cache to take into account the suspension of DST in
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00001059 Egypt during the 2010 Ramadan (issue http://crbug.com/51855).
1060
ricow@chromium.org65fae842010-08-25 15:26:24 +00001061 Performance improvements on all platforms.
ricow@chromium.org0b9f8502010-08-18 07:45:01 +00001062
1063
ager@chromium.orgea4f62e2010-08-16 16:28:43 +000010642010-08-16: Version 2.3.8
1065
1066 Fixed build with strict aliasing on GCC 4.4 (issue 463).
1067
1068 Fixed issue with incorrect handling of custom valueOf methods on
1069 string wrappers (issue 760).
1070
1071 Fixed compilation for ARMv4 (issue 590).
1072
1073 Improved performance.
1074
1075
vegorov@chromium.org26c16f82010-08-11 13:41:03 +000010762010-08-11: Version 2.3.7
1077
1078 Reduced size of heap snapshots produced by heap profiler (issue 783).
1079
1080 Introduced v8::Value::IsRegExp method.
1081
1082 Fixed CPU profiler crash in start / stop sequence when non-existent
1083 name is passed (issue http://crbug.com/51594).
1084
1085 Introduced new indexed property query callbacks API (issue 816). This
1086 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled
1087 by default.
1088
1089 Removed support for object literal get/set with number/string
1090 property name.
1091
1092 Fixed handling of JSObject::elements in CalculateNetworkSize
1093 (issue 822).
1094
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001095 Allowed compiling with strict aliasing enabled on GCC 4.4 (issue 463).
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00001096
1097
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +000010982010-08-09: Version 2.3.6
1099
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00001100 RegExp literals create a new object every time they are evaluated
1101 (issue 704).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00001102
vegorov@chromium.org26c16f82010-08-11 13:41:03 +00001103 Object.seal and Object.freeze return the modified object (issue 809).
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00001104
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001105 Fixed building using GCC 4.4.4.
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +00001106
1107
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +000011082010-08-04: Version 2.3.5
1109
1110 Added support for ES5 property names. Object initialisers and
1111 dot-notation property access now allows keywords. Also allowed
1112 non-identifiers after "get" or "set" in an object initialiser.
1113
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001114 Randomized the addresses of allocated executable memory on Windows.
sgjesse@chromium.orgc3a01972010-08-04 09:46:24 +00001115
1116
whesse@chromium.orge90029b2010-08-02 11:52:17 +000011172010-08-02: Version 2.3.4
1118
1119 Fixed problems in implementation of ES5 function.prototype.bind.
1120
1121 Fixed error when using apply with arguments object on ARM (issue 784).
1122
1123 Added setting of global flags to debugger protocol.
1124
1125 Fixed an error affecting cached results of sin and cos (issue 792).
1126
1127 Removed memory leak from a boundary case where V8 is not initialized.
1128
1129 Fixed issue where debugger could set breakpoints outside the body
1130 of a function.
1131
1132 Fixed issue in debugger when using both live edit and step in features.
1133
1134 Added Number-letter (Nl) category to Unicode tables. These characters
1135 can now be used in identifiers.
1136
1137 Fixed an assert failure on X64 (issue 806).
1138
1139 Performance improvements on all platforms.
1140
1141
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +000011422010-07-26: Version 2.3.3
1143
1144 Fixed error when building the d8 shell in a fresh checkout.
1145
1146 Implemented Function.prototype.bind (ES5 15.3.4.5).
1147
1148 Fixed an error in inlined stores on ia32.
1149
1150 Fixed an error when setting a breakpoint at the end of a function
1151 that does not end with a newline character.
1152
1153 Performance improvements on all platforms.
1154
1155
fschneider@chromium.orged78ffd2010-07-21 11:05:19 +000011562010-07-21: Version 2.3.2
1157
1158 Fixed compiler warnings when building with LLVM.
1159
1160 Fixed a bug with for-in applied to strings (issue 785).
1161
1162 Performance improvements on all platforms.
1163
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +00001164
ricow@chromium.org4980dff2010-07-19 08:33:45 +000011652010-07-19: Version 2.3.1
1166
1167 Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
1168
1169 Fixed bug related to code flushing while compiling a lazy
1170 compilable function (issue http://crbug.com/49099).
1171
1172 Performance improvements on all platforms.
1173
1174
ager@chromium.orgb5737492010-07-15 09:29:43 +000011752010-07-15: Version 2.3.0
1176
1177 Added ES5 Object.seal and Object.isSealed.
1178
1179 Added debugger API for scheduling debugger commands from a
1180 separate thread.
1181
1182
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +000011832010-07-14: Version 2.2.24
1184
1185 Added API for capturing stack traces for uncaught exceptions.
1186
1187 Fixed crash bug when preparsing from a non-external V8 string
1188 (issue 775).
1189
1190 Fixed JSON.parse bug causing input not to be converted to string
1191 (issue 764).
1192
1193 Added ES5 Object.freeze and Object.isFrozen.
1194
1195 Performance improvements on all platforms.
1196
1197
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000011982010-07-07: Version 2.2.23
1199
1200 API change: Convert Unicode code points outside the basic multilingual
1201 plane to the replacement character. Previous behavior was to silently
1202 truncate the value to 16 bits.
1203
1204 Fixed crash: handle all flat string types in regexp replace.
1205
1206 Prevent invalid pre-parsing data passed in through the API from
1207 crashing V8.
1208
1209 Performance improvements on all platforms.
1210
ager@chromium.org6a2b0aa2010-07-13 20:58:03 +00001211
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000012122010-07-05: Version 2.2.22
1213
1214 Added ES5 Object.isExtensible and Object.preventExtensions.
1215
1216 Enabled building V8 as a DLL.
1217
1218 Fixed a bug in date code where -0 was not interpreted as 0
1219 (issue 736).
1220
1221 Performance improvements on all platforms.
1222
1223
lrn@chromium.org32d961d2010-06-30 09:09:34 +000012242010-06-30: Version 2.2.21
1225
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001226 Fixed bug in externalizing some ASCII strings (Chromium issue 47824).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001227
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001228 Updated JSON.stringify to floor the space parameter (issue 753).
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001229
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001230 Updated the Mozilla test expectations to the newest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001231
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001232 Updated the ES5 Conformance Test expectations to the latest version.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001233
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001234 Updated the V8 benchmark suite.
lrn@chromium.org32d961d2010-06-30 09:09:34 +00001235
1236 Provide actual breakpoints locations in response to setBreakpoint
1237 and listBreakpoints requests.
1238
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001239
fschneider@chromium.org40b9da32010-06-28 11:29:21 +000012402010-06-28: Version 2.2.20
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001241
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001242 Fixed bug with for-in on x64 platform (issue 748).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001243
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001244 Fixed crash bug on x64 platform (issue 756).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001245
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001246 Fixed bug in Object.getOwnPropertyNames. (chromium issue 41243).
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001247
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001248 Fixed a bug on ARM that caused the result of 1 << x to be
fschneider@chromium.org40b9da32010-06-28 11:29:21 +00001249 miscalculated for some inputs.
1250
1251 Performance improvements on all platforms.
1252
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001253
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +000012542010-06-23: Version 2.2.19
1255
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001256 Fixed bug that causes the build to break when profillingsupport=off
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00001257 (issue 738).
1258
1259 Added expose-externalize-string flag for testing extensions.
1260
1261 Resolve linker issues with using V8 as a DLL causing a number of
1262 problems with unresolved symbols.
1263
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001264 Fixed build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
ricow@chromium.org5ad5ace2010-06-23 09:06:43 +00001265 defined.
1266
1267 Performance improvements on all platforms.
1268
1269
whesse@chromium.org2c186ca2010-06-16 11:32:39 +000012702010-06-16: Version 2.2.18
1271
1272 Added API functions to retrieve information on indexed properties
1273 managed by the embedding layer. Fixes bug 737.
1274
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001275 Made ES5 Object.defineProperty support array elements. Fixes bug 619.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001276
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001277 Added heap profiling to the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001278
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001279 Removed old named property query from the API.
whesse@chromium.org2c186ca2010-06-16 11:32:39 +00001280
1281 Incremental performance improvements.
1282
1283
ager@chromium.org2cc82ae2010-06-14 07:35:38 +000012842010-06-14: Version 2.2.17
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001285
ager@chromium.org2cc82ae2010-06-14 07:35:38 +00001286 Improved debugger support for stepping out of functions.
1287
1288 Incremental performance improvements.
1289
1290
12912010-06-09: Version 2.2.16
1292
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001293 Removed the SetExternalStringDiposeCallback API. Changed the
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001294 disposal of external string resources to call a virtual Dispose
1295 method on the resource.
1296
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +00001297 Added support for more precise break points when debugging and
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +00001298 stepping.
1299
1300 Memory usage improvements on all platforms.
1301
1302
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000013032010-06-07: Version 2.2.15
1304
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001305 Added an API to control the disposal of external string resources.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001306
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001307 Added missing initialization of a couple of variables which makes
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001308 some compilers complaint when compiling with -Werror.
1309
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001310 Improved performance on all platforms.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +00001311
1312
sgjesse@chromium.org82dbbab2010-06-02 08:57:44 +000013132010-06-02: Version 2.2.14
1314
1315 Fixed a crash in code generated for String.charCodeAt.
1316
1317 Fixed a compilation issue with some GCC versions (issue 727).
1318
1319 Performance optimizations on x64 and ARM platforms.
1320
1321
ricow@chromium.org30ce4112010-05-31 10:38:25 +000013222010-05-31: Version 2.2.13
1323
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001324 Implemented Object.getOwnPropertyDescriptor for element indices and
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001325 strings (issue 599).
1326
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001327 Fixed bug for windows 64 bit C calls from generated code.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001328
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001329 Added new scons flag unalignedaccesses for arm builds.
ricow@chromium.org30ce4112010-05-31 10:38:25 +00001330
1331 Performance improvements on all platforms.
1332
1333
kmillikin@chromium.org9155e252010-05-26 13:27:57 +000013342010-05-26: Version 2.2.12
1335
1336 Allowed accessors to be defined on objects rather than just object
1337 templates.
1338
1339 Changed the ScriptData API.
1340
1341
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +000013422010-05-21: Version 2.2.11
1343
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001344 Fixed crash bug in liveedit on 64 bit.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001345
1346 Use 'full compiler' when debugging is active. This should increase
1347 the density of possible break points, making single step more fine
1348 grained. This will only take effect for functions compiled after
1349 debugging has been started, so recompilation of all functions is
1350 required to get the full effect. IA32 and x64 only for now.
1351
1352 Misc. fixes to the Solaris build.
1353
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001354 Added new flags --print-cumulative-gc-stat and --trace-gc-nvp.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001355
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001356 Added filtering of CPU profiles by security context.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001357
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001358 Fixed crash bug on ARM when running without VFP2 or VFP3.
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001359
1360 Incremental performance improvements in all backends.
1361
1362
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000013632010-05-17: Version 2.2.10
1364
1365 Performance improvements in the x64 and ARM backends.
1366
1367
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +000013682010-05-10: Version 2.2.9
1369
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001370 Allowed Object.create to be called with a function (issue 697).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001371
1372 Fixed bug with Date.parse returning a non-NaN value when called on a
1373 non date string (issue 696).
1374
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001375 Allowed unaligned memory accesses on ARM targets that support it (by
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +00001376 Subrato K De of CodeAurora <subratokde@codeaurora.org>).
sgjesse@chromium.org720dc0b2010-05-10 09:25:39 +00001377
1378 C++ API for retrieving JavaScript stack trace information.
1379
1380
ager@chromium.orgac091b72010-05-05 07:34:42 +000013812010-05-05: Version 2.2.8
1382
1383 Performance improvements in the x64 and ARM backends.
1384
1385
kmillikin@chromium.org4111b802010-05-03 10:34:42 +000013862010-05-03: Version 2.2.7
1387
1388 Added support for ES5 date time string format to Date.parse.
1389
1390 Performance improvements in the x64 backend.
1391
1392
lrn@chromium.orgc34f5802010-04-28 12:53:43 +000013932010-04-28: Version 2.2.6
1394
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001395 Added "amd64" as recognized architecture in scons build script
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001396 (by Ryan Dahl <coldredlemur@gmail.com>).
1397
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001398 Fixed bug in String search and replace with very simple RegExps.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001399
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001400 Fixed bug in RegExp containing "\b^".
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001401
1402 Performance improvements on all platforms.
1403
kmillikin@chromium.org4111b802010-05-03 10:34:42 +00001404
fschneider@chromium.org013f3e12010-04-26 13:27:52 +000014052010-04-26: Version 2.2.5
1406
1407 Various performance improvements (especially for ARM and x64)
1408
1409 Fixed bug in CPU profiling (http://crbug.com/42137)
1410
1411 Fixed a bug with the natives cache.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +00001412
1413 Fixed two bugs in the ARM code generator that can cause
fschneider@chromium.org013f3e12010-04-26 13:27:52 +00001414 wrong calculations.
1415
1416 Fixed a bug that may cause a wrong result for shift operations.
1417
1418
14192010-04-21: Version 2.2.4
ricow@chromium.orgc9c80822010-04-21 08:22:37 +00001420
1421 Fixed warnings on arm on newer GCC versions.
1422
1423 Fixed a number of minor bugs.
1424
1425 Performance improvements on all platforms.
1426
1427
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +000014282010-04-14: Version 2.2.3
1429
1430 Added stack command and mem command to ARM simulator debugger.
1431
1432 Fixed scons snapshot and ARM build, and Windows X64 build issues.
1433
1434 Performance improvements on all platforms.
1435
1436
ager@chromium.org357bf652010-04-12 11:30:10 +000014372010-04-12: Version 2.2.2
1438
1439 Introduced new profiler API.
1440
1441 Fixed random number generator to produce full 32 random bits.
1442
1443
lrn@chromium.org25156de2010-04-06 13:10:27 +000014442010-04-06: Version 2.2.1
1445
1446 Debugger improvements.
1447
1448 Fixed minor bugs.
1449
1450
ricow@chromium.orgaa1b6162010-03-29 07:44:58 +000014512010-03-29: Version 2.2.0
1452
1453 Fixed a few minor bugs.
1454
1455 Performance improvements for string operations.
1456
1457
ager@chromium.orgb26c50a2010-03-26 09:27:16 +000014582010-03-26: Version 2.1.10
1459
1460 Fixed scons build issues.
1461
1462 Fixed a couple of minor bugs.
1463
1464
sgjesse@chromium.orgdf7a2842010-03-25 14:34:15 +000014652010-03-25: Version 2.1.9
1466
1467 Added API support for reattaching a global object to a context.
1468
1469 Extended debugger API with access to the internal debugger context.
1470
1471 Fixed Chromium crashes (issues http://crbug.com/39128 and
1472 http://crbug.com/39160)
1473
1474
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000014752010-03-24: Version 2.1.8
1476
1477 Added fine-grained garbage collection callbacks to the API.
1478
1479 Performance improvements on all platforms.
1480
1481
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000014822010-03-22: Version 2.1.7
1483
1484 Fixed issue 650.
1485
1486 Fixed a bug where __proto__ was sometimes enumerated (issue 646).
fschneider@chromium.org086aac62010-03-17 13:18:24 +00001487
1488 Performance improvements for arithmetic operations.
1489
1490 Performance improvements for string operations.
1491
whesse@chromium.orgcec079d2010-03-22 14:44:04 +00001492 Print script name and line number information in stack trace.
1493
1494
14952010-03-17: Version 2.1.6
1496
1497 Performance improvements for arithmetic operations.
1498
1499 Performance improvements for string operations.
1500
1501
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000015022010-03-10: Version 2.1.4
1503
1504 Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
1505
1506 Performance improvements on all platforms.
1507
1508
ager@chromium.orgce5e87b2010-03-10 10:24:18 +000015092010-03-10: Version 2.1.3
1510
1511 Added API method for context-disposal notifications.
1512
1513 Added API method for accessing elements by integer index.
1514
1515 Added missing implementation of Uint32::Value and Value::IsUint32
1516 API methods.
1517
1518 Added IsExecutionTerminating API method.
1519
1520 Disabled strict aliasing for GCC 4.4.
1521
1522 Fixed string-concatenation bug (issue 636).
1523
1524 Performance improvements on all platforms.
1525
1526
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +000015272010-02-23: Version 2.1.2
1528
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001529 Fixed a crash bug caused by wrong assert.
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00001530
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001531 Fixed a bug with register names on 64-bit V8 (issue 615).
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +00001532
1533 Performance improvements on all platforms.
1534
ager@chromium.orgce5e87b2010-03-10 10:24:18 +00001535
ager@chromium.org5c838252010-02-19 08:53:10 +000015362010-02-19: Version 2.1.1
1537
1538 [ES5] Implemented Object.defineProperty.
1539
1540 Improved profiler support.
1541
1542 Added SetPrototype method in the public V8 API.
1543
1544 Added GetScriptOrigin and GetScriptLineNumber methods to Function
1545 objects in the API.
1546
1547 Performance improvements on all platforms.
1548
1549
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000015502010-02-03: Version 2.1.0
1551
1552 Values are now always wrapped in objects when used as a receiver.
1553 (issue 223).
1554
1555 [ES5] Implemented Object.getOwnPropertyNames.
1556
1557 [ES5] Restrict JSON.parse to only accept strings that conforms to the
1558 JSON grammar.
1559
1560 Improvement of debugger agent (issue 549 and 554).
1561
1562 Fixed problem with skipped stack frame in profiles (issue 553).
1563
1564 Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
1565 <ry@tinyclouds.org>.
1566
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001567 Fixed a bug that Math.round() returns incorrect results for huge
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001568 integers.
1569
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001570 Fixed enumeration order for objects created from some constructor
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001571 functions (isue http://crbug.com/3867).
1572
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001573 Fixed arithmetic on some integer constants (issue 580).
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001574
1575 Numerous performance improvements including porting of previous IA-32
1576 optimizations to x64 and ARM architectures.
1577
1578
fschneider@chromium.org0c20e672010-01-14 15:28:53 +000015792010-01-14: Version 2.0.6
1580
1581 Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
1582 GetOwnProperty, FromPropertyDescriptor.
1583
1584 Fixed Mac x64 build errors.
1585
1586 Improved performance of some math and string operations.
1587
1588 Improved performance of some regexp operations.
1589
1590 Improved performance of context creation.
1591
1592 Improved performance of hash tables.
1593
1594
sgjesse@chromium.org846fb742009-12-18 08:56:33 +000015952009-12-18: Version 2.0.5
1596
1597 Extended to upper limit of map space to allow for 7 times as many map
1598 to be allocated (issue 524).
1599
1600 Improved performance of code using closures.
1601
1602 Improved performance of some binary operations involving doubles.
1603
1604
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000016052009-12-16: Version 2.0.4
1606
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00001607 Added ECMAScript 5 Object.create.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001608
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00001609 Improved performance of Math.max and Math.min.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001610
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00001611 Optimized adding of strings on 64-bit platforms.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001612
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00001613 Improved handling of external strings by using a separate table
1614 instead of weak handles. This improves garbage collection
1615 performance and uses less memory.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001616
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00001617 Changed code generation for object and array literals in toplevel
1618 code to be more compact by doing more work in the runtime.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001619
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00001620 Fixed a crash bug triggered when garbage collection happened during
1621 generation of a callback load inline cache stub.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001622
sgjesse@chromium.org846fb742009-12-18 08:56:33 +00001623 Fixed crash bug sometimes triggered when local variables shadowed
1624 parameters in functions that used the arguments object.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001625
1626
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +000016272009-12-03: Version 2.0.3
1628
1629 Optimized handling and adding of strings, for-in and Array.join.
1630
1631 Heap serialization is now non-destructive.
1632
1633 Improved profiler support with information on time spend in C++
1634 callbacks registered through the API.
1635
1636 Added commands to the debugger protocol for starting/stopping
1637 profiling.
1638
1639 Enabled the non-optimizing compiler for top-level code.
1640
1641 Changed the API to only allow strings to be set as data objects on
1642 Contexts and scripts to avoid potentially keeping global objects
1643 around for too long (issue 528).
1644
1645 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
1646
1647 Fixed bugs.
1648
1649
ager@chromium.org01beca72009-11-24 14:29:16 +000016502009-11-24: Version 2.0.2
1651
1652 Improved profiler support.
1653
1654 Fixed bug that broke compilation of d8 with readline support.
1655
1656
ager@chromium.org6141cbe2009-11-20 12:14:52 +000016572009-11-20: Version 2.0.1
1658
1659 Fixed crash bug in String.prototype.replace.
1660
1661 Reverted a change which caused Chromium interactive ui test
1662 failures.
1663
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001664
ager@chromium.orgc4c92722009-11-18 14:12:51 +000016652009-11-18: Version 2.0.0
1666
1667 Added support for VFP on ARM.
1668
1669 Added TryCatch::ReThrow method to the API.
1670
1671 Reduced the size of snapshots and improved the snapshot load time.
1672
1673 Improved heap profiler support.
1674
1675 64-bit version now supported on Windows.
1676
1677 Fixed a number of debugger issues.
1678
1679 Fixed bugs.
1680
1681
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +000016822009-10-29: Version 1.3.18
1683
1684 Reverted a change which caused crashes in RegExp replace.
1685
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +00001686 Reverted a change which caused Chromium ui_tests failure.
sgjesse@chromium.orgf1e73132009-10-29 14:46:49 +00001687
1688
ager@chromium.org3811b432009-10-28 14:53:37 +000016892009-10-28: Version 1.3.17
1690
1691 Added API method to get simple heap statistics.
1692
1693 Improved heap profiler support.
1694
1695 Fixed the implementation of the resource constraint API so it
1696 works when using snapshots.
1697
1698 Fixed a number of issues in the Windows 64-bit version.
1699
1700 Optimized calls to API getters.
1701
1702 Added valgrind notification on code modification to the 64-bit version.
1703
1704 Fixed issue where we logged shared library addresses on Windows at
1705 startup and never used them.
1706
1707
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000017082009-10-16: Version 1.3.16
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001709
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001710 X64: Convert smis to holding 32 bits of payload.
1711
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001712 Introduced v8::Integer::NewFromUnsigned method.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001713
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001714 Added missing null check in Context::GetCurrent.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001715
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001716 Added trim, trimLeft and trimRight methods to String
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001717 Patch by Jan de Mooij <jandemooij@gmail.com>
1718
1719 Implement ES5 Array.isArray
1720 Patch by Jan de Mooij <jandemooij@gmail.com>
1721
1722 Skip access checks for hidden properties.
1723
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001724 Added String::Concat(Handle<String> left, Handle<String> right) to the
1725 V8 API.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001726
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001727 Fixed GYP-based builds of V8.
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +00001728
1729
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +000017302009-10-07: Version 1.3.15
1731
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001732 Expanded the maximum size of the code space to 512MB for 64-bit mode.
sgjesse@chromium.org152a0b02009-10-07 13:50:16 +00001733
1734 Fixed a crash bug happening when starting profiling (issue
1735 http://crbug.com/23768).
1736
1737
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +000017382009-10-07: Version 1.3.14
1739
1740 Added GetRealNamedProperty to the API to lookup real properties
1741 located on the object or in the prototype chain skipping any
1742 interceptors.
1743
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001744 Fixed the stack limits setting API to work correctly with threads. The
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001745 stack limit now needs to be set to each thread thich is used with V8.
1746
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001747 Removed the high-priority flag from IdleNotification()
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001748
1749 Ensure V8 is initialized before locking and unlocking threads.
1750
1751 Implemented a new JavaScript minifier for compressing the source of
ager@chromium.org3811b432009-10-28 14:53:37 +00001752 the built-in JavaScript. This removes non-Open Source code from Douglas
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +00001753 Crockford from the project.
1754
1755 Added a missing optimization in StringCharAt.
1756
1757 Fixed some flaky socket tests.
1758
1759 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
1760 in 64-bit mode.
1761
1762 Fixed memory leaks in the thread management code.
1763
1764 Fixed the result of assignment to a pixel array. The assigned value
1765 is now the result.
1766
1767 Error reporting for invalid left-hand sides in for-in statements, pre-
1768 and postfix count expressions, and assignments now matches the JSC
1769 behavior in Safari 4.
1770
1771 Follow the spec in disallowing function declarations without a name.
1772
1773 Always allocate code objects within a 2 GB range. On x64 architecture
1774 this is used to use near calls (32-bit displacement) in Code objects.
1775
1776 Optimized array construction ported to x64 and ARM architectures.
1777
1778 [ES5] Changed Object.keys to return strings for element indices.
1779
1780
ager@chromium.org68e7ab72009-09-23 09:40:39 +000017812009-09-23: Version 1.3.13
1782
1783 Fixed uninitialized memory problem.
1784
1785 Improved heap profiler support.
1786
1787
christian.plesner.hansen@gmail.com2bc58ef2009-09-22 10:00:30 +000017882009-09-22: Version 1.3.12
1789
1790 Changed behavior of |function|.toString() on built-in functions to
1791 be compatible with other implementations. Patch by Jan de Mooij.
1792
1793 Added Object::IsDirty in the API.
1794
1795 Optimized array construction; it is now handled purely in native
1796 code.
1797
1798 [ES5] Made properties of the arguments array enumerable.
1799
1800 [ES5] Added test suite adapter for the es5conform test suite.
1801
1802 [ES5] Added Object.keys function.
1803
ager@chromium.org68e7ab72009-09-23 09:40:39 +00001804
ager@chromium.org4af710e2009-09-15 12:20:11 +000018052009-09-15: Version 1.3.11
1806
1807 Fixed crash in error reporting during bootstrapping.
1808
1809 Optimized generated IA32 math code by using SSE2 instructions when
1810 available.
1811
1812 Implemented missing pieces of debugger infrastructure on ARM. The
1813 debugger is now fully functional on ARM.
1814
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001815 Made 'hidden' the default visibility for gcc.
ager@chromium.org4af710e2009-09-15 12:20:11 +00001816
1817
ager@chromium.orga1645e22009-09-09 19:27:10 +000018182009-09-09: Version 1.3.10
1819
1820 Fixed profiler on Mac in 64-bit mode.
1821
1822 Optimized creation of objects from simple constructor functions on
1823 ARM.
1824
1825 Fixed a number of debugger issues.
1826
1827 Reduced the amount of memory consumed by V8.
1828
1829
ager@chromium.org18ad94b2009-09-02 08:22:29 +000018302009-09-02: Version 1.3.9
1831
1832 Optimized stack guard checks on ARM.
1833
1834 Optimized API operations by inlining more in the API.
1835
1836 Optimized creation of objects from simple constructor functions.
1837
1838 Enabled a number of missing optimizations in the 64-bit port.
1839
1840 Implemented native-code support for regular expressions on ARM.
1841
1842 Stopped using the 'sahf' instruction on 64-bit machines that do
1843 not support it.
1844
1845 Fixed a bug in the support for forceful termination of JavaScript
1846 execution.
1847
1848
ager@chromium.org96c75b52009-08-26 09:13:16 +000018492009-08-26: Version 1.3.8
1850
1851 Changed the handling of idle notifications to allow idle
1852 notifications when V8 has not yet been initialized.
1853
1854 Fixed ARM simulator compilation problem on Windows.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001855
ager@chromium.org96c75b52009-08-26 09:13:16 +00001856
ager@chromium.orgab99eea2009-08-25 07:05:41 +000018572009-08-25: Version 1.3.7
1858
1859 Reduced the size of generated code on ARM platforms by reducing
1860 the size of constant pools.
1861
1862 Changed build files to not include the 'ENV' user environment
1863 variable in the build environment.
1864
1865 Changed the handling of idle notifications.
1866
1867
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +000018682009-08-21: Version 1.3.6
1869
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001870 Added support for forceful termination of JavaScript execution.
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00001871
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001872 Added low memory notification to the API. The embedding host can signal
sgjesse@chromium.orgc81c8942009-08-21 10:54:26 +00001873 a low memory situation to V8.
1874
1875 Changed the handling of global handles (persistent handles in the API
1876 sense) to avoid issues regarding allocation of new global handles
1877 during weak handle callbacks.
1878
1879 Changed the growth policy of the young space.
1880
1881 Fixed a GC issue introduced in version 1.3.5.
1882
1883
sgjesse@chromium.org911335c2009-08-19 12:59:44 +000018842009-08-19: Version 1.3.5
1885
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001886 Optimized initialization of some arrays in the builtins.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00001887
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001888 Fixed mac-nm script to support filenames with spaces.
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00001889
1890 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
1891
1892 Changed typeof RegExp from 'object' to 'function' for compatibility.
1893 Fixed bug where regexps were not callable across contexts.
1894
1895 Added context independent script compilation to the API.
1896
1897 Added API call to get the stack trace for an exception.
1898
1899 Added API for getting object mirrors.
1900
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001901 Made sure that SSE3 instructions are used whenever possible even when
sgjesse@chromium.org911335c2009-08-19 12:59:44 +00001902 running off a snapshot generated without using SSE3 instructions.
1903
1904 Tweaked the handling of the initial size and growth policy of the heap.
1905
1906 Added native code generation for RegExp to 64-bit version.
1907
1908 Added JavaScript debugger support to 64-bit version.
1909
1910
ager@chromium.orgadd848f2009-08-13 12:44:13 +000019112009-08-13: Version 1.3.4
1912
1913 Added a readline() command to the d8 shell.
1914
1915 Fixed bug in json parsing.
1916
1917 Added idle notification to the API and reduced memory on idle
1918 notifications.
1919
1920
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +000019212009-08-12: Version 1.3.3
1922
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001923 Fixed issue 417: incorrect %t placeholder expansion.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001924
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001925 Added .gitignore file similar to Chromium's one.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001926
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001927 Fixed SConstruct file to build with new logging code for Android.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001928
1929 API: added function to find instance of template in prototype
1930 chain. Inlined Object::IsInstanceOf.
1931
1932 Land change to notify valgrind when we modify code on x86.
1933
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001934 Added api call to determine whether a string can be externalized.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001935
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00001936 Added a write() command to d8.
christian.plesner.hansen@gmail.com5a6af922009-08-12 14:20:51 +00001937
1938
sgjesse@chromium.orgb9d7da12009-08-05 08:38:10 +000019392009-08-05: Version 1.3.2
1940
1941 Started new compiler infrastructure for two-pass compilation using a
1942 control flow graph constructed from the AST.
1943
1944 Profiler stack sampling for X64.
1945
1946 Safe handling of NaN to Posix platform-dependent time functions.
1947
1948 Added a new profiler control API to unify controlling various aspects
1949 of profiling.
1950
1951 Fixed issue 392.
1952
1953
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000019542009-07-30: Version 1.3.1
1955
1956 Speed improvements to accessors and interceptors.
1957
1958 Added support for capturing stack information on custom errors.
1959
1960 Added support for morphing an object into a pixel array where its
1961 indexed properties are stored in an external byte array. Values written
1962 are always clamped to the 0..255 interval.
1963
1964 Profiler on x64 now handles C/C++ functions from shared libraries.
1965
1966 Changed the debugger to avoid stepping into function.call/apply if the
1967 function is a built-in.
1968
1969 Initial implementation of constructor heap profile for JS objects.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001970
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00001971 More fine grained control of profiling aspects through the API.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001972
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +00001973 Optimized the called as constructor check for API calls.
1974
1975
kasperl@chromium.orge959c182009-07-27 08:59:04 +000019762009-07-27: Version 1.3.0
1977
1978 Allowed RegExp objects to be called as functions (issue 132).
1979
1980 Fixed issue where global property cells would escape after
1981 detaching the global object; see http://crbug.com/16276.
1982
1983 Added support for stepping into setters and getters in the
1984 debugger.
1985
1986 Changed the debugger to avoid stopping in its own JavaScript code
1987 and in the code of built-in functions.
1988
1989 Fixed issue 345 by avoiding duplicate escaping labels.
1990
1991 Fixed ARM code generator crash in short-circuited boolean
1992 expressions and added regression tests.
1993
1994 Added an external allocation limit to avoid issues where small V8
1995 objects would hold on to large amounts of external memory without
1996 causing garbage collections.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00001997
1998 Finished more of the inline caching stubs for x64 targets.
kasperl@chromium.orge959c182009-07-27 08:59:04 +00001999
2000
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000020012009-07-13: Version 1.2.14
2002
2003 Added separate paged heap space for global property cells and
2004 avoid updating the write barrier when storing into them.
2005
2006 Improved peep-hole optimization on ARM platforms by not emitting
2007 unnecessary debug information.
2008
2009 Re-enabled ICs for loads and calls that skip a global object
2010 during lookup through the prototype chain.
2011
2012 Allowed access through global proxies to use ICs.
2013
2014 Fixed issue 401.
2015
2016
kasperl@chromium.org68ac0092009-07-09 06:00:35 +000020172009-07-09: Version 1.2.13
2018
2019 Fixed issue 397, issue 398, and issue 399.
2020
2021 Added support for breakpoint groups.
2022
2023 Fixed bugs introduced with the new global object representation.
2024
2025 Fixed a few bugs in the ARM code generator.
2026
2027
kasperl@chromium.org86f77b72009-07-06 08:21:57 +000020282009-07-06: Version 1.2.12
2029
2030 Added stack traces collection to Error objects accessible through
2031 the e.stack property.
2032
2033 Changed RegExp parser to use a recursive data structure instead of
2034 stack-based recursion.
2035
2036 Optimized Date object construction and string concatenation.
2037
2038 Improved performance of div, mod, and mul on ARM platforms.
2039
2040
kasperl@chromium.org2abc4502009-07-02 07:00:29 +000020412009-07-02: Version 1.2.11
2042
2043 Improved performance on IA-32 and ARM.
2044
2045 Fixed profiler sampler implementation on Mac OS X.
2046
2047 Changed the representation of global objects to improve
2048 performance of adding a lot of new properties.
2049
2050
ager@chromium.org3e875802009-06-29 08:26:34 +000020512009-06-29: Version 1.2.10
2052
2053 Improved debugger support.
2054
2055 Fixed bug in exception message reporting (issue 390).
2056
2057 Improved overall performance.
2058
2059
ager@chromium.org5aa501c2009-06-23 07:57:28 +000020602009-06-23: Version 1.2.9
2061
2062 Improved math performance on ARM.
2063
2064 Fixed profiler name-inference bug.
2065
2066 Fixed handling of shared libraries in the profiler tick processor
2067 scripts.
2068
2069 Fixed handling of tests that time out in the test scripts.
2070
2071 Fixed compilation on MacOS X version 10.4.
2072
2073 Fixed two bugs in the regular expression engine.
2074
2075 Fixed a bug in the string type inference.
2076
2077 Fixed a bug in the handling of 'constant function' properties.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002078
ager@chromium.org5aa501c2009-06-23 07:57:28 +00002079 Improved overall performance.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +00002080
ager@chromium.org5aa501c2009-06-23 07:57:28 +00002081
ager@chromium.orgeadaf222009-06-16 09:43:10 +000020822009-06-16: Version 1.2.8
2083
2084 Optimized math on ARM platforms.
2085
2086 Fixed two crash bugs in the handling of getters and setters.
2087
2088 Improved the debugger support by adding scope chain information.
2089
2090 Improved the profiler support by compressing log data transmitted
2091 to clients.
2092
2093 Improved overall performance.
2094
2095
ager@chromium.orge2902be2009-06-08 12:21:35 +000020962009-06-08: Version 1.2.7
2097
2098 Improved debugger and profiler support.
2099
2100 Reduced compilation time by improving the handling of deferred
2101 code.
2102
2103 Optimized interceptor accesses where the property is on the object
2104 on which the interceptors is attached.
2105
2106 Fixed compilation problem on GCC 4.4 by changing the stack
2107 alignment to 16 bytes.
2108
2109 Fixed handle creation to follow stric aliasing rules.
2110
2111 Fixed compilation on FreeBSD.
2112
2113 Introduced API for forcing the deletion of a property ignoring
2114 interceptors and attributes.
2115
2116
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +000021172009-05-29: Version 1.2.6
2118
2119 Added a histogram recording hit rates at different levels of the
2120 compilation cache.
2121
2122 Added stack overflow check for the RegExp analysis phase. Previously a
2123 very long regexp graph could overflow the stack with recursive calls.
2124
2125 Use a dynamic buffer when collecting log events in memory.
2126
2127 Added start/stop events to the profiler log.
2128
2129 Fixed infinite loop which could happen when setting a debug break while
2130 executing a RegExp compiled to native code.
2131
2132 Fixed handling of lastIndexOf called with negative index (issue 351).
2133
2134 Fixed irregular crash in profiler test (issue 358).
2135
2136 Fixed compilation issues with some versions of gcc.
2137
2138
kasperl@chromium.org71affb52009-05-26 05:44:31 +000021392009-05-26: Version 1.2.5
2140
2141 Fixed bug in initial boundary check for Boyer-Moore text
2142 search (issue 349).
2143
2144 Fixed compilation issues with MinGW and gcc 4.3+ and added support
2145 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
2146 Craig Schlenter.
2147
2148 Added a script cache to the debugger.
2149
2150 Optimized compilation performance by improving internal data
2151 structures and avoiding expensive property load optimizations for
2152 code that's infrequently executed.
2153
2154 Exposed the calling JavaScript context through the static API
2155 function Context::GetCalling().
2156
2157
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000021582009-05-18: Version 1.2.4
2159
2160 Improved performance of floating point number allocation for ARM
2161 platforms.
2162
2163 Fixed crash when using the instanceof operator on functions with
2164 number values in their prototype chain (issue 341).
2165
2166 Optimized virtual frame operations in the code generator to speed
2167 up compilation time and allocated the frames in the zone.
2168
2169 Made the representation of virtual frames and jump targets in the
2170 code generator much more compact.
2171
2172 Avoided linear search for non-locals in scope code when resolving
2173 variables inside with and eval scopes.
2174
2175 Optimized lexical scanner by dealing with whitespace as part of
2176 the token scanning instead of as a separate step before it.
2177
2178 Changed the scavenging collector so that promoted objects do not
2179 reside in the old generation while their remembered set is being
2180 swept for pointers into the young generation.
2181
2182 Fixed numeric overflow handling when compiling count operations.
2183
2184
ager@chromium.org9085a012009-05-11 19:22:57 +000021852009-05-11: Version 1.2.3
2186
2187 Fixed bug in reporting of out-of-memory situations.
2188
2189 Introduced hidden prototypes on certain builtin prototype objects
2190 such as String.prototype to emulate JSC's behavior of restoring
2191 the original function when deleting functions from those prototype
2192 objects.
2193
2194 Fixed crash bug in the register allocator.
2195
2196
ager@chromium.org5ec48922009-05-05 07:25:34 +000021972009-05-04: Version 1.2.2
2198
2199 Fixed bug in array sorting for sparse arrays (issue 326).
2200
2201 Added support for adding a soname when building a shared library
2202 on Linux (issue 151).
2203
2204 Fixed bug caused by morphing internal ASCII strings to external
2205 two-byte strings. Slices over ASCII strings have to forward ASCII
2206 checks to the underlying buffer string.
2207
2208 Allowed API call-as-function handlers to be called as
2209 constructors.
2210
2211 Fixed a crash bug where an external string was disposed but a
2212 slice of the external string survived as a symbol.
2213
2214
ager@chromium.org3a37e9b2009-04-27 09:26:21 +000022152009-04-27: Version 1.2.1
2216
2217 Added EcmaScript 5 JSON object.
2218
fschneider@chromium.orgc20610a2010-09-22 09:44:58 +00002219 Fixed bug in preemption support on ARM.
ager@chromium.org3a37e9b2009-04-27 09:26:21 +00002220
2221
ager@chromium.org65dad4b2009-04-23 08:48:43 +000022222009-04-23: Version 1.2.0
2223
2224 Optimized floating-point operations on ARM.
2225
2226 Added a number of extensions to the debugger API.
2227
2228 Changed the enumeration order for unsigned integer keys to always
2229 be numerical order.
2230
2231 Added a "read" extension to the shell sample.
2232
2233 Added support for Array.prototype.reduce and
2234 Array.prototype.reduceRight.
2235
2236 Added an option to the SCons build to control Microsoft Visual C++
2237 link-time code generation.
2238
2239 Fixed a number of bugs (in particular issue 315, issue 316,
2240 issue 317 and issue 318).
2241
2242
kasperl@chromium.org2d18d102009-04-15 13:27:32 +000022432009-04-15: Version 1.1.10
2244
2245 Fixed crash bug that occurred when loading a const variable in the
2246 presence of eval.
2247
2248 Allowed using with and eval in registered extensions in debug mode
2249 by fixing bogus assert.
2250
2251 Fixed the source position for function returns to enable the
2252 debugger to break there.
2253
2254
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +000022552009-04-14: Version 1.1.9
2256
2257 Made the stack traversal code in the profiler robust by avoiding
2258 to look into the heap.
2259
2260 Added name inferencing for anonymous functions to facilitate
2261 debugging and profiling.
2262
2263 Re-enabled stats timers in the developer shell (d8).
2264
2265 Fixed issue 303 by avoiding to shortcut cons-symbols.
2266
2267
kasperl@chromium.orgacae3782009-04-11 09:17:08 +000022682009-04-11: Version 1.1.8
2269
2270 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
2271
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002272 Fixed step-in handling for Function.prototype.apply and call in
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00002273 the debugger (issue 269).
2274
2275 Fixed v8::Object::DeleteHiddenValue to not bail out when there
2276 are no hidden properties.
2277
ager@chromium.org65dad4b2009-04-23 08:48:43 +00002278 Added workaround for crash bug, where external symbol table
kasperl@chromium.orgacae3782009-04-11 09:17:08 +00002279 entries with deleted resources would lead to NPEs when looking
2280 up in the symbol table.
2281
2282
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +000022832009-04-07: Version 1.1.7
2284
2285 Added support for easily importing additional environment
2286 variables into the SCons build.
2287
2288 Optimized strict equality checks.
2289
2290 Fixed crash in indexed setters on objects without a corresponding
2291 getter (issue 298).
2292
2293 Re-enabled script compilation cache.
2294
2295
ager@chromium.org8682a592009-04-01 10:47:14 +000022962009-04-01: Version 1.1.6
2297
2298 Reverted an unsafe code generator change.
2299
2300
ager@chromium.org71daaf62009-04-01 07:22:49 +000023012009-04-01: Version 1.1.5
2302
2303 Fixed bug that caused function literals to not be optimized as
2304 much as other functions.
2305
2306 Improved profiler support.
2307
2308 Fixed a crash bug in connection with debugger unloading.
2309
2310 Fixed a crash bug in the code generator caused by losing the
2311 information that a frame element was copied.
2312
2313 Fixed an exception propagation bug that could cause non-null
2314 return values when exceptions were thrown.
2315
2316
ager@chromium.org41826e72009-03-30 13:30:57 +000023172009-03-30: Version 1.1.4
2318
2319 Optimized String.prototype.match.
2320
2321 Improved the stack information in profiles.
2322
2323 Fixed bug in ARM port making it possible to compile the runtime
2324 system for thumb mode again.
2325
2326 Implemented a number of optimizations in the code generator.
2327
2328 Fixed a number of memory leaks in tests.
2329
2330 Fixed crash bug in connection with script source code and external
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +00002331 strings.
ager@chromium.org41826e72009-03-30 13:30:57 +00002332
2333
kasperl@chromium.orgf5aa8372009-03-24 14:47:14 +000023342009-03-24: Version 1.1.3
2335
2336 Fixed assertion failures in compilation of loop conditions.
2337
2338 Removed STL dependency from developer shell (d8).
2339
2340 Added infrastructure for protecting the V8 heap from corruption
2341 caused by memory modifications from the outside.
2342
2343
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000023442009-03-24: Version 1.1.2
2345
2346 Improved frame merge code generated by the code generator.
2347
2348 Optimized String.prototype.replace.
2349
2350 Implemented __defineGetter__ and __defineSetter__ for properties
2351 with integer keys on non-array objects.
2352
2353 Improved debugger and profiler support.
2354
2355 Fixed a number of portability issues to allow compilation for
2356 smaller ARM devices.
2357
2358 Exposed object cloning through the API.
2359
2360 Implemented hidden properties. This is used to expose an identity
2361 hash for objects through the API.
2362
2363 Implemented restarting of regular expressions if their input
2364 string changes representation during preemption.
2365
2366 Fixed a code generator bug that could cause assignments in loops
2367 to be ignored if using continue to break out of the loop (issue
2368 284).
2369
2370
ager@chromium.org3a6061e2009-03-12 14:24:36 +000023712009-03-12: Version 1.1.1
2372
2373 Fixed an assertion in the new compiler to take stack overflow
2374 exceptions into account.
2375
2376 Removed exception propagation code that could cause crashes.
2377
2378 Fixed minor bug in debugger line number computations.
2379
2380 8-byte align the C stack on Linux and Windows to speed up floating
2381 point computations.
2382
2383
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000023842009-03-12: Version 1.1.0
2385
2386 Improved code generation infrastructure by doing simple register
2387 allocation and constant folding and propagation.
2388
2389 Optimized regular expression matching by avoiding to create
2390 intermediate string arrays and by flattening nested array
2391 representations of RegExp data.
2392
2393 Traverse a few stack frames when recording profiler samples to
2394 include partial call graphs in the profiling output.
2395
2396 Added support for using OProfile to profile generated code.
2397
2398 Added remote debugging support to the D8 developer shell.
2399
2400 Optimized creation of nested literals like JSON objects.
2401
2402 Fixed a bug in garbage collecting unused maps and turned it on by
2403 default (--collect-maps).
2404
2405 Added support for running tests under Valgrind.
2406
2407
kasperl@chromium.org061ef742009-02-27 12:16:20 +000024082009-02-27: Version 1.0.3
2409
2410 Optimized double-to-integer conversions in bit operations by using
2411 SSE3 instructions if available.
2412
2413 Optimized initialization sequences that store to multiple
2414 properties of the same object.
2415
2416 Changed the D8 debugger frontend to use JSON messages.
2417
2418 Force garbage collections when disposing contexts.
2419
2420 Align code objects at 32-byte boundaries.
2421
2422
ager@chromium.org381abbb2009-02-25 13:23:22 +000024232009-02-25: Version 1.0.2
2424
2425 Improved profiling support by performing simple call stack
2426 sampling for ticks and by fixing a bug in the logging of code
2427 addresses.
2428
2429 Fixed a number of debugger issues.
2430
2431 Optimized code that uses eval.
2432
2433 Fixed a couple of bugs in the regular expression engine.
2434
2435 Reduced the size of generated code for certain regular expressions.
2436
2437 Removed JSCRE completely.
2438
2439 Fixed issue where test could not be run if there was a dot in the
2440 checkout path.
2441
2442
ager@chromium.org6f10e412009-02-13 10:11:16 +000024432009-02-13: Version 1.0.1
2444
2445 Fixed two crash-bugs in irregexp (issue 231 and 233).
2446
2447 Fixed a number of minor bugs (issue 87, 227 and 228).
2448
2449 Added support for morphing strings to external strings on demand
2450 to avoid having to create copies in the embedding code.
2451
2452 Removed experimental support for external symbol callbacks.
2453
2454
iposva@chromium.org245aa852009-02-10 00:49:54 +000024552009-02-09: Version 1.0.0
2456
2457 Fixed crash-bug in the code generation for case independent 16 bit
2458 backreferences.
ager@chromium.org6f10e412009-02-13 10:11:16 +00002459
iposva@chromium.org245aa852009-02-10 00:49:54 +00002460 Made shells more robust in the presence of string conversion
2461 failures (issue 224).
ager@chromium.org6f10e412009-02-13 10:11:16 +00002462
iposva@chromium.org245aa852009-02-10 00:49:54 +00002463 Fixed a potential infinite loop when attempting to resolve
2464 eval (issue 221).
ager@chromium.org6f10e412009-02-13 10:11:16 +00002465
iposva@chromium.org245aa852009-02-10 00:49:54 +00002466 Miscellaneous fixes to the new regular expression engine.
ager@chromium.org6f10e412009-02-13 10:11:16 +00002467
iposva@chromium.org245aa852009-02-10 00:49:54 +00002468 Reduced binary by stripping unneeded text from JavaScript library and
2469 minifying some JavaScript files.
2470
2471
ager@chromium.orgddb913d2009-01-27 10:01:48 +000024722009-01-27: Version 0.4.9
2473
2474 Enabled new regular expression engine.
2475
2476 Made a number of changes to the debugger protocol.
2477
2478 Fixed a number of bugs in the preemption support.
2479
2480 Added -p option to the developer shell to run files in parallel
2481 using preemption.
2482
2483 Fixed a number of minor bugs (including issues 176, 187, 189, 192,
2484 193, 198 and 201).
2485
2486 Fixed a number of bugs in the serialization/deserialization
2487 support for the ARM platform.
2488
2489
sgjesse@chromium.org715915b2009-01-19 16:08:47 +000024902009-01-19: Version 0.4.8.1
2491
2492 Minor patch to debugger support.
2493
2494
ager@chromium.org32912102009-01-16 10:38:43 +000024952009-01-16: Version 0.4.8
2496
2497 Fixed string length bug on ARM (issue 171).
2498
2499 Made most methods in the API const.
2500
2501 Optimized object literals by improving data locality.
2502
2503 Fixed bug that caused incomplete functions to be cached in case of
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00002504 stack overflow exceptions.
ager@chromium.org32912102009-01-16 10:38:43 +00002505
2506 Fixed bugs that caused catch variables and variables introduced by
sgjesse@chromium.org715915b2009-01-19 16:08:47 +00002507 eval to behave incorrectly when using accessors (issues 186, 190
2508 and 191).
ager@chromium.org32912102009-01-16 10:38:43 +00002509
2510
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +000025112009-01-06: Version 0.4.7
2512
ager@chromium.org32912102009-01-16 10:38:43 +00002513 Minor bugfixes and optimizations.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002514
ager@chromium.org32912102009-01-16 10:38:43 +00002515 Added command line debugger to D8 shell.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002516
ager@chromium.org32912102009-01-16 10:38:43 +00002517 Fixed subtle bug that caused the wrong 'this' to be used when
2518 calling a caught function in a catch clause.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002519
ager@chromium.org32912102009-01-16 10:38:43 +00002520 Inline array loads within loops directly in the code instead of
2521 always calling a stub.
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +00002522
ager@chromium.org32912102009-01-16 10:38:43 +00002523
ager@chromium.org8bb60582008-12-11 12:02:20 +000025242008-12-11: Version 0.4.6
2525
2526 Fixed exception reporting bug where certain exceptions were
2527 incorrectly reported as uncaught.
2528
2529 Improved the memory allocation strategy used during compilation to
2530 make running out of memory when compiling huge scripts less
2531 likely.
2532
2533 Optimized String.replace by avoiding the construction of certain
2534 sub strings.
2535
2536 Fixed bug in code generation for large switch statements on ARM.
2537
2538 Fixed bug that caused V8 to change the global object template
2539 passed in by the user.
2540
2541 Changed the API for creating object groups used during garbage
2542 collection. Entire object groups are now passed to V8 instead of
2543 individual members of the groups.
2544
ager@chromium.org32912102009-01-16 10:38:43 +00002545
ager@chromium.orga74f0da2008-12-03 16:05:52 +000025462008-12-03: Version 0.4.5
iposva@chromium.org96f667e2008-11-26 23:48:02 +00002547
ager@chromium.orga74f0da2008-12-03 16:05:52 +00002548 Added experimental API support for allocating V8 symbols as
2549 external strings.
2550
2551 Fixed bugs in debugging support on ARM.
2552
2553 Changed eval implementation to correctly detect whether or not a
2554 call to eval is aliased.
2555
2556 Fixed bug caused by a combination of the compilation cache and
2557 dictionary probing in native code. The bug caused us to sometimes
2558 call functions that had not yet been compiled.
2559
2560 Added platform support for FreeBSD.
2561
2562 Added support for building V8 on Windows with either the shared or
2563 static version of MSVCRT
ager@chromium.org32912102009-01-16 10:38:43 +00002564
iposva@chromium.org96f667e2008-11-26 23:48:02 +00002565 Added the v8::jscre namespace around the jscre functions to avoid
2566 link errors (duplicate symbols) when building Google Chrome.
2567
ager@chromium.orga74f0da2008-12-03 16:05:52 +00002568 Added support for calling a JavaScript function with the current
2569 debugger execution context as its argument to the debugger
2570 interface.
2571
2572 Changed the type of names of counters from wchar_t to char.
2573
2574 Changed the Windows system call used to compute daylight savings
2575 time. The system call that we used to use became four times
2576 slower on WinXP SP3.
2577
2578 Added support in the d8 developer shell for memory-mapped counters
2579 and added a stats-viewer tool.
2580
2581 Fixed bug in upper/lower case mappings (issue 149).
2582
iposva@chromium.org96f667e2008-11-26 23:48:02 +00002583
ager@chromium.org3bf7b912008-11-17 09:09:45 +000025842008-11-17: Version 0.4.4
2585
2586 Reduced code size by using shorter instruction encoding when
2587 possible.
2588
2589 Added a --help option to the shell sample and to the d8 shell.
2590
2591 Added visual studio project files for building the ARM simulator.
2592
2593 Fixed a number of ARM simulator issues.
2594
2595 Fixed bug in out-of-memory handling on ARM.
2596
2597 Implemented shell support for passing arguments to a script from
2598 the command line.
2599
2600 Fixed bug in date code that made certain date functions return -0
2601 instead of 0 for dates before the epoch.
2602
2603 Restricted applications of eval so it can only be used in the
2604 context of the associated global object.
2605
2606 Treat byte-order marks as whitespace characters.
ager@chromium.org32912102009-01-16 10:38:43 +00002607
2608
ager@chromium.org870a0b62008-11-04 11:43:05 +000026092008-11-04: Version 0.4.3
2610
2611 Added support for API accessors that prohibit overwriting by
2612 accessors defined in JavaScript code by using __defineGetter__ and
2613 __defineSetter__.
2614
2615 Improved handling of conditionals in test status files.
2616
2617 Introduced access control in propertyIsEnumerable.
2618
2619 Improved performance of some string operations by caching
2620 information about the type of the string between operations.
2621
2622 Fixed bug in fast-case code for switch statements that only have
2623 integer labels.
ager@chromium.org32912102009-01-16 10:38:43 +00002624
ager@chromium.org870a0b62008-11-04 11:43:05 +00002625
kasperl@chromium.org9bbf9682008-10-30 11:53:07 +000026262008-10-30: Version 0.4.2
2627
2628 Improved performance of Array.prototype.concat by moving the
2629 implementation to C++ (issue 123).
2630
2631 Fixed heap growth policy to avoid growing old space to its maximum
2632 capacity before doing a garbage collection and fixed issue that
2633 would lead to artificial out of memory situations (issue 129).
2634
2635 Fixed Date.prototype.toLocaleDateString to return the date in the
2636 same format as WebKit.
2637
2638 Added missing initialization checks to debugger API.
2639
2640 Added removing of unused maps during GC.
2641
2642
kasperl@chromium.org9fe21c62008-10-28 08:53:51 +000026432008-10-28: Version 0.4.1
2644
2645 Added caching of RegExp data in compilation cache.
2646
2647 Added Visual Studio project file for d8 shell.
2648
2649 Fixed function call performance regression introduced in version
2650 0.4.0 when splitting the global object in two parts (issue 120).
2651
2652 Fixed issue 131 by checking for empty handles before throwing and
2653 reporting exceptions.
2654
2655
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +000026562008-10-23: Version 0.4.0
2657
2658 Split the global object into two parts: The state holding global
2659 object and the global object proxy.
2660
2661 Fixed bug that affected the value of an assignment to an element
2662 in certain cases (issue 116).
2663
2664 Added GetPropertyNames functionality (issue 33) and extra Date
2665 functions (issue 77) to the API.
2666
2667 Changed WeakReferenceCallback to take a Persistent<Value> instead
2668 of a Persistent<Object> (issue 101).
2669
2670 Fixed issues with message reporting for exceptions in try-finally
2671 blocks (issues 73 and 75).
2672
ager@chromium.org32912102009-01-16 10:38:43 +00002673 Optimized flattening of strings and string equality checking.
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +00002674
2675 Improved Boyer-Moore implementation for faster indexOf operations.
2676
2677 Added development shell (d8) which includes counters and
2678 completion support.
2679
2680 Fixed problem with the receiver passed to functions called from
2681 eval (issue 124).
2682
2683
ager@chromium.org7c537e22008-10-16 08:43:32 +000026842008-10-16: Version 0.3.5
2685
2686 Improved string hash-code distribution by excluding bit-field bits
2687 from the hash-code.
2688
2689 Changed string search algorithm used in indexOf from KMP to
2690 Boyer-Moore.
2691
2692 Improved the generated code for the instanceof operator.
2693
2694 Improved performance of slow-case string equality checks by
2695 specializing the code based on the string representation.
2696
2697 Improve the handling of out-of-memory situations (issue 70).
2698
2699 Improved performance of strict equality checks.
2700
2701 Improved profiler output to make it easier to see anonymous
2702 functions.
2703
2704 Improved performance of slow-case keyed loads.
2705
2706 Improved property access performance by allocating a number of
2707 properties in the front object.
2708
2709 Changed the toString behavior on the built-in object constructors
2710 to print [native code] instead of the actual source. Some web
2711 applications do not like constructors with complex toString
2712 results.
ager@chromium.org32912102009-01-16 10:38:43 +00002713
ager@chromium.org7c537e22008-10-16 08:43:32 +00002714
kasperl@chromium.org41044eb2008-10-06 08:24:46 +000027152008-10-06: Version 0.3.4
2716
2717 Changed Array.prototype.sort to use quick sort.
2718
2719 Fixed code generation issue where leaving a finally block with
2720 break or continue would accumulate elements on the expression
2721 stack (issue 86).
2722
2723 Made sure that the name accessor on functions returns the expected
2724 names for builtin JavaScript functions and C++ callback functions.
2725
2726 Added fast case code for extending the property storage array of
2727 JavaScript objects.
2728
2729 Ported switch statement optimizations introduced in version 0.3.3
2730 to the ARM code generator.
2731
2732 Allowed GCC to use strict-aliasing rules when compiling.
2733
2734 Improved performance of arguments object allocation by taking care
2735 of arguments adaptor frames in the generated code.
2736
2737 Updated the V8 benchmark suite to version 2.
2738
2739
ager@chromium.org236ad962008-09-25 09:45:57 +000027402008-09-25: Version 0.3.3
2741
2742 Improved handling of relocation information to enable more
2743 peep-hole optimizations.
2744
2745 Optimized switch statements where all labels are constant small
2746 integers.
2747
2748 Optimized String.prototype.indexOf for common cases.
2749
2750 Fixed more build issues (issue 80).
2751
2752 Fixed a couple of profiler issues.
2753
2754 Fixed bug where the body of a function created using the Function
2755 constructor was not allowed to end with a single-line comment
2756 (issue 85).
2757
2758 Improved handling of object literals by canonicalizing object
2759 literal maps. This will allow JSON objects with the same set of
2760 properties to share the same map making inline caching work better
2761 for JSON objects.
ager@chromium.org32912102009-01-16 10:38:43 +00002762
ager@chromium.org236ad962008-09-25 09:45:57 +00002763
kasperl@chromium.orgb9123622008-09-17 14:05:56 +000027642008-09-17: Version 0.3.2
2765
2766 Generalized the EvalCache into a CompilationCache and enabled it
2767 for scripts too. The current strategy is to retire all entries
2768 whenever a mark-sweep collection is started.
2769
2770 Fixed bug where switch statements containing only a default case
2771 would lead to an unbalanced stack (issue 69).
2772
2773 Fixed bug that made access to the function in a named function
2774 expression impossible in certain situations (issue 24).
2775
2776 Fixed even more build issues.
2777
2778 Optimized calling conventions on ARM. The conventions on ARM and
2779 IA-32 now match.
2780
2781 Removed static initializers for flags and counters.
2782
2783 Improved inline caching behavior for uncommon cases where lazily
2784 loading Date and RegExp code could force certain code paths go
2785 megamorphic.
2786
2787 Removed arguments adaption for builtins written in C++. This
2788 makes Array.prototype.push and Array.prototype.pop slightly
2789 faster.
2790
2791
ager@chromium.org9258b6b2008-09-11 09:11:10 +000027922008-09-11: Version 0.3.1
2793
2794 Fixed a number of build issues.
2795
2796 Fixed problem with missing I-cache flusing on ARM.
2797
2798 Changed space layout in memory management by splitting up
2799 code space into old data space and code space.
2800
2801 Added utf-8 conversion support to the API (issue 57).
2802
2803 Optimized repeated calls to eval with the same strings. These
2804 repeated calls are common in web applications.
2805
2806 Added Xcode project file.
2807
2808 Optimized a couple of Array operation.
2809
2810 Fixed parser bug by checking for end-of-string when parsing break
2811 and continue (issue 35).
2812
2813 Fixed problem where asian characters were not categorized as
2814 letters.
2815
2816 Fixed bug that disallowed calling functions fetched from an array
2817 using a string as an array index (issue 32).
2818
2819 Fixed bug where the internal field count on object templates were
2820 sometimes ignored (issue 54).
2821
2822 Added -f option to the shell sample for compatibility with other
2823 engines (issue 18).
2824
2825 Added source info to TryCatches in the API.
2826
2827 Fixed problem where the seed for the random number generator was
2828 clipped in a double to unsigned int conversion.
2829
2830 Fixed bug where cons string symbols were sometimes converted to
2831 non-symbol flat strings during GC.
2832
2833 Fixed bug in error reporting when attempting to convert null to an
2834 object.
ager@chromium.org32912102009-01-16 10:38:43 +00002835
2836
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000028372008-09-04: Version 0.3.0
2838
2839 Added support for running tests on the ARM simulator.
2840
2841 Fixed bug in the 'in' operator where negative indices were not
2842 treated correctly.
2843
2844 Fixed build issues on gcc-4.3.1.
2845
2846 Changed Date.prototype.toLocaleTimeString to not print the
2847 timezone part of the time.
2848
2849 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
2850 with user code.
2851
2852
v8.team.kasperl727e9952008-09-02 14:56:44 +000028532008-09-02: Version 0.2.5
2854
2855 Renamed the top level directory 'public' to 'include'.
2856
2857 Added 'env' option to the SCons build scripts to support
2858 overriding the ENV part of the build environment. This is mostly
2859 to support Windows builds in cases where SCons cannot find the
2860 correct paths to the Windows SDK, as these paths cannot be passed
2861 through shell environment variables.
2862
2863 Enabled "Buffer Security Check" on for the Windows SCons build and
2864 added the linker option /OPT:ICF as an optimization.
2865
2866 Added the V8 benchmark suite to the repository.
2867
2868
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000028692008-09-01: Version 0.2.4
2870
2871 Included mjsunit JavaScript test suite and C++ unit tests.
2872
2873 Changed the shell sample to not print the result of executing a
2874 script provided on the command line.
2875
2876 Fixed issue when building samples on Windows using a shared V8
2877 library. Added visibility option on Linux build which makes the
2878 generated library 18% smaller.
2879
2880 Changed build system to accept multiple build modes in one build
2881 and generate separate objects, libraries and executables for each
2882 mode.
2883
2884 Removed deferred negation optimization (a * -b => -(a * b)) since
2885 this visibly changes operand conversion order.
2886
2887 Improved parsing performance by introducing stack guard in
2888 preparsing. Without a stack guard preparsing always bails out
2889 with stack overflow.
2890
2891 Changed shell sample to take flags directly from the command-line.
2892 Added API call that implements this.
2893
2894 Added load, quit and version functions to the shell sample so it's
2895 easier to run benchmarks and tests.
2896
2897 Fixed issue with building samples and cctests on 64-bit machines.
2898
2899 Fixed bug in the runtime system where the prototype chain was not
2900 always searched for a setter when setting a property that does not
2901 exist locally.
ager@chromium.org32912102009-01-16 10:38:43 +00002902
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002903
mads.s.agercbaa0602008-08-14 13:41:48 +000029042008-08-14: Version 0.2.3
2905
2906 Improved performance of garbage collection by moving the
2907 function that updates pointers during compacting collection
2908 into the updating visitor. This gives the compiler a better
2909 chance to inline and avoid a function call per (potential)
2910 pointer.
2911
2912 Extended the shell sample with a --runtime-flags option.
2913
2914 Added Visual Studio project files for the shell.cc and
2915 process.cc samples.
2916
2917
29182008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +00002919
2920 Improved performance of garbage collection by changing the way
2921 we use the marking stack in the event of stack overflow during
2922 full garbage collection and by changing the way we mark roots.
2923
2924 Cleaned up ARM version by removing top of stack caching and by
2925 introducing push/pop elimination.
2926
2927 Cleaned up the way runtime functions are called to allow
2928 runtime calls with no arguments.
2929
2930 Changed Windows build options to make sure that exceptions are
2931 disabled and that optimization flags are enabled.
2932
2933 Added first version of Visual Studio project files.
2934
2935
mads.s.agercbaa0602008-08-14 13:41:48 +000029362008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +00002937
2938 Improved performance of unary addition by avoiding runtime calls.
2939
2940 Fixed the handling of '>' and '<=' to use right-to-left conversion
2941 and left-to-right evaluation as specified by ECMA-262.
2942
2943 Fixed a branch elimination bug on the ARM platform where incorrect
2944 code was generated because of overly aggressive branch
2945 elimination.
2946
2947 Improved performance of code that repeatedly assigns the same
2948 function to the same property of different objects with the same
2949 map.
2950
2951 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
2952 no longer expects DEBUG to be defined.
2953
2954 Added platform-nullos.cc to serve as the basis for new platform
2955 implementations.
2956
mads.s.ager31e71382008-08-13 09:32:07 +00002957
mads.s.agercbaa0602008-08-14 13:41:48 +000029582008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +00002959
2960 Changed all text files to have native svn:eol-style.
2961
2962 Added a few samples and support for building them. The samples
2963 include a simple shell that can be used to benchmark and test V8.
2964
2965 Changed V8::GetVersion to return the version as a string.
2966
2967 Added source for lazily loaded scripts to snapshots and made
2968 serialization non-destructive.
2969
2970 Improved ARM support by fixing the write barrier code to use
2971 aligned loads and stores and by removing premature locals
2972 optimization that relied on broken support for callee-saved
2973 registers (removed).
2974
2975 Refactored the code for marking live objects during garbage
2976 collection and the code for allocating objects in paged
2977 spaces. Introduced an abstraction for the map word of a heap-
2978 allocated object and changed the memory allocator to allocate
2979 executable memory only for spaces that may contain code objects.
2980
2981 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
2982 they can be used by debugging and logging modules. Added
2983 thread-safe message queues for dealing with debugger events.
2984
2985 Fixed the source code reported by toString for certain builtin
2986 empty functions and made sure that the prototype property of a
2987 function is enumerable.
2988
2989 Improved performance of converting values to condition flags in
2990 generated code.
2991
2992 Merged disassembler-{arch} files.
2993
2994
mads.s.agercbaa0602008-08-14 13:41:48 +000029952008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +00002996
2997 Added support for storing JavaScript stack traces in a stack
2998 allocated buffer to make it visible in shallow core dumps.
2999 Controlled by the --preallocate-message-memory flag which is
3000 disabled by default.
3001
3002
mads.s.agercbaa0602008-08-14 13:41:48 +000030032008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +00003004
3005 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
3006 map transitions would count as properties.
3007
3008 Allowed aliased eval invocations by treating them as evals in the
3009 global context. This may change in the future.
3010
3011 Added support for accessing the last entered context through the
3012 API and renamed Context::Current to Context::GetCurrent and
3013 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
3014
3015 Fixed bug in the debugger that would cause the debugger scripts to
3016 be recursively loaded and changed all disabling of interrupts to
3017 be block-structured.
3018
3019 Made snapshot data read-only to allow it to be more easily shared
3020 across multiple users of V8 when linked as a shared library.
3021
3022
mads.s.agercbaa0602008-08-14 13:41:48 +000030232008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +00003024
3025 Fixed building on Mac OS X by recognizing i386 and friends as
3026 IA-32 platforms.
3027
3028 Added propagation of stack overflow exceptions that occur while
3029 compiling nested functions.
3030
3031 Improved debugger with support for recursive break points and
3032 handling of exceptions that occur in the debugger JavaScript code.
3033
3034 Renamed GetInternal to GetInternalField and SetInternal to
3035 SetInternalField in the API and moved InternalFieldCount and
3036 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
3037
3038
mads.s.agercbaa0602008-08-14 13:41:48 +000030392008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +00003040
3041 Fixed bug in stack overflow check code for IA-32 targets where a
3042 non-tagged value in register eax was pushed to the stack.
3043
3044 Fixed potential quadratic behavior when converting strings to
3045 numbers.
3046
3047 Fixed bug where the return value from Object::SetProperty could
3048 end up being the property holder instead of the written value.
3049
3050 Improved debugger support by allowing nested break points and by
3051 dealing with stack-overflows when compiling functions before
3052 setting break points in them.
3053
3054
mads.s.agercbaa0602008-08-14 13:41:48 +000030552008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003056
kasper.lundbd3ec4e2008-07-09 11:06:54 +00003057 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00003058
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00003059# Local Variables:
3060# mode:text
3061# End: