blob: 3a39a9db59af63438316b67e29c1e7c98ade9285 [file] [log] [blame]
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000012008-09-01: Version 0.2.4
2
3 Included mjsunit JavaScript test suite and C++ unit tests.
4
5 Changed the shell sample to not print the result of executing a
6 script provided on the command line.
7
8 Fixed issue when building samples on Windows using a shared V8
9 library. Added visibility option on Linux build which makes the
10 generated library 18% smaller.
11
12 Changed build system to accept multiple build modes in one build
13 and generate separate objects, libraries and executables for each
14 mode.
15
16 Removed deferred negation optimization (a * -b => -(a * b)) since
17 this visibly changes operand conversion order.
18
19 Improved parsing performance by introducing stack guard in
20 preparsing. Without a stack guard preparsing always bails out
21 with stack overflow.
22
23 Changed shell sample to take flags directly from the command-line.
24 Added API call that implements this.
25
26 Added load, quit and version functions to the shell sample so it's
27 easier to run benchmarks and tests.
28
29 Fixed issue with building samples and cctests on 64-bit machines.
30
31 Fixed bug in the runtime system where the prototype chain was not
32 always searched for a setter when setting a property that does not
33 exist locally.
34
35
mads.s.agercbaa0602008-08-14 13:41:48 +0000362008-08-14: Version 0.2.3
37
38 Improved performance of garbage collection by moving the
39 function that updates pointers during compacting collection
40 into the updating visitor. This gives the compiler a better
41 chance to inline and avoid a function call per (potential)
42 pointer.
43
44 Extended the shell sample with a --runtime-flags option.
45
46 Added Visual Studio project files for the shell.cc and
47 process.cc samples.
48
49
502008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +000051
52 Improved performance of garbage collection by changing the way
53 we use the marking stack in the event of stack overflow during
54 full garbage collection and by changing the way we mark roots.
55
56 Cleaned up ARM version by removing top of stack caching and by
57 introducing push/pop elimination.
58
59 Cleaned up the way runtime functions are called to allow
60 runtime calls with no arguments.
61
62 Changed Windows build options to make sure that exceptions are
63 disabled and that optimization flags are enabled.
64
65 Added first version of Visual Studio project files.
66
67
mads.s.agercbaa0602008-08-14 13:41:48 +0000682008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +000069
70 Improved performance of unary addition by avoiding runtime calls.
71
72 Fixed the handling of '>' and '<=' to use right-to-left conversion
73 and left-to-right evaluation as specified by ECMA-262.
74
75 Fixed a branch elimination bug on the ARM platform where incorrect
76 code was generated because of overly aggressive branch
77 elimination.
78
79 Improved performance of code that repeatedly assigns the same
80 function to the same property of different objects with the same
81 map.
82
83 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
84 no longer expects DEBUG to be defined.
85
86 Added platform-nullos.cc to serve as the basis for new platform
87 implementations.
88
mads.s.ager31e71382008-08-13 09:32:07 +000089
mads.s.agercbaa0602008-08-14 13:41:48 +0000902008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +000091
92 Changed all text files to have native svn:eol-style.
93
94 Added a few samples and support for building them. The samples
95 include a simple shell that can be used to benchmark and test V8.
96
97 Changed V8::GetVersion to return the version as a string.
98
99 Added source for lazily loaded scripts to snapshots and made
100 serialization non-destructive.
101
102 Improved ARM support by fixing the write barrier code to use
103 aligned loads and stores and by removing premature locals
104 optimization that relied on broken support for callee-saved
105 registers (removed).
106
107 Refactored the code for marking live objects during garbage
108 collection and the code for allocating objects in paged
109 spaces. Introduced an abstraction for the map word of a heap-
110 allocated object and changed the memory allocator to allocate
111 executable memory only for spaces that may contain code objects.
112
113 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
114 they can be used by debugging and logging modules. Added
115 thread-safe message queues for dealing with debugger events.
116
117 Fixed the source code reported by toString for certain builtin
118 empty functions and made sure that the prototype property of a
119 function is enumerable.
120
121 Improved performance of converting values to condition flags in
122 generated code.
123
124 Merged disassembler-{arch} files.
125
126
mads.s.agercbaa0602008-08-14 13:41:48 +00001272008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +0000128
129 Added support for storing JavaScript stack traces in a stack
130 allocated buffer to make it visible in shallow core dumps.
131 Controlled by the --preallocate-message-memory flag which is
132 disabled by default.
133
134
mads.s.agercbaa0602008-08-14 13:41:48 +00001352008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +0000136
137 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
138 map transitions would count as properties.
139
140 Allowed aliased eval invocations by treating them as evals in the
141 global context. This may change in the future.
142
143 Added support for accessing the last entered context through the
144 API and renamed Context::Current to Context::GetCurrent and
145 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
146
147 Fixed bug in the debugger that would cause the debugger scripts to
148 be recursively loaded and changed all disabling of interrupts to
149 be block-structured.
150
151 Made snapshot data read-only to allow it to be more easily shared
152 across multiple users of V8 when linked as a shared library.
153
154
mads.s.agercbaa0602008-08-14 13:41:48 +00001552008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +0000156
157 Fixed building on Mac OS X by recognizing i386 and friends as
158 IA-32 platforms.
159
160 Added propagation of stack overflow exceptions that occur while
161 compiling nested functions.
162
163 Improved debugger with support for recursive break points and
164 handling of exceptions that occur in the debugger JavaScript code.
165
166 Renamed GetInternal to GetInternalField and SetInternal to
167 SetInternalField in the API and moved InternalFieldCount and
168 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
169
170
mads.s.agercbaa0602008-08-14 13:41:48 +00001712008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000172
173 Fixed bug in stack overflow check code for IA-32 targets where a
174 non-tagged value in register eax was pushed to the stack.
175
176 Fixed potential quadratic behavior when converting strings to
177 numbers.
178
179 Fixed bug where the return value from Object::SetProperty could
180 end up being the property holder instead of the written value.
181
182 Improved debugger support by allowing nested break points and by
183 dealing with stack-overflows when compiling functions before
184 setting break points in them.
185
186
mads.s.agercbaa0602008-08-14 13:41:48 +00001872008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000188
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000189 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000190