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
@@ -0,0 +1,1535 @@
1
+ // Copyright 2006-2008 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "v8.h"
29
+
30
+ #include "accessors.h"
31
+ #include "api.h"
32
+ #include "execution.h"
33
+ #include "global-handles.h"
34
+ #include "ic-inl.h"
35
+ #include "natives.h"
36
+ #include "platform.h"
37
+ #include "runtime.h"
38
+ #include "serialize.h"
39
+ #include "stub-cache.h"
40
+ #include "v8threads.h"
41
+ #include "top.h"
42
+ #include "bootstrapper.h"
43
+
44
+ namespace v8 {
45
+ namespace internal {
46
+
47
+
48
+ // -----------------------------------------------------------------------------
49
+ // Coding of external references.
50
+
51
+ // The encoding of an external reference. The type is in the high word.
52
+ // The id is in the low word.
53
+ static uint32_t EncodeExternal(TypeCode type, uint16_t id) {
54
+ return static_cast<uint32_t>(type) << 16 | id;
55
+ }
56
+
57
+
58
+ static int* GetInternalPointer(StatsCounter* counter) {
59
+ // All counters refer to dummy_counter, if deserializing happens without
60
+ // setting up counters.
61
+ static int dummy_counter = 0;
62
+ return counter->Enabled() ? counter->GetInternalPointer() : &dummy_counter;
63
+ }
64
+
65
+
66
+ // ExternalReferenceTable is a helper class that defines the relationship
67
+ // between external references and their encodings. It is used to build
68
+ // hashmaps in ExternalReferenceEncoder and ExternalReferenceDecoder.
69
+ class ExternalReferenceTable {
70
+ public:
71
+ static ExternalReferenceTable* instance() {
72
+ if (!instance_) instance_ = new ExternalReferenceTable();
73
+ return instance_;
74
+ }
75
+
76
+ int size() const { return refs_.length(); }
77
+
78
+ Address address(int i) { return refs_[i].address; }
79
+
80
+ uint32_t code(int i) { return refs_[i].code; }
81
+
82
+ const char* name(int i) { return refs_[i].name; }
83
+
84
+ int max_id(int code) { return max_id_[code]; }
85
+
86
+ private:
87
+ static ExternalReferenceTable* instance_;
88
+
89
+ ExternalReferenceTable() : refs_(64) { PopulateTable(); }
90
+ ~ExternalReferenceTable() { }
91
+
92
+ struct ExternalReferenceEntry {
93
+ Address address;
94
+ uint32_t code;
95
+ const char* name;
96
+ };
97
+
98
+ void PopulateTable();
99
+
100
+ // For a few types of references, we can get their address from their id.
101
+ void AddFromId(TypeCode type, uint16_t id, const char* name);
102
+
103
+ // For other types of references, the caller will figure out the address.
104
+ void Add(Address address, TypeCode type, uint16_t id, const char* name);
105
+
106
+ List<ExternalReferenceEntry> refs_;
107
+ int max_id_[kTypeCodeCount];
108
+ };
109
+
110
+
111
+ ExternalReferenceTable* ExternalReferenceTable::instance_ = NULL;
112
+
113
+
114
+ void ExternalReferenceTable::AddFromId(TypeCode type,
115
+ uint16_t id,
116
+ const char* name) {
117
+ Address address;
118
+ switch (type) {
119
+ case C_BUILTIN: {
120
+ ExternalReference ref(static_cast<Builtins::CFunctionId>(id));
121
+ address = ref.address();
122
+ break;
123
+ }
124
+ case BUILTIN: {
125
+ ExternalReference ref(static_cast<Builtins::Name>(id));
126
+ address = ref.address();
127
+ break;
128
+ }
129
+ case RUNTIME_FUNCTION: {
130
+ ExternalReference ref(static_cast<Runtime::FunctionId>(id));
131
+ address = ref.address();
132
+ break;
133
+ }
134
+ case IC_UTILITY: {
135
+ ExternalReference ref(IC_Utility(static_cast<IC::UtilityId>(id)));
136
+ address = ref.address();
137
+ break;
138
+ }
139
+ default:
140
+ UNREACHABLE();
141
+ return;
142
+ }
143
+ Add(address, type, id, name);
144
+ }
145
+
146
+
147
+ void ExternalReferenceTable::Add(Address address,
148
+ TypeCode type,
149
+ uint16_t id,
150
+ const char* name) {
151
+ ASSERT_NE(NULL, address);
152
+ ExternalReferenceEntry entry;
153
+ entry.address = address;
154
+ entry.code = EncodeExternal(type, id);
155
+ entry.name = name;
156
+ ASSERT_NE(0, entry.code);
157
+ refs_.Add(entry);
158
+ if (id > max_id_[type]) max_id_[type] = id;
159
+ }
160
+
161
+
162
+ void ExternalReferenceTable::PopulateTable() {
163
+ for (int type_code = 0; type_code < kTypeCodeCount; type_code++) {
164
+ max_id_[type_code] = 0;
165
+ }
166
+
167
+ // The following populates all of the different type of external references
168
+ // into the ExternalReferenceTable.
169
+ //
170
+ // NOTE: This function was originally 100k of code. It has since been
171
+ // rewritten to be mostly table driven, as the callback macro style tends to
172
+ // very easily cause code bloat. Please be careful in the future when adding
173
+ // new references.
174
+
175
+ struct RefTableEntry {
176
+ TypeCode type;
177
+ uint16_t id;
178
+ const char* name;
179
+ };
180
+
181
+ static const RefTableEntry ref_table[] = {
182
+ // Builtins
183
+ #define DEF_ENTRY_C(name, ignored) \
184
+ { C_BUILTIN, \
185
+ Builtins::c_##name, \
186
+ "Builtins::" #name },
187
+
188
+ BUILTIN_LIST_C(DEF_ENTRY_C)
189
+ #undef DEF_ENTRY_C
190
+
191
+ #define DEF_ENTRY_C(name, ignored) \
192
+ { BUILTIN, \
193
+ Builtins::name, \
194
+ "Builtins::" #name },
195
+ #define DEF_ENTRY_A(name, kind, state, extra) DEF_ENTRY_C(name, ignored)
196
+
197
+ BUILTIN_LIST_C(DEF_ENTRY_C)
198
+ BUILTIN_LIST_A(DEF_ENTRY_A)
199
+ BUILTIN_LIST_DEBUG_A(DEF_ENTRY_A)
200
+ #undef DEF_ENTRY_C
201
+ #undef DEF_ENTRY_A
202
+
203
+ // Runtime functions
204
+ #define RUNTIME_ENTRY(name, nargs, ressize) \
205
+ { RUNTIME_FUNCTION, \
206
+ Runtime::k##name, \
207
+ "Runtime::" #name },
208
+
209
+ RUNTIME_FUNCTION_LIST(RUNTIME_ENTRY)
210
+ #undef RUNTIME_ENTRY
211
+
212
+ // IC utilities
213
+ #define IC_ENTRY(name) \
214
+ { IC_UTILITY, \
215
+ IC::k##name, \
216
+ "IC::" #name },
217
+
218
+ IC_UTIL_LIST(IC_ENTRY)
219
+ #undef IC_ENTRY
220
+ }; // end of ref_table[].
221
+
222
+ for (size_t i = 0; i < ARRAY_SIZE(ref_table); ++i) {
223
+ AddFromId(ref_table[i].type, ref_table[i].id, ref_table[i].name);
224
+ }
225
+
226
+ #ifdef ENABLE_DEBUGGER_SUPPORT
227
+ // Debug addresses
228
+ Add(Debug_Address(Debug::k_after_break_target_address).address(),
229
+ DEBUG_ADDRESS,
230
+ Debug::k_after_break_target_address << kDebugIdShift,
231
+ "Debug::after_break_target_address()");
232
+ Add(Debug_Address(Debug::k_debug_break_slot_address).address(),
233
+ DEBUG_ADDRESS,
234
+ Debug::k_debug_break_slot_address << kDebugIdShift,
235
+ "Debug::debug_break_slot_address()");
236
+ Add(Debug_Address(Debug::k_debug_break_return_address).address(),
237
+ DEBUG_ADDRESS,
238
+ Debug::k_debug_break_return_address << kDebugIdShift,
239
+ "Debug::debug_break_return_address()");
240
+ Add(Debug_Address(Debug::k_restarter_frame_function_pointer).address(),
241
+ DEBUG_ADDRESS,
242
+ Debug::k_restarter_frame_function_pointer << kDebugIdShift,
243
+ "Debug::restarter_frame_function_pointer_address()");
244
+ #endif
245
+
246
+ // Stat counters
247
+ struct StatsRefTableEntry {
248
+ StatsCounter* counter;
249
+ uint16_t id;
250
+ const char* name;
251
+ };
252
+
253
+ static const StatsRefTableEntry stats_ref_table[] = {
254
+ #define COUNTER_ENTRY(name, caption) \
255
+ { &Counters::name, \
256
+ Counters::k_##name, \
257
+ "Counters::" #name },
258
+
259
+ STATS_COUNTER_LIST_1(COUNTER_ENTRY)
260
+ STATS_COUNTER_LIST_2(COUNTER_ENTRY)
261
+ #undef COUNTER_ENTRY
262
+ }; // end of stats_ref_table[].
263
+
264
+ for (size_t i = 0; i < ARRAY_SIZE(stats_ref_table); ++i) {
265
+ Add(reinterpret_cast<Address>(
266
+ GetInternalPointer(stats_ref_table[i].counter)),
267
+ STATS_COUNTER,
268
+ stats_ref_table[i].id,
269
+ stats_ref_table[i].name);
270
+ }
271
+
272
+ // Top addresses
273
+ const char* top_address_format = "Top::%s";
274
+
275
+ const char* AddressNames[] = {
276
+ #define C(name) #name,
277
+ TOP_ADDRESS_LIST(C)
278
+ TOP_ADDRESS_LIST_PROF(C)
279
+ NULL
280
+ #undef C
281
+ };
282
+
283
+ int top_format_length = StrLength(top_address_format) - 2;
284
+ for (uint16_t i = 0; i < Top::k_top_address_count; ++i) {
285
+ const char* address_name = AddressNames[i];
286
+ Vector<char> name =
287
+ Vector<char>::New(top_format_length + StrLength(address_name) + 1);
288
+ const char* chars = name.start();
289
+ OS::SNPrintF(name, top_address_format, address_name);
290
+ Add(Top::get_address_from_id((Top::AddressId)i), TOP_ADDRESS, i, chars);
291
+ }
292
+
293
+ // Accessors
294
+ #define ACCESSOR_DESCRIPTOR_DECLARATION(name) \
295
+ Add((Address)&Accessors::name, \
296
+ ACCESSOR, \
297
+ Accessors::k##name, \
298
+ "Accessors::" #name);
299
+
300
+ ACCESSOR_DESCRIPTOR_LIST(ACCESSOR_DESCRIPTOR_DECLARATION)
301
+ #undef ACCESSOR_DESCRIPTOR_DECLARATION
302
+
303
+ // Stub cache tables
304
+ Add(SCTableReference::keyReference(StubCache::kPrimary).address(),
305
+ STUB_CACHE_TABLE,
306
+ 1,
307
+ "StubCache::primary_->key");
308
+ Add(SCTableReference::valueReference(StubCache::kPrimary).address(),
309
+ STUB_CACHE_TABLE,
310
+ 2,
311
+ "StubCache::primary_->value");
312
+ Add(SCTableReference::keyReference(StubCache::kSecondary).address(),
313
+ STUB_CACHE_TABLE,
314
+ 3,
315
+ "StubCache::secondary_->key");
316
+ Add(SCTableReference::valueReference(StubCache::kSecondary).address(),
317
+ STUB_CACHE_TABLE,
318
+ 4,
319
+ "StubCache::secondary_->value");
320
+
321
+ // Runtime entries
322
+ Add(ExternalReference::perform_gc_function().address(),
323
+ RUNTIME_ENTRY,
324
+ 1,
325
+ "Runtime::PerformGC");
326
+ Add(ExternalReference::fill_heap_number_with_random_function().address(),
327
+ RUNTIME_ENTRY,
328
+ 2,
329
+ "V8::FillHeapNumberWithRandom");
330
+
331
+ Add(ExternalReference::random_uint32_function().address(),
332
+ RUNTIME_ENTRY,
333
+ 3,
334
+ "V8::Random");
335
+
336
+ Add(ExternalReference::delete_handle_scope_extensions().address(),
337
+ RUNTIME_ENTRY,
338
+ 4,
339
+ "HandleScope::DeleteExtensions");
340
+
341
+ // Miscellaneous
342
+ Add(ExternalReference::the_hole_value_location().address(),
343
+ UNCLASSIFIED,
344
+ 2,
345
+ "Factory::the_hole_value().location()");
346
+ Add(ExternalReference::roots_address().address(),
347
+ UNCLASSIFIED,
348
+ 3,
349
+ "Heap::roots_address()");
350
+ Add(ExternalReference::address_of_stack_limit().address(),
351
+ UNCLASSIFIED,
352
+ 4,
353
+ "StackGuard::address_of_jslimit()");
354
+ Add(ExternalReference::address_of_real_stack_limit().address(),
355
+ UNCLASSIFIED,
356
+ 5,
357
+ "StackGuard::address_of_real_jslimit()");
358
+ #ifndef V8_INTERPRETED_REGEXP
359
+ Add(ExternalReference::address_of_regexp_stack_limit().address(),
360
+ UNCLASSIFIED,
361
+ 6,
362
+ "RegExpStack::limit_address()");
363
+ Add(ExternalReference::address_of_regexp_stack_memory_address().address(),
364
+ UNCLASSIFIED,
365
+ 7,
366
+ "RegExpStack::memory_address()");
367
+ Add(ExternalReference::address_of_regexp_stack_memory_size().address(),
368
+ UNCLASSIFIED,
369
+ 8,
370
+ "RegExpStack::memory_size()");
371
+ Add(ExternalReference::address_of_static_offsets_vector().address(),
372
+ UNCLASSIFIED,
373
+ 9,
374
+ "OffsetsVector::static_offsets_vector");
375
+ #endif // V8_INTERPRETED_REGEXP
376
+ Add(ExternalReference::new_space_start().address(),
377
+ UNCLASSIFIED,
378
+ 10,
379
+ "Heap::NewSpaceStart()");
380
+ Add(ExternalReference::new_space_mask().address(),
381
+ UNCLASSIFIED,
382
+ 11,
383
+ "Heap::NewSpaceMask()");
384
+ Add(ExternalReference::heap_always_allocate_scope_depth().address(),
385
+ UNCLASSIFIED,
386
+ 12,
387
+ "Heap::always_allocate_scope_depth()");
388
+ Add(ExternalReference::new_space_allocation_limit_address().address(),
389
+ UNCLASSIFIED,
390
+ 13,
391
+ "Heap::NewSpaceAllocationLimitAddress()");
392
+ Add(ExternalReference::new_space_allocation_top_address().address(),
393
+ UNCLASSIFIED,
394
+ 14,
395
+ "Heap::NewSpaceAllocationTopAddress()");
396
+ #ifdef ENABLE_DEBUGGER_SUPPORT
397
+ Add(ExternalReference::debug_break().address(),
398
+ UNCLASSIFIED,
399
+ 15,
400
+ "Debug::Break()");
401
+ Add(ExternalReference::debug_step_in_fp_address().address(),
402
+ UNCLASSIFIED,
403
+ 16,
404
+ "Debug::step_in_fp_addr()");
405
+ #endif
406
+ Add(ExternalReference::double_fp_operation(Token::ADD).address(),
407
+ UNCLASSIFIED,
408
+ 17,
409
+ "add_two_doubles");
410
+ Add(ExternalReference::double_fp_operation(Token::SUB).address(),
411
+ UNCLASSIFIED,
412
+ 18,
413
+ "sub_two_doubles");
414
+ Add(ExternalReference::double_fp_operation(Token::MUL).address(),
415
+ UNCLASSIFIED,
416
+ 19,
417
+ "mul_two_doubles");
418
+ Add(ExternalReference::double_fp_operation(Token::DIV).address(),
419
+ UNCLASSIFIED,
420
+ 20,
421
+ "div_two_doubles");
422
+ Add(ExternalReference::double_fp_operation(Token::MOD).address(),
423
+ UNCLASSIFIED,
424
+ 21,
425
+ "mod_two_doubles");
426
+ Add(ExternalReference::compare_doubles().address(),
427
+ UNCLASSIFIED,
428
+ 22,
429
+ "compare_doubles");
430
+ #ifndef V8_INTERPRETED_REGEXP
431
+ Add(ExternalReference::re_case_insensitive_compare_uc16().address(),
432
+ UNCLASSIFIED,
433
+ 23,
434
+ "NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()");
435
+ Add(ExternalReference::re_check_stack_guard_state().address(),
436
+ UNCLASSIFIED,
437
+ 24,
438
+ "RegExpMacroAssembler*::CheckStackGuardState()");
439
+ Add(ExternalReference::re_grow_stack().address(),
440
+ UNCLASSIFIED,
441
+ 25,
442
+ "NativeRegExpMacroAssembler::GrowStack()");
443
+ Add(ExternalReference::re_word_character_map().address(),
444
+ UNCLASSIFIED,
445
+ 26,
446
+ "NativeRegExpMacroAssembler::word_character_map");
447
+ #endif // V8_INTERPRETED_REGEXP
448
+ // Keyed lookup cache.
449
+ Add(ExternalReference::keyed_lookup_cache_keys().address(),
450
+ UNCLASSIFIED,
451
+ 27,
452
+ "KeyedLookupCache::keys()");
453
+ Add(ExternalReference::keyed_lookup_cache_field_offsets().address(),
454
+ UNCLASSIFIED,
455
+ 28,
456
+ "KeyedLookupCache::field_offsets()");
457
+ Add(ExternalReference::transcendental_cache_array_address().address(),
458
+ UNCLASSIFIED,
459
+ 29,
460
+ "TranscendentalCache::caches()");
461
+ Add(ExternalReference::handle_scope_next_address().address(),
462
+ UNCLASSIFIED,
463
+ 30,
464
+ "HandleScope::next");
465
+ Add(ExternalReference::handle_scope_limit_address().address(),
466
+ UNCLASSIFIED,
467
+ 31,
468
+ "HandleScope::limit");
469
+ Add(ExternalReference::handle_scope_level_address().address(),
470
+ UNCLASSIFIED,
471
+ 32,
472
+ "HandleScope::level");
473
+ Add(ExternalReference::new_deoptimizer_function().address(),
474
+ UNCLASSIFIED,
475
+ 33,
476
+ "Deoptimizer::New()");
477
+ Add(ExternalReference::compute_output_frames_function().address(),
478
+ UNCLASSIFIED,
479
+ 34,
480
+ "Deoptimizer::ComputeOutputFrames()");
481
+ Add(ExternalReference::address_of_min_int().address(),
482
+ UNCLASSIFIED,
483
+ 35,
484
+ "LDoubleConstant::min_int");
485
+ Add(ExternalReference::address_of_one_half().address(),
486
+ UNCLASSIFIED,
487
+ 36,
488
+ "LDoubleConstant::one_half");
489
+ Add(ExternalReference::address_of_minus_zero().address(),
490
+ UNCLASSIFIED,
491
+ 37,
492
+ "LDoubleConstant::minus_zero");
493
+ Add(ExternalReference::address_of_negative_infinity().address(),
494
+ UNCLASSIFIED,
495
+ 38,
496
+ "LDoubleConstant::negative_infinity");
497
+ Add(ExternalReference::power_double_double_function().address(),
498
+ UNCLASSIFIED,
499
+ 39,
500
+ "power_double_double_function");
501
+ Add(ExternalReference::power_double_int_function().address(),
502
+ UNCLASSIFIED,
503
+ 40,
504
+ "power_double_int_function");
505
+ Add(ExternalReference::arguments_marker_location().address(),
506
+ UNCLASSIFIED,
507
+ 41,
508
+ "Factory::arguments_marker().location()");
509
+ }
510
+
511
+
512
+ ExternalReferenceEncoder::ExternalReferenceEncoder()
513
+ : encodings_(Match) {
514
+ ExternalReferenceTable* external_references =
515
+ ExternalReferenceTable::instance();
516
+ for (int i = 0; i < external_references->size(); ++i) {
517
+ Put(external_references->address(i), i);
518
+ }
519
+ }
520
+
521
+
522
+ uint32_t ExternalReferenceEncoder::Encode(Address key) const {
523
+ int index = IndexOf(key);
524
+ ASSERT(key == NULL || index >= 0);
525
+ return index >=0 ? ExternalReferenceTable::instance()->code(index) : 0;
526
+ }
527
+
528
+
529
+ const char* ExternalReferenceEncoder::NameOfAddress(Address key) const {
530
+ int index = IndexOf(key);
531
+ return index >=0 ? ExternalReferenceTable::instance()->name(index) : NULL;
532
+ }
533
+
534
+
535
+ int ExternalReferenceEncoder::IndexOf(Address key) const {
536
+ if (key == NULL) return -1;
537
+ HashMap::Entry* entry =
538
+ const_cast<HashMap &>(encodings_).Lookup(key, Hash(key), false);
539
+ return entry == NULL
540
+ ? -1
541
+ : static_cast<int>(reinterpret_cast<intptr_t>(entry->value));
542
+ }
543
+
544
+
545
+ void ExternalReferenceEncoder::Put(Address key, int index) {
546
+ HashMap::Entry* entry = encodings_.Lookup(key, Hash(key), true);
547
+ entry->value = reinterpret_cast<void*>(index);
548
+ }
549
+
550
+
551
+ ExternalReferenceDecoder::ExternalReferenceDecoder()
552
+ : encodings_(NewArray<Address*>(kTypeCodeCount)) {
553
+ ExternalReferenceTable* external_references =
554
+ ExternalReferenceTable::instance();
555
+ for (int type = kFirstTypeCode; type < kTypeCodeCount; ++type) {
556
+ int max = external_references->max_id(type) + 1;
557
+ encodings_[type] = NewArray<Address>(max + 1);
558
+ }
559
+ for (int i = 0; i < external_references->size(); ++i) {
560
+ Put(external_references->code(i), external_references->address(i));
561
+ }
562
+ }
563
+
564
+
565
+ ExternalReferenceDecoder::~ExternalReferenceDecoder() {
566
+ for (int type = kFirstTypeCode; type < kTypeCodeCount; ++type) {
567
+ DeleteArray(encodings_[type]);
568
+ }
569
+ DeleteArray(encodings_);
570
+ }
571
+
572
+
573
+ bool Serializer::serialization_enabled_ = false;
574
+ bool Serializer::too_late_to_enable_now_ = false;
575
+ ExternalReferenceDecoder* Deserializer::external_reference_decoder_ = NULL;
576
+
577
+
578
+ Deserializer::Deserializer(SnapshotByteSource* source) : source_(source) {
579
+ }
580
+
581
+
582
+ // This routine both allocates a new object, and also keeps
583
+ // track of where objects have been allocated so that we can
584
+ // fix back references when deserializing.
585
+ Address Deserializer::Allocate(int space_index, Space* space, int size) {
586
+ Address address;
587
+ if (!SpaceIsLarge(space_index)) {
588
+ ASSERT(!SpaceIsPaged(space_index) ||
589
+ size <= Page::kPageSize - Page::kObjectStartOffset);
590
+ MaybeObject* maybe_new_allocation;
591
+ if (space_index == NEW_SPACE) {
592
+ maybe_new_allocation =
593
+ reinterpret_cast<NewSpace*>(space)->AllocateRaw(size);
594
+ } else {
595
+ maybe_new_allocation =
596
+ reinterpret_cast<PagedSpace*>(space)->AllocateRaw(size);
597
+ }
598
+ Object* new_allocation = maybe_new_allocation->ToObjectUnchecked();
599
+ HeapObject* new_object = HeapObject::cast(new_allocation);
600
+ address = new_object->address();
601
+ high_water_[space_index] = address + size;
602
+ } else {
603
+ ASSERT(SpaceIsLarge(space_index));
604
+ ASSERT(size > Page::kPageSize - Page::kObjectStartOffset);
605
+ LargeObjectSpace* lo_space = reinterpret_cast<LargeObjectSpace*>(space);
606
+ Object* new_allocation;
607
+ if (space_index == kLargeData) {
608
+ new_allocation = lo_space->AllocateRaw(size)->ToObjectUnchecked();
609
+ } else if (space_index == kLargeFixedArray) {
610
+ new_allocation =
611
+ lo_space->AllocateRawFixedArray(size)->ToObjectUnchecked();
612
+ } else {
613
+ ASSERT_EQ(kLargeCode, space_index);
614
+ new_allocation = lo_space->AllocateRawCode(size)->ToObjectUnchecked();
615
+ }
616
+ HeapObject* new_object = HeapObject::cast(new_allocation);
617
+ // Record all large objects in the same space.
618
+ address = new_object->address();
619
+ pages_[LO_SPACE].Add(address);
620
+ }
621
+ last_object_address_ = address;
622
+ return address;
623
+ }
624
+
625
+
626
+ // This returns the address of an object that has been described in the
627
+ // snapshot as being offset bytes back in a particular space.
628
+ HeapObject* Deserializer::GetAddressFromEnd(int space) {
629
+ int offset = source_->GetInt();
630
+ ASSERT(!SpaceIsLarge(space));
631
+ offset <<= kObjectAlignmentBits;
632
+ return HeapObject::FromAddress(high_water_[space] - offset);
633
+ }
634
+
635
+
636
+ // This returns the address of an object that has been described in the
637
+ // snapshot as being offset bytes into a particular space.
638
+ HeapObject* Deserializer::GetAddressFromStart(int space) {
639
+ int offset = source_->GetInt();
640
+ if (SpaceIsLarge(space)) {
641
+ // Large spaces have one object per 'page'.
642
+ return HeapObject::FromAddress(pages_[LO_SPACE][offset]);
643
+ }
644
+ offset <<= kObjectAlignmentBits;
645
+ if (space == NEW_SPACE) {
646
+ // New space has only one space - numbered 0.
647
+ return HeapObject::FromAddress(pages_[space][0] + offset);
648
+ }
649
+ ASSERT(SpaceIsPaged(space));
650
+ int page_of_pointee = offset >> kPageSizeBits;
651
+ Address object_address = pages_[space][page_of_pointee] +
652
+ (offset & Page::kPageAlignmentMask);
653
+ return HeapObject::FromAddress(object_address);
654
+ }
655
+
656
+
657
+ void Deserializer::Deserialize() {
658
+ // Don't GC while deserializing - just expand the heap.
659
+ AlwaysAllocateScope always_allocate;
660
+ // Don't use the free lists while deserializing.
661
+ LinearAllocationScope allocate_linearly;
662
+ // No active threads.
663
+ ASSERT_EQ(NULL, ThreadState::FirstInUse());
664
+ // No active handles.
665
+ ASSERT(HandleScopeImplementer::instance()->blocks()->is_empty());
666
+ // Make sure the entire partial snapshot cache is traversed, filling it with
667
+ // valid object pointers.
668
+ partial_snapshot_cache_length_ = kPartialSnapshotCacheCapacity;
669
+ ASSERT_EQ(NULL, external_reference_decoder_);
670
+ external_reference_decoder_ = new ExternalReferenceDecoder();
671
+ Heap::IterateStrongRoots(this, VISIT_ONLY_STRONG);
672
+ Heap::IterateWeakRoots(this, VISIT_ALL);
673
+
674
+ Heap::set_global_contexts_list(Heap::undefined_value());
675
+ }
676
+
677
+
678
+ void Deserializer::DeserializePartial(Object** root) {
679
+ // Don't GC while deserializing - just expand the heap.
680
+ AlwaysAllocateScope always_allocate;
681
+ // Don't use the free lists while deserializing.
682
+ LinearAllocationScope allocate_linearly;
683
+ if (external_reference_decoder_ == NULL) {
684
+ external_reference_decoder_ = new ExternalReferenceDecoder();
685
+ }
686
+ VisitPointer(root);
687
+ }
688
+
689
+
690
+ Deserializer::~Deserializer() {
691
+ ASSERT(source_->AtEOF());
692
+ if (external_reference_decoder_ != NULL) {
693
+ delete external_reference_decoder_;
694
+ external_reference_decoder_ = NULL;
695
+ }
696
+ }
697
+
698
+
699
+ // This is called on the roots. It is the driver of the deserialization
700
+ // process. It is also called on the body of each function.
701
+ void Deserializer::VisitPointers(Object** start, Object** end) {
702
+ // The space must be new space. Any other space would cause ReadChunk to try
703
+ // to update the remembered using NULL as the address.
704
+ ReadChunk(start, end, NEW_SPACE, NULL);
705
+ }
706
+
707
+
708
+ // This routine writes the new object into the pointer provided and then
709
+ // returns true if the new object was in young space and false otherwise.
710
+ // The reason for this strange interface is that otherwise the object is
711
+ // written very late, which means the ByteArray map is not set up by the
712
+ // time we need to use it to mark the space at the end of a page free (by
713
+ // making it into a byte array).
714
+ void Deserializer::ReadObject(int space_number,
715
+ Space* space,
716
+ Object** write_back) {
717
+ int size = source_->GetInt() << kObjectAlignmentBits;
718
+ Address address = Allocate(space_number, space, size);
719
+ *write_back = HeapObject::FromAddress(address);
720
+ Object** current = reinterpret_cast<Object**>(address);
721
+ Object** limit = current + (size >> kPointerSizeLog2);
722
+ if (FLAG_log_snapshot_positions) {
723
+ LOG(SnapshotPositionEvent(address, source_->position()));
724
+ }
725
+ ReadChunk(current, limit, space_number, address);
726
+ }
727
+
728
+
729
+ // This macro is always used with a constant argument so it should all fold
730
+ // away to almost nothing in the generated code. It might be nicer to do this
731
+ // with the ternary operator but there are type issues with that.
732
+ #define ASSIGN_DEST_SPACE(space_number) \
733
+ Space* dest_space; \
734
+ if (space_number == NEW_SPACE) { \
735
+ dest_space = Heap::new_space(); \
736
+ } else if (space_number == OLD_POINTER_SPACE) { \
737
+ dest_space = Heap::old_pointer_space(); \
738
+ } else if (space_number == OLD_DATA_SPACE) { \
739
+ dest_space = Heap::old_data_space(); \
740
+ } else if (space_number == CODE_SPACE) { \
741
+ dest_space = Heap::code_space(); \
742
+ } else if (space_number == MAP_SPACE) { \
743
+ dest_space = Heap::map_space(); \
744
+ } else if (space_number == CELL_SPACE) { \
745
+ dest_space = Heap::cell_space(); \
746
+ } else { \
747
+ ASSERT(space_number >= LO_SPACE); \
748
+ dest_space = Heap::lo_space(); \
749
+ }
750
+
751
+
752
+ static const int kUnknownOffsetFromStart = -1;
753
+
754
+
755
+ void Deserializer::ReadChunk(Object** current,
756
+ Object** limit,
757
+ int source_space,
758
+ Address address) {
759
+ while (current < limit) {
760
+ int data = source_->Get();
761
+ switch (data) {
762
+ #define CASE_STATEMENT(where, how, within, space_number) \
763
+ case where + how + within + space_number: \
764
+ ASSERT((where & ~kPointedToMask) == 0); \
765
+ ASSERT((how & ~kHowToCodeMask) == 0); \
766
+ ASSERT((within & ~kWhereToPointMask) == 0); \
767
+ ASSERT((space_number & ~kSpaceMask) == 0);
768
+
769
+ #define CASE_BODY(where, how, within, space_number_if_any, offset_from_start) \
770
+ { \
771
+ bool emit_write_barrier = false; \
772
+ bool current_was_incremented = false; \
773
+ int space_number = space_number_if_any == kAnyOldSpace ? \
774
+ (data & kSpaceMask) : space_number_if_any; \
775
+ if (where == kNewObject && how == kPlain && within == kStartOfObject) {\
776
+ ASSIGN_DEST_SPACE(space_number) \
777
+ ReadObject(space_number, dest_space, current); \
778
+ emit_write_barrier = \
779
+ (space_number == NEW_SPACE && source_space != NEW_SPACE); \
780
+ } else { \
781
+ Object* new_object = NULL; /* May not be a real Object pointer. */ \
782
+ if (where == kNewObject) { \
783
+ ASSIGN_DEST_SPACE(space_number) \
784
+ ReadObject(space_number, dest_space, &new_object); \
785
+ } else if (where == kRootArray) { \
786
+ int root_id = source_->GetInt(); \
787
+ new_object = Heap::roots_address()[root_id]; \
788
+ } else if (where == kPartialSnapshotCache) { \
789
+ int cache_index = source_->GetInt(); \
790
+ new_object = partial_snapshot_cache_[cache_index]; \
791
+ } else if (where == kExternalReference) { \
792
+ int reference_id = source_->GetInt(); \
793
+ Address address = \
794
+ external_reference_decoder_->Decode(reference_id); \
795
+ new_object = reinterpret_cast<Object*>(address); \
796
+ } else if (where == kBackref) { \
797
+ emit_write_barrier = \
798
+ (space_number == NEW_SPACE && source_space != NEW_SPACE); \
799
+ new_object = GetAddressFromEnd(data & kSpaceMask); \
800
+ } else { \
801
+ ASSERT(where == kFromStart); \
802
+ if (offset_from_start == kUnknownOffsetFromStart) { \
803
+ emit_write_barrier = \
804
+ (space_number == NEW_SPACE && source_space != NEW_SPACE); \
805
+ new_object = GetAddressFromStart(data & kSpaceMask); \
806
+ } else { \
807
+ Address object_address = pages_[space_number][0] + \
808
+ (offset_from_start << kObjectAlignmentBits); \
809
+ new_object = HeapObject::FromAddress(object_address); \
810
+ } \
811
+ } \
812
+ if (within == kFirstInstruction) { \
813
+ Code* new_code_object = reinterpret_cast<Code*>(new_object); \
814
+ new_object = reinterpret_cast<Object*>( \
815
+ new_code_object->instruction_start()); \
816
+ } \
817
+ if (how == kFromCode) { \
818
+ Address location_of_branch_data = \
819
+ reinterpret_cast<Address>(current); \
820
+ Assembler::set_target_at(location_of_branch_data, \
821
+ reinterpret_cast<Address>(new_object)); \
822
+ if (within == kFirstInstruction) { \
823
+ location_of_branch_data += Assembler::kCallTargetSize; \
824
+ current = reinterpret_cast<Object**>(location_of_branch_data); \
825
+ current_was_incremented = true; \
826
+ } \
827
+ } else { \
828
+ *current = new_object; \
829
+ } \
830
+ } \
831
+ if (emit_write_barrier) { \
832
+ Heap::RecordWrite(address, static_cast<int>( \
833
+ reinterpret_cast<Address>(current) - address)); \
834
+ } \
835
+ if (!current_was_incremented) { \
836
+ current++; /* Increment current if it wasn't done above. */ \
837
+ } \
838
+ break; \
839
+ } \
840
+
841
+ // This generates a case and a body for each space. The large object spaces are
842
+ // very rare in snapshots so they are grouped in one body.
843
+ #define ONE_PER_SPACE(where, how, within) \
844
+ CASE_STATEMENT(where, how, within, NEW_SPACE) \
845
+ CASE_BODY(where, how, within, NEW_SPACE, kUnknownOffsetFromStart) \
846
+ CASE_STATEMENT(where, how, within, OLD_DATA_SPACE) \
847
+ CASE_BODY(where, how, within, OLD_DATA_SPACE, kUnknownOffsetFromStart) \
848
+ CASE_STATEMENT(where, how, within, OLD_POINTER_SPACE) \
849
+ CASE_BODY(where, how, within, OLD_POINTER_SPACE, kUnknownOffsetFromStart) \
850
+ CASE_STATEMENT(where, how, within, CODE_SPACE) \
851
+ CASE_BODY(where, how, within, CODE_SPACE, kUnknownOffsetFromStart) \
852
+ CASE_STATEMENT(where, how, within, CELL_SPACE) \
853
+ CASE_BODY(where, how, within, CELL_SPACE, kUnknownOffsetFromStart) \
854
+ CASE_STATEMENT(where, how, within, MAP_SPACE) \
855
+ CASE_BODY(where, how, within, MAP_SPACE, kUnknownOffsetFromStart) \
856
+ CASE_STATEMENT(where, how, within, kLargeData) \
857
+ CASE_STATEMENT(where, how, within, kLargeCode) \
858
+ CASE_STATEMENT(where, how, within, kLargeFixedArray) \
859
+ CASE_BODY(where, how, within, kAnyOldSpace, kUnknownOffsetFromStart)
860
+
861
+ // This generates a case and a body for the new space (which has to do extra
862
+ // write barrier handling) and handles the other spaces with 8 fall-through
863
+ // cases and one body.
864
+ #define ALL_SPACES(where, how, within) \
865
+ CASE_STATEMENT(where, how, within, NEW_SPACE) \
866
+ CASE_BODY(where, how, within, NEW_SPACE, kUnknownOffsetFromStart) \
867
+ CASE_STATEMENT(where, how, within, OLD_DATA_SPACE) \
868
+ CASE_STATEMENT(where, how, within, OLD_POINTER_SPACE) \
869
+ CASE_STATEMENT(where, how, within, CODE_SPACE) \
870
+ CASE_STATEMENT(where, how, within, CELL_SPACE) \
871
+ CASE_STATEMENT(where, how, within, MAP_SPACE) \
872
+ CASE_STATEMENT(where, how, within, kLargeData) \
873
+ CASE_STATEMENT(where, how, within, kLargeCode) \
874
+ CASE_STATEMENT(where, how, within, kLargeFixedArray) \
875
+ CASE_BODY(where, how, within, kAnyOldSpace, kUnknownOffsetFromStart)
876
+
877
+ #define ONE_PER_CODE_SPACE(where, how, within) \
878
+ CASE_STATEMENT(where, how, within, CODE_SPACE) \
879
+ CASE_BODY(where, how, within, CODE_SPACE, kUnknownOffsetFromStart) \
880
+ CASE_STATEMENT(where, how, within, kLargeCode) \
881
+ CASE_BODY(where, how, within, LO_SPACE, kUnknownOffsetFromStart)
882
+
883
+ #define EMIT_COMMON_REFERENCE_PATTERNS(pseudo_space_number, \
884
+ space_number, \
885
+ offset_from_start) \
886
+ CASE_STATEMENT(kFromStart, kPlain, kStartOfObject, pseudo_space_number) \
887
+ CASE_BODY(kFromStart, kPlain, kStartOfObject, space_number, offset_from_start)
888
+
889
+ // We generate 15 cases and bodies that process special tags that combine
890
+ // the raw data tag and the length into one byte.
891
+ #define RAW_CASE(index, size) \
892
+ case kRawData + index: { \
893
+ byte* raw_data_out = reinterpret_cast<byte*>(current); \
894
+ source_->CopyRaw(raw_data_out, size); \
895
+ current = reinterpret_cast<Object**>(raw_data_out + size); \
896
+ break; \
897
+ }
898
+ COMMON_RAW_LENGTHS(RAW_CASE)
899
+ #undef RAW_CASE
900
+
901
+ // Deserialize a chunk of raw data that doesn't have one of the popular
902
+ // lengths.
903
+ case kRawData: {
904
+ int size = source_->GetInt();
905
+ byte* raw_data_out = reinterpret_cast<byte*>(current);
906
+ source_->CopyRaw(raw_data_out, size);
907
+ current = reinterpret_cast<Object**>(raw_data_out + size);
908
+ break;
909
+ }
910
+
911
+ // Deserialize a new object and write a pointer to it to the current
912
+ // object.
913
+ ONE_PER_SPACE(kNewObject, kPlain, kStartOfObject)
914
+ // Support for direct instruction pointers in functions
915
+ ONE_PER_CODE_SPACE(kNewObject, kPlain, kFirstInstruction)
916
+ // Deserialize a new code object and write a pointer to its first
917
+ // instruction to the current code object.
918
+ ONE_PER_SPACE(kNewObject, kFromCode, kFirstInstruction)
919
+ // Find a recently deserialized object using its offset from the current
920
+ // allocation point and write a pointer to it to the current object.
921
+ ALL_SPACES(kBackref, kPlain, kStartOfObject)
922
+ // Find a recently deserialized code object using its offset from the
923
+ // current allocation point and write a pointer to its first instruction
924
+ // to the current code object or the instruction pointer in a function
925
+ // object.
926
+ ALL_SPACES(kBackref, kFromCode, kFirstInstruction)
927
+ ALL_SPACES(kBackref, kPlain, kFirstInstruction)
928
+ // Find an already deserialized object using its offset from the start
929
+ // and write a pointer to it to the current object.
930
+ ALL_SPACES(kFromStart, kPlain, kStartOfObject)
931
+ ALL_SPACES(kFromStart, kPlain, kFirstInstruction)
932
+ // Find an already deserialized code object using its offset from the
933
+ // start and write a pointer to its first instruction to the current code
934
+ // object.
935
+ ALL_SPACES(kFromStart, kFromCode, kFirstInstruction)
936
+ // Find an already deserialized object at one of the predetermined popular
937
+ // offsets from the start and write a pointer to it in the current object.
938
+ COMMON_REFERENCE_PATTERNS(EMIT_COMMON_REFERENCE_PATTERNS)
939
+ // Find an object in the roots array and write a pointer to it to the
940
+ // current object.
941
+ CASE_STATEMENT(kRootArray, kPlain, kStartOfObject, 0)
942
+ CASE_BODY(kRootArray, kPlain, kStartOfObject, 0, kUnknownOffsetFromStart)
943
+ // Find an object in the partial snapshots cache and write a pointer to it
944
+ // to the current object.
945
+ CASE_STATEMENT(kPartialSnapshotCache, kPlain, kStartOfObject, 0)
946
+ CASE_BODY(kPartialSnapshotCache,
947
+ kPlain,
948
+ kStartOfObject,
949
+ 0,
950
+ kUnknownOffsetFromStart)
951
+ // Find an code entry in the partial snapshots cache and
952
+ // write a pointer to it to the current object.
953
+ CASE_STATEMENT(kPartialSnapshotCache, kPlain, kFirstInstruction, 0)
954
+ CASE_BODY(kPartialSnapshotCache,
955
+ kPlain,
956
+ kFirstInstruction,
957
+ 0,
958
+ kUnknownOffsetFromStart)
959
+ // Find an external reference and write a pointer to it to the current
960
+ // object.
961
+ CASE_STATEMENT(kExternalReference, kPlain, kStartOfObject, 0)
962
+ CASE_BODY(kExternalReference,
963
+ kPlain,
964
+ kStartOfObject,
965
+ 0,
966
+ kUnknownOffsetFromStart)
967
+ // Find an external reference and write a pointer to it in the current
968
+ // code object.
969
+ CASE_STATEMENT(kExternalReference, kFromCode, kStartOfObject, 0)
970
+ CASE_BODY(kExternalReference,
971
+ kFromCode,
972
+ kStartOfObject,
973
+ 0,
974
+ kUnknownOffsetFromStart)
975
+
976
+ #undef CASE_STATEMENT
977
+ #undef CASE_BODY
978
+ #undef ONE_PER_SPACE
979
+ #undef ALL_SPACES
980
+ #undef EMIT_COMMON_REFERENCE_PATTERNS
981
+ #undef ASSIGN_DEST_SPACE
982
+
983
+ case kNewPage: {
984
+ int space = source_->Get();
985
+ pages_[space].Add(last_object_address_);
986
+ if (space == CODE_SPACE) {
987
+ CPU::FlushICache(last_object_address_, Page::kPageSize);
988
+ }
989
+ break;
990
+ }
991
+
992
+ case kNativesStringResource: {
993
+ int index = source_->Get();
994
+ Vector<const char> source_vector = Natives::GetScriptSource(index);
995
+ NativesExternalStringResource* resource =
996
+ new NativesExternalStringResource(source_vector.start());
997
+ *current++ = reinterpret_cast<Object*>(resource);
998
+ break;
999
+ }
1000
+
1001
+ case kSynchronize: {
1002
+ // If we get here then that indicates that you have a mismatch between
1003
+ // the number of GC roots when serializing and deserializing.
1004
+ UNREACHABLE();
1005
+ }
1006
+
1007
+ default:
1008
+ UNREACHABLE();
1009
+ }
1010
+ }
1011
+ ASSERT_EQ(current, limit);
1012
+ }
1013
+
1014
+
1015
+ void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) {
1016
+ const int max_shift = ((kPointerSize * kBitsPerByte) / 7) * 7;
1017
+ for (int shift = max_shift; shift > 0; shift -= 7) {
1018
+ if (integer >= static_cast<uintptr_t>(1u) << shift) {
1019
+ Put((static_cast<int>((integer >> shift)) & 0x7f) | 0x80, "IntPart");
1020
+ }
1021
+ }
1022
+ PutSection(static_cast<int>(integer & 0x7f), "IntLastPart");
1023
+ }
1024
+
1025
+ #ifdef DEBUG
1026
+
1027
+ void Deserializer::Synchronize(const char* tag) {
1028
+ int data = source_->Get();
1029
+ // If this assert fails then that indicates that you have a mismatch between
1030
+ // the number of GC roots when serializing and deserializing.
1031
+ ASSERT_EQ(kSynchronize, data);
1032
+ do {
1033
+ int character = source_->Get();
1034
+ if (character == 0) break;
1035
+ if (FLAG_debug_serialization) {
1036
+ PrintF("%c", character);
1037
+ }
1038
+ } while (true);
1039
+ if (FLAG_debug_serialization) {
1040
+ PrintF("\n");
1041
+ }
1042
+ }
1043
+
1044
+
1045
+ void Serializer::Synchronize(const char* tag) {
1046
+ sink_->Put(kSynchronize, tag);
1047
+ int character;
1048
+ do {
1049
+ character = *tag++;
1050
+ sink_->PutSection(character, "TagCharacter");
1051
+ } while (character != 0);
1052
+ }
1053
+
1054
+ #endif
1055
+
1056
+ Serializer::Serializer(SnapshotByteSink* sink)
1057
+ : sink_(sink),
1058
+ current_root_index_(0),
1059
+ external_reference_encoder_(new ExternalReferenceEncoder),
1060
+ large_object_total_(0) {
1061
+ for (int i = 0; i <= LAST_SPACE; i++) {
1062
+ fullness_[i] = 0;
1063
+ }
1064
+ }
1065
+
1066
+
1067
+ Serializer::~Serializer() {
1068
+ delete external_reference_encoder_;
1069
+ }
1070
+
1071
+
1072
+ void StartupSerializer::SerializeStrongReferences() {
1073
+ // No active threads.
1074
+ CHECK_EQ(NULL, ThreadState::FirstInUse());
1075
+ // No active or weak handles.
1076
+ CHECK(HandleScopeImplementer::instance()->blocks()->is_empty());
1077
+ CHECK_EQ(0, GlobalHandles::NumberOfWeakHandles());
1078
+ // We don't support serializing installed extensions.
1079
+ for (RegisteredExtension* ext = RegisteredExtension::first_extension();
1080
+ ext != NULL;
1081
+ ext = ext->next()) {
1082
+ CHECK_NE(v8::INSTALLED, ext->state());
1083
+ }
1084
+ Heap::IterateStrongRoots(this, VISIT_ONLY_STRONG);
1085
+ }
1086
+
1087
+
1088
+ void PartialSerializer::Serialize(Object** object) {
1089
+ this->VisitPointer(object);
1090
+
1091
+ // After we have done the partial serialization the partial snapshot cache
1092
+ // will contain some references needed to decode the partial snapshot. We
1093
+ // fill it up with undefineds so it has a predictable length so the
1094
+ // deserialization code doesn't need to know the length.
1095
+ for (int index = partial_snapshot_cache_length_;
1096
+ index < kPartialSnapshotCacheCapacity;
1097
+ index++) {
1098
+ partial_snapshot_cache_[index] = Heap::undefined_value();
1099
+ startup_serializer_->VisitPointer(&partial_snapshot_cache_[index]);
1100
+ }
1101
+ partial_snapshot_cache_length_ = kPartialSnapshotCacheCapacity;
1102
+ }
1103
+
1104
+
1105
+ void Serializer::VisitPointers(Object** start, Object** end) {
1106
+ for (Object** current = start; current < end; current++) {
1107
+ if ((*current)->IsSmi()) {
1108
+ sink_->Put(kRawData, "RawData");
1109
+ sink_->PutInt(kPointerSize, "length");
1110
+ for (int i = 0; i < kPointerSize; i++) {
1111
+ sink_->Put(reinterpret_cast<byte*>(current)[i], "Byte");
1112
+ }
1113
+ } else {
1114
+ SerializeObject(*current, kPlain, kStartOfObject);
1115
+ }
1116
+ }
1117
+ }
1118
+
1119
+
1120
+ Object* SerializerDeserializer::partial_snapshot_cache_[
1121
+ kPartialSnapshotCacheCapacity];
1122
+ int SerializerDeserializer::partial_snapshot_cache_length_ = 0;
1123
+
1124
+
1125
+ // This ensures that the partial snapshot cache keeps things alive during GC and
1126
+ // tracks their movement. When it is called during serialization of the startup
1127
+ // snapshot the partial snapshot is empty, so nothing happens. When the partial
1128
+ // (context) snapshot is created, this array is populated with the pointers that
1129
+ // the partial snapshot will need. As that happens we emit serialized objects to
1130
+ // the startup snapshot that correspond to the elements of this cache array. On
1131
+ // deserialization we therefore need to visit the cache array. This fills it up
1132
+ // with pointers to deserialized objects.
1133
+ void SerializerDeserializer::Iterate(ObjectVisitor* visitor) {
1134
+ visitor->VisitPointers(
1135
+ &partial_snapshot_cache_[0],
1136
+ &partial_snapshot_cache_[partial_snapshot_cache_length_]);
1137
+ }
1138
+
1139
+
1140
+ // When deserializing we need to set the size of the snapshot cache. This means
1141
+ // the root iteration code (above) will iterate over array elements, writing the
1142
+ // references to deserialized objects in them.
1143
+ void SerializerDeserializer::SetSnapshotCacheSize(int size) {
1144
+ partial_snapshot_cache_length_ = size;
1145
+ }
1146
+
1147
+
1148
+ int PartialSerializer::PartialSnapshotCacheIndex(HeapObject* heap_object) {
1149
+ for (int i = 0; i < partial_snapshot_cache_length_; i++) {
1150
+ Object* entry = partial_snapshot_cache_[i];
1151
+ if (entry == heap_object) return i;
1152
+ }
1153
+
1154
+ // We didn't find the object in the cache. So we add it to the cache and
1155
+ // then visit the pointer so that it becomes part of the startup snapshot
1156
+ // and we can refer to it from the partial snapshot.
1157
+ int length = partial_snapshot_cache_length_;
1158
+ CHECK(length < kPartialSnapshotCacheCapacity);
1159
+ partial_snapshot_cache_[length] = heap_object;
1160
+ startup_serializer_->VisitPointer(&partial_snapshot_cache_[length]);
1161
+ // We don't recurse from the startup snapshot generator into the partial
1162
+ // snapshot generator.
1163
+ ASSERT(length == partial_snapshot_cache_length_);
1164
+ return partial_snapshot_cache_length_++;
1165
+ }
1166
+
1167
+
1168
+ int PartialSerializer::RootIndex(HeapObject* heap_object) {
1169
+ for (int i = 0; i < Heap::kRootListLength; i++) {
1170
+ Object* root = Heap::roots_address()[i];
1171
+ if (root == heap_object) return i;
1172
+ }
1173
+ return kInvalidRootIndex;
1174
+ }
1175
+
1176
+
1177
+ // Encode the location of an already deserialized object in order to write its
1178
+ // location into a later object. We can encode the location as an offset from
1179
+ // the start of the deserialized objects or as an offset backwards from the
1180
+ // current allocation pointer.
1181
+ void Serializer::SerializeReferenceToPreviousObject(
1182
+ int space,
1183
+ int address,
1184
+ HowToCode how_to_code,
1185
+ WhereToPoint where_to_point) {
1186
+ int offset = CurrentAllocationAddress(space) - address;
1187
+ bool from_start = true;
1188
+ if (SpaceIsPaged(space)) {
1189
+ // For paged space it is simple to encode back from current allocation if
1190
+ // the object is on the same page as the current allocation pointer.
1191
+ if ((CurrentAllocationAddress(space) >> kPageSizeBits) ==
1192
+ (address >> kPageSizeBits)) {
1193
+ from_start = false;
1194
+ address = offset;
1195
+ }
1196
+ } else if (space == NEW_SPACE) {
1197
+ // For new space it is always simple to encode back from current allocation.
1198
+ if (offset < address) {
1199
+ from_start = false;
1200
+ address = offset;
1201
+ }
1202
+ }
1203
+ // If we are actually dealing with real offsets (and not a numbering of
1204
+ // all objects) then we should shift out the bits that are always 0.
1205
+ if (!SpaceIsLarge(space)) address >>= kObjectAlignmentBits;
1206
+ if (from_start) {
1207
+ #define COMMON_REFS_CASE(pseudo_space, actual_space, offset) \
1208
+ if (space == actual_space && address == offset && \
1209
+ how_to_code == kPlain && where_to_point == kStartOfObject) { \
1210
+ sink_->Put(kFromStart + how_to_code + where_to_point + \
1211
+ pseudo_space, "RefSer"); \
1212
+ } else /* NOLINT */
1213
+ COMMON_REFERENCE_PATTERNS(COMMON_REFS_CASE)
1214
+ #undef COMMON_REFS_CASE
1215
+ { /* NOLINT */
1216
+ sink_->Put(kFromStart + how_to_code + where_to_point + space, "RefSer");
1217
+ sink_->PutInt(address, "address");
1218
+ }
1219
+ } else {
1220
+ sink_->Put(kBackref + how_to_code + where_to_point + space, "BackRefSer");
1221
+ sink_->PutInt(address, "address");
1222
+ }
1223
+ }
1224
+
1225
+
1226
+ void StartupSerializer::SerializeObject(
1227
+ Object* o,
1228
+ HowToCode how_to_code,
1229
+ WhereToPoint where_to_point) {
1230
+ CHECK(o->IsHeapObject());
1231
+ HeapObject* heap_object = HeapObject::cast(o);
1232
+
1233
+ if (address_mapper_.IsMapped(heap_object)) {
1234
+ int space = SpaceOfAlreadySerializedObject(heap_object);
1235
+ int address = address_mapper_.MappedTo(heap_object);
1236
+ SerializeReferenceToPreviousObject(space,
1237
+ address,
1238
+ how_to_code,
1239
+ where_to_point);
1240
+ } else {
1241
+ // Object has not yet been serialized. Serialize it here.
1242
+ ObjectSerializer object_serializer(this,
1243
+ heap_object,
1244
+ sink_,
1245
+ how_to_code,
1246
+ where_to_point);
1247
+ object_serializer.Serialize();
1248
+ }
1249
+ }
1250
+
1251
+
1252
+ void StartupSerializer::SerializeWeakReferences() {
1253
+ for (int i = partial_snapshot_cache_length_;
1254
+ i < kPartialSnapshotCacheCapacity;
1255
+ i++) {
1256
+ sink_->Put(kRootArray + kPlain + kStartOfObject, "RootSerialization");
1257
+ sink_->PutInt(Heap::kUndefinedValueRootIndex, "root_index");
1258
+ }
1259
+ Heap::IterateWeakRoots(this, VISIT_ALL);
1260
+ }
1261
+
1262
+
1263
+ void PartialSerializer::SerializeObject(
1264
+ Object* o,
1265
+ HowToCode how_to_code,
1266
+ WhereToPoint where_to_point) {
1267
+ CHECK(o->IsHeapObject());
1268
+ HeapObject* heap_object = HeapObject::cast(o);
1269
+
1270
+ int root_index;
1271
+ if ((root_index = RootIndex(heap_object)) != kInvalidRootIndex) {
1272
+ sink_->Put(kRootArray + how_to_code + where_to_point, "RootSerialization");
1273
+ sink_->PutInt(root_index, "root_index");
1274
+ return;
1275
+ }
1276
+
1277
+ if (ShouldBeInThePartialSnapshotCache(heap_object)) {
1278
+ int cache_index = PartialSnapshotCacheIndex(heap_object);
1279
+ sink_->Put(kPartialSnapshotCache + how_to_code + where_to_point,
1280
+ "PartialSnapshotCache");
1281
+ sink_->PutInt(cache_index, "partial_snapshot_cache_index");
1282
+ return;
1283
+ }
1284
+
1285
+ // Pointers from the partial snapshot to the objects in the startup snapshot
1286
+ // should go through the root array or through the partial snapshot cache.
1287
+ // If this is not the case you may have to add something to the root array.
1288
+ ASSERT(!startup_serializer_->address_mapper()->IsMapped(heap_object));
1289
+ // All the symbols that the partial snapshot needs should be either in the
1290
+ // root table or in the partial snapshot cache.
1291
+ ASSERT(!heap_object->IsSymbol());
1292
+
1293
+ if (address_mapper_.IsMapped(heap_object)) {
1294
+ int space = SpaceOfAlreadySerializedObject(heap_object);
1295
+ int address = address_mapper_.MappedTo(heap_object);
1296
+ SerializeReferenceToPreviousObject(space,
1297
+ address,
1298
+ how_to_code,
1299
+ where_to_point);
1300
+ } else {
1301
+ // Object has not yet been serialized. Serialize it here.
1302
+ ObjectSerializer serializer(this,
1303
+ heap_object,
1304
+ sink_,
1305
+ how_to_code,
1306
+ where_to_point);
1307
+ serializer.Serialize();
1308
+ }
1309
+ }
1310
+
1311
+
1312
+ void Serializer::ObjectSerializer::Serialize() {
1313
+ int space = Serializer::SpaceOfObject(object_);
1314
+ int size = object_->Size();
1315
+
1316
+ sink_->Put(kNewObject + reference_representation_ + space,
1317
+ "ObjectSerialization");
1318
+ sink_->PutInt(size >> kObjectAlignmentBits, "Size in words");
1319
+
1320
+ LOG(SnapshotPositionEvent(object_->address(), sink_->Position()));
1321
+
1322
+ // Mark this object as already serialized.
1323
+ bool start_new_page;
1324
+ int offset = serializer_->Allocate(space, size, &start_new_page);
1325
+ serializer_->address_mapper()->AddMapping(object_, offset);
1326
+ if (start_new_page) {
1327
+ sink_->Put(kNewPage, "NewPage");
1328
+ sink_->PutSection(space, "NewPageSpace");
1329
+ }
1330
+
1331
+ // Serialize the map (first word of the object).
1332
+ serializer_->SerializeObject(object_->map(), kPlain, kStartOfObject);
1333
+
1334
+ // Serialize the rest of the object.
1335
+ CHECK_EQ(0, bytes_processed_so_far_);
1336
+ bytes_processed_so_far_ = kPointerSize;
1337
+ object_->IterateBody(object_->map()->instance_type(), size, this);
1338
+ OutputRawData(object_->address() + size);
1339
+ }
1340
+
1341
+
1342
+ void Serializer::ObjectSerializer::VisitPointers(Object** start,
1343
+ Object** end) {
1344
+ Object** current = start;
1345
+ while (current < end) {
1346
+ while (current < end && (*current)->IsSmi()) current++;
1347
+ if (current < end) OutputRawData(reinterpret_cast<Address>(current));
1348
+
1349
+ while (current < end && !(*current)->IsSmi()) {
1350
+ serializer_->SerializeObject(*current, kPlain, kStartOfObject);
1351
+ bytes_processed_so_far_ += kPointerSize;
1352
+ current++;
1353
+ }
1354
+ }
1355
+ }
1356
+
1357
+
1358
+ void Serializer::ObjectSerializer::VisitExternalReferences(Address* start,
1359
+ Address* end) {
1360
+ Address references_start = reinterpret_cast<Address>(start);
1361
+ OutputRawData(references_start);
1362
+
1363
+ for (Address* current = start; current < end; current++) {
1364
+ sink_->Put(kExternalReference + kPlain + kStartOfObject, "ExternalRef");
1365
+ int reference_id = serializer_->EncodeExternalReference(*current);
1366
+ sink_->PutInt(reference_id, "reference id");
1367
+ }
1368
+ bytes_processed_so_far_ += static_cast<int>((end - start) * kPointerSize);
1369
+ }
1370
+
1371
+
1372
+ void Serializer::ObjectSerializer::VisitRuntimeEntry(RelocInfo* rinfo) {
1373
+ Address target_start = rinfo->target_address_address();
1374
+ OutputRawData(target_start);
1375
+ Address target = rinfo->target_address();
1376
+ uint32_t encoding = serializer_->EncodeExternalReference(target);
1377
+ CHECK(target == NULL ? encoding == 0 : encoding != 0);
1378
+ int representation;
1379
+ // Can't use a ternary operator because of gcc.
1380
+ if (rinfo->IsCodedSpecially()) {
1381
+ representation = kStartOfObject + kFromCode;
1382
+ } else {
1383
+ representation = kStartOfObject + kPlain;
1384
+ }
1385
+ sink_->Put(kExternalReference + representation, "ExternalReference");
1386
+ sink_->PutInt(encoding, "reference id");
1387
+ bytes_processed_so_far_ += rinfo->target_address_size();
1388
+ }
1389
+
1390
+
1391
+ void Serializer::ObjectSerializer::VisitCodeTarget(RelocInfo* rinfo) {
1392
+ CHECK(RelocInfo::IsCodeTarget(rinfo->rmode()));
1393
+ Address target_start = rinfo->target_address_address();
1394
+ OutputRawData(target_start);
1395
+ Code* target = Code::GetCodeFromTargetAddress(rinfo->target_address());
1396
+ serializer_->SerializeObject(target, kFromCode, kFirstInstruction);
1397
+ bytes_processed_so_far_ += rinfo->target_address_size();
1398
+ }
1399
+
1400
+
1401
+ void Serializer::ObjectSerializer::VisitCodeEntry(Address entry_address) {
1402
+ Code* target = Code::cast(Code::GetObjectFromEntryAddress(entry_address));
1403
+ OutputRawData(entry_address);
1404
+ serializer_->SerializeObject(target, kPlain, kFirstInstruction);
1405
+ bytes_processed_so_far_ += kPointerSize;
1406
+ }
1407
+
1408
+
1409
+ void Serializer::ObjectSerializer::VisitGlobalPropertyCell(RelocInfo* rinfo) {
1410
+ // We shouldn't have any global property cell references in code
1411
+ // objects in the snapshot.
1412
+ UNREACHABLE();
1413
+ }
1414
+
1415
+
1416
+ void Serializer::ObjectSerializer::VisitExternalAsciiString(
1417
+ v8::String::ExternalAsciiStringResource** resource_pointer) {
1418
+ Address references_start = reinterpret_cast<Address>(resource_pointer);
1419
+ OutputRawData(references_start);
1420
+ for (int i = 0; i < Natives::GetBuiltinsCount(); i++) {
1421
+ Object* source = Heap::natives_source_cache()->get(i);
1422
+ if (!source->IsUndefined()) {
1423
+ ExternalAsciiString* string = ExternalAsciiString::cast(source);
1424
+ typedef v8::String::ExternalAsciiStringResource Resource;
1425
+ Resource* resource = string->resource();
1426
+ if (resource == *resource_pointer) {
1427
+ sink_->Put(kNativesStringResource, "NativesStringResource");
1428
+ sink_->PutSection(i, "NativesStringResourceEnd");
1429
+ bytes_processed_so_far_ += sizeof(resource);
1430
+ return;
1431
+ }
1432
+ }
1433
+ }
1434
+ // One of the strings in the natives cache should match the resource. We
1435
+ // can't serialize any other kinds of external strings.
1436
+ UNREACHABLE();
1437
+ }
1438
+
1439
+
1440
+ void Serializer::ObjectSerializer::OutputRawData(Address up_to) {
1441
+ Address object_start = object_->address();
1442
+ int up_to_offset = static_cast<int>(up_to - object_start);
1443
+ int skipped = up_to_offset - bytes_processed_so_far_;
1444
+ // This assert will fail if the reloc info gives us the target_address_address
1445
+ // locations in a non-ascending order. Luckily that doesn't happen.
1446
+ ASSERT(skipped >= 0);
1447
+ if (skipped != 0) {
1448
+ Address base = object_start + bytes_processed_so_far_;
1449
+ #define RAW_CASE(index, length) \
1450
+ if (skipped == length) { \
1451
+ sink_->PutSection(kRawData + index, "RawDataFixed"); \
1452
+ } else /* NOLINT */
1453
+ COMMON_RAW_LENGTHS(RAW_CASE)
1454
+ #undef RAW_CASE
1455
+ { /* NOLINT */
1456
+ sink_->Put(kRawData, "RawData");
1457
+ sink_->PutInt(skipped, "length");
1458
+ }
1459
+ for (int i = 0; i < skipped; i++) {
1460
+ unsigned int data = base[i];
1461
+ sink_->PutSection(data, "Byte");
1462
+ }
1463
+ bytes_processed_so_far_ += skipped;
1464
+ }
1465
+ }
1466
+
1467
+
1468
+ int Serializer::SpaceOfObject(HeapObject* object) {
1469
+ for (int i = FIRST_SPACE; i <= LAST_SPACE; i++) {
1470
+ AllocationSpace s = static_cast<AllocationSpace>(i);
1471
+ if (Heap::InSpace(object, s)) {
1472
+ if (i == LO_SPACE) {
1473
+ if (object->IsCode()) {
1474
+ return kLargeCode;
1475
+ } else if (object->IsFixedArray()) {
1476
+ return kLargeFixedArray;
1477
+ } else {
1478
+ return kLargeData;
1479
+ }
1480
+ }
1481
+ return i;
1482
+ }
1483
+ }
1484
+ UNREACHABLE();
1485
+ return 0;
1486
+ }
1487
+
1488
+
1489
+ int Serializer::SpaceOfAlreadySerializedObject(HeapObject* object) {
1490
+ for (int i = FIRST_SPACE; i <= LAST_SPACE; i++) {
1491
+ AllocationSpace s = static_cast<AllocationSpace>(i);
1492
+ if (Heap::InSpace(object, s)) {
1493
+ return i;
1494
+ }
1495
+ }
1496
+ UNREACHABLE();
1497
+ return 0;
1498
+ }
1499
+
1500
+
1501
+ int Serializer::Allocate(int space, int size, bool* new_page) {
1502
+ CHECK(space >= 0 && space < kNumberOfSpaces);
1503
+ if (SpaceIsLarge(space)) {
1504
+ // In large object space we merely number the objects instead of trying to
1505
+ // determine some sort of address.
1506
+ *new_page = true;
1507
+ large_object_total_ += size;
1508
+ return fullness_[LO_SPACE]++;
1509
+ }
1510
+ *new_page = false;
1511
+ if (fullness_[space] == 0) {
1512
+ *new_page = true;
1513
+ }
1514
+ if (SpaceIsPaged(space)) {
1515
+ // Paged spaces are a little special. We encode their addresses as if the
1516
+ // pages were all contiguous and each page were filled up in the range
1517
+ // 0 - Page::kObjectAreaSize. In practice the pages may not be contiguous
1518
+ // and allocation does not start at offset 0 in the page, but this scheme
1519
+ // means the deserializer can get the page number quickly by shifting the
1520
+ // serialized address.
1521
+ CHECK(IsPowerOf2(Page::kPageSize));
1522
+ int used_in_this_page = (fullness_[space] & (Page::kPageSize - 1));
1523
+ CHECK(size <= Page::kObjectAreaSize);
1524
+ if (used_in_this_page + size > Page::kObjectAreaSize) {
1525
+ *new_page = true;
1526
+ fullness_[space] = RoundUp(fullness_[space], Page::kPageSize);
1527
+ }
1528
+ }
1529
+ int allocation_address = fullness_[space];
1530
+ fullness_[space] = allocation_address + size;
1531
+ return allocation_address;
1532
+ }
1533
+
1534
+
1535
+ } } // namespace v8::internal