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