| mads.s.ager@gmail.com | 9a4089a | 2008-09-01 08:55:01 +0000 | [diff] [blame^] | 1 | 2008-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.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 36 | 2008-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 | |
| 50 | 2008-08-13: Version 0.2.2 |
| mads.s.ager | 31e7138 | 2008-08-13 09:32:07 +0000 | [diff] [blame] | 51 | |
| 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.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 68 | 2008-08-06: Version 0.2.1 |
| mads.s.ager@gmail.com | 769cc96 | 2008-08-06 10:02:49 +0000 | [diff] [blame] | 69 | |
| 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.ager | 31e7138 | 2008-08-13 09:32:07 +0000 | [diff] [blame] | 89 | |
| mads.s.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 90 | 2008-07-30: Version 0.2.0 |
| kasper.lund | 7276f14 | 2008-07-30 08:49:36 +0000 | [diff] [blame] | 91 | |
| 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.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 127 | 2008-07-28: Version 0.1.4 |
| kasper.lund | af4734f | 2008-07-28 12:50:18 +0000 | [diff] [blame] | 128 | |
| 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.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 135 | 2008-07-25: Version 0.1.3 |
| kasper.lund | 4451067 | 2008-07-25 07:37:58 +0000 | [diff] [blame] | 136 | |
| 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.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 155 | 2008-07-16: Version 0.1.2 |
| kasper.lund | 212ac23 | 2008-07-16 07:07:30 +0000 | [diff] [blame] | 156 | |
| 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.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 171 | 2008-07-09: Version 0.1.1 |
| kasper.lund | bd3ec4e | 2008-07-09 11:06:54 +0000 | [diff] [blame] | 172 | |
| 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.ager | cbaa060 | 2008-08-14 13:41:48 +0000 | [diff] [blame] | 187 | 2008-07-03: Version 0.1.0 |
| christian.plesner.hansen | 43d26ec | 2008-07-03 15:10:15 +0000 | [diff] [blame] | 188 | |
| kasper.lund | bd3ec4e | 2008-07-09 11:06:54 +0000 | [diff] [blame] | 189 | Initial export. |
| christian.plesner.hansen | 43d26ec | 2008-07-03 15:10:15 +0000 | [diff] [blame] | 190 | |