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