therubyracer 0.8.1.pre2 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of therubyracer might be problematic. Click here for more details.

Files changed (877) hide show
  1. data/Changelog.md +2 -1
  2. data/README.md +6 -3
  3. data/ext/v8/upstream/3.1.8/.gitignore +31 -0
  4. data/ext/v8/upstream/3.1.8/AUTHORS +40 -0
  5. data/ext/v8/upstream/3.1.8/ChangeLog +2566 -0
  6. data/ext/v8/upstream/3.1.8/LICENSE +52 -0
  7. data/ext/v8/upstream/3.1.8/LICENSE.strongtalk +29 -0
  8. data/ext/v8/upstream/3.1.8/LICENSE.v8 +26 -0
  9. data/ext/v8/upstream/3.1.8/LICENSE.valgrind +45 -0
  10. data/ext/v8/upstream/3.1.8/SConstruct +1192 -0
  11. data/ext/v8/upstream/3.1.8/build/README.txt +25 -0
  12. data/ext/v8/upstream/3.1.8/build/all.gyp +18 -0
  13. data/ext/v8/upstream/3.1.8/build/armu.gypi +32 -0
  14. data/ext/v8/upstream/3.1.8/build/common.gypi +82 -0
  15. data/ext/v8/upstream/3.1.8/build/gyp_v8 +145 -0
  16. data/ext/v8/upstream/3.1.8/include/v8-debug.h +384 -0
  17. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +426 -0
  19. data/ext/v8/upstream/3.1.8/include/v8-testing.h +99 -0
  20. data/ext/v8/upstream/3.1.8/include/v8.h +3846 -0
  21. data/ext/v8/upstream/3.1.8/include/v8stdint.h +53 -0
  22. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +206 -0
  23. data/ext/v8/upstream/3.1.8/src/SConscript +356 -0
  24. data/ext/v8/upstream/3.1.8/src/accessors.cc +907 -0
  25. data/ext/v8/upstream/3.1.8/src/accessors.h +121 -0
  26. data/ext/v8/upstream/3.1.8/src/allocation.cc +204 -0
  27. data/ext/v8/upstream/3.1.8/src/allocation.h +176 -0
  28. data/ext/v8/upstream/3.1.8/src/api.cc +5191 -0
  29. data/ext/v8/upstream/3.1.8/src/api.h +508 -0
  30. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/apinatives.js +0 -0
  31. data/ext/v8/upstream/3.1.8/src/apiutils.h +80 -0
  32. data/ext/v8/upstream/3.1.8/src/arguments.h +105 -0
  33. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +352 -0
  34. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +2756 -0
  35. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +1294 -0
  36. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +1628 -0
  37. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +6783 -0
  38. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +657 -0
  39. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm-inl.h +48 -0
  40. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +7403 -0
  41. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +595 -0
  42. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.cc +152 -0
  43. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +769 -0
  44. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +147 -0
  45. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +315 -0
  46. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +700 -0
  47. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +1439 -0
  48. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.cc +45 -0
  49. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +168 -0
  50. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +4230 -0
  51. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +1799 -0
  52. data/ext/v8/upstream/3.1.8/src/arm/jump-target-arm.cc +174 -0
  53. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +2041 -0
  54. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +2046 -0
  55. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +3822 -0
  56. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +312 -0
  57. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +303 -0
  58. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.h +84 -0
  59. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +2701 -0
  60. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +1015 -0
  61. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +1280 -0
  62. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +252 -0
  63. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm-inl.h +0 -0
  64. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.cc +0 -0
  65. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.h +0 -0
  66. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +3165 -0
  67. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +402 -0
  68. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +4077 -0
  69. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/virtual-frame-arm-inl.h +0 -0
  70. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +843 -0
  71. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +520 -0
  72. data/ext/v8/upstream/3.1.8/src/array.js +1231 -0
  73. data/ext/v8/upstream/3.1.8/src/assembler.cc +973 -0
  74. data/ext/v8/upstream/3.1.8/src/assembler.h +787 -0
  75. data/ext/v8/upstream/3.1.8/src/ast-inl.h +107 -0
  76. data/ext/v8/upstream/3.1.8/src/ast.cc +1067 -0
  77. data/ext/v8/upstream/3.1.8/src/ast.h +2177 -0
  78. data/ext/v8/upstream/3.1.8/src/atomicops.h +165 -0
  79. data/ext/v8/upstream/3.1.8/src/atomicops_internals_arm_gcc.h +145 -0
  80. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.cc +126 -0
  81. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.h +287 -0
  82. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_macosx.h +301 -0
  83. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_msvc.h +203 -0
  84. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.cc +655 -0
  85. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.h +81 -0
  86. data/ext/v8/upstream/3.1.8/src/bignum.cc +768 -0
  87. data/ext/v8/upstream/3.1.8/src/bignum.h +140 -0
  88. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +1888 -0
  89. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/bootstrapper.h +0 -0
  90. data/ext/v8/upstream/3.1.8/src/builtins.cc +1586 -0
  91. data/ext/v8/upstream/3.1.8/src/builtins.h +339 -0
  92. data/ext/v8/upstream/3.1.8/src/bytecodes-irregexp.h +105 -0
  93. data/ext/v8/upstream/3.1.8/src/cached-powers.cc +177 -0
  94. data/ext/v8/upstream/3.1.8/src/cached-powers.h +65 -0
  95. data/ext/v8/upstream/3.1.8/src/char-predicates-inl.h +94 -0
  96. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/char-predicates.h +0 -0
  97. data/ext/v8/upstream/3.1.8/src/checks.cc +110 -0
  98. data/ext/v8/upstream/3.1.8/src/checks.h +292 -0
  99. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue-inl.h +0 -0
  100. data/ext/v8/upstream/3.1.8/src/circular-queue.cc +122 -0
  101. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue.h +0 -0
  102. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +230 -0
  103. data/ext/v8/upstream/3.1.8/src/code-stubs.h +950 -0
  104. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/code.h +0 -0
  105. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +64 -0
  106. data/ext/v8/upstream/3.1.8/src/codegen.cc +495 -0
  107. data/ext/v8/upstream/3.1.8/src/codegen.h +245 -0
  108. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +654 -0
  109. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +112 -0
  110. data/ext/v8/upstream/3.1.8/src/compiler.cc +806 -0
  111. data/ext/v8/upstream/3.1.8/src/compiler.h +290 -0
  112. data/ext/v8/upstream/3.1.8/src/contexts.cc +320 -0
  113. data/ext/v8/upstream/3.1.8/src/contexts.h +376 -0
  114. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/conversions-inl.h +0 -0
  115. data/ext/v8/upstream/3.1.8/src/conversions.cc +1069 -0
  116. data/ext/v8/upstream/3.1.8/src/conversions.h +122 -0
  117. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/counters.cc +0 -0
  118. data/ext/v8/upstream/3.1.8/src/counters.h +242 -0
  119. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +100 -0
  120. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +554 -0
  121. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +291 -0
  122. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/cpu.h +0 -0
  123. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +367 -0
  124. data/ext/v8/upstream/3.1.8/src/d8-debug.h +157 -0
  125. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-posix.cc +0 -0
  126. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-readline.cc +0 -0
  127. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-windows.cc +0 -0
  128. data/ext/v8/upstream/3.1.8/src/d8.cc +792 -0
  129. data/ext/v8/upstream/3.1.8/src/d8.gyp +85 -0
  130. data/ext/v8/upstream/3.1.8/src/d8.h +231 -0
  131. data/ext/v8/upstream/3.1.8/src/d8.js +2798 -0
  132. data/ext/v8/upstream/3.1.8/src/data-flow.cc +545 -0
  133. data/ext/v8/upstream/3.1.8/src/data-flow.h +379 -0
  134. data/ext/v8/upstream/3.1.8/src/date.js +1103 -0
  135. data/ext/v8/upstream/3.1.8/src/dateparser-inl.h +125 -0
  136. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/dateparser.cc +0 -0
  137. data/ext/v8/upstream/3.1.8/src/dateparser.h +263 -0
  138. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +446 -0
  139. data/ext/v8/upstream/3.1.8/src/debug-agent.h +131 -0
  140. data/ext/v8/upstream/3.1.8/src/debug-debugger.js +2569 -0
  141. data/ext/v8/upstream/3.1.8/src/debug.cc +3085 -0
  142. data/ext/v8/upstream/3.1.8/src/debug.h +1025 -0
  143. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +1185 -0
  144. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +529 -0
  145. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disasm.h +0 -0
  146. data/ext/v8/upstream/3.1.8/src/disassembler.cc +338 -0
  147. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disassembler.h +0 -0
  148. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.cc +0 -0
  149. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.h +0 -0
  150. data/ext/v8/upstream/3.1.8/src/double.h +238 -0
  151. data/ext/v8/upstream/3.1.8/src/dtoa.cc +103 -0
  152. data/ext/v8/upstream/3.1.8/src/dtoa.h +85 -0
  153. data/ext/v8/upstream/3.1.8/src/execution.cc +735 -0
  154. data/ext/v8/upstream/3.1.8/src/execution.h +322 -0
  155. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +53 -0
  156. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +264 -0
  157. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.h +64 -0
  158. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +141 -0
  159. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.h +50 -0
  160. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +58 -0
  161. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.h +49 -0
  162. data/ext/v8/upstream/3.1.8/src/factory.cc +1087 -0
  163. data/ext/v8/upstream/3.1.8/src/factory.h +432 -0
  164. data/ext/v8/upstream/3.1.8/src/fast-dtoa.cc +736 -0
  165. data/ext/v8/upstream/3.1.8/src/fast-dtoa.h +83 -0
  166. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.cc +0 -0
  167. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.h +0 -0
  168. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +552 -0
  169. data/ext/v8/upstream/3.1.8/src/flags.cc +551 -0
  170. data/ext/v8/upstream/3.1.8/src/flags.h +79 -0
  171. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/frame-element.cc +0 -0
  172. data/ext/v8/upstream/3.1.8/src/frame-element.h +277 -0
  173. data/ext/v8/upstream/3.1.8/src/frames-inl.h +210 -0
  174. data/ext/v8/upstream/3.1.8/src/frames.cc +1232 -0
  175. data/ext/v8/upstream/3.1.8/src/frames.h +826 -0
  176. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +1382 -0
  177. data/ext/v8/upstream/3.1.8/src/full-codegen.h +751 -0
  178. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +90 -0
  179. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +111 -0
  180. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +1547 -0
  181. data/ext/v8/upstream/3.1.8/src/gdb-jit.h +138 -0
  182. data/ext/v8/upstream/3.1.8/src/global-handles.cc +534 -0
  183. data/ext/v8/upstream/3.1.8/src/global-handles.h +181 -0
  184. data/ext/v8/upstream/3.1.8/src/globals.h +325 -0
  185. data/ext/v8/upstream/3.1.8/src/handles-inl.h +80 -0
  186. data/ext/v8/upstream/3.1.8/src/handles.cc +910 -0
  187. data/ext/v8/upstream/3.1.8/src/handles.h +424 -0
  188. data/ext/v8/upstream/3.1.8/src/hashmap.cc +230 -0
  189. data/ext/v8/upstream/3.1.8/src/hashmap.h +121 -0
  190. data/ext/v8/upstream/3.1.8/src/heap-inl.h +587 -0
  191. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +1128 -0
  192. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +381 -0
  193. data/ext/v8/upstream/3.1.8/src/heap.cc +5610 -0
  194. data/ext/v8/upstream/3.1.8/src/heap.h +2218 -0
  195. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +1490 -0
  196. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +3493 -0
  197. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +6056 -0
  198. data/ext/v8/upstream/3.1.8/src/hydrogen.h +1091 -0
  199. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +429 -0
  200. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +2800 -0
  201. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +1093 -0
  202. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +1590 -0
  203. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +6624 -0
  204. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +536 -0
  205. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/codegen-ia32-inl.h +0 -0
  206. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +10354 -0
  207. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +798 -0
  208. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +87 -0
  209. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +309 -0
  210. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +664 -0
  211. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +1597 -0
  212. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.cc +45 -0
  213. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +140 -0
  214. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +4278 -0
  215. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +1786 -0
  216. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/jump-target-ia32.cc +0 -0
  217. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +3880 -0
  218. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +309 -0
  219. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +460 -0
  220. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
  221. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +2095 -0
  222. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +2127 -0
  223. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +2031 -0
  224. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +798 -0
  225. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +1253 -0
  226. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +215 -0
  227. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  228. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.cc +0 -0
  229. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.h +0 -0
  230. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/simulator-ia32.cc +0 -0
  231. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +72 -0
  232. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +3732 -0
  233. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +1360 -0
  234. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +646 -0
  235. data/ext/v8/upstream/3.1.8/src/ic-inl.h +129 -0
  236. data/ext/v8/upstream/3.1.8/src/ic.cc +2333 -0
  237. data/ext/v8/upstream/3.1.8/src/ic.h +639 -0
  238. data/ext/v8/upstream/3.1.8/src/inspector.cc +63 -0
  239. data/ext/v8/upstream/3.1.8/src/inspector.h +62 -0
  240. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +655 -0
  241. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/interpreter-irregexp.h +0 -0
  242. data/ext/v8/upstream/3.1.8/src/json.js +342 -0
  243. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +5340 -0
  244. data/ext/v8/upstream/3.1.8/src/jsregexp.h +1484 -0
  245. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-heavy-inl.h +0 -0
  246. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +430 -0
  247. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +244 -0
  248. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-inl.h +0 -0
  249. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-light-inl.h +0 -0
  250. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +111 -0
  251. data/ext/v8/upstream/3.1.8/src/jump-target-light.h +193 -0
  252. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.cc +0 -0
  253. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.h +0 -0
  254. data/ext/v8/upstream/3.1.8/src/list-inl.h +206 -0
  255. data/ext/v8/upstream/3.1.8/src/list.h +164 -0
  256. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +140 -0
  257. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +2093 -0
  258. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +644 -0
  259. data/ext/v8/upstream/3.1.8/src/lithium.cc +168 -0
  260. data/ext/v8/upstream/3.1.8/src/lithium.h +592 -0
  261. data/ext/v8/upstream/3.1.8/src/liveedit-debugger.js +1082 -0
  262. data/ext/v8/upstream/3.1.8/src/liveedit.cc +1650 -0
  263. data/ext/v8/upstream/3.1.8/src/liveedit.h +174 -0
  264. data/ext/v8/upstream/3.1.8/src/liveobjectlist-inl.h +126 -0
  265. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +2527 -0
  266. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +322 -0
  267. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/log-inl.h +0 -0
  268. data/ext/v8/upstream/3.1.8/src/log-utils.cc +336 -0
  269. data/ext/v8/upstream/3.1.8/src/log-utils.h +232 -0
  270. data/ext/v8/upstream/3.1.8/src/log.cc +1608 -0
  271. data/ext/v8/upstream/3.1.8/src/log.h +379 -0
  272. data/ext/v8/upstream/3.1.8/src/macro-assembler.h +120 -0
  273. data/ext/v8/upstream/3.1.8/src/macros.py +178 -0
  274. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +2957 -0
  275. data/ext/v8/upstream/3.1.8/src/mark-compact.h +433 -0
  276. data/ext/v8/upstream/3.1.8/src/math.js +264 -0
  277. data/ext/v8/upstream/3.1.8/src/memory.h +82 -0
  278. data/ext/v8/upstream/3.1.8/src/messages.cc +164 -0
  279. data/ext/v8/upstream/3.1.8/src/messages.h +114 -0
  280. data/ext/v8/upstream/3.1.8/src/messages.js +1071 -0
  281. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips-inl.h +0 -0
  282. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips.cc +0 -0
  283. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +667 -0
  284. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +205 -0
  285. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips-inl.h +0 -0
  286. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips.cc +0 -0
  287. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +431 -0
  288. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.cc +0 -0
  289. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.h +0 -0
  290. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/cpu-mips.cc +0 -0
  291. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +127 -0
  292. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/disasm-mips.cc +0 -0
  293. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/fast-codegen-mips.cc +0 -0
  294. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +96 -0
  295. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/frames-mips.h +0 -0
  296. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/full-codegen-mips.cc +0 -0
  297. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +208 -0
  298. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/jump-target-mips.cc +0 -0
  299. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.cc +0 -0
  300. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.h +0 -0
  301. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips-inl.h +0 -0
  302. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.cc +0 -0
  303. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.h +0 -0
  304. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +1650 -0
  305. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +311 -0
  306. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +418 -0
  307. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.cc +0 -0
  308. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.h +0 -0
  309. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +2380 -0
  310. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mksnapshot.cc +0 -0
  311. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/natives.h +0 -0
  312. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +722 -0
  313. data/ext/v8/upstream/3.1.8/src/objects-inl.h +3946 -0
  314. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +801 -0
  315. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +142 -0
  316. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +401 -0
  317. data/ext/v8/upstream/3.1.8/src/objects.cc +10044 -0
  318. data/ext/v8/upstream/3.1.8/src/objects.h +6571 -0
  319. data/ext/v8/upstream/3.1.8/src/parser.cc +5165 -0
  320. data/ext/v8/upstream/3.1.8/src/parser.h +802 -0
  321. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +745 -0
  322. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +702 -0
  323. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +981 -0
  324. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +732 -0
  325. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +498 -0
  326. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +657 -0
  327. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +399 -0
  328. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +714 -0
  329. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +1974 -0
  330. data/ext/v8/upstream/3.1.8/src/platform.h +636 -0
  331. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +183 -0
  332. data/ext/v8/upstream/3.1.8/src/preparse-data.h +249 -0
  333. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +213 -0
  334. data/ext/v8/upstream/3.1.8/src/preparser.cc +1205 -0
  335. data/ext/v8/upstream/3.1.8/src/preparser.h +278 -0
  336. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +1539 -0
  337. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +223 -0
  338. data/ext/v8/upstream/3.1.8/src/profile-generator-inl.h +128 -0
  339. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +2899 -0
  340. data/ext/v8/upstream/3.1.8/src/profile-generator.h +1151 -0
  341. data/ext/v8/upstream/3.1.8/src/property.cc +96 -0
  342. data/ext/v8/upstream/3.1.8/src/property.h +337 -0
  343. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  344. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +470 -0
  345. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.h +142 -0
  346. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.cc +373 -0
  347. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.h +104 -0
  348. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +257 -0
  349. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +231 -0
  350. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.cc +0 -0
  351. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.h +0 -0
  352. data/ext/v8/upstream/3.1.8/src/regexp.js +483 -0
  353. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator-inl.h +0 -0
  354. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.cc +0 -0
  355. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.h +0 -0
  356. data/ext/v8/upstream/3.1.8/src/rewriter.cc +1023 -0
  357. data/ext/v8/upstream/3.1.8/src/rewriter.h +59 -0
  358. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +443 -0
  359. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +77 -0
  360. data/ext/v8/upstream/3.1.8/src/runtime.cc +11592 -0
  361. data/ext/v8/upstream/3.1.8/src/runtime.h +582 -0
  362. data/ext/v8/upstream/3.1.8/src/runtime.js +643 -0
  363. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +253 -0
  364. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +263 -0
  365. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +971 -0
  366. data/ext/v8/upstream/3.1.8/src/scanner-base.h +653 -0
  367. data/ext/v8/upstream/3.1.8/src/scanner.cc +586 -0
  368. data/ext/v8/upstream/3.1.8/src/scanner.h +194 -0
  369. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +636 -0
  370. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +238 -0
  371. data/ext/v8/upstream/3.1.8/src/scopes.cc +1063 -0
  372. data/ext/v8/upstream/3.1.8/src/scopes.h +494 -0
  373. data/ext/v8/upstream/3.1.8/src/serialize.cc +1535 -0
  374. data/ext/v8/upstream/3.1.8/src/serialize.h +584 -0
  375. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/shell.h +0 -0
  376. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/simulator.h +0 -0
  377. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/smart-pointer.h +0 -0
  378. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-common.cc +0 -0
  379. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-empty.cc +0 -0
  380. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot.h +0 -0
  381. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +524 -0
  382. data/ext/v8/upstream/3.1.8/src/spaces.cc +3254 -0
  383. data/ext/v8/upstream/3.1.8/src/spaces.h +2362 -0
  384. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree-inl.h +0 -0
  385. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree.h +0 -0
  386. data/ext/v8/upstream/3.1.8/src/string-search.cc +40 -0
  387. data/ext/v8/upstream/3.1.8/src/string-search.h +567 -0
  388. data/ext/v8/upstream/3.1.8/src/string-stream.cc +584 -0
  389. data/ext/v8/upstream/3.1.8/src/string-stream.h +191 -0
  390. data/ext/v8/upstream/3.1.8/src/string.js +915 -0
  391. data/ext/v8/upstream/3.1.8/src/strtod.cc +440 -0
  392. data/ext/v8/upstream/3.1.8/src/strtod.h +40 -0
  393. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +1878 -0
  394. data/ext/v8/upstream/3.1.8/src/stub-cache.h +849 -0
  395. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/third_party/valgrind/valgrind.h +0 -0
  396. data/ext/v8/upstream/3.1.8/src/token.cc +63 -0
  397. data/ext/v8/upstream/3.1.8/src/token.h +288 -0
  398. data/ext/v8/upstream/3.1.8/src/top.cc +1152 -0
  399. data/ext/v8/upstream/3.1.8/src/top.h +608 -0
  400. data/ext/v8/upstream/3.1.8/src/type-info.cc +406 -0
  401. data/ext/v8/upstream/3.1.8/src/type-info.h +283 -0
  402. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue-inl.h +0 -0
  403. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue.h +0 -0
  404. data/ext/v8/upstream/3.1.8/src/unicode-inl.h +238 -0
  405. data/ext/v8/upstream/3.1.8/src/unicode.cc +1624 -0
  406. data/ext/v8/upstream/3.1.8/src/unicode.h +280 -0
  407. data/ext/v8/upstream/3.1.8/src/uri.js +402 -0
  408. data/ext/v8/upstream/3.1.8/src/utils.cc +371 -0
  409. data/ext/v8/upstream/3.1.8/src/utils.h +793 -0
  410. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8-counters.cc +0 -0
  411. data/ext/v8/upstream/3.1.8/src/v8-counters.h +290 -0
  412. data/ext/v8/upstream/3.1.8/src/v8.cc +270 -0
  413. data/ext/v8/upstream/3.1.8/src/v8.h +127 -0
  414. data/ext/v8/upstream/3.1.8/src/v8checks.h +64 -0
  415. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8dll-main.cc +0 -0
  416. data/ext/v8/upstream/3.1.8/src/v8globals.h +480 -0
  417. data/ext/v8/upstream/3.1.8/src/v8natives.js +1252 -0
  418. data/ext/v8/upstream/3.1.8/src/v8preparserdll-main.cc +39 -0
  419. data/ext/v8/upstream/3.1.8/src/v8threads.cc +440 -0
  420. data/ext/v8/upstream/3.1.8/src/v8threads.h +157 -0
  421. data/ext/v8/upstream/3.1.8/src/v8utils.h +354 -0
  422. data/ext/v8/upstream/3.1.8/src/variables.cc +132 -0
  423. data/ext/v8/upstream/3.1.8/src/variables.h +212 -0
  424. data/ext/v8/upstream/3.1.8/src/version.cc +95 -0
  425. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/version.h +0 -0
  426. data/ext/v8/upstream/3.1.8/src/virtual-frame-heavy-inl.h +190 -0
  427. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-heavy.cc +0 -0
  428. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-inl.h +0 -0
  429. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light-inl.h +0 -0
  430. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light.cc +0 -0
  431. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame.cc +0 -0
  432. data/ext/v8/upstream/3.1.8/src/virtual-frame.h +59 -0
  433. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +134 -0
  434. data/ext/v8/upstream/3.1.8/src/vm-state.h +68 -0
  435. data/ext/v8/upstream/3.1.8/src/win32-headers.h +95 -0
  436. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +455 -0
  437. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +3162 -0
  438. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +1584 -0
  439. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +1492 -0
  440. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +5150 -0
  441. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +519 -0
  442. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64-inl.h +46 -0
  443. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +8835 -0
  444. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +750 -0
  445. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +86 -0
  446. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +316 -0
  447. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +781 -0
  448. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +1737 -0
  449. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.cc +45 -0
  450. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +130 -0
  451. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +3984 -0
  452. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +1761 -0
  453. data/ext/v8/upstream/3.1.8/src/x64/jump-target-x64.cc +437 -0
  454. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +3639 -0
  455. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +305 -0
  456. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.cc +320 -0
  457. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.h +74 -0
  458. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +2044 -0
  459. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +2052 -0
  460. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +2660 -0
  461. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +1852 -0
  462. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +1382 -0
  463. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +278 -0
  464. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64-inl.h +0 -0
  465. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.cc +0 -0
  466. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.h +0 -0
  467. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/simulator-x64.cc +0 -0
  468. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +71 -0
  469. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +3509 -0
  470. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +1292 -0
  471. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +593 -0
  472. data/ext/v8/upstream/3.1.8/src/zone-inl.h +83 -0
  473. data/ext/v8/upstream/3.1.8/src/zone.cc +195 -0
  474. data/ext/v8/upstream/3.1.8/src/zone.h +233 -0
  475. data/ext/v8/upstream/3.1.8/tools/codemap.js +265 -0
  476. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/consarray.js +0 -0
  477. data/ext/v8/upstream/3.1.8/tools/csvparser.js +78 -0
  478. data/ext/v8/upstream/3.1.8/tools/disasm.py +92 -0
  479. data/ext/v8/upstream/3.1.8/tools/gc-nvp-trace-processor.py +328 -0
  480. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/generate-ten-powers.scm +0 -0
  481. data/ext/v8/upstream/3.1.8/tools/grokdump.py +840 -0
  482. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +869 -0
  483. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/js2c.py +0 -0
  484. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/jsmin.py +0 -0
  485. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/linux-tick-processor +0 -0
  486. data/ext/v8/upstream/3.1.8/tools/ll_prof.py +919 -0
  487. data/ext/v8/upstream/3.1.8/tools/logreader.js +185 -0
  488. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-nm +0 -0
  489. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-tick-processor +0 -0
  490. data/ext/v8/upstream/3.1.8/tools/oom_dump/README +31 -0
  491. data/ext/v8/upstream/3.1.8/tools/oom_dump/SConstruct +42 -0
  492. data/ext/v8/upstream/3.1.8/tools/oom_dump/oom_dump.cc +288 -0
  493. data/ext/v8/upstream/3.1.8/tools/presubmit.py +305 -0
  494. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/process-heap-prof.py +0 -0
  495. data/ext/v8/upstream/3.1.8/tools/profile.js +751 -0
  496. data/ext/v8/upstream/3.1.8/tools/profile_view.js +219 -0
  497. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/run-valgrind.py +0 -0
  498. data/ext/v8/upstream/3.1.8/tools/splaytree.js +316 -0
  499. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/stats-viewer.py +0 -0
  500. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/tickprocessor-driver.js +0 -0
  501. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +863 -0
  502. data/ext/v8/upstream/3.1.8/tools/utils.py +96 -0
  503. data/ext/v8/upstream/3.1.8/tools/visual_studio/README.txt +70 -0
  504. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/arm.vsprops +0 -0
  505. data/ext/v8/upstream/3.1.8/tools/visual_studio/common.vsprops +34 -0
  506. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8.vcproj +0 -0
  507. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_arm.vcproj +0 -0
  508. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_x64.vcproj +0 -0
  509. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8js2c.cmd +0 -0
  510. data/ext/v8/upstream/3.1.8/tools/visual_studio/debug.vsprops +17 -0
  511. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/ia32.vsprops +0 -0
  512. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/js2c.cmd +0 -0
  513. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/release.vsprops +0 -0
  514. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.sln +0 -0
  515. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.vcproj +0 -0
  516. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.sln +0 -0
  517. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.vcproj +0 -0
  518. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +1296 -0
  519. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +1234 -0
  520. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +1296 -0
  521. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  522. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  523. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  524. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  525. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  526. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  527. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  528. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  529. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample.vcproj +147 -0
  530. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_arm.vcproj +147 -0
  531. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_x64.vcproj +163 -0
  532. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  533. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  534. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  535. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  536. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.sln +0 -0
  537. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.vcproj +0 -0
  538. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/x64.vsprops +0 -0
  539. data/ext/v8/upstream/3.1.8/tools/windows-tick-processor.bat +30 -0
  540. data/ext/v8/upstream/Makefile +2 -1
  541. data/ext/v8/v8_template.cpp +2 -2
  542. data/lib/v8/version.rb +1 -1
  543. data/spec/redjs/jsapi_spec.rb +2 -2
  544. metadata +552 -490
  545. data/ext/v8/upstream/2.3.3/.gitignore +0 -26
  546. data/ext/v8/upstream/2.3.3/AUTHORS +0 -31
  547. data/ext/v8/upstream/2.3.3/ChangeLog +0 -1916
  548. data/ext/v8/upstream/2.3.3/LICENSE +0 -55
  549. data/ext/v8/upstream/2.3.3/SConstruct +0 -1154
  550. data/ext/v8/upstream/2.3.3/include/v8-debug.h +0 -381
  551. data/ext/v8/upstream/2.3.3/include/v8-profiler.h +0 -353
  552. data/ext/v8/upstream/2.3.3/include/v8.h +0 -3616
  553. data/ext/v8/upstream/2.3.3/src/SConscript +0 -330
  554. data/ext/v8/upstream/2.3.3/src/accessors.cc +0 -661
  555. data/ext/v8/upstream/2.3.3/src/accessors.h +0 -114
  556. data/ext/v8/upstream/2.3.3/src/allocation.cc +0 -198
  557. data/ext/v8/upstream/2.3.3/src/allocation.h +0 -169
  558. data/ext/v8/upstream/2.3.3/src/api.cc +0 -4795
  559. data/ext/v8/upstream/2.3.3/src/api.h +0 -485
  560. data/ext/v8/upstream/2.3.3/src/apiutils.h +0 -69
  561. data/ext/v8/upstream/2.3.3/src/arguments.h +0 -96
  562. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm-inl.h +0 -305
  563. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.cc +0 -2580
  564. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.h +0 -1275
  565. data/ext/v8/upstream/2.3.3/src/arm/builtins-arm.cc +0 -1320
  566. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm-inl.h +0 -48
  567. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.cc +0 -11398
  568. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.h +0 -1102
  569. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.cc +0 -154
  570. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.h +0 -388
  571. data/ext/v8/upstream/2.3.3/src/arm/cpu-arm.cc +0 -142
  572. data/ext/v8/upstream/2.3.3/src/arm/debug-arm.cc +0 -309
  573. data/ext/v8/upstream/2.3.3/src/arm/disasm-arm.cc +0 -1459
  574. data/ext/v8/upstream/2.3.3/src/arm/fast-codegen-arm.cc +0 -241
  575. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.cc +0 -123
  576. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.h +0 -162
  577. data/ext/v8/upstream/2.3.3/src/arm/full-codegen-arm.cc +0 -3178
  578. data/ext/v8/upstream/2.3.3/src/arm/ic-arm.cc +0 -2258
  579. data/ext/v8/upstream/2.3.3/src/arm/jump-target-arm.cc +0 -164
  580. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.cc +0 -1892
  581. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.h +0 -727
  582. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.cc +0 -1261
  583. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.h +0 -266
  584. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.cc +0 -2822
  585. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.h +0 -361
  586. data/ext/v8/upstream/2.3.3/src/arm/stub-cache-arm.cc +0 -2387
  587. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.cc +0 -834
  588. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.h +0 -519
  589. data/ext/v8/upstream/2.3.3/src/array.js +0 -1127
  590. data/ext/v8/upstream/2.3.3/src/assembler.cc +0 -801
  591. data/ext/v8/upstream/2.3.3/src/assembler.h +0 -573
  592. data/ext/v8/upstream/2.3.3/src/ast-inl.h +0 -81
  593. data/ext/v8/upstream/2.3.3/src/ast.cc +0 -1152
  594. data/ext/v8/upstream/2.3.3/src/ast.h +0 -2106
  595. data/ext/v8/upstream/2.3.3/src/bootstrapper.cc +0 -1819
  596. data/ext/v8/upstream/2.3.3/src/builtins.cc +0 -1529
  597. data/ext/v8/upstream/2.3.3/src/builtins.h +0 -263
  598. data/ext/v8/upstream/2.3.3/src/bytecodes-irregexp.h +0 -104
  599. data/ext/v8/upstream/2.3.3/src/cached-powers.h +0 -119
  600. data/ext/v8/upstream/2.3.3/src/char-predicates-inl.h +0 -86
  601. data/ext/v8/upstream/2.3.3/src/checks.cc +0 -100
  602. data/ext/v8/upstream/2.3.3/src/checks.h +0 -310
  603. data/ext/v8/upstream/2.3.3/src/circular-queue.cc +0 -121
  604. data/ext/v8/upstream/2.3.3/src/code-stubs.cc +0 -177
  605. data/ext/v8/upstream/2.3.3/src/code-stubs.h +0 -177
  606. data/ext/v8/upstream/2.3.3/src/codegen-inl.h +0 -60
  607. data/ext/v8/upstream/2.3.3/src/codegen.cc +0 -516
  608. data/ext/v8/upstream/2.3.3/src/codegen.h +0 -897
  609. data/ext/v8/upstream/2.3.3/src/compilation-cache.cc +0 -562
  610. data/ext/v8/upstream/2.3.3/src/compilation-cache.h +0 -102
  611. data/ext/v8/upstream/2.3.3/src/compiler.cc +0 -654
  612. data/ext/v8/upstream/2.3.3/src/compiler.h +0 -299
  613. data/ext/v8/upstream/2.3.3/src/contexts.cc +0 -256
  614. data/ext/v8/upstream/2.3.3/src/contexts.h +0 -342
  615. data/ext/v8/upstream/2.3.3/src/conversions.cc +0 -1119
  616. data/ext/v8/upstream/2.3.3/src/conversions.h +0 -123
  617. data/ext/v8/upstream/2.3.3/src/counters.h +0 -239
  618. data/ext/v8/upstream/2.3.3/src/cpu-profiler-inl.h +0 -100
  619. data/ext/v8/upstream/2.3.3/src/cpu-profiler.cc +0 -538
  620. data/ext/v8/upstream/2.3.3/src/cpu-profiler.h +0 -285
  621. data/ext/v8/upstream/2.3.3/src/d8-debug.cc +0 -356
  622. data/ext/v8/upstream/2.3.3/src/d8-debug.h +0 -155
  623. data/ext/v8/upstream/2.3.3/src/d8.cc +0 -783
  624. data/ext/v8/upstream/2.3.3/src/d8.h +0 -227
  625. data/ext/v8/upstream/2.3.3/src/d8.js +0 -1683
  626. data/ext/v8/upstream/2.3.3/src/data-flow.cc +0 -758
  627. data/ext/v8/upstream/2.3.3/src/data-flow.h +0 -278
  628. data/ext/v8/upstream/2.3.3/src/date.js +0 -1059
  629. data/ext/v8/upstream/2.3.3/src/dateparser-inl.h +0 -123
  630. data/ext/v8/upstream/2.3.3/src/dateparser.h +0 -244
  631. data/ext/v8/upstream/2.3.3/src/debug-agent.cc +0 -427
  632. data/ext/v8/upstream/2.3.3/src/debug-agent.h +0 -129
  633. data/ext/v8/upstream/2.3.3/src/debug-debugger.js +0 -2227
  634. data/ext/v8/upstream/2.3.3/src/debug.cc +0 -3005
  635. data/ext/v8/upstream/2.3.3/src/debug.h +0 -993
  636. data/ext/v8/upstream/2.3.3/src/disassembler.cc +0 -312
  637. data/ext/v8/upstream/2.3.3/src/double.h +0 -169
  638. data/ext/v8/upstream/2.3.3/src/dtoa-config.c +0 -92
  639. data/ext/v8/upstream/2.3.3/src/dtoa.cc +0 -77
  640. data/ext/v8/upstream/2.3.3/src/dtoa.h +0 -81
  641. data/ext/v8/upstream/2.3.3/src/execution.cc +0 -809
  642. data/ext/v8/upstream/2.3.3/src/execution.h +0 -336
  643. data/ext/v8/upstream/2.3.3/src/factory.cc +0 -1003
  644. data/ext/v8/upstream/2.3.3/src/factory.h +0 -410
  645. data/ext/v8/upstream/2.3.3/src/fast-codegen.cc +0 -746
  646. data/ext/v8/upstream/2.3.3/src/fast-codegen.h +0 -161
  647. data/ext/v8/upstream/2.3.3/src/fast-dtoa.cc +0 -505
  648. data/ext/v8/upstream/2.3.3/src/fast-dtoa.h +0 -58
  649. data/ext/v8/upstream/2.3.3/src/flag-definitions.h +0 -455
  650. data/ext/v8/upstream/2.3.3/src/flags.cc +0 -551
  651. data/ext/v8/upstream/2.3.3/src/flags.h +0 -81
  652. data/ext/v8/upstream/2.3.3/src/flow-graph.cc +0 -763
  653. data/ext/v8/upstream/2.3.3/src/flow-graph.h +0 -180
  654. data/ext/v8/upstream/2.3.3/src/frame-element.h +0 -273
  655. data/ext/v8/upstream/2.3.3/src/frames-inl.h +0 -217
  656. data/ext/v8/upstream/2.3.3/src/frames.cc +0 -826
  657. data/ext/v8/upstream/2.3.3/src/frames.h +0 -682
  658. data/ext/v8/upstream/2.3.3/src/full-codegen.cc +0 -1443
  659. data/ext/v8/upstream/2.3.3/src/full-codegen.h +0 -548
  660. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.cc +0 -76
  661. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.h +0 -135
  662. data/ext/v8/upstream/2.3.3/src/global-handles.cc +0 -520
  663. data/ext/v8/upstream/2.3.3/src/global-handles.h +0 -180
  664. data/ext/v8/upstream/2.3.3/src/globals.h +0 -669
  665. data/ext/v8/upstream/2.3.3/src/handles-inl.h +0 -76
  666. data/ext/v8/upstream/2.3.3/src/handles.cc +0 -825
  667. data/ext/v8/upstream/2.3.3/src/handles.h +0 -393
  668. data/ext/v8/upstream/2.3.3/src/hashmap.cc +0 -226
  669. data/ext/v8/upstream/2.3.3/src/hashmap.h +0 -120
  670. data/ext/v8/upstream/2.3.3/src/heap-inl.h +0 -493
  671. data/ext/v8/upstream/2.3.3/src/heap-profiler.cc +0 -779
  672. data/ext/v8/upstream/2.3.3/src/heap-profiler.h +0 -323
  673. data/ext/v8/upstream/2.3.3/src/heap.cc +0 -4994
  674. data/ext/v8/upstream/2.3.3/src/heap.h +0 -1984
  675. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32-inl.h +0 -360
  676. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.cc +0 -2600
  677. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.h +0 -969
  678. data/ext/v8/upstream/2.3.3/src/ia32/builtins-ia32.cc +0 -1261
  679. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.cc +0 -13968
  680. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.h +0 -1097
  681. data/ext/v8/upstream/2.3.3/src/ia32/cpu-ia32.cc +0 -83
  682. data/ext/v8/upstream/2.3.3/src/ia32/debug-ia32.cc +0 -309
  683. data/ext/v8/upstream/2.3.3/src/ia32/disasm-ia32.cc +0 -1471
  684. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.cc +0 -954
  685. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.h +0 -155
  686. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.cc +0 -115
  687. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.h +0 -135
  688. data/ext/v8/upstream/2.3.3/src/ia32/full-codegen-ia32.cc +0 -3281
  689. data/ext/v8/upstream/2.3.3/src/ia32/ic-ia32.cc +0 -1966
  690. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.cc +0 -1610
  691. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.h +0 -610
  692. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.cc +0 -1247
  693. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.h +0 -214
  694. data/ext/v8/upstream/2.3.3/src/ia32/simulator-ia32.h +0 -62
  695. data/ext/v8/upstream/2.3.3/src/ia32/stub-cache-ia32.cc +0 -2750
  696. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.cc +0 -1334
  697. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.h +0 -627
  698. data/ext/v8/upstream/2.3.3/src/ic-inl.h +0 -120
  699. data/ext/v8/upstream/2.3.3/src/ic.cc +0 -1827
  700. data/ext/v8/upstream/2.3.3/src/ic.h +0 -515
  701. data/ext/v8/upstream/2.3.3/src/interpreter-irregexp.cc +0 -646
  702. data/ext/v8/upstream/2.3.3/src/json.js +0 -268
  703. data/ext/v8/upstream/2.3.3/src/jsregexp.cc +0 -5283
  704. data/ext/v8/upstream/2.3.3/src/jsregexp.h +0 -1463
  705. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.cc +0 -429
  706. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.h +0 -244
  707. data/ext/v8/upstream/2.3.3/src/jump-target-light.cc +0 -110
  708. data/ext/v8/upstream/2.3.3/src/jump-target-light.h +0 -192
  709. data/ext/v8/upstream/2.3.3/src/list-inl.h +0 -166
  710. data/ext/v8/upstream/2.3.3/src/list.h +0 -159
  711. data/ext/v8/upstream/2.3.3/src/liveedit-debugger.js +0 -1057
  712. data/ext/v8/upstream/2.3.3/src/liveedit.cc +0 -1480
  713. data/ext/v8/upstream/2.3.3/src/liveedit.h +0 -170
  714. data/ext/v8/upstream/2.3.3/src/log-utils.cc +0 -497
  715. data/ext/v8/upstream/2.3.3/src/log-utils.h +0 -289
  716. data/ext/v8/upstream/2.3.3/src/log.cc +0 -1561
  717. data/ext/v8/upstream/2.3.3/src/log.h +0 -384
  718. data/ext/v8/upstream/2.3.3/src/macro-assembler.h +0 -86
  719. data/ext/v8/upstream/2.3.3/src/macros.py +0 -177
  720. data/ext/v8/upstream/2.3.3/src/mark-compact.cc +0 -2330
  721. data/ext/v8/upstream/2.3.3/src/mark-compact.h +0 -451
  722. data/ext/v8/upstream/2.3.3/src/math.js +0 -264
  723. data/ext/v8/upstream/2.3.3/src/memory.h +0 -74
  724. data/ext/v8/upstream/2.3.3/src/messages.cc +0 -183
  725. data/ext/v8/upstream/2.3.3/src/messages.h +0 -113
  726. data/ext/v8/upstream/2.3.3/src/messages.js +0 -982
  727. data/ext/v8/upstream/2.3.3/src/mips/assembler-mips.h +0 -668
  728. data/ext/v8/upstream/2.3.3/src/mips/builtins-mips.cc +0 -205
  729. data/ext/v8/upstream/2.3.3/src/mips/codegen-mips.h +0 -434
  730. data/ext/v8/upstream/2.3.3/src/mips/debug-mips.cc +0 -131
  731. data/ext/v8/upstream/2.3.3/src/mips/frames-mips.cc +0 -102
  732. data/ext/v8/upstream/2.3.3/src/mips/ic-mips.cc +0 -220
  733. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.cc +0 -1651
  734. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.h +0 -311
  735. data/ext/v8/upstream/2.3.3/src/mips/stub-cache-mips.cc +0 -403
  736. data/ext/v8/upstream/2.3.3/src/mirror-debugger.js +0 -2380
  737. data/ext/v8/upstream/2.3.3/src/objects-debug.cc +0 -1366
  738. data/ext/v8/upstream/2.3.3/src/objects-inl.h +0 -3333
  739. data/ext/v8/upstream/2.3.3/src/objects.cc +0 -8820
  740. data/ext/v8/upstream/2.3.3/src/objects.h +0 -5373
  741. data/ext/v8/upstream/2.3.3/src/oprofile-agent.cc +0 -108
  742. data/ext/v8/upstream/2.3.3/src/oprofile-agent.h +0 -77
  743. data/ext/v8/upstream/2.3.3/src/parser.cc +0 -5207
  744. data/ext/v8/upstream/2.3.3/src/parser.h +0 -197
  745. data/ext/v8/upstream/2.3.3/src/platform-freebsd.cc +0 -667
  746. data/ext/v8/upstream/2.3.3/src/platform-linux.cc +0 -862
  747. data/ext/v8/upstream/2.3.3/src/platform-macos.cc +0 -665
  748. data/ext/v8/upstream/2.3.3/src/platform-nullos.cc +0 -454
  749. data/ext/v8/upstream/2.3.3/src/platform-openbsd.cc +0 -622
  750. data/ext/v8/upstream/2.3.3/src/platform-posix.cc +0 -362
  751. data/ext/v8/upstream/2.3.3/src/platform-solaris.cc +0 -653
  752. data/ext/v8/upstream/2.3.3/src/platform-win32.cc +0 -1911
  753. data/ext/v8/upstream/2.3.3/src/platform.h +0 -577
  754. data/ext/v8/upstream/2.3.3/src/powers-ten.h +0 -2461
  755. data/ext/v8/upstream/2.3.3/src/prettyprinter.cc +0 -1531
  756. data/ext/v8/upstream/2.3.3/src/prettyprinter.h +0 -221
  757. data/ext/v8/upstream/2.3.3/src/profile-generator-inl.h +0 -148
  758. data/ext/v8/upstream/2.3.3/src/profile-generator.cc +0 -1830
  759. data/ext/v8/upstream/2.3.3/src/profile-generator.h +0 -853
  760. data/ext/v8/upstream/2.3.3/src/property.cc +0 -96
  761. data/ext/v8/upstream/2.3.3/src/property.h +0 -315
  762. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.cc +0 -464
  763. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.h +0 -141
  764. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.cc +0 -356
  765. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.h +0 -103
  766. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.cc +0 -261
  767. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.h +0 -228
  768. data/ext/v8/upstream/2.3.3/src/regexp.js +0 -549
  769. data/ext/v8/upstream/2.3.3/src/rewriter.cc +0 -1038
  770. data/ext/v8/upstream/2.3.3/src/rewriter.h +0 -54
  771. data/ext/v8/upstream/2.3.3/src/runtime.cc +0 -10599
  772. data/ext/v8/upstream/2.3.3/src/runtime.h +0 -459
  773. data/ext/v8/upstream/2.3.3/src/runtime.js +0 -629
  774. data/ext/v8/upstream/2.3.3/src/scanner.cc +0 -1346
  775. data/ext/v8/upstream/2.3.3/src/scanner.h +0 -503
  776. data/ext/v8/upstream/2.3.3/src/scopeinfo.cc +0 -637
  777. data/ext/v8/upstream/2.3.3/src/scopeinfo.h +0 -233
  778. data/ext/v8/upstream/2.3.3/src/scopes.cc +0 -962
  779. data/ext/v8/upstream/2.3.3/src/scopes.h +0 -400
  780. data/ext/v8/upstream/2.3.3/src/serialize.cc +0 -1461
  781. data/ext/v8/upstream/2.3.3/src/serialize.h +0 -581
  782. data/ext/v8/upstream/2.3.3/src/spaces-inl.h +0 -483
  783. data/ext/v8/upstream/2.3.3/src/spaces.cc +0 -2901
  784. data/ext/v8/upstream/2.3.3/src/spaces.h +0 -2197
  785. data/ext/v8/upstream/2.3.3/src/string-stream.cc +0 -584
  786. data/ext/v8/upstream/2.3.3/src/string-stream.h +0 -189
  787. data/ext/v8/upstream/2.3.3/src/string.js +0 -1006
  788. data/ext/v8/upstream/2.3.3/src/stub-cache.cc +0 -1379
  789. data/ext/v8/upstream/2.3.3/src/stub-cache.h +0 -756
  790. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/COPYING +0 -15
  791. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/dtoa.c +0 -3334
  792. data/ext/v8/upstream/2.3.3/src/token.cc +0 -56
  793. data/ext/v8/upstream/2.3.3/src/token.h +0 -270
  794. data/ext/v8/upstream/2.3.3/src/top.cc +0 -1067
  795. data/ext/v8/upstream/2.3.3/src/top.h +0 -463
  796. data/ext/v8/upstream/2.3.3/src/type-info.cc +0 -53
  797. data/ext/v8/upstream/2.3.3/src/type-info.h +0 -244
  798. data/ext/v8/upstream/2.3.3/src/unicode-inl.h +0 -238
  799. data/ext/v8/upstream/2.3.3/src/unicode.cc +0 -749
  800. data/ext/v8/upstream/2.3.3/src/unicode.h +0 -279
  801. data/ext/v8/upstream/2.3.3/src/uri.js +0 -415
  802. data/ext/v8/upstream/2.3.3/src/utils.cc +0 -285
  803. data/ext/v8/upstream/2.3.3/src/utils.h +0 -745
  804. data/ext/v8/upstream/2.3.3/src/v8-counters.h +0 -250
  805. data/ext/v8/upstream/2.3.3/src/v8.cc +0 -228
  806. data/ext/v8/upstream/2.3.3/src/v8.h +0 -121
  807. data/ext/v8/upstream/2.3.3/src/v8natives.js +0 -1188
  808. data/ext/v8/upstream/2.3.3/src/v8threads.cc +0 -461
  809. data/ext/v8/upstream/2.3.3/src/v8threads.h +0 -159
  810. data/ext/v8/upstream/2.3.3/src/variables.cc +0 -119
  811. data/ext/v8/upstream/2.3.3/src/variables.h +0 -205
  812. data/ext/v8/upstream/2.3.3/src/version.cc +0 -88
  813. data/ext/v8/upstream/2.3.3/src/virtual-frame-heavy-inl.h +0 -192
  814. data/ext/v8/upstream/2.3.3/src/virtual-frame.h +0 -46
  815. data/ext/v8/upstream/2.3.3/src/vm-state-inl.h +0 -137
  816. data/ext/v8/upstream/2.3.3/src/vm-state.cc +0 -39
  817. data/ext/v8/upstream/2.3.3/src/vm-state.h +0 -77
  818. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64-inl.h +0 -400
  819. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.cc +0 -2963
  820. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.h +0 -1438
  821. data/ext/v8/upstream/2.3.3/src/x64/builtins-x64.cc +0 -1296
  822. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64-inl.h +0 -46
  823. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.cc +0 -12491
  824. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.h +0 -1090
  825. data/ext/v8/upstream/2.3.3/src/x64/cpu-x64.cc +0 -83
  826. data/ext/v8/upstream/2.3.3/src/x64/debug-x64.cc +0 -267
  827. data/ext/v8/upstream/2.3.3/src/x64/disasm-x64.cc +0 -1696
  828. data/ext/v8/upstream/2.3.3/src/x64/fast-codegen-x64.cc +0 -250
  829. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.cc +0 -113
  830. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.h +0 -125
  831. data/ext/v8/upstream/2.3.3/src/x64/full-codegen-x64.cc +0 -3270
  832. data/ext/v8/upstream/2.3.3/src/x64/ic-x64.cc +0 -1907
  833. data/ext/v8/upstream/2.3.3/src/x64/jump-target-x64.cc +0 -437
  834. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.cc +0 -2793
  835. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.h +0 -916
  836. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.cc +0 -1374
  837. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.h +0 -277
  838. data/ext/v8/upstream/2.3.3/src/x64/simulator-x64.h +0 -63
  839. data/ext/v8/upstream/2.3.3/src/x64/stub-cache-x64.cc +0 -2560
  840. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.cc +0 -1264
  841. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.h +0 -590
  842. data/ext/v8/upstream/2.3.3/src/zone-inl.h +0 -82
  843. data/ext/v8/upstream/2.3.3/src/zone.cc +0 -194
  844. data/ext/v8/upstream/2.3.3/src/zone.h +0 -221
  845. data/ext/v8/upstream/2.3.3/tools/codemap.js +0 -270
  846. data/ext/v8/upstream/2.3.3/tools/csvparser.js +0 -83
  847. data/ext/v8/upstream/2.3.3/tools/gc-nvp-trace-processor.py +0 -317
  848. data/ext/v8/upstream/2.3.3/tools/gyp/v8.gyp +0 -749
  849. data/ext/v8/upstream/2.3.3/tools/linux-tick-processor.py +0 -78
  850. data/ext/v8/upstream/2.3.3/tools/logreader.js +0 -338
  851. data/ext/v8/upstream/2.3.3/tools/oprofile/annotate +0 -7
  852. data/ext/v8/upstream/2.3.3/tools/oprofile/common +0 -19
  853. data/ext/v8/upstream/2.3.3/tools/oprofile/dump +0 -7
  854. data/ext/v8/upstream/2.3.3/tools/oprofile/report +0 -7
  855. data/ext/v8/upstream/2.3.3/tools/oprofile/reset +0 -7
  856. data/ext/v8/upstream/2.3.3/tools/oprofile/run +0 -14
  857. data/ext/v8/upstream/2.3.3/tools/oprofile/shutdown +0 -7
  858. data/ext/v8/upstream/2.3.3/tools/oprofile/start +0 -7
  859. data/ext/v8/upstream/2.3.3/tools/presubmit.py +0 -299
  860. data/ext/v8/upstream/2.3.3/tools/profile.js +0 -691
  861. data/ext/v8/upstream/2.3.3/tools/profile_view.js +0 -224
  862. data/ext/v8/upstream/2.3.3/tools/splaytree.js +0 -322
  863. data/ext/v8/upstream/2.3.3/tools/splaytree.py +0 -226
  864. data/ext/v8/upstream/2.3.3/tools/tickprocessor.js +0 -862
  865. data/ext/v8/upstream/2.3.3/tools/tickprocessor.py +0 -571
  866. data/ext/v8/upstream/2.3.3/tools/utils.py +0 -88
  867. data/ext/v8/upstream/2.3.3/tools/visual_studio/README.txt +0 -71
  868. data/ext/v8/upstream/2.3.3/tools/visual_studio/common.vsprops +0 -34
  869. data/ext/v8/upstream/2.3.3/tools/visual_studio/debug.vsprops +0 -17
  870. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base.vcproj +0 -1143
  871. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_arm.vcproj +0 -1115
  872. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_x64.vcproj +0 -1096
  873. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample.vcproj +0 -145
  874. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -145
  875. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -161
  876. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.bat +0 -29
  877. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.py +0 -137
