blob: 021ea6114758ea85007ead515231af3d09b74469 [file] [log] [blame]
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +000012008-08-06: Version 0.2.1 (130029)
2
3 Improved performance of unary addition by avoiding runtime calls.
4
5 Fixed the handling of '>' and '<=' to use right-to-left conversion
6 and left-to-right evaluation as specified by ECMA-262.
7
8 Fixed a branch elimination bug on the ARM platform where incorrect
9 code was generated because of overly aggressive branch
10 elimination.
11
12 Improved performance of code that repeatedly assigns the same
13 function to the same property of different objects with the same
14 map.
15
16 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
17 no longer expects DEBUG to be defined.
18
19 Added platform-nullos.cc to serve as the basis for new platform
20 implementations.
21
22
kasper.lund7276f142008-07-30 08:49:36 +0000232008-07-30: Version 0.2.0 (129146)
24
25 Changed all text files to have native svn:eol-style.
26
27 Added a few samples and support for building them. The samples
28 include a simple shell that can be used to benchmark and test V8.
29
30 Changed V8::GetVersion to return the version as a string.
31
32 Added source for lazily loaded scripts to snapshots and made
33 serialization non-destructive.
34
35 Improved ARM support by fixing the write barrier code to use
36 aligned loads and stores and by removing premature locals
37 optimization that relied on broken support for callee-saved
38 registers (removed).
39
40 Refactored the code for marking live objects during garbage
41 collection and the code for allocating objects in paged
42 spaces. Introduced an abstraction for the map word of a heap-
43 allocated object and changed the memory allocator to allocate
44 executable memory only for spaces that may contain code objects.
45
46 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
47 they can be used by debugging and logging modules. Added
48 thread-safe message queues for dealing with debugger events.
49
50 Fixed the source code reported by toString for certain builtin
51 empty functions and made sure that the prototype property of a
52 function is enumerable.
53
54 Improved performance of converting values to condition flags in
55 generated code.
56
57 Merged disassembler-{arch} files.
58
59
kasper.lundaf4734f2008-07-28 12:50:18 +0000602008-07-28: Version 0.1.4 (128918)
61
62 Added support for storing JavaScript stack traces in a stack
63 allocated buffer to make it visible in shallow core dumps.
64 Controlled by the --preallocate-message-memory flag which is
65 disabled by default.
66
67
kasper.lund44510672008-07-25 07:37:58 +0000682008-07-25: Version 0.1.3 (128832)
69
70 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
71 map transitions would count as properties.
72
73 Allowed aliased eval invocations by treating them as evals in the
74 global context. This may change in the future.
75
76 Added support for accessing the last entered context through the
77 API and renamed Context::Current to Context::GetCurrent and
78 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
79
80 Fixed bug in the debugger that would cause the debugger scripts to
81 be recursively loaded and changed all disabling of interrupts to
82 be block-structured.
83
84 Made snapshot data read-only to allow it to be more easily shared
85 across multiple users of V8 when linked as a shared library.
86
87
kasper.lund212ac232008-07-16 07:07:30 +0000882008-07-16: Version 0.1.2 (127441)
89
90 Fixed building on Mac OS X by recognizing i386 and friends as
91 IA-32 platforms.
92
93 Added propagation of stack overflow exceptions that occur while
94 compiling nested functions.
95
96 Improved debugger with support for recursive break points and
97 handling of exceptions that occur in the debugger JavaScript code.
98
99 Renamed GetInternal to GetInternalField and SetInternal to
100 SetInternalField in the API and moved InternalFieldCount and
101 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
102
103
kasper.lundbd3ec4e2008-07-09 11:06:54 +00001042008-07-09: Version 0.1.1 (126448)
105
106 Fixed bug in stack overflow check code for IA-32 targets where a
107 non-tagged value in register eax was pushed to the stack.
108
109 Fixed potential quadratic behavior when converting strings to
110 numbers.
111
112 Fixed bug where the return value from Object::SetProperty could
113 end up being the property holder instead of the written value.
114
115 Improved debugger support by allowing nested break points and by
116 dealing with stack-overflows when compiling functions before
117 setting break points in them.
118
119
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00001202008-07-03: Version 0.1.0 (125876)
121
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000122 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000123