blob: ff7443bbdb21975ffa448a3f9f6468e1d5866a35 [file] [log] [blame]
ager@chromium.org236ad962008-09-25 09:45:57 +000012008-09-25: Version 0.3.3
2
3 Improved handling of relocation information to enable more
4 peep-hole optimizations.
5
6 Optimized switch statements where all labels are constant small
7 integers.
8
9 Optimized String.prototype.indexOf for common cases.
10
11 Fixed more build issues (issue 80).
12
13 Fixed a couple of profiler issues.
14
15 Fixed bug where the body of a function created using the Function
16 constructor was not allowed to end with a single-line comment
17 (issue 85).
18
19 Improved handling of object literals by canonicalizing object
20 literal maps. This will allow JSON objects with the same set of
21 properties to share the same map making inline caching work better
22 for JSON objects.
23
24
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000252008-09-17: Version 0.3.2
26
27 Generalized the EvalCache into a CompilationCache and enabled it
28 for scripts too. The current strategy is to retire all entries
29 whenever a mark-sweep collection is started.
30
31 Fixed bug where switch statements containing only a default case
32 would lead to an unbalanced stack (issue 69).
33
34 Fixed bug that made access to the function in a named function
35 expression impossible in certain situations (issue 24).
36
37 Fixed even more build issues.
38
39 Optimized calling conventions on ARM. The conventions on ARM and
40 IA-32 now match.
41
42 Removed static initializers for flags and counters.
43
44 Improved inline caching behavior for uncommon cases where lazily
45 loading Date and RegExp code could force certain code paths go
46 megamorphic.
47
48 Removed arguments adaption for builtins written in C++. This
49 makes Array.prototype.push and Array.prototype.pop slightly
50 faster.
51
52
ager@chromium.org9258b6b2008-09-11 09:11:10 +0000532008-09-11: Version 0.3.1
54
55 Fixed a number of build issues.
56
57 Fixed problem with missing I-cache flusing on ARM.
58
59 Changed space layout in memory management by splitting up
60 code space into old data space and code space.
61
62 Added utf-8 conversion support to the API (issue 57).
63
64 Optimized repeated calls to eval with the same strings. These
65 repeated calls are common in web applications.
66
67 Added Xcode project file.
68
69 Optimized a couple of Array operation.
70
71 Fixed parser bug by checking for end-of-string when parsing break
72 and continue (issue 35).
73
74 Fixed problem where asian characters were not categorized as
75 letters.
76
77 Fixed bug that disallowed calling functions fetched from an array
78 using a string as an array index (issue 32).
79
80 Fixed bug where the internal field count on object templates were
81 sometimes ignored (issue 54).
82
83 Added -f option to the shell sample for compatibility with other
84 engines (issue 18).
85
86 Added source info to TryCatches in the API.
87
88 Fixed problem where the seed for the random number generator was
89 clipped in a double to unsigned int conversion.
90
91 Fixed bug where cons string symbols were sometimes converted to
92 non-symbol flat strings during GC.
93
94 Fixed bug in error reporting when attempting to convert null to an
95 object.
96
97
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000982008-09-04: Version 0.3.0
99
100 Added support for running tests on the ARM simulator.
101
102 Fixed bug in the 'in' operator where negative indices were not
103 treated correctly.
104
105 Fixed build issues on gcc-4.3.1.
106
107 Changed Date.prototype.toLocaleTimeString to not print the
108 timezone part of the time.
109
110 Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
111 with user code.
112
113
v8.team.kasperl727e9952008-09-02 14:56:44 +00001142008-09-02: Version 0.2.5
115
116 Renamed the top level directory 'public' to 'include'.
117
118 Added 'env' option to the SCons build scripts to support
119 overriding the ENV part of the build environment. This is mostly
120 to support Windows builds in cases where SCons cannot find the
121 correct paths to the Windows SDK, as these paths cannot be passed
122 through shell environment variables.
123
124 Enabled "Buffer Security Check" on for the Windows SCons build and
125 added the linker option /OPT:ICF as an optimization.
126
127 Added the V8 benchmark suite to the repository.
128
129
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00001302008-09-01: Version 0.2.4
131
132 Included mjsunit JavaScript test suite and C++ unit tests.
133
134 Changed the shell sample to not print the result of executing a
135 script provided on the command line.
136
137 Fixed issue when building samples on Windows using a shared V8
138 library. Added visibility option on Linux build which makes the
139 generated library 18% smaller.
140
141 Changed build system to accept multiple build modes in one build
142 and generate separate objects, libraries and executables for each
143 mode.
144
145 Removed deferred negation optimization (a * -b => -(a * b)) since
146 this visibly changes operand conversion order.
147
148 Improved parsing performance by introducing stack guard in
149 preparsing. Without a stack guard preparsing always bails out
150 with stack overflow.
151
152 Changed shell sample to take flags directly from the command-line.
153 Added API call that implements this.
154
155 Added load, quit and version functions to the shell sample so it's
156 easier to run benchmarks and tests.
157
158 Fixed issue with building samples and cctests on 64-bit machines.
159
160 Fixed bug in the runtime system where the prototype chain was not
161 always searched for a setter when setting a property that does not
162 exist locally.
163
164
mads.s.agercbaa0602008-08-14 13:41:48 +00001652008-08-14: Version 0.2.3
166
167 Improved performance of garbage collection by moving the
168 function that updates pointers during compacting collection
169 into the updating visitor. This gives the compiler a better
170 chance to inline and avoid a function call per (potential)
171 pointer.
172
173 Extended the shell sample with a --runtime-flags option.
174
175 Added Visual Studio project files for the shell.cc and
176 process.cc samples.
177
178
1792008-08-13: Version 0.2.2
mads.s.ager31e71382008-08-13 09:32:07 +0000180
181 Improved performance of garbage collection by changing the way
182 we use the marking stack in the event of stack overflow during
183 full garbage collection and by changing the way we mark roots.
184
185 Cleaned up ARM version by removing top of stack caching and by
186 introducing push/pop elimination.
187
188 Cleaned up the way runtime functions are called to allow
189 runtime calls with no arguments.
190
191 Changed Windows build options to make sure that exceptions are
192 disabled and that optimization flags are enabled.
193
194 Added first version of Visual Studio project files.
195
196
mads.s.agercbaa0602008-08-14 13:41:48 +00001972008-08-06: Version 0.2.1
mads.s.ager@gmail.com769cc962008-08-06 10:02:49 +0000198
199 Improved performance of unary addition by avoiding runtime calls.
200
201 Fixed the handling of '>' and '<=' to use right-to-left conversion
202 and left-to-right evaluation as specified by ECMA-262.
203
204 Fixed a branch elimination bug on the ARM platform where incorrect
205 code was generated because of overly aggressive branch
206 elimination.
207
208 Improved performance of code that repeatedly assigns the same
209 function to the same property of different objects with the same
210 map.
211
212 Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
213 no longer expects DEBUG to be defined.
214
215 Added platform-nullos.cc to serve as the basis for new platform
216 implementations.
217
mads.s.ager31e71382008-08-13 09:32:07 +0000218
mads.s.agercbaa0602008-08-14 13:41:48 +00002192008-07-30: Version 0.2.0
kasper.lund7276f142008-07-30 08:49:36 +0000220
221 Changed all text files to have native svn:eol-style.
222
223 Added a few samples and support for building them. The samples
224 include a simple shell that can be used to benchmark and test V8.
225
226 Changed V8::GetVersion to return the version as a string.
227
228 Added source for lazily loaded scripts to snapshots and made
229 serialization non-destructive.
230
231 Improved ARM support by fixing the write barrier code to use
232 aligned loads and stores and by removing premature locals
233 optimization that relied on broken support for callee-saved
234 registers (removed).
235
236 Refactored the code for marking live objects during garbage
237 collection and the code for allocating objects in paged
238 spaces. Introduced an abstraction for the map word of a heap-
239 allocated object and changed the memory allocator to allocate
240 executable memory only for spaces that may contain code objects.
241
242 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
243 they can be used by debugging and logging modules. Added
244 thread-safe message queues for dealing with debugger events.
245
246 Fixed the source code reported by toString for certain builtin
247 empty functions and made sure that the prototype property of a
248 function is enumerable.
249
250 Improved performance of converting values to condition flags in
251 generated code.
252
253 Merged disassembler-{arch} files.
254
255
mads.s.agercbaa0602008-08-14 13:41:48 +00002562008-07-28: Version 0.1.4
kasper.lundaf4734f2008-07-28 12:50:18 +0000257
258 Added support for storing JavaScript stack traces in a stack
259 allocated buffer to make it visible in shallow core dumps.
260 Controlled by the --preallocate-message-memory flag which is
261 disabled by default.
262
263
mads.s.agercbaa0602008-08-14 13:41:48 +00002642008-07-25: Version 0.1.3
kasper.lund44510672008-07-25 07:37:58 +0000265
266 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
267 map transitions would count as properties.
268
269 Allowed aliased eval invocations by treating them as evals in the
270 global context. This may change in the future.
271
272 Added support for accessing the last entered context through the
273 API and renamed Context::Current to Context::GetCurrent and
274 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
275
276 Fixed bug in the debugger that would cause the debugger scripts to
277 be recursively loaded and changed all disabling of interrupts to
278 be block-structured.
279
280 Made snapshot data read-only to allow it to be more easily shared
281 across multiple users of V8 when linked as a shared library.
282
283
mads.s.agercbaa0602008-08-14 13:41:48 +00002842008-07-16: Version 0.1.2
kasper.lund212ac232008-07-16 07:07:30 +0000285
286 Fixed building on Mac OS X by recognizing i386 and friends as
287 IA-32 platforms.
288
289 Added propagation of stack overflow exceptions that occur while
290 compiling nested functions.
291
292 Improved debugger with support for recursive break points and
293 handling of exceptions that occur in the debugger JavaScript code.
294
295 Renamed GetInternal to GetInternalField and SetInternal to
296 SetInternalField in the API and moved InternalFieldCount and
297 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
298
299
mads.s.agercbaa0602008-08-14 13:41:48 +00003002008-07-09: Version 0.1.1
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000301
302 Fixed bug in stack overflow check code for IA-32 targets where a
303 non-tagged value in register eax was pushed to the stack.
304
305 Fixed potential quadratic behavior when converting strings to
306 numbers.
307
308 Fixed bug where the return value from Object::SetProperty could
309 end up being the property holder instead of the written value.
310
311 Improved debugger support by allowing nested break points and by
312 dealing with stack-overflows when compiling functions before
313 setting break points in them.
314
315
mads.s.agercbaa0602008-08-14 13:41:48 +00003162008-07-03: Version 0.1.0
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000317
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000318 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000319