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