@@ -1,26 +0,0 @@
1
- *.a
2
- *.exe
3
- *.lib
4
- *.log
5
- *.map
6
- *.mk
7
- *.ncb
8
- *.pyc
9
- *.scons*
10
- *.suo
11
- *.user
12
- *.xcodeproj
13
- *.idb
14
- *.pdb
15
- #*#
16
- *~
17
- .cpplint-cache
18
- d8
19
- d8_g
20
- shell
21
- shell_g
22
- /obj/
23
- /tools/visual_studio/Debug
24
- /tools/visual_studio/Release
25
- /xcodebuild/
26
- TAGS
@@ -1,31 +0,0 @@
1
- # Below is a list of people and organizations that have contributed
2
- # to the V8 project. Names should be added to the list like so:
3
- #
4
- # Name/Organization <email address>
5
-
6
- Google Inc.
7
- Sigma Designs Inc.
8
- ARM Ltd.
9
-
10
- Alexander Botero-Lowry <alexbl@FreeBSD.org>
11
- Alexandre Vassalotti <avassalotti@gmail.com>
12
- Craig Schlenter <craig.schlenter@gmail.com>
13
- Daniel Andersson <kodandersson@gmail.com>
14
- Daniel James <dnljms@gmail.com>
15
- Dineel D Sule <dsule@codeaurora.org>
16
- Erich Ocean <erich.ocean@me.com>
17
- Jan de Mooij <jandemooij@gmail.com>
18
- Jay Freeman <saurik@saurik.com>
19
- Joel Stanley <joel.stan@gmail.com>
20
- John Jozwiak <jjozwiak@codeaurora.org>
21
- Kun Zhang <zhangk@codeaurora.org>
22
- Matt Hanselman <mjhanselman@gmail.com>
23
- Martyn Capewell <martyn.capewell@arm.com>
24
- Paolo Giarrusso <p.giarrusso@gmail.com>
25
- Patrick Gansterer <paroga@paroga.com>
26
- Rafal Krypa <rafal@krypa.net>
27
- Rene Rebe <rene@exactcode.de>
28
- Rodolph Perfetta <rodolph.perfetta@arm.com>
29
- Ryan Dahl <coldredlemur@gmail.com>
30
- Subrato K De <subratokde@codeaurora.org>
31
-
@@ -1,1916 +0,0 @@
1
- 2010-07-26: Version 2.3.3
2
-
3
- Fixed error when building the d8 shell in a fresh checkout.
4
-
5
- Implemented Function.prototype.bind (ES5 15.3.4.5).
6
-
7
- Fixed an error in inlined stores on ia32.
8
-
9
- Fixed an error when setting a breakpoint at the end of a function
10
- that does not end with a newline character.
11
-
12
- Performance improvements on all platforms.
13
-
14
-
15
- 2010-07-21: Version 2.3.2
16
-
17
- Fixed compiler warnings when building with LLVM.
18
-
19
- Fixed a bug with for-in applied to strings (issue 785).
20
-
21
- Performance improvements on all platforms.
22
-
23
-
24
- 2010-07-19: Version 2.3.1
25
-
26
- Fixed compilation and linking with V8_INTERPRETED_REGEXP flag.
27
-
28
- Fixed bug related to code flushing while compiling a lazy
29
- compilable function (issue http://crbug.com/49099).
30
-
31
- Performance improvements on all platforms.
32
-
33
-
34
- 2010-07-15: Version 2.3.0
35
-
36
- Added ES5 Object.seal and Object.isSealed.
37
-
38
- Added debugger API for scheduling debugger commands from a
39
- separate thread.
40
-
41
-
42
- 2010-07-14: Version 2.2.24
43
-
44
- Added API for capturing stack traces for uncaught exceptions.
45
-
46
- Fixed crash bug when preparsing from a non-external V8 string
47
- (issue 775).
48
-
49
- Fixed JSON.parse bug causing input not to be converted to string
50
- (issue 764).
51
-
52
- Added ES5 Object.freeze and Object.isFrozen.
53
-
54
- Performance improvements on all platforms.
55
-
56
-
57
- 2010-07-07: Version 2.2.23
58
-
59
- API change: Convert Unicode code points outside the basic multilingual
60
- plane to the replacement character. Previous behavior was to silently
61
- truncate the value to 16 bits.
62
-
63
- Fixed crash: handle all flat string types in regexp replace.
64
-
65
- Prevent invalid pre-parsing data passed in through the API from
66
- crashing V8.
67
-
68
- Performance improvements on all platforms.
69
-
70
-
71
- 2010-07-05: Version 2.2.22
72
-
73
- Added ES5 Object.isExtensible and Object.preventExtensions.
74
-
75
- Enabled building V8 as a DLL.
76
-
77
- Fixed a bug in date code where -0 was not interpreted as 0
78
- (issue 736).
79
-
80
- Performance improvements on all platforms.
81
-
82
-
83
- 2010-06-30: Version 2.2.21
84
-
85
- Fix bug in externalizing some ASCII strings (Chromium issue 47824).
86
-
87
- Update JSON.stringify to floor the space parameter (issue 753).
88
-
89
- Update the Mozilla test expectations to the newest version.
90
-
91
- Update the ES5 Conformance Test expectations to the latest version.
92
-
93
- Update the V8 benchmark suite.
94
-
95
- Provide actual breakpoints locations in response to setBreakpoint
96
- and listBreakpoints requests.
97
-
98
-
99
- 2010-06-28: Version 2.2.20
100
-
101
- Fix bug with for-in on x64 platform (issue 748).
102
-
103
- Fix crash bug on x64 platform (issue 756).
104
-
105
- Fix bug in Object.getOwnPropertyNames. (chromium issue 41243).
106
-
107
- Fix a bug on ARM that caused the result of 1 << x to be
108
- miscalculated for some inputs.
109
-
110
- Performance improvements on all platforms.
111
-
112
-
113
- 2010-06-23: Version 2.2.19
114
-
115
- Fix bug that causes the build to break when profillingsupport=off
116
- (issue 738).
117
-
118
- Added expose-externalize-string flag for testing extensions.
119
-
120
- Resolve linker issues with using V8 as a DLL causing a number of
121
- problems with unresolved symbols.
122
-
123
- Fix build failure for cctests when ENABLE_DEBUGGER_SUPPORT is not
124
- defined.
125
-
126
- Performance improvements on all platforms.
127
-
128
-
129
- 2010-06-16: Version 2.2.18
130
-
131
- Added API functions to retrieve information on indexed properties
132
- managed by the embedding layer. Fixes bug 737.
133
-
134
- Make ES5 Object.defineProperty support array elements. Fixes bug 619.
135
-
136
- Add heap profiling to the API.
137
-
138
- Remove old named property query from the API.
139
-
140
- Incremental performance improvements.
141
-
142
-
143
- 2010-06-14: Version 2.2.17
144
-
145
- Improved debugger support for stepping out of functions.
146
-
147
- Incremental performance improvements.
148
-
149
-
150
- 2010-06-09: Version 2.2.16
151
-
152
- Removed the SetExternalStringDiposeCallback API. Changed the
153
- disposal of external string resources to call a virtual Dispose
154
- method on the resource.
155
-
156
- Added support for more precise break points when debugging and
157
- stepping.
158
-
159
- Memory usage improvements on all platforms.
160
-
161
-
162
- 2010-06-07: Version 2.2.15
163
-
164
- Add an API to control the disposal of external string resources.
165
-
166
- Add missing initialization of a couple of variables which makes
167
- some compilers complaint when compiling with -Werror.
168
-
169
- Improve performance on all platforms.
170
-
171
-
172
- 2010-06-02: Version 2.2.14
173
-
174
- Fixed a crash in code generated for String.charCodeAt.
175
-
176
- Fixed a compilation issue with some GCC versions (issue 727).
177
-
178
- Performance optimizations on x64 and ARM platforms.
179
-
180
-
181
- 2010-05-31: Version 2.2.13
182
-
183
- Implement Object.getOwnPropertyDescriptor for element indices and
184
- strings (issue 599).
185
-
186
- Fix bug for windows 64 bit C calls from generated code.
187
-
188
- Add new scons flag unalignedaccesses for arm builds.
189
-
190
- Performance improvements on all platforms.
191
-
192
-
193
- 2010-05-26: Version 2.2.12
194
-
195
- Allowed accessors to be defined on objects rather than just object
196
- templates.
197
-
198
- Changed the ScriptData API.
199
-
200
-
201
- 2010-05-21: Version 2.2.11
202
-
203
- Fix crash bug in liveedit on 64 bit.
204
-
205
- Use 'full compiler' when debugging is active. This should increase
206
- the density of possible break points, making single step more fine
207
- grained. This will only take effect for functions compiled after
208
- debugging has been started, so recompilation of all functions is
209
- required to get the full effect. IA32 and x64 only for now.
210
-
211
- Misc. fixes to the Solaris build.
212
-
213
- Add new flags --print-cumulative-gc-stat and --trace-gc-nvp.
214
-
215
- Add filtering of CPU profiles by security context.
216
-
217
- Fix crash bug on ARM when running without VFP2 or VFP3.
218
-
219
- Incremental performance improvements in all backends.
220
-
221
-
222
- 2010-05-17: Version 2.2.10
223
-
224
- Performance improvements in the x64 and ARM backends.
225
-
226
-
227
- 2010-05-10: Version 2.2.9
228
-
229
- Allow Object.create to be called with a function (issue 697).
230
-
231
- Fixed bug with Date.parse returning a non-NaN value when called on a
232
- non date string (issue 696).
233
-
234
- Allow unaligned memory accesses on ARM targets that support it (by
235
- Subrato K De of CodeAurora <subratokde@codeaurora.org>).
236
-
237
- C++ API for retrieving JavaScript stack trace information.
238
-
239
-
240
- 2010-05-05: Version 2.2.8
241
-
242
- Performance improvements in the x64 and ARM backends.
243
-
244
-
245
- 2010-05-03: Version 2.2.7
246
-
247
- Added support for ES5 date time string format to Date.parse.
248
-
249
- Performance improvements in the x64 backend.
250
-
251
-
252
- 2010-04-28: Version 2.2.6
253
-
254
- Added "amd64" as recognized architecture in scons build script
255
- (by Ryan Dahl <coldredlemur@gmail.com>).
256
-
257
- Fixed bug in String search and replace with very simple RegExps.
258
-
259
- Fixed bug in RegExp containing "\b^".
260
-
261
- Performance improvements on all platforms.
262
-
263
-
264
- 2010-04-26: Version 2.2.5
265
-
266
- Various performance improvements (especially for ARM and x64)
267
-
268
- Fixed bug in CPU profiling (http://crbug.com/42137)
269
-
270
- Fixed a bug with the natives cache.
271
-
272
- Fixed two bugs in the ARM code generator that can cause
273
- wrong calculations.
274
-
275
- Fixed a bug that may cause a wrong result for shift operations.
276
-
277
-
278
- 2010-04-21: Version 2.2.4
279
-
280
- Fixed warnings on arm on newer GCC versions.
281
-
282
- Fixed a number of minor bugs.
283
-
284
- Performance improvements on all platforms.
285
-
286
-
287
- 2010-04-14: Version 2.2.3
288
-
289
- Added stack command and mem command to ARM simulator debugger.
290
-
291
- Fixed scons snapshot and ARM build, and Windows X64 build issues.
292
-
293
- Performance improvements on all platforms.
294
-
295
-
296
- 2010-04-12: Version 2.2.2
297
-
298
- Introduced new profiler API.
299
-
300
- Fixed random number generator to produce full 32 random bits.
301
-
302
-
303
- 2010-04-06: Version 2.2.1
304
-
305
- Debugger improvements.
306
-
307
- Fixed minor bugs.
308
-
309
-
310
- 2010-03-29: Version 2.2.0
311
-
312
- Fixed a few minor bugs.
313
-
314
- Performance improvements for string operations.
315
-
316
-
317
- 2010-03-26: Version 2.1.10
318
-
319
- Fixed scons build issues.
320
-
321
- Fixed a couple of minor bugs.
322
-
323
-
324
- 2010-03-25: Version 2.1.9
325
-
326
- Added API support for reattaching a global object to a context.
327
-
328
- Extended debugger API with access to the internal debugger context.
329
-
330
- Fixed Chromium crashes (issues http://crbug.com/39128 and
331
- http://crbug.com/39160)
332
-
333
-
334
- 2010-03-24: Version 2.1.8
335
-
336
- Added fine-grained garbage collection callbacks to the API.
337
-
338
- Performance improvements on all platforms.
339
-
340
-
341
- 2010-03-22: Version 2.1.7
342
-
343
- Fixed issue 650.
344
-
345
- Fixed a bug where __proto__ was sometimes enumerated (issue 646).
346
-
347
- Performance improvements for arithmetic operations.
348
-
349
- Performance improvements for string operations.
350
-
351
- Print script name and line number information in stack trace.
352
-
353
-
354
- 2010-03-17: Version 2.1.6
355
-
356
- Performance improvements for arithmetic operations.
357
-
358
- Performance improvements for string operations.
359
-
360
-
361
- 2010-03-10: Version 2.1.4
362
-
363
- Fixed code cache lookup for keyed IC's (issue http://crbug.com/37853).
364
-
365
- Performance improvements on all platforms.
366
-
367
-
368
- 2010-03-10: Version 2.1.3
369
-
370
- Added API method for context-disposal notifications.
371
-
372
- Added API method for accessing elements by integer index.
373
-
374
- Added missing implementation of Uint32::Value and Value::IsUint32
375
- API methods.
376
-
377
- Added IsExecutionTerminating API method.
378
-
379
- Disabled strict aliasing for GCC 4.4.
380
-
381
- Fixed string-concatenation bug (issue 636).
382
-
383
- Performance improvements on all platforms.
384
-
385
-
386
- 2010-02-23: Version 2.1.2
387
-
388
- Fix a crash bug caused by wrong assert.
389
-
390
- Fix a bug with register names on 64-bit V8 (issue 615).
391
-
392
- Performance improvements on all platforms.
393
-
394
-
395
- 2010-02-19: Version 2.1.1
396
-
397
- [ES5] Implemented Object.defineProperty.
398
-
399
- Improved profiler support.
400
-
401
- Added SetPrototype method in the public V8 API.
402
-
403
- Added GetScriptOrigin and GetScriptLineNumber methods to Function
404
- objects in the API.
405
-
406
- Performance improvements on all platforms.
407
-
408
-
409
- 2010-02-03: Version 2.1.0
410
-
411
- Values are now always wrapped in objects when used as a receiver.
412
- (issue 223).
413
-
414
- [ES5] Implemented Object.getOwnPropertyNames.
415
-
416
- [ES5] Restrict JSON.parse to only accept strings that conforms to the
417
- JSON grammar.
418
-
419
- Improvement of debugger agent (issue 549 and 554).
420
-
421
- Fixed problem with skipped stack frame in profiles (issue 553).
422
-
423
- Solaris support by Erich Ocean <erich.ocean@me.com> and Ryan Dahl
424
- <ry@tinyclouds.org>.
425
-
426
- Fix a bug that Math.round() returns incorrect results for huge
427
- integers.
428
-
429
- Fix enumeration order for objects created from some constructor
430
- functions (isue http://crbug.com/3867).
431
-
432
- Fix arithmetic on some integer constants (issue 580).
433
-
434
- Numerous performance improvements including porting of previous IA-32
435
- optimizations to x64 and ARM architectures.
436
-
437
-
438
- 2010-01-14: Version 2.0.6
439
-
440
- Added ES5 Object.getPrototypeOf, GetOwnPropertyDescriptor,
441
- GetOwnProperty, FromPropertyDescriptor.
442
-
443
- Fixed Mac x64 build errors.
444
-
445
- Improved performance of some math and string operations.
446
-
447
- Improved performance of some regexp operations.
448
-
449
- Improved performance of context creation.
450
-
451
- Improved performance of hash tables.
452
-
453
-
454
- 2009-12-18: Version 2.0.5
455
-
456
- Extended to upper limit of map space to allow for 7 times as many map
457
- to be allocated (issue 524).
458
-
459
- Improved performance of code using closures.
460
-
461
- Improved performance of some binary operations involving doubles.
462
-
463
-
464
- 2009-12-16: Version 2.0.4
465
-
466
- Added ECMAScript 5 Object.create.
467
-
468
- Improved performance of Math.max and Math.min.
469
-
470
- Optimized adding of strings on 64-bit platforms.
471
-
472
- Improved handling of external strings by using a separate table
473
- instead of weak handles. This improves garbage collection
474
- performance and uses less memory.
475
-
476
- Changed code generation for object and array literals in toplevel
477
- code to be more compact by doing more work in the runtime.
478
-
479
- Fixed a crash bug triggered when garbage collection happened during
480
- generation of a callback load inline cache stub.
481
-
482
- Fixed crash bug sometimes triggered when local variables shadowed
483
- parameters in functions that used the arguments object.
484
-
485
-
486
- 2009-12-03: Version 2.0.3
487
-
488
- Optimized handling and adding of strings, for-in and Array.join.
489
-
490
- Heap serialization is now non-destructive.
491
-
492
- Improved profiler support with information on time spend in C++
493
- callbacks registered through the API.
494
-
495
- Added commands to the debugger protocol for starting/stopping
496
- profiling.
497
-
498
- Enabled the non-optimizing compiler for top-level code.
499
-
500
- Changed the API to only allow strings to be set as data objects on
501
- Contexts and scripts to avoid potentially keeping global objects
502
- around for too long (issue 528).
503
-
504
- OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>.
505
-
506
- Fixed bugs.
507
-
508
-
509
- 2009-11-24: Version 2.0.2
510
-
511
- Improved profiler support.
512
-
513
- Fixed bug that broke compilation of d8 with readline support.
514
-
515
-
516
- 2009-11-20: Version 2.0.1
517
-
518
- Fixed crash bug in String.prototype.replace.
519
-
520
- Reverted a change which caused Chromium interactive ui test
521
- failures.
522
-
523
-
524
- 2009-11-18: Version 2.0.0
525
-
526
- Added support for VFP on ARM.
527
-
528
- Added TryCatch::ReThrow method to the API.
529
-
530
- Reduced the size of snapshots and improved the snapshot load time.
531
-
532
- Improved heap profiler support.
533
-
534
- 64-bit version now supported on Windows.
535
-
536
- Fixed a number of debugger issues.
537
-
538
- Fixed bugs.
539
-
540
-
541
- 2009-10-29: Version 1.3.18
542
-
543
- Reverted a change which caused crashes in RegExp replace.
544
-
545
- Reverted a change which caused Chromium ui_tests failure.
546
-
547
-
548
- 2009-10-28: Version 1.3.17
549
-
550
- Added API method to get simple heap statistics.
551
-
552
- Improved heap profiler support.
553
-
554
- Fixed the implementation of the resource constraint API so it
555
- works when using snapshots.
556
-
557
- Fixed a number of issues in the Windows 64-bit version.
558
-
559
- Optimized calls to API getters.
560
-
561
- Added valgrind notification on code modification to the 64-bit version.
562
-
563
- Fixed issue where we logged shared library addresses on Windows at
564
- startup and never used them.
565
-
566
-
567
- 2009-10-16: Version 1.3.16
568
-
569
- X64: Convert smis to holding 32 bits of payload.
570
-
571
- Introduce v8::Integer::NewFromUnsigned method.
572
-
573
- Add missing null check in Context::GetCurrent.
574
-
575
- Add trim, trimLeft and trimRight methods to String
576
- Patch by Jan de Mooij <jandemooij@gmail.com>
577
-
578
- Implement ES5 Array.isArray
579
- Patch by Jan de Mooij <jandemooij@gmail.com>
580
-
581
- Skip access checks for hidden properties.
582
-
583
- Add String::Concat(Handle<String> left, Handle<String> right) to the V8 API.
584
-
585
- Fix GYP-based builds of V8.
586
-
587
-
588
- 2009-10-07: Version 1.3.15
589
-
590
- Expand the maximum size of the code space to 512MB for 64-bit mode.
591
-
592
- Fixed a crash bug happening when starting profiling (issue
593
- http://crbug.com/23768).
594
-
595
-
596
- 2009-10-07: Version 1.3.14
597
-
598
- Added GetRealNamedProperty to the API to lookup real properties
599
- located on the object or in the prototype chain skipping any
600
- interceptors.
601
-
602
- Fix the stack limits setting API to work correctly with threads. The
603
- stack limit now needs to be set to each thread thich is used with V8.
604
-
605
- Remove the high-priority flag from IdleNotification()
606
-
607
- Ensure V8 is initialized before locking and unlocking threads.
608
-
609
- Implemented a new JavaScript minifier for compressing the source of
610
- the built-in JavaScript. This removes non-Open Source code from Douglas
611
- Crockford from the project.
612
-
613
- Added a missing optimization in StringCharAt.
614
-
615
- Fixed some flaky socket tests.
616
-
617
- Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD
618
- in 64-bit mode.
619
-
620
- Fixed memory leaks in the thread management code.
621
-
622
- Fixed the result of assignment to a pixel array. The assigned value
623
- is now the result.
624
-
625
- Error reporting for invalid left-hand sides in for-in statements, pre-
626
- and postfix count expressions, and assignments now matches the JSC
627
- behavior in Safari 4.
628
-
629
- Follow the spec in disallowing function declarations without a name.
630
-
631
- Always allocate code objects within a 2 GB range. On x64 architecture
632
- this is used to use near calls (32-bit displacement) in Code objects.
633
-
634
- Optimized array construction ported to x64 and ARM architectures.
635
-
636
- [ES5] Changed Object.keys to return strings for element indices.
637
-
638
-
639
- 2009-09-23: Version 1.3.13
640
-
641
- Fixed uninitialized memory problem.
642
-
643
- Improved heap profiler support.
644
-
645
-
646
- 2009-09-22: Version 1.3.12
647
-
648
- Changed behavior of |function|.toString() on built-in functions to
649
- be compatible with other implementations. Patch by Jan de Mooij.
650
-
651
- Added Object::IsDirty in the API.
652
-
653
- Optimized array construction; it is now handled purely in native
654
- code.
655
-
656
- [ES5] Made properties of the arguments array enumerable.
657
-
658
- [ES5] Added test suite adapter for the es5conform test suite.
659
-
660
- [ES5] Added Object.keys function.
661
-
662
-
663
- 2009-09-15: Version 1.3.11
664
-
665
- Fixed crash in error reporting during bootstrapping.
666
-
667
- Optimized generated IA32 math code by using SSE2 instructions when
668
- available.
669
-
670
- Implemented missing pieces of debugger infrastructure on ARM. The
671
- debugger is now fully functional on ARM.
672
-
673
- Make 'hidden' the default visibility for gcc.
674
-
675
-
676
- 2009-09-09: Version 1.3.10
677
-
678
- Fixed profiler on Mac in 64-bit mode.
679
-
680
- Optimized creation of objects from simple constructor functions on
681
- ARM.
682
-
683
- Fixed a number of debugger issues.
684
-
685
- Reduced the amount of memory consumed by V8.
686
-
687
-
688
- 2009-09-02: Version 1.3.9
689
-
690
- Optimized stack guard checks on ARM.
691
-
692
- Optimized API operations by inlining more in the API.
693
-
694
- Optimized creation of objects from simple constructor functions.
695
-
696
- Enabled a number of missing optimizations in the 64-bit port.
697
-
698
- Implemented native-code support for regular expressions on ARM.
699
-
700
- Stopped using the 'sahf' instruction on 64-bit machines that do
701
- not support it.
702
-
703
- Fixed a bug in the support for forceful termination of JavaScript
704
- execution.
705
-
706
-
707
- 2009-08-26: Version 1.3.8
708
-
709
- Changed the handling of idle notifications to allow idle
710
- notifications when V8 has not yet been initialized.
711
-
712
- Fixed ARM simulator compilation problem on Windows.
713
-
714
-
715
- 2009-08-25: Version 1.3.7
716
-
717
- Reduced the size of generated code on ARM platforms by reducing
718
- the size of constant pools.
719
-
720
- Changed build files to not include the 'ENV' user environment
721
- variable in the build environment.
722
-
723
- Changed the handling of idle notifications.
724
-
725
-
726
- 2009-08-21: Version 1.3.6
727
-
728
- Add support for forceful termination of JavaScript execution.
729
-
730
- Add low memory notification to the API. The embedding host can signal
731
- a low memory situation to V8.
732
-
733
- Changed the handling of global handles (persistent handles in the API
734
- sense) to avoid issues regarding allocation of new global handles
735
- during weak handle callbacks.
736
-
737
- Changed the growth policy of the young space.
738
-
739
- Fixed a GC issue introduced in version 1.3.5.
740
-
741
-
742
- 2009-08-19: Version 1.3.5
743
-
744
- Optimize initialization of some arrays in the builtins.
745
-
746
- Fix mac-nm script to support filenames with spaces.
747
-
748
- Support for using the V8 profiler when V8 is embedded in a Windows DLL.
749
-
750
- Changed typeof RegExp from 'object' to 'function' for compatibility.
751
- Fixed bug where regexps were not callable across contexts.
752
-
753
- Added context independent script compilation to the API.
754
-
755
- Added API call to get the stack trace for an exception.
756
-
757
- Added API for getting object mirrors.
758
-
759
- Make sure that SSE3 instructions are used whenever possible even when
760
- running off a snapshot generated without using SSE3 instructions.
761
-
762
- Tweaked the handling of the initial size and growth policy of the heap.
763
-
764
- Added native code generation for RegExp to 64-bit version.
765
-
766
- Added JavaScript debugger support to 64-bit version.
767
-
768
-
769
- 2009-08-13: Version 1.3.4
770
-
771
- Added a readline() command to the d8 shell.
772
-
773
- Fixed bug in json parsing.
774
-
775
- Added idle notification to the API and reduced memory on idle
776
- notifications.
777
-
778
-
779
- 2009-08-12: Version 1.3.3
780
-
781
- Fix issue 417: incorrect %t placeholder expansion.
782
-
783
- Add .gitignore file similar to Chromium's one.
784
-
785
- Fix SConstruct file to build with new logging code for Android.
786
-
787
- API: added function to find instance of template in prototype
788
- chain. Inlined Object::IsInstanceOf.
789
-
790
- Land change to notify valgrind when we modify code on x86.
791
-
792
- Add api call to determine whether a string can be externalized.
793
-
794
- Add a write() command to d8.
795
-
796
-
797
- 2009-08-05: Version 1.3.2
798
-
799
- Started new compiler infrastructure for two-pass compilation using a
800
- control flow graph constructed from the AST.
801
-
802
- Profiler stack sampling for X64.
803
-
804
- Safe handling of NaN to Posix platform-dependent time functions.
805
-
806
- Added a new profiler control API to unify controlling various aspects
807
- of profiling.
808
-
809
- Fixed issue 392.
810
-
811
-
812
- 2009-07-30: Version 1.3.1
813
-
814
- Speed improvements to accessors and interceptors.
815
-
816
- Added support for capturing stack information on custom errors.
817
-
818
- Added support for morphing an object into a pixel array where its
819
- indexed properties are stored in an external byte array. Values written
820
- are always clamped to the 0..255 interval.
821
-
822
- Profiler on x64 now handles C/C++ functions from shared libraries.
823
-
824
- Changed the debugger to avoid stepping into function.call/apply if the
825
- function is a built-in.
826
-
827
- Initial implementation of constructor heap profile for JS objects.
828
-
829
- More fine grained control of profiling aspects through the API.
830
-
831
- Optimized the called as constructor check for API calls.
832
-
833
-
834
- 2009-07-27: Version 1.3.0
835
-
836
- Allowed RegExp objects to be called as functions (issue 132).
837
-
838
- Fixed issue where global property cells would escape after
839
- detaching the global object; see http://crbug.com/16276.
840
-
841
- Added support for stepping into setters and getters in the
842
- debugger.
843
-
844
- Changed the debugger to avoid stopping in its own JavaScript code
845
- and in the code of built-in functions.
846
-
847
- Fixed issue 345 by avoiding duplicate escaping labels.
848
-
849
- Fixed ARM code generator crash in short-circuited boolean
850
- expressions and added regression tests.
851
-
852
- Added an external allocation limit to avoid issues where small V8
853
- objects would hold on to large amounts of external memory without
854
- causing garbage collections.
855
-
856
- Finished more of the inline caching stubs for x64 targets.
857
-
858
-
859
- 2009-07-13: Version 1.2.14
860
-
861
- Added separate paged heap space for global property cells and
862
- avoid updating the write barrier when storing into them.
863
-
864
- Improved peep-hole optimization on ARM platforms by not emitting
865
- unnecessary debug information.
866
-
867
- Re-enabled ICs for loads and calls that skip a global object
868
- during lookup through the prototype chain.
869
-
870
- Allowed access through global proxies to use ICs.
871
-
872
- Fixed issue 401.
873
-
874
-
875
- 2009-07-09: Version 1.2.13
876
-
877
- Fixed issue 397, issue 398, and issue 399.
878
-
879
- Added support for breakpoint groups.
880
-
881
- Fixed bugs introduced with the new global object representation.
882
-
883
- Fixed a few bugs in the ARM code generator.
884
-
885
-
886
- 2009-07-06: Version 1.2.12
887
-
888
- Added stack traces collection to Error objects accessible through
889
- the e.stack property.
890
-
891
- Changed RegExp parser to use a recursive data structure instead of
892
- stack-based recursion.
893
-
894
- Optimized Date object construction and string concatenation.
895
-
896
- Improved performance of div, mod, and mul on ARM platforms.
897
-
898
-
899
- 2009-07-02: Version 1.2.11
900
-
901
- Improved performance on IA-32 and ARM.
902
-
903
- Fixed profiler sampler implementation on Mac OS X.
904
-
905
- Changed the representation of global objects to improve
906
- performance of adding a lot of new properties.
907
-
908
-
909
- 2009-06-29: Version 1.2.10
910
-
911
- Improved debugger support.
912
-
913
- Fixed bug in exception message reporting (issue 390).
914
-
915
- Improved overall performance.
916
-
917
-
918
- 2009-06-23: Version 1.2.9
919
-
920
- Improved math performance on ARM.
921
-
922
- Fixed profiler name-inference bug.
923
-
924
- Fixed handling of shared libraries in the profiler tick processor
925
- scripts.
926
-
927
- Fixed handling of tests that time out in the test scripts.
928
-
929
- Fixed compilation on MacOS X version 10.4.
930
-
931
- Fixed two bugs in the regular expression engine.
932
-
933
- Fixed a bug in the string type inference.
934
-
935
- Fixed a bug in the handling of 'constant function' properties.
936
-
937
- Improved overall performance.
938
-
939
-
940
- 2009-06-16: Version 1.2.8
941
-
942
- Optimized math on ARM platforms.
943
-
944
- Fixed two crash bugs in the handling of getters and setters.
945
-
946
- Improved the debugger support by adding scope chain information.
947
-
948
- Improved the profiler support by compressing log data transmitted
949
- to clients.
950
-
951
- Improved overall performance.
952
-
953
-
954
- 2009-06-08: Version 1.2.7
955
-
956
- Improved debugger and profiler support.
957
-
958
- Reduced compilation time by improving the handling of deferred
959
- code.
960
-
961
- Optimized interceptor accesses where the property is on the object
962
- on which the interceptors is attached.
963
-
964
- Fixed compilation problem on GCC 4.4 by changing the stack
965
- alignment to 16 bytes.
966
-
967
- Fixed handle creation to follow stric aliasing rules.
968
-
969
- Fixed compilation on FreeBSD.
970
-
971
- Introduced API for forcing the deletion of a property ignoring
972
- interceptors and attributes.
973
-
974
-
975
- 2009-05-29: Version 1.2.6
976
-
977
- Added a histogram recording hit rates at different levels of the
978
- compilation cache.
979
-
980
- Added stack overflow check for the RegExp analysis phase. Previously a
981
- very long regexp graph could overflow the stack with recursive calls.
982
-
983
- Use a dynamic buffer when collecting log events in memory.
984
-
985
- Added start/stop events to the profiler log.
986
-
987
- Fixed infinite loop which could happen when setting a debug break while
988
- executing a RegExp compiled to native code.
989
-
990
- Fixed handling of lastIndexOf called with negative index (issue 351).
991
-
992
- Fixed irregular crash in profiler test (issue 358).
993
-
994
- Fixed compilation issues with some versions of gcc.
995
-
996
-
997
- 2009-05-26: Version 1.2.5
998
-
999
- Fixed bug in initial boundary check for Boyer-Moore text
1000
- search (issue 349).
1001
-
1002
- Fixed compilation issues with MinGW and gcc 4.3+ and added support
1003
- for armv7 and cortex-a8 architectures. Patches by Lei Zhang and
1004
- Craig Schlenter.
1005
-
1006
- Added a script cache to the debugger.
1007
-
1008
- Optimized compilation performance by improving internal data
1009
- structures and avoiding expensive property load optimizations for
1010
- code that's infrequently executed.
1011
-
1012
- Exposed the calling JavaScript context through the static API
1013
- function Context::GetCalling().
1014
-
1015
-
1016
- 2009-05-18: Version 1.2.4
1017
-
1018
- Improved performance of floating point number allocation for ARM
1019
- platforms.
1020
-
1021
- Fixed crash when using the instanceof operator on functions with
1022
- number values in their prototype chain (issue 341).
1023
-
1024
- Optimized virtual frame operations in the code generator to speed
1025
- up compilation time and allocated the frames in the zone.
1026
-
1027
- Made the representation of virtual frames and jump targets in the
1028
- code generator much more compact.
1029
-
1030
- Avoided linear search for non-locals in scope code when resolving
1031
- variables inside with and eval scopes.
1032
-
1033
- Optimized lexical scanner by dealing with whitespace as part of
1034
- the token scanning instead of as a separate step before it.
1035
-
1036
- Changed the scavenging collector so that promoted objects do not
1037
- reside in the old generation while their remembered set is being
1038
- swept for pointers into the young generation.
1039
-
1040
- Fixed numeric overflow handling when compiling count operations.
1041
-
1042
-
1043
- 2009-05-11: Version 1.2.3
1044
-
1045
- Fixed bug in reporting of out-of-memory situations.
1046
-
1047
- Introduced hidden prototypes on certain builtin prototype objects
1048
- such as String.prototype to emulate JSC's behavior of restoring
1049
- the original function when deleting functions from those prototype
1050
- objects.
1051
-
1052
- Fixed crash bug in the register allocator.
1053
-
1054
-
1055
- 2009-05-04: Version 1.2.2
1056
-
1057
- Fixed bug in array sorting for sparse arrays (issue 326).
1058
-
1059
- Added support for adding a soname when building a shared library
1060
- on Linux (issue 151).
1061
-
1062
- Fixed bug caused by morphing internal ASCII strings to external
1063
- two-byte strings. Slices over ASCII strings have to forward ASCII
1064
- checks to the underlying buffer string.
1065
-
1066
- Allowed API call-as-function handlers to be called as
1067
- constructors.
1068
-
1069
- Fixed a crash bug where an external string was disposed but a
1070
- slice of the external string survived as a symbol.
1071
-
1072
-
1073
- 2009-04-27: Version 1.2.1
1074
-
1075
- Added EcmaScript 5 JSON object.
1076
-
1077
- Fix bug in preemption support on ARM.
1078
-
1079
-
1080
- 2009-04-23: Version 1.2.0
1081
-
1082
- Optimized floating-point operations on ARM.
1083
-
1084
- Added a number of extensions to the debugger API.
1085
-
1086
- Changed the enumeration order for unsigned integer keys to always
1087
- be numerical order.
1088
-
1089
- Added a "read" extension to the shell sample.
1090
-
1091
- Added support for Array.prototype.reduce and
1092
- Array.prototype.reduceRight.
1093
-
1094
- Added an option to the SCons build to control Microsoft Visual C++
1095
- link-time code generation.
1096
-
1097
- Fixed a number of bugs (in particular issue 315, issue 316,
1098
- issue 317 and issue 318).
1099
-
1100
-
1101
- 2009-04-15: Version 1.1.10
1102
-
1103
- Fixed crash bug that occurred when loading a const variable in the
1104
- presence of eval.
1105
-
1106
- Allowed using with and eval in registered extensions in debug mode
1107
- by fixing bogus assert.
1108
-
1109
- Fixed the source position for function returns to enable the
1110
- debugger to break there.
1111
-
1112
-
1113
- 2009-04-14: Version 1.1.9
1114
-
1115
- Made the stack traversal code in the profiler robust by avoiding
1116
- to look into the heap.
1117
-
1118
- Added name inferencing for anonymous functions to facilitate
1119
- debugging and profiling.
1120
-
1121
- Re-enabled stats timers in the developer shell (d8).
1122
-
1123
- Fixed issue 303 by avoiding to shortcut cons-symbols.
1124
-
1125
-
1126
- 2009-04-11: Version 1.1.8
1127
-
1128
- Changed test-debug/ThreadedDebugging to be non-flaky (issue 96).
1129
-
1130
- Fixed step-in handling for Function.prototype.apply and call in
1131
- the debugger (issue 269).
1132
-
1133
- Fixed v8::Object::DeleteHiddenValue to not bail out when there
1134
- are no hidden properties.
1135
-
1136
- Added workaround for crash bug, where external symbol table
1137
- entries with deleted resources would lead to NPEs when looking
1138
- up in the symbol table.
1139
-
1140
-
1141
- 2009-04-07: Version 1.1.7
1142
-
1143
- Added support for easily importing additional environment
1144
- variables into the SCons build.
1145
-
1146
- Optimized strict equality checks.
1147
-
1148
- Fixed crash in indexed setters on objects without a corresponding
1149
- getter (issue 298).
1150
-
1151
- Re-enabled script compilation cache.
1152
-
1153
-
1154
- 2009-04-01: Version 1.1.6
1155
-
1156
- Reverted an unsafe code generator change.
1157
-
1158
-
1159
- 2009-04-01: Version 1.1.5
1160
-
1161
- Fixed bug that caused function literals to not be optimized as
1162
- much as other functions.
1163
-
1164
- Improved profiler support.
1165
-
1166
- Fixed a crash bug in connection with debugger unloading.
1167
-
1168
- Fixed a crash bug in the code generator caused by losing the
1169
- information that a frame element was copied.
1170
-
1171
- Fixed an exception propagation bug that could cause non-null
1172
- return values when exceptions were thrown.
1173
-
1174
-
1175
- 2009-03-30: Version 1.1.4
1176
-
1177
- Optimized String.prototype.match.
1178
-
1179
- Improved the stack information in profiles.
1180
-
1181
- Fixed bug in ARM port making it possible to compile the runtime
1182
- system for thumb mode again.
1183
-
1184
- Implemented a number of optimizations in the code generator.
1185
-
1186
- Fixed a number of memory leaks in tests.
1187
-
1188
- Fixed crash bug in connection with script source code and external
1189
- strings.
1190
-
1191
-
1192
- 2009-03-24: Version 1.1.3
1193
-
1194
- Fixed assertion failures in compilation of loop conditions.
1195
-
1196
- Removed STL dependency from developer shell (d8).
1197
-
1198
- Added infrastructure for protecting the V8 heap from corruption
1199
- caused by memory modifications from the outside.
1200
-
1201
-
1202
- 2009-03-24: Version 1.1.2
1203
-
1204
- Improved frame merge code generated by the code generator.
1205
-
1206
- Optimized String.prototype.replace.
1207
-
1208
- Implemented __defineGetter__ and __defineSetter__ for properties
1209
- with integer keys on non-array objects.
1210
-
1211
- Improved debugger and profiler support.
1212
-
1213
- Fixed a number of portability issues to allow compilation for
1214
- smaller ARM devices.
1215
-
1216
- Exposed object cloning through the API.
1217
-
1218
- Implemented hidden properties. This is used to expose an identity
1219
- hash for objects through the API.
1220
-
1221
- Implemented restarting of regular expressions if their input
1222
- string changes representation during preemption.
1223
-
1224
- Fixed a code generator bug that could cause assignments in loops
1225
- to be ignored if using continue to break out of the loop (issue
1226
- 284).
1227
-
1228
-
1229
- 2009-03-12: Version 1.1.1
1230
-
1231
- Fixed an assertion in the new compiler to take stack overflow
1232
- exceptions into account.
1233
-
1234
- Removed exception propagation code that could cause crashes.
1235
-
1236
- Fixed minor bug in debugger line number computations.
1237
-
1238
- 8-byte align the C stack on Linux and Windows to speed up floating
1239
- point computations.
1240
-
1241
-
1242
- 2009-03-12: Version 1.1.0
1243
-
1244
- Improved code generation infrastructure by doing simple register
1245
- allocation and constant folding and propagation.
1246
-
1247
- Optimized regular expression matching by avoiding to create
1248
- intermediate string arrays and by flattening nested array
1249
- representations of RegExp data.
1250
-
1251
- Traverse a few stack frames when recording profiler samples to
1252
- include partial call graphs in the profiling output.
1253
-
1254
- Added support for using OProfile to profile generated code.
1255
-
1256
- Added remote debugging support to the D8 developer shell.
1257
-
1258
- Optimized creation of nested literals like JSON objects.
1259
-
1260
- Fixed a bug in garbage collecting unused maps and turned it on by
1261
- default (--collect-maps).
1262
-
1263
- Added support for running tests under Valgrind.
1264
-
1265
-
1266
- 2009-02-27: Version 1.0.3
1267
-
1268
- Optimized double-to-integer conversions in bit operations by using
1269
- SSE3 instructions if available.
1270
-
1271
- Optimized initialization sequences that store to multiple
1272
- properties of the same object.
1273
-
1274
- Changed the D8 debugger frontend to use JSON messages.
1275
-
1276
- Force garbage collections when disposing contexts.
1277
-
1278
- Align code objects at 32-byte boundaries.
1279
-
1280
-
1281
- 2009-02-25: Version 1.0.2
1282
-
1283
- Improved profiling support by performing simple call stack
1284
- sampling for ticks and by fixing a bug in the logging of code
1285
- addresses.
1286
-
1287
- Fixed a number of debugger issues.
1288
-
1289
- Optimized code that uses eval.
1290
-
1291
- Fixed a couple of bugs in the regular expression engine.
1292
-
1293
- Reduced the size of generated code for certain regular expressions.
1294
-
1295
- Removed JSCRE completely.
1296
-
1297
- Fixed issue where test could not be run if there was a dot in the
1298
- checkout path.
1299
-
1300
-
1301
- 2009-02-13: Version 1.0.1
1302
-
1303
- Fixed two crash-bugs in irregexp (issue 231 and 233).
1304
-
1305
- Fixed a number of minor bugs (issue 87, 227 and 228).
1306
-
1307
- Added support for morphing strings to external strings on demand
1308
- to avoid having to create copies in the embedding code.
1309
-
1310
- Removed experimental support for external symbol callbacks.
1311
-
1312
-
1313
- 2009-02-09: Version 1.0.0
1314
-
1315
- Fixed crash-bug in the code generation for case independent 16 bit
1316
- backreferences.
1317
-
1318
- Made shells more robust in the presence of string conversion
1319
- failures (issue 224).
1320
-
1321
- Fixed a potential infinite loop when attempting to resolve
1322
- eval (issue 221).
1323
-
1324
- Miscellaneous fixes to the new regular expression engine.
1325
-
1326
- Reduced binary by stripping unneeded text from JavaScript library and
1327
- minifying some JavaScript files.
1328
-
1329
-
1330
- 2009-01-27: Version 0.4.9
1331
-
1332
- Enabled new regular expression engine.
1333
-
1334
- Made a number of changes to the debugger protocol.
1335
-
1336
- Fixed a number of bugs in the preemption support.
1337
-
1338
- Added -p option to the developer shell to run files in parallel
1339
- using preemption.
1340
-
1341
- Fixed a number of minor bugs (including issues 176, 187, 189, 192,
1342
- 193, 198 and 201).
1343
-
1344
- Fixed a number of bugs in the serialization/deserialization
1345
- support for the ARM platform.
1346
-
1347
-
1348
- 2009-01-19: Version 0.4.8.1
1349
-
1350
- Minor patch to debugger support.
1351
-
1352
-
1353
- 2009-01-16: Version 0.4.8
1354
-
1355
- Fixed string length bug on ARM (issue 171).
1356
-
1357
- Made most methods in the API const.
1358
-
1359
- Optimized object literals by improving data locality.
1360
-
1361
- Fixed bug that caused incomplete functions to be cached in case of
1362
- stack overflow exceptions.
1363
-
1364
- Fixed bugs that caused catch variables and variables introduced by
1365
- eval to behave incorrectly when using accessors (issues 186, 190
1366
- and 191).
1367
-
1368
-
1369
- 2009-01-06: Version 0.4.7
1370
-
1371
- Minor bugfixes and optimizations.
1372
-
1373
- Added command line debugger to D8 shell.
1374
-
1375
- Fixed subtle bug that caused the wrong 'this' to be used when
1376
- calling a caught function in a catch clause.
1377
-
1378
- Inline array loads within loops directly in the code instead of
1379
- always calling a stub.
1380
-
1381
-
1382
- 2008-12-11: Version 0.4.6
1383
-
1384
- Fixed exception reporting bug where certain exceptions were
1385
- incorrectly reported as uncaught.
1386
-
1387
- Improved the memory allocation strategy used during compilation to
1388
- make running out of memory when compiling huge scripts less
1389
- likely.
1390
-
1391
- Optimized String.replace by avoiding the construction of certain
1392
- sub strings.
1393
-
1394
- Fixed bug in code generation for large switch statements on ARM.
1395
-
1396
- Fixed bug that caused V8 to change the global object template
1397
- passed in by the user.
1398
-
1399
- Changed the API for creating object groups used during garbage
1400
- collection. Entire object groups are now passed to V8 instead of
1401
- individual members of the groups.
1402
-
1403
-
1404
- 2008-12-03: Version 0.4.5
1405
-
1406
- Added experimental API support for allocating V8 symbols as
1407
- external strings.
1408
-
1409
- Fixed bugs in debugging support on ARM.
1410
-
1411
- Changed eval implementation to correctly detect whether or not a
1412
- call to eval is aliased.
1413
-
1414
- Fixed bug caused by a combination of the compilation cache and
1415
- dictionary probing in native code. The bug caused us to sometimes
1416
- call functions that had not yet been compiled.
1417
-
1418
- Added platform support for FreeBSD.
1419
-
1420
- Added support for building V8 on Windows with either the shared or
1421
- static version of MSVCRT
1422
-
1423
- Added the v8::jscre namespace around the jscre functions to avoid
1424
- link errors (duplicate symbols) when building Google Chrome.
1425
-
1426
- Added support for calling a JavaScript function with the current
1427
- debugger execution context as its argument to the debugger
1428
- interface.
1429
-
1430
- Changed the type of names of counters from wchar_t to char.
1431
-
1432
- Changed the Windows system call used to compute daylight savings
1433
- time. The system call that we used to use became four times
1434
- slower on WinXP SP3.
1435
-
1436
- Added support in the d8 developer shell for memory-mapped counters
1437
- and added a stats-viewer tool.
1438
-
1439
- Fixed bug in upper/lower case mappings (issue 149).
1440
-
1441
-
1442
- 2008-11-17: Version 0.4.4
1443
-
1444
- Reduced code size by using shorter instruction encoding when
1445
- possible.
1446
-
1447
- Added a --help option to the shell sample and to the d8 shell.
1448
-
1449
- Added visual studio project files for building the ARM simulator.
1450
-
1451
- Fixed a number of ARM simulator issues.
1452
-
1453
- Fixed bug in out-of-memory handling on ARM.
1454
-
1455
- Implemented shell support for passing arguments to a script from
1456
- the command line.
1457
-
1458
- Fixed bug in date code that made certain date functions return -0
1459
- instead of 0 for dates before the epoch.
1460
-
1461
- Restricted applications of eval so it can only be used in the
1462
- context of the associated global object.
1463
-
1464
- Treat byte-order marks as whitespace characters.
1465
-
1466
-
1467
- 2008-11-04: Version 0.4.3
1468
-
1469
- Added support for API accessors that prohibit overwriting by
1470
- accessors defined in JavaScript code by using __defineGetter__ and
1471
- __defineSetter__.
1472
-
1473
- Improved handling of conditionals in test status files.
1474
-
1475
- Introduced access control in propertyIsEnumerable.
1476
-
1477
- Improved performance of some string operations by caching
1478
- information about the type of the string between operations.
1479
-
1480
- Fixed bug in fast-case code for switch statements that only have
1481
- integer labels.
1482
-
1483
-
1484
- 2008-10-30: Version 0.4.2
1485
-
1486
- Improved performance of Array.prototype.concat by moving the
1487
- implementation to C++ (issue 123).
1488
-
1489
- Fixed heap growth policy to avoid growing old space to its maximum
1490
- capacity before doing a garbage collection and fixed issue that
1491
- would lead to artificial out of memory situations (issue 129).
1492
-
1493
- Fixed Date.prototype.toLocaleDateString to return the date in the
1494
- same format as WebKit.
1495
-
1496
- Added missing initialization checks to debugger API.
1497
-
1498
- Added removing of unused maps during GC.
1499
-
1500
-
1501
- 2008-10-28: Version 0.4.1
1502
-
1503
- Added caching of RegExp data in compilation cache.
1504
-
1505
- Added Visual Studio project file for d8 shell.
1506
-
1507
- Fixed function call performance regression introduced in version
1508
- 0.4.0 when splitting the global object in two parts (issue 120).
1509
-
1510
- Fixed issue 131 by checking for empty handles before throwing and
1511
- reporting exceptions.
1512
-
1513
-
1514
- 2008-10-23: Version 0.4.0
1515
-
1516
- Split the global object into two parts: The state holding global
1517
- object and the global object proxy.
1518
-
1519
- Fixed bug that affected the value of an assignment to an element
1520
- in certain cases (issue 116).
1521
-
1522
- Added GetPropertyNames functionality (issue 33) and extra Date
1523
- functions (issue 77) to the API.
1524
-
1525
- Changed WeakReferenceCallback to take a Persistent<Value> instead
1526
- of a Persistent<Object> (issue 101).
1527
-
1528
- Fixed issues with message reporting for exceptions in try-finally
1529
- blocks (issues 73 and 75).
1530
-
1531
- Optimized flattening of strings and string equality checking.
1532
-
1533
- Improved Boyer-Moore implementation for faster indexOf operations.
1534
-
1535
- Added development shell (d8) which includes counters and
1536
- completion support.
1537
-
1538
- Fixed problem with the receiver passed to functions called from
1539
- eval (issue 124).
1540
-
1541
-
1542
- 2008-10-16: Version 0.3.5
1543
-
1544
- Improved string hash-code distribution by excluding bit-field bits
1545
- from the hash-code.
1546
-
1547
- Changed string search algorithm used in indexOf from KMP to
1548
- Boyer-Moore.
1549
-
1550
- Improved the generated code for the instanceof operator.
1551
-
1552
- Improved performance of slow-case string equality checks by
1553
- specializing the code based on the string representation.
1554
-
1555
- Improve the handling of out-of-memory situations (issue 70).
1556
-
1557
- Improved performance of strict equality checks.
1558
-
1559
- Improved profiler output to make it easier to see anonymous
1560
- functions.
1561
-
1562
- Improved performance of slow-case keyed loads.
1563
-
1564
- Improved property access performance by allocating a number of
1565
- properties in the front object.
1566
-
1567
- Changed the toString behavior on the built-in object constructors
1568
- to print [native code] instead of the actual source. Some web
1569
- applications do not like constructors with complex toString
1570
- results.
1571
-
1572
-
1573
- 2008-10-06: Version 0.3.4
1574
-
1575
- Changed Array.prototype.sort to use quick sort.
1576
-
1577
- Fixed code generation issue where leaving a finally block with
1578
- break or continue would accumulate elements on the expression
1579
- stack (issue 86).
1580
-
1581
- Made sure that the name accessor on functions returns the expected
1582
- names for builtin JavaScript functions and C++ callback functions.
1583
-
1584
- Added fast case code for extending the property storage array of
1585
- JavaScript objects.
1586
-
1587
- Ported switch statement optimizations introduced in version 0.3.3
1588
- to the ARM code generator.
1589
-
1590
- Allowed GCC to use strict-aliasing rules when compiling.
1591
-
1592
- Improved performance of arguments object allocation by taking care
1593
- of arguments adaptor frames in the generated code.
1594
-
1595
- Updated the V8 benchmark suite to version 2.
1596
-
1597
-
1598
- 2008-09-25: Version 0.3.3
1599
-
1600
- Improved handling of relocation information to enable more
1601
- peep-hole optimizations.
1602
-
1603
- Optimized switch statements where all labels are constant small
1604
- integers.
1605
-
1606
- Optimized String.prototype.indexOf for common cases.
1607
-
1608
- Fixed more build issues (issue 80).
1609
-
1610
- Fixed a couple of profiler issues.
1611
-
1612
- Fixed bug where the body of a function created using the Function
1613
- constructor was not allowed to end with a single-line comment
1614
- (issue 85).
1615
-
1616
- Improved handling of object literals by canonicalizing object
1617
- literal maps. This will allow JSON objects with the same set of
1618
- properties to share the same map making inline caching work better
1619
- for JSON objects.
1620
-
1621
-
1622
- 2008-09-17: Version 0.3.2
1623
-
1624
- Generalized the EvalCache into a CompilationCache and enabled it
1625
- for scripts too. The current strategy is to retire all entries
1626
- whenever a mark-sweep collection is started.
1627
-
1628
- Fixed bug where switch statements containing only a default case
1629
- would lead to an unbalanced stack (issue 69).
1630
-
1631
- Fixed bug that made access to the function in a named function
1632
- expression impossible in certain situations (issue 24).
1633
-
1634
- Fixed even more build issues.
1635
-
1636
- Optimized calling conventions on ARM. The conventions on ARM and
1637
- IA-32 now match.
1638
-
1639
- Removed static initializers for flags and counters.
1640
-
1641
- Improved inline caching behavior for uncommon cases where lazily
1642
- loading Date and RegExp code could force certain code paths go
1643
- megamorphic.
1644
-
1645
- Removed arguments adaption for builtins written in C++. This
1646
- makes Array.prototype.push and Array.prototype.pop slightly
1647
- faster.
1648
-
1649
-
1650
- 2008-09-11: Version 0.3.1
1651
-
1652
- Fixed a number of build issues.
1653
-
1654
- Fixed problem with missing I-cache flusing on ARM.
1655
-
1656
- Changed space layout in memory management by splitting up
1657
- code space into old data space and code space.
1658
-
1659
- Added utf-8 conversion support to the API (issue 57).
1660
-
1661
- Optimized repeated calls to eval with the same strings. These
1662
- repeated calls are common in web applications.
1663
-
1664
- Added Xcode project file.
1665
-
1666
- Optimized a couple of Array operation.
1667
-
1668
- Fixed parser bug by checking for end-of-string when parsing break
1669
- and continue (issue 35).
1670
-
1671
- Fixed problem where asian characters were not categorized as
1672
- letters.
1673
-
1674
- Fixed bug that disallowed calling functions fetched from an array
1675
- using a string as an array index (issue 32).
1676
-
1677
- Fixed bug where the internal field count on object templates were
1678
- sometimes ignored (issue 54).
1679
-
1680
- Added -f option to the shell sample for compatibility with other
1681
- engines (issue 18).
1682
-
1683
- Added source info to TryCatches in the API.
1684
-
1685
- Fixed problem where the seed for the random number generator was
1686
- clipped in a double to unsigned int conversion.
1687
-
1688
- Fixed bug where cons string symbols were sometimes converted to
1689
- non-symbol flat strings during GC.
1690
-
1691
- Fixed bug in error reporting when attempting to convert null to an
1692
- object.
1693
-
1694
-
1695
- 2008-09-04: Version 0.3.0
1696
-
1697
- Added support for running tests on the ARM simulator.
1698
-
1699
- Fixed bug in the 'in' operator where negative indices were not
1700
- treated correctly.
1701
-
1702
- Fixed build issues on gcc-4.3.1.
1703
-
1704
- Changed Date.prototype.toLocaleTimeString to not print the
1705
- timezone part of the time.
1706
-
1707
- Renamed debug.h to v8-debug.h to reduce the risk of name conflicts
1708
- with user code.
1709
-
1710
-
1711
- 2008-09-02: Version 0.2.5
1712
-
1713
- Renamed the top level directory 'public' to 'include'.
1714
-
1715
- Added 'env' option to the SCons build scripts to support
1716
- overriding the ENV part of the build environment. This is mostly
1717
- to support Windows builds in cases where SCons cannot find the
1718
- correct paths to the Windows SDK, as these paths cannot be passed
1719
- through shell environment variables.
1720
-
1721
- Enabled "Buffer Security Check" on for the Windows SCons build and
1722
- added the linker option /OPT:ICF as an optimization.
1723
-
1724
- Added the V8 benchmark suite to the repository.
1725
-
1726
-
1727
- 2008-09-01: Version 0.2.4
1728
-
1729
- Included mjsunit JavaScript test suite and C++ unit tests.
1730
-
1731
- Changed the shell sample to not print the result of executing a
1732
- script provided on the command line.
1733
-
1734
- Fixed issue when building samples on Windows using a shared V8
1735
- library. Added visibility option on Linux build which makes the
1736
- generated library 18% smaller.
1737
-
1738
- Changed build system to accept multiple build modes in one build
1739
- and generate separate objects, libraries and executables for each
1740
- mode.
1741
-
1742
- Removed deferred negation optimization (a * -b => -(a * b)) since
1743
- this visibly changes operand conversion order.
1744
-
1745
- Improved parsing performance by introducing stack guard in
1746
- preparsing. Without a stack guard preparsing always bails out
1747
- with stack overflow.
1748
-
1749
- Changed shell sample to take flags directly from the command-line.
1750
- Added API call that implements this.
1751
-
1752
- Added load, quit and version functions to the shell sample so it's
1753
- easier to run benchmarks and tests.
1754
-
1755
- Fixed issue with building samples and cctests on 64-bit machines.
1756
-
1757
- Fixed bug in the runtime system where the prototype chain was not
1758
- always searched for a setter when setting a property that does not
1759
- exist locally.
1760
-
1761
-
1762
- 2008-08-14: Version 0.2.3
1763
-
1764
- Improved performance of garbage collection by moving the
1765
- function that updates pointers during compacting collection
1766
- into the updating visitor. This gives the compiler a better
1767
- chance to inline and avoid a function call per (potential)
1768
- pointer.
1769
-
1770
- Extended the shell sample with a --runtime-flags option.
1771
-
1772
- Added Visual Studio project files for the shell.cc and
1773
- process.cc samples.
1774
-
1775
-
1776
- 2008-08-13: Version 0.2.2
1777
-
1778
- Improved performance of garbage collection by changing the way
1779
- we use the marking stack in the event of stack overflow during
1780
- full garbage collection and by changing the way we mark roots.
1781
-
1782
- Cleaned up ARM version by removing top of stack caching and by
1783
- introducing push/pop elimination.
1784
-
1785
- Cleaned up the way runtime functions are called to allow
1786
- runtime calls with no arguments.
1787
-
1788
- Changed Windows build options to make sure that exceptions are
1789
- disabled and that optimization flags are enabled.
1790
-
1791
- Added first version of Visual Studio project files.
1792
-
1793
-
1794
- 2008-08-06: Version 0.2.1
1795
-
1796
- Improved performance of unary addition by avoiding runtime calls.
1797
-
1798
- Fixed the handling of '>' and '<=' to use right-to-left conversion
1799
- and left-to-right evaluation as specified by ECMA-262.
1800
-
1801
- Fixed a branch elimination bug on the ARM platform where incorrect
1802
- code was generated because of overly aggressive branch
1803
- elimination.
1804
-
1805
- Improved performance of code that repeatedly assigns the same
1806
- function to the same property of different objects with the same
1807
- map.
1808
-
1809
- Untangled DEBUG and ENABLE_DISASSEMBLER defines. The disassembler
1810
- no longer expects DEBUG to be defined.
1811
-
1812
- Added platform-nullos.cc to serve as the basis for new platform
1813
- implementations.
1814
-
1815
-
1816
- 2008-07-30: Version 0.2.0
1817
-
1818
- Changed all text files to have native svn:eol-style.
1819
-
1820
- Added a few samples and support for building them. The samples
1821
- include a simple shell that can be used to benchmark and test V8.
1822
-
1823
- Changed V8::GetVersion to return the version as a string.
1824
-
1825
- Added source for lazily loaded scripts to snapshots and made
1826
- serialization non-destructive.
1827
-
1828
- Improved ARM support by fixing the write barrier code to use
1829
- aligned loads and stores and by removing premature locals
1830
- optimization that relied on broken support for callee-saved
1831
- registers (removed).
1832
-
1833
- Refactored the code for marking live objects during garbage
1834
- collection and the code for allocating objects in paged
1835
- spaces. Introduced an abstraction for the map word of a heap-
1836
- allocated object and changed the memory allocator to allocate
1837
- executable memory only for spaces that may contain code objects.
1838
-
1839
- Moved StringBuilder to utils.h and ScopedLock to platform.h, where
1840
- they can be used by debugging and logging modules. Added
1841
- thread-safe message queues for dealing with debugger events.
1842
-
1843
- Fixed the source code reported by toString for certain builtin
1844
- empty functions and made sure that the prototype property of a
1845
- function is enumerable.
1846
-
1847
- Improved performance of converting values to condition flags in
1848
- generated code.
1849
-
1850
- Merged disassembler-{arch} files.
1851
-
1852
-
1853
- 2008-07-28: Version 0.1.4
1854
-
1855
- Added support for storing JavaScript stack traces in a stack
1856
- allocated buffer to make it visible in shallow core dumps.
1857
- Controlled by the --preallocate-message-memory flag which is
1858
- disabled by default.
1859
-
1860
-
1861
- 2008-07-25: Version 0.1.3
1862
-
1863
- Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
1864
- map transitions would count as properties.
1865
-
1866
- Allowed aliased eval invocations by treating them as evals in the
1867
- global context. This may change in the future.
1868
-
1869
- Added support for accessing the last entered context through the
1870
- API and renamed Context::Current to Context::GetCurrent and
1871
- Context::GetSecurityContext to Context::GetCurrentSecurityContext.
1872
-
1873
- Fixed bug in the debugger that would cause the debugger scripts to
1874
- be recursively loaded and changed all disabling of interrupts to
1875
- be block-structured.
1876
-
1877
- Made snapshot data read-only to allow it to be more easily shared
1878
- across multiple users of V8 when linked as a shared library.
1879
-
1880
-
1881
- 2008-07-16: Version 0.1.2
1882
-
1883
- Fixed building on Mac OS X by recognizing i386 and friends as
1884
- IA-32 platforms.
1885
-
1886
- Added propagation of stack overflow exceptions that occur while
1887
- compiling nested functions.
1888
-
1889
- Improved debugger with support for recursive break points and
1890
- handling of exceptions that occur in the debugger JavaScript code.
1891
-
1892
- Renamed GetInternal to GetInternalField and SetInternal to
1893
- SetInternalField in the API and moved InternalFieldCount and
1894
- SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
1895
-
1896
-
1897
- 2008-07-09: Version 0.1.1
1898
-
1899
- Fixed bug in stack overflow check code for IA-32 targets where a
1900
- non-tagged value in register eax was pushed to the stack.
1901
-
1902
- Fixed potential quadratic behavior when converting strings to
1903
- numbers.
1904
-
1905
- Fixed bug where the return value from Object::SetProperty could
1906
- end up being the property holder instead of the written value.
1907
-
1908
- Improved debugger support by allowing nested break points and by
1909
- dealing with stack-overflows when compiling functions before
1910
- setting break points in them.
1911
-
1912
-
1913
- 2008-07-03: Version 0.1.0
1914
-
1915
- Initial export.
1916
-