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,86 @@
1
+ // Copyright 2011 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
+ // CPU specific code for x64 independent of OS goes here.
29
+
30
+ #ifdef __GNUC__
31
+ #include "third_party/valgrind/valgrind.h"
32
+ #endif
33
+
34
+ #include "v8.h"
35
+
36
+ #if defined(V8_TARGET_ARCH_X64)
37
+
38
+ #include "cpu.h"
39
+ #include "macro-assembler.h"
40
+
41
+ namespace v8 {
42
+ namespace internal {
43
+
44
+ void CPU::Setup() {
45
+ CpuFeatures::Probe(true);
46
+ if (Serializer::enabled()) {
47
+ V8::DisableCrankshaft();
48
+ }
49
+ }
50
+
51
+
52
+ void CPU::FlushICache(void* start, size_t size) {
53
+ // No need to flush the instruction cache on Intel. On Intel instruction
54
+ // cache flushing is only necessary when multiple cores running the same
55
+ // code simultaneously. V8 (and JavaScript) is single threaded and when code
56
+ // is patched on an intel CPU the core performing the patching will have its
57
+ // own instruction cache updated automatically.
58
+
59
+ // If flushing of the instruction cache becomes necessary Windows has the
60
+ // API function FlushInstructionCache.
61
+
62
+ // By default, valgrind only checks the stack for writes that might need to
63
+ // invalidate already cached translated code. This leads to random
64
+ // instability when code patches or moves are sometimes unnoticed. One
65
+ // solution is to run valgrind with --smc-check=all, but this comes at a big
66
+ // performance cost. We can notify valgrind to invalidate its cache.
67
+ #ifdef VALGRIND_DISCARD_TRANSLATIONS
68
+ VALGRIND_DISCARD_TRANSLATIONS(start, size);
69
+ #endif
70
+ }
71
+
72
+
73
+ void CPU::DebugBreak() {
74
+ #ifdef _MSC_VER
75
+ // To avoid Visual Studio runtime support the following code can be used
76
+ // instead
77
+ // __asm { int 3 }
78
+ __debugbreak();
79
+ #else
80
+ asm("int $3");
81
+ #endif
82
+ }
83
+
84
+ } } // namespace v8::internal
85
+
86
+ #endif // V8_TARGET_ARCH_X64
@@ -0,0 +1,316 @@
1
+ // Copyright 2011 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
+ #if defined(V8_TARGET_ARCH_X64)
31
+
32
+ #include "codegen-inl.h"
33
+ #include "debug.h"
34
+
35
+
36
+ namespace v8 {
37
+ namespace internal {
38
+
39
+ #ifdef ENABLE_DEBUGGER_SUPPORT
40
+
41
+ bool BreakLocationIterator::IsDebugBreakAtReturn() {
42
+ return Debug::IsDebugBreakAtReturn(rinfo());
43
+ }
44
+
45
+
46
+ // Patch the JS frame exit code with a debug break call. See
47
+ // CodeGenerator::VisitReturnStatement and VirtualFrame::Exit in codegen-x64.cc
48
+ // for the precise return instructions sequence.
49
+ void BreakLocationIterator::SetDebugBreakAtReturn() {
50
+ ASSERT(Assembler::kJSReturnSequenceLength >=
51
+ Assembler::kCallInstructionLength);
52
+ rinfo()->PatchCodeWithCall(Debug::debug_break_return()->entry(),
53
+ Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength);
54
+ }
55
+
56
+
57
+ // Restore the JS frame exit code.
58
+ void BreakLocationIterator::ClearDebugBreakAtReturn() {
59
+ rinfo()->PatchCode(original_rinfo()->pc(),
60
+ Assembler::kJSReturnSequenceLength);
61
+ }
62
+
63
+
64
+ // A debug break in the frame exit code is identified by the JS frame exit code
65
+ // having been patched with a call instruction.
66
+ bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
67
+ ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
68
+ return rinfo->IsPatchedReturnSequence();
69
+ }
70
+
71
+
72
+ bool BreakLocationIterator::IsDebugBreakAtSlot() {
73
+ ASSERT(IsDebugBreakSlot());
74
+ // Check whether the debug break slot instructions have been patched.
75
+ return !Assembler::IsNop(rinfo()->pc());
76
+ }
77
+
78
+
79
+ void BreakLocationIterator::SetDebugBreakAtSlot() {
80
+ ASSERT(IsDebugBreakSlot());
81
+ rinfo()->PatchCodeWithCall(
82
+ Debug::debug_break_slot()->entry(),
83
+ Assembler::kDebugBreakSlotLength - Assembler::kCallInstructionLength);
84
+ }
85
+
86
+
87
+ void BreakLocationIterator::ClearDebugBreakAtSlot() {
88
+ ASSERT(IsDebugBreakSlot());
89
+ rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
90
+ }
91
+
92
+
93
+ #define __ ACCESS_MASM(masm)
94
+
95
+
96
+ static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
97
+ RegList object_regs,
98
+ RegList non_object_regs,
99
+ bool convert_call_to_jmp) {
100
+ // Enter an internal frame.
101
+ __ EnterInternalFrame();
102
+
103
+ // Store the registers containing live values on the expression stack to
104
+ // make sure that these are correctly updated during GC. Non object values
105
+ // are stored as as two smis causing it to be untouched by GC.
106
+ ASSERT((object_regs & ~kJSCallerSaved) == 0);
107
+ ASSERT((non_object_regs & ~kJSCallerSaved) == 0);
108
+ ASSERT((object_regs & non_object_regs) == 0);
109
+ for (int i = 0; i < kNumJSCallerSaved; i++) {
110
+ int r = JSCallerSavedCode(i);
111
+ Register reg = { r };
112
+ ASSERT(!reg.is(kScratchRegister));
113
+ if ((object_regs & (1 << r)) != 0) {
114
+ __ push(reg);
115
+ }
116
+ // Store the 64-bit value as two smis.
117
+ if ((non_object_regs & (1 << r)) != 0) {
118
+ __ movq(kScratchRegister, reg);
119
+ __ Integer32ToSmi(reg, reg);
120
+ __ push(reg);
121
+ __ sar(kScratchRegister, Immediate(32));
122
+ __ Integer32ToSmi(kScratchRegister, kScratchRegister);
123
+ __ push(kScratchRegister);
124
+ }
125
+ }
126
+
127
+ #ifdef DEBUG
128
+ __ RecordComment("// Calling from debug break to runtime - come in - over");
129
+ #endif
130
+ __ Set(rax, 0); // No arguments (argc == 0).
131
+ __ movq(rbx, ExternalReference::debug_break());
132
+
133
+ CEntryStub ceb(1);
134
+ __ CallStub(&ceb);
135
+
136
+ // Restore the register values from the expression stack.
137
+ for (int i = kNumJSCallerSaved - 1; i >= 0; i--) {
138
+ int r = JSCallerSavedCode(i);
139
+ Register reg = { r };
140
+ if (FLAG_debug_code) {
141
+ __ Set(reg, kDebugZapValue);
142
+ }
143
+ if ((object_regs & (1 << r)) != 0) {
144
+ __ pop(reg);
145
+ }
146
+ // Reconstruct the 64-bit value from two smis.
147
+ if ((non_object_regs & (1 << r)) != 0) {
148
+ __ pop(kScratchRegister);
149
+ __ SmiToInteger32(kScratchRegister, kScratchRegister);
150
+ __ shl(kScratchRegister, Immediate(32));
151
+ __ pop(reg);
152
+ __ SmiToInteger32(reg, reg);
153
+ __ or_(reg, kScratchRegister);
154
+ }
155
+ }
156
+
157
+ // Get rid of the internal frame.
158
+ __ LeaveInternalFrame();
159
+
160
+ // If this call did not replace a call but patched other code then there will
161
+ // be an unwanted return address left on the stack. Here we get rid of that.
162
+ if (convert_call_to_jmp) {
163
+ __ addq(rsp, Immediate(kPointerSize));
164
+ }
165
+
166
+ // Now that the break point has been handled, resume normal execution by
167
+ // jumping to the target address intended by the caller and that was
168
+ // overwritten by the address of DebugBreakXXX.
169
+ ExternalReference after_break_target =
170
+ ExternalReference(Debug_Address::AfterBreakTarget());
171
+ __ movq(kScratchRegister, after_break_target);
172
+ __ jmp(Operand(kScratchRegister, 0));
173
+ }
174
+
175
+
176
+ void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
177
+ // Register state for IC load call (from ic-x64.cc).
178
+ // ----------- S t a t e -------------
179
+ // -- rax : receiver
180
+ // -- rcx : name
181
+ // -----------------------------------
182
+ Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit(), 0, false);
183
+ }
184
+
185
+
186
+ void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
187
+ // Register state for IC store call (from ic-x64.cc).
188
+ // ----------- S t a t e -------------
189
+ // -- rax : value
190
+ // -- rcx : name
191
+ // -- rdx : receiver
192
+ // -----------------------------------
193
+ Generate_DebugBreakCallHelper(
194
+ masm, rax.bit() | rcx.bit() | rdx.bit(), 0, false);
195
+ }
196
+
197
+
198
+ void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
199
+ // Register state for keyed IC load call (from ic-x64.cc).
200
+ // ----------- S t a t e -------------
201
+ // -- rax : key
202
+ // -- rdx : receiver
203
+ // -----------------------------------
204
+ Generate_DebugBreakCallHelper(masm, rax.bit() | rdx.bit(), 0, false);
205
+ }
206
+
207
+
208
+ void Debug::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
209
+ // Register state for keyed IC load call (from ic-x64.cc).
210
+ // ----------- S t a t e -------------
211
+ // -- rax : value
212
+ // -- rcx : key
213
+ // -- rdx : receiver
214
+ // -----------------------------------
215
+ Generate_DebugBreakCallHelper(
216
+ masm, rax.bit() | rcx.bit() | rdx.bit(), 0, false);
217
+ }
218
+
219
+
220
+ void Debug::GenerateCallICDebugBreak(MacroAssembler* masm) {
221
+ // Register state for IC call call (from ic-x64.cc)
222
+ // ----------- S t a t e -------------
223
+ // -- rcx: function name
224
+ // -----------------------------------
225
+ Generate_DebugBreakCallHelper(masm, rcx.bit(), 0, false);
226
+ }
227
+
228
+
229
+ void Debug::GenerateConstructCallDebugBreak(MacroAssembler* masm) {
230
+ // Register state just before return from JS function (from codegen-x64.cc).
231
+ // rax is the actual number of arguments not encoded as a smi, see comment
232
+ // above IC call.
233
+ // ----------- S t a t e -------------
234
+ // -- rax: number of arguments
235
+ // -----------------------------------
236
+ // The number of arguments in rax is not smi encoded.
237
+ Generate_DebugBreakCallHelper(masm, rdi.bit(), rax.bit(), false);
238
+ }
239
+
240
+
241
+ void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) {
242
+ // Register state just before return from JS function (from codegen-x64.cc).
243
+ // ----------- S t a t e -------------
244
+ // -- rax: return value
245
+ // -----------------------------------
246
+ Generate_DebugBreakCallHelper(masm, rax.bit(), 0, true);
247
+ }
248
+
249
+
250
+ void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
251
+ // Register state for stub CallFunction (from CallFunctionStub in ic-x64.cc).
252
+ // ----------- S t a t e -------------
253
+ // No registers used on entry.
254
+ // -----------------------------------
255
+ Generate_DebugBreakCallHelper(masm, 0, 0, false);
256
+ }
257
+
258
+
259
+ void Debug::GenerateSlot(MacroAssembler* masm) {
260
+ // Generate enough nop's to make space for a call instruction.
261
+ Label check_codesize;
262
+ __ bind(&check_codesize);
263
+ __ RecordDebugBreakSlot();
264
+ for (int i = 0; i < Assembler::kDebugBreakSlotLength; i++) {
265
+ __ nop();
266
+ }
267
+ ASSERT_EQ(Assembler::kDebugBreakSlotLength,
268
+ masm->SizeOfCodeGeneratedSince(&check_codesize));
269
+ }
270
+
271
+
272
+ void Debug::GenerateSlotDebugBreak(MacroAssembler* masm) {
273
+ // In the places where a debug break slot is inserted no registers can contain
274
+ // object pointers.
275
+ Generate_DebugBreakCallHelper(masm, 0, 0, true);
276
+ }
277
+
278
+
279
+ void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
280
+ masm->ret(0);
281
+ }
282
+
283
+
284
+ void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
285
+ ExternalReference restarter_frame_function_slot =
286
+ ExternalReference(Debug_Address::RestarterFrameFunctionPointer());
287
+ __ movq(rax, restarter_frame_function_slot);
288
+ __ movq(Operand(rax, 0), Immediate(0));
289
+
290
+ // We do not know our frame height, but set rsp based on rbp.
291
+ __ lea(rsp, Operand(rbp, -1 * kPointerSize));
292
+
293
+ __ pop(rdi); // Function.
294
+ __ pop(rbp);
295
+
296
+ // Load context from the function.
297
+ __ movq(rsi, FieldOperand(rdi, JSFunction::kContextOffset));
298
+
299
+ // Get function code.
300
+ __ movq(rdx, FieldOperand(rdi, JSFunction::kSharedFunctionInfoOffset));
301
+ __ movq(rdx, FieldOperand(rdx, SharedFunctionInfo::kCodeOffset));
302
+ __ lea(rdx, FieldOperand(rdx, Code::kHeaderSize));
303
+
304
+ // Re-run JSFunction, rdi is function, rsi is context.
305
+ __ jmp(rdx);
306
+ }
307
+
308
+ const bool Debug::kFrameDropperSupported = true;
309
+
310
+ #undef __
311
+
312
+ #endif // ENABLE_DEBUGGER_SUPPORT
313
+
314
+ } } // namespace v8::internal
315
+
316
+ #endif // V8_TARGET_ARCH_X64
@@ -0,0 +1,781 @@
1
+ // Copyright 2011 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
+ #if defined(V8_TARGET_ARCH_X64)
31
+
32
+ #include "codegen.h"
33
+ #include "deoptimizer.h"
34
+ #include "full-codegen.h"
35
+ #include "safepoint-table.h"
36
+
37
+ namespace v8 {
38
+ namespace internal {
39
+
40
+
41
+ int Deoptimizer::table_entry_size_ = 10;
42
+
43
+
44
+ int Deoptimizer::patch_size() {
45
+ return MacroAssembler::kCallInstructionLength;
46
+ }
47
+
48
+
49
+ #ifdef DEBUG
50
+ // Overwrites code with int3 instructions.
51
+ static void ZapCodeRange(Address from, Address to) {
52
+ CHECK(from <= to);
53
+ int length = static_cast<int>(to - from);
54
+ CodePatcher destroyer(from, length);
55
+ while (length-- > 0) {
56
+ destroyer.masm()->int3();
57
+ }
58
+ }
59
+ #endif
60
+
61
+
62
+ // Iterate through the entries of a SafepointTable that corresponds to
63
+ // deoptimization points.
64
+ class SafepointTableDeoptimiztionEntryIterator {
65
+ public:
66
+ explicit SafepointTableDeoptimiztionEntryIterator(Code* code)
67
+ : code_(code), table_(code), index_(-1), limit_(table_.length()) {
68
+ FindNextIndex();
69
+ }
70
+
71
+ SafepointEntry Next(Address* pc) {
72
+ if (index_ >= limit_) {
73
+ *pc = NULL;
74
+ return SafepointEntry(); // Invalid entry.
75
+ }
76
+ *pc = code_->instruction_start() + table_.GetPcOffset(index_);
77
+ SafepointEntry entry = table_.GetEntry(index_);
78
+ FindNextIndex();
79
+ return entry;
80
+ }
81
+
82
+ private:
83
+ void FindNextIndex() {
84
+ ASSERT(index_ < limit_);
85
+ while (++index_ < limit_) {
86
+ if (table_.GetEntry(index_).deoptimization_index() !=
87
+ Safepoint::kNoDeoptimizationIndex) {
88
+ return;
89
+ }
90
+ }
91
+ }
92
+
93
+ Code* code_;
94
+ SafepointTable table_;
95
+ // Index of next deoptimization entry. If negative after calling
96
+ // FindNextIndex, there are no more, and Next will return an invalid
97
+ // SafepointEntry.
98
+ int index_;
99
+ // Table length.
100
+ int limit_;
101
+ };
102
+
103
+
104
+ void Deoptimizer::DeoptimizeFunction(JSFunction* function) {
105
+ AssertNoAllocation no_allocation;
106
+
107
+ if (!function->IsOptimized()) return;
108
+
109
+ // Get the optimized code.
110
+ Code* code = function->code();
111
+
112
+ // Invalidate the relocation information, as it will become invalid by the
113
+ // code patching below, and is not needed any more.
114
+ code->InvalidateRelocation();
115
+
116
+ // For each return after a safepoint insert a absolute call to the
117
+ // corresponding deoptimization entry, or a short call to an absolute
118
+ // jump if space is short. The absolute jumps are put in a table just
119
+ // before the safepoint table (space was allocated there when the Code
120
+ // object was created, if necessary).
121
+
122
+ Address instruction_start = function->code()->instruction_start();
123
+ Address jump_table_address =
124
+ instruction_start + function->code()->safepoint_table_offset();
125
+ Address previous_pc = instruction_start;
126
+
127
+ SafepointTableDeoptimiztionEntryIterator deoptimizations(function->code());
128
+ Address entry_pc = NULL;
129
+
130
+ SafepointEntry current_entry = deoptimizations.Next(&entry_pc);
131
+ while (current_entry.is_valid()) {
132
+ int gap_code_size = current_entry.gap_code_size();
133
+ unsigned deoptimization_index = current_entry.deoptimization_index();
134
+
135
+ #ifdef DEBUG
136
+ // Destroy the code which is not supposed to run again.
137
+ ZapCodeRange(previous_pc, entry_pc);
138
+ #endif
139
+ // Position where Call will be patched in.
140
+ Address call_address = entry_pc + gap_code_size;
141
+ // End of call instruction, if using a direct call to a 64-bit address.
142
+ Address call_end_address =
143
+ call_address + MacroAssembler::kCallInstructionLength;
144
+
145
+ // Find next deoptimization entry, if any.
146
+ Address next_pc = NULL;
147
+ SafepointEntry next_entry = deoptimizations.Next(&next_pc);
148
+
149
+ if (!next_entry.is_valid() || next_pc >= call_end_address) {
150
+ // Room enough to write a long call instruction.
151
+ CodePatcher patcher(call_address, Assembler::kCallInstructionLength);
152
+ patcher.masm()->Call(GetDeoptimizationEntry(deoptimization_index, LAZY),
153
+ RelocInfo::NONE);
154
+ previous_pc = call_end_address;
155
+ } else {
156
+ // Not room enough for a long Call instruction. Write a short call
157
+ // instruction to a long jump placed elsewhere in the code.
158
+ Address short_call_end_address =
159
+ call_address + MacroAssembler::kShortCallInstructionLength;
160
+ ASSERT(next_pc >= short_call_end_address);
161
+
162
+ // Write jump in jump-table.
163
+ jump_table_address -= MacroAssembler::kJumpInstructionLength;
164
+ CodePatcher jump_patcher(jump_table_address,
165
+ MacroAssembler::kJumpInstructionLength);
166
+ jump_patcher.masm()->Jump(
167
+ GetDeoptimizationEntry(deoptimization_index, LAZY),
168
+ RelocInfo::NONE);
169
+
170
+ // Write call to jump at call_offset.
171
+ CodePatcher call_patcher(call_address,
172
+ MacroAssembler::kShortCallInstructionLength);
173
+ call_patcher.masm()->call(jump_table_address);
174
+ previous_pc = short_call_end_address;
175
+ }
176
+
177
+ // Continue with next deoptimization entry.
178
+ current_entry = next_entry;
179
+ entry_pc = next_pc;
180
+ }
181
+
182
+ #ifdef DEBUG
183
+ // Destroy the code which is not supposed to run again.
184
+ ZapCodeRange(previous_pc, jump_table_address);
185
+ #endif
186
+
187
+ // Add the deoptimizing code to the list.
188
+ DeoptimizingCodeListNode* node = new DeoptimizingCodeListNode(code);
189
+ node->set_next(deoptimizing_code_list_);
190
+ deoptimizing_code_list_ = node;
191
+
192
+ // Set the code for the function to non-optimized version.
193
+ function->ReplaceCode(function->shared()->code());
194
+
195
+ if (FLAG_trace_deopt) {
196
+ PrintF("[forced deoptimization: ");
197
+ function->PrintName();
198
+ PrintF(" / %" V8PRIxPTR "]\n", reinterpret_cast<intptr_t>(function));
199
+ }
200
+ }
201
+
202
+
203
+ void Deoptimizer::PatchStackCheckCodeAt(Address pc_after,
204
+ Code* check_code,
205
+ Code* replacement_code) {
206
+ Address call_target_address = pc_after - kIntSize;
207
+ ASSERT(check_code->entry() ==
208
+ Assembler::target_address_at(call_target_address));
209
+ // The stack check code matches the pattern:
210
+ //
211
+ // cmp rsp, <limit>
212
+ // jae ok
213
+ // call <stack guard>
214
+ // test rax, <loop nesting depth>
215
+ // ok: ...
216
+ //
217
+ // We will patch away the branch so the code is:
218
+ //
219
+ // cmp rsp, <limit> ;; Not changed
220
+ // nop
221
+ // nop
222
+ // call <on-stack replacment>
223
+ // test rax, <loop nesting depth>
224
+ // ok:
225
+ //
226
+ ASSERT(*(call_target_address - 3) == 0x73 && // jae
227
+ *(call_target_address - 2) == 0x07 && // offset
228
+ *(call_target_address - 1) == 0xe8); // call
229
+ *(call_target_address - 3) = 0x90; // nop
230
+ *(call_target_address - 2) = 0x90; // nop
231
+ Assembler::set_target_address_at(call_target_address,
232
+ replacement_code->entry());
233
+ }
234
+
235
+
236
+ void Deoptimizer::RevertStackCheckCodeAt(Address pc_after,
237
+ Code* check_code,
238
+ Code* replacement_code) {
239
+ Address call_target_address = pc_after - kIntSize;
240
+ ASSERT(replacement_code->entry() ==
241
+ Assembler::target_address_at(call_target_address));
242
+ // Replace the nops from patching (Deoptimizer::PatchStackCheckCode) to
243
+ // restore the conditional branch.
244
+ ASSERT(*(call_target_address - 3) == 0x90 && // nop
245
+ *(call_target_address - 2) == 0x90 && // nop
246
+ *(call_target_address - 1) == 0xe8); // call
247
+ *(call_target_address - 3) = 0x73; // jae
248
+ *(call_target_address - 2) = 0x07; // offset
249
+ Assembler::set_target_address_at(call_target_address,
250
+ check_code->entry());
251
+ }
252
+
253
+
254
+ static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
255
+ ByteArray* translations = data->TranslationByteArray();
256
+ int length = data->DeoptCount();
257
+ for (int i = 0; i < length; i++) {
258
+ if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
259
+ TranslationIterator it(translations, data->TranslationIndex(i)->value());
260
+ int value = it.Next();
261
+ ASSERT(Translation::BEGIN == static_cast<Translation::Opcode>(value));
262
+ // Read the number of frames.
263
+ value = it.Next();
264
+ if (value == 1) return i;
265
+ }
266
+ }
267
+ UNREACHABLE();
268
+ return -1;
269
+ }
270
+
271
+
272
+ void Deoptimizer::DoComputeOsrOutputFrame() {
273
+ DeoptimizationInputData* data = DeoptimizationInputData::cast(
274
+ optimized_code_->deoptimization_data());
275
+ unsigned ast_id = data->OsrAstId()->value();
276
+ // TODO(kasperl): This should not be the bailout_id_. It should be
277
+ // the ast id. Confusing.
278
+ ASSERT(bailout_id_ == ast_id);
279
+
280
+ int bailout_id = LookupBailoutId(data, ast_id);
281
+ unsigned translation_index = data->TranslationIndex(bailout_id)->value();
282
+ ByteArray* translations = data->TranslationByteArray();
283
+
284
+ TranslationIterator iterator(translations, translation_index);
285
+ Translation::Opcode opcode =
286
+ static_cast<Translation::Opcode>(iterator.Next());
287
+ ASSERT(Translation::BEGIN == opcode);
288
+ USE(opcode);
289
+ int count = iterator.Next();
290
+ ASSERT(count == 1);
291
+ USE(count);
292
+
293
+ opcode = static_cast<Translation::Opcode>(iterator.Next());
294
+ USE(opcode);
295
+ ASSERT(Translation::FRAME == opcode);
296
+ unsigned node_id = iterator.Next();
297
+ USE(node_id);
298
+ ASSERT(node_id == ast_id);
299
+ JSFunction* function = JSFunction::cast(ComputeLiteral(iterator.Next()));
300
+ USE(function);
301
+ ASSERT(function == function_);
302
+ unsigned height = iterator.Next();
303
+ unsigned height_in_bytes = height * kPointerSize;
304
+ USE(height_in_bytes);
305
+
306
+ unsigned fixed_size = ComputeFixedSize(function_);
307
+ unsigned input_frame_size = static_cast<unsigned>(input_->GetFrameSize());
308
+ ASSERT(fixed_size + height_in_bytes == input_frame_size);
309
+
310
+ unsigned stack_slot_size = optimized_code_->stack_slots() * kPointerSize;
311
+ unsigned outgoing_height = data->ArgumentsStackHeight(bailout_id)->value();
312
+ unsigned outgoing_size = outgoing_height * kPointerSize;
313
+ unsigned output_frame_size = fixed_size + stack_slot_size + outgoing_size;
314
+ ASSERT(outgoing_size == 0); // OSR does not happen in the middle of a call.
315
+
316
+ if (FLAG_trace_osr) {
317
+ PrintF("[on-stack replacement: begin 0x%08" V8PRIxPTR " ",
318
+ reinterpret_cast<intptr_t>(function_));
319
+ function_->PrintName();
320
+ PrintF(" => node=%u, frame=%d->%d]\n",
321
+ ast_id,
322
+ input_frame_size,
323
+ output_frame_size);
324
+ }
325
+
326
+ // There's only one output frame in the OSR case.
327
+ output_count_ = 1;
328
+ output_ = new FrameDescription*[1];
329
+ output_[0] = new(output_frame_size) FrameDescription(
330
+ output_frame_size, function_);
331
+
332
+ // Clear the incoming parameters in the optimized frame to avoid
333
+ // confusing the garbage collector.
334
+ unsigned output_offset = output_frame_size - kPointerSize;
335
+ int parameter_count = function_->shared()->formal_parameter_count() + 1;
336
+ for (int i = 0; i < parameter_count; ++i) {
337
+ output_[0]->SetFrameSlot(output_offset, 0);
338
+ output_offset -= kPointerSize;
339
+ }
340
+
341
+ // Translate the incoming parameters. This may overwrite some of the
342
+ // incoming argument slots we've just cleared.
343
+ int input_offset = input_frame_size - kPointerSize;
344
+ bool ok = true;
345
+ int limit = input_offset - (parameter_count * kPointerSize);
346
+ while (ok && input_offset > limit) {
347
+ ok = DoOsrTranslateCommand(&iterator, &input_offset);
348
+ }
349
+
350
+ // There are no translation commands for the caller's pc and fp, the
351
+ // context, and the function. Set them up explicitly.
352
+ for (int i = 0; ok && i < 4; i++) {
353
+ intptr_t input_value = input_->GetFrameSlot(input_offset);
354
+ if (FLAG_trace_osr) {
355
+ PrintF(" [esp + %d] <- 0x%08" V8PRIxPTR " ; [esp + %d] (fixed part)\n",
356
+ output_offset,
357
+ input_value,
358
+ input_offset);
359
+ }
360
+ output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
361
+ input_offset -= kPointerSize;
362
+ output_offset -= kPointerSize;
363
+ }
364
+
365
+ // Translate the rest of the frame.
366
+ while (ok && input_offset >= 0) {
367
+ ok = DoOsrTranslateCommand(&iterator, &input_offset);
368
+ }
369
+
370
+ // If translation of any command failed, continue using the input frame.
371
+ if (!ok) {
372
+ delete output_[0];
373
+ output_[0] = input_;
374
+ output_[0]->SetPc(reinterpret_cast<intptr_t>(from_));
375
+ } else {
376
+ // Setup the frame pointer and the context pointer.
377
+ output_[0]->SetRegister(rbp.code(), input_->GetRegister(rbp.code()));
378
+ output_[0]->SetRegister(rsi.code(), input_->GetRegister(rsi.code()));
379
+
380
+ unsigned pc_offset = data->OsrPcOffset()->value();
381
+ intptr_t pc = reinterpret_cast<intptr_t>(
382
+ optimized_code_->entry() + pc_offset);
383
+ output_[0]->SetPc(pc);
384
+ }
385
+ Code* continuation = Builtins::builtin(Builtins::NotifyOSR);
386
+ output_[0]->SetContinuation(
387
+ reinterpret_cast<intptr_t>(continuation->entry()));
388
+
389
+ if (FLAG_trace_osr) {
390
+ PrintF("[on-stack replacement translation %s: 0x%08" V8PRIxPTR " ",
391
+ ok ? "finished" : "aborted",
392
+ reinterpret_cast<intptr_t>(function));
393
+ function->PrintName();
394
+ PrintF(" => pc=0x%0" V8PRIxPTR "]\n", output_[0]->GetPc());
395
+ }
396
+ }
397
+
398
+
399
+ void Deoptimizer::DoComputeFrame(TranslationIterator* iterator,
400
+ int frame_index) {
401
+ // Read the ast node id, function, and frame height for this output frame.
402
+ Translation::Opcode opcode =
403
+ static_cast<Translation::Opcode>(iterator->Next());
404
+ USE(opcode);
405
+ ASSERT(Translation::FRAME == opcode);
406
+ int node_id = iterator->Next();
407
+ JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next()));
408
+ unsigned height = iterator->Next();
409
+ unsigned height_in_bytes = height * kPointerSize;
410
+ if (FLAG_trace_deopt) {
411
+ PrintF(" translating ");
412
+ function->PrintName();
413
+ PrintF(" => node=%d, height=%d\n", node_id, height_in_bytes);
414
+ }
415
+
416
+ // The 'fixed' part of the frame consists of the incoming parameters and
417
+ // the part described by JavaScriptFrameConstants.
418
+ unsigned fixed_frame_size = ComputeFixedSize(function);
419
+ unsigned input_frame_size = static_cast<unsigned>(input_->GetFrameSize());
420
+ unsigned output_frame_size = height_in_bytes + fixed_frame_size;
421
+
422
+ // Allocate and store the output frame description.
423
+ FrameDescription* output_frame =
424
+ new(output_frame_size) FrameDescription(output_frame_size, function);
425
+
426
+ bool is_bottommost = (0 == frame_index);
427
+ bool is_topmost = (output_count_ - 1 == frame_index);
428
+ ASSERT(frame_index >= 0 && frame_index < output_count_);
429
+ ASSERT(output_[frame_index] == NULL);
430
+ output_[frame_index] = output_frame;
431
+
432
+ // The top address for the bottommost output frame can be computed from
433
+ // the input frame pointer and the output frame's height. For all
434
+ // subsequent output frames, it can be computed from the previous one's
435
+ // top address and the current frame's size.
436
+ intptr_t top_address;
437
+ if (is_bottommost) {
438
+ // 2 = context and function in the frame.
439
+ top_address =
440
+ input_->GetRegister(rbp.code()) - (2 * kPointerSize) - height_in_bytes;
441
+ } else {
442
+ top_address = output_[frame_index - 1]->GetTop() - output_frame_size;
443
+ }
444
+ output_frame->SetTop(top_address);
445
+
446
+ // Compute the incoming parameter translation.
447
+ int parameter_count = function->shared()->formal_parameter_count() + 1;
448
+ unsigned output_offset = output_frame_size;
449
+ unsigned input_offset = input_frame_size;
450
+ for (int i = 0; i < parameter_count; ++i) {
451
+ output_offset -= kPointerSize;
452
+ DoTranslateCommand(iterator, frame_index, output_offset);
453
+ }
454
+ input_offset -= (parameter_count * kPointerSize);
455
+
456
+ // There are no translation commands for the caller's pc and fp, the
457
+ // context, and the function. Synthesize their values and set them up
458
+ // explicitly.
459
+ //
460
+ // The caller's pc for the bottommost output frame is the same as in the
461
+ // input frame. For all subsequent output frames, it can be read from the
462
+ // previous one. This frame's pc can be computed from the non-optimized
463
+ // function code and AST id of the bailout.
464
+ output_offset -= kPointerSize;
465
+ input_offset -= kPointerSize;
466
+ intptr_t value;
467
+ if (is_bottommost) {
468
+ value = input_->GetFrameSlot(input_offset);
469
+ } else {
470
+ value = output_[frame_index - 1]->GetPc();
471
+ }
472
+ output_frame->SetFrameSlot(output_offset, value);
473
+ if (FLAG_trace_deopt) {
474
+ PrintF(" 0x%08" V8PRIxPTR ": [top + %d] <- 0x%08"
475
+ V8PRIxPTR " ; caller's pc\n",
476
+ top_address + output_offset, output_offset, value);
477
+ }
478
+
479
+ // The caller's frame pointer for the bottommost output frame is the same
480
+ // as in the input frame. For all subsequent output frames, it can be
481
+ // read from the previous one. Also compute and set this frame's frame
482
+ // pointer.
483
+ output_offset -= kPointerSize;
484
+ input_offset -= kPointerSize;
485
+ if (is_bottommost) {
486
+ value = input_->GetFrameSlot(input_offset);
487
+ } else {
488
+ value = output_[frame_index - 1]->GetFp();
489
+ }
490
+ output_frame->SetFrameSlot(output_offset, value);
491
+ intptr_t fp_value = top_address + output_offset;
492
+ ASSERT(!is_bottommost || input_->GetRegister(rbp.code()) == fp_value);
493
+ output_frame->SetFp(fp_value);
494
+ if (is_topmost) output_frame->SetRegister(rbp.code(), fp_value);
495
+ if (FLAG_trace_deopt) {
496
+ PrintF(" 0x%08" V8PRIxPTR ": [top + %d] <- 0x%08"
497
+ V8PRIxPTR " ; caller's fp\n",
498
+ fp_value, output_offset, value);
499
+ }
500
+
501
+ // For the bottommost output frame the context can be gotten from the input
502
+ // frame. For all subsequent output frames it can be gotten from the function
503
+ // so long as we don't inline functions that need local contexts.
504
+ output_offset -= kPointerSize;
505
+ input_offset -= kPointerSize;
506
+ if (is_bottommost) {
507
+ value = input_->GetFrameSlot(input_offset);
508
+ } else {
509
+ value = reinterpret_cast<intptr_t>(function->context());
510
+ }
511
+ output_frame->SetFrameSlot(output_offset, value);
512
+ if (is_topmost) output_frame->SetRegister(rsi.code(), value);
513
+ if (FLAG_trace_deopt) {
514
+ PrintF(" 0x%08" V8PRIxPTR ": [top + %d] <- 0x%08"
515
+ V8PRIxPTR "; context\n",
516
+ top_address + output_offset, output_offset, value);
517
+ }
518
+
519
+ // The function was mentioned explicitly in the BEGIN_FRAME.
520
+ output_offset -= kPointerSize;
521
+ input_offset -= kPointerSize;
522
+ value = reinterpret_cast<intptr_t>(function);
523
+ // The function for the bottommost output frame should also agree with the
524
+ // input frame.
525
+ ASSERT(!is_bottommost || input_->GetFrameSlot(input_offset) == value);
526
+ output_frame->SetFrameSlot(output_offset, value);
527
+ if (FLAG_trace_deopt) {
528
+ PrintF(" 0x%08" V8PRIxPTR ": [top + %d] <- 0x%08"
529
+ V8PRIxPTR "; function\n",
530
+ top_address + output_offset, output_offset, value);
531
+ }
532
+
533
+ // Translate the rest of the frame.
534
+ for (unsigned i = 0; i < height; ++i) {
535
+ output_offset -= kPointerSize;
536
+ DoTranslateCommand(iterator, frame_index, output_offset);
537
+ }
538
+ ASSERT(0 == output_offset);
539
+
540
+ // Compute this frame's PC, state, and continuation.
541
+ Code* non_optimized_code = function->shared()->code();
542
+ FixedArray* raw_data = non_optimized_code->deoptimization_data();
543
+ DeoptimizationOutputData* data = DeoptimizationOutputData::cast(raw_data);
544
+ Address start = non_optimized_code->instruction_start();
545
+ unsigned pc_and_state = GetOutputInfo(data, node_id, function->shared());
546
+ unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state);
547
+ intptr_t pc_value = reinterpret_cast<intptr_t>(start + pc_offset);
548
+ output_frame->SetPc(pc_value);
549
+
550
+ FullCodeGenerator::State state =
551
+ FullCodeGenerator::StateField::decode(pc_and_state);
552
+ output_frame->SetState(Smi::FromInt(state));
553
+
554
+ // Set the continuation for the topmost frame.
555
+ if (is_topmost) {
556
+ Code* continuation = (bailout_type_ == EAGER)
557
+ ? Builtins::builtin(Builtins::NotifyDeoptimized)
558
+ : Builtins::builtin(Builtins::NotifyLazyDeoptimized);
559
+ output_frame->SetContinuation(
560
+ reinterpret_cast<intptr_t>(continuation->entry()));
561
+ }
562
+
563
+ if (output_count_ - 1 == frame_index) iterator->Done();
564
+ }
565
+
566
+
567
+ #define __ masm()->
568
+
569
+ void Deoptimizer::EntryGenerator::Generate() {
570
+ GeneratePrologue();
571
+ CpuFeatures::Scope scope(SSE2);
572
+
573
+ // Save all general purpose registers before messing with them.
574
+ const int kNumberOfRegisters = Register::kNumRegisters;
575
+
576
+ const int kDoubleRegsSize = kDoubleSize *
577
+ XMMRegister::kNumAllocatableRegisters;
578
+ __ subq(rsp, Immediate(kDoubleRegsSize));
579
+
580
+ for (int i = 0; i < XMMRegister::kNumAllocatableRegisters; ++i) {
581
+ XMMRegister xmm_reg = XMMRegister::FromAllocationIndex(i);
582
+ int offset = i * kDoubleSize;
583
+ __ movsd(Operand(rsp, offset), xmm_reg);
584
+ }
585
+
586
+ // We push all registers onto the stack, even though we do not need
587
+ // to restore all later.
588
+ for (int i = 0; i < kNumberOfRegisters; i++) {
589
+ Register r = Register::toRegister(i);
590
+ __ push(r);
591
+ }
592
+
593
+ const int kSavedRegistersAreaSize = kNumberOfRegisters * kPointerSize +
594
+ kDoubleRegsSize;
595
+
596
+ // When calling new_deoptimizer_function we need to pass the last argument
597
+ // on the stack on windows and in r8 on linux. The remaining arguments are
598
+ // all passed in registers (different ones on linux and windows though).
599
+
600
+ #ifdef _WIN64
601
+ Register arg4 = r9;
602
+ Register arg3 = r8;
603
+ Register arg2 = rdx;
604
+ Register arg1 = rcx;
605
+ #else
606
+ Register arg4 = rcx;
607
+ Register arg3 = rdx;
608
+ Register arg2 = rsi;
609
+ Register arg1 = rdi;
610
+ #endif
611
+
612
+ // We use this to keep the value of the fifth argument temporarily.
613
+ // Unfortunately we can't store it directly in r8 (used for passing
614
+ // this on linux), since it is another parameter passing register on windows.
615
+ Register arg5 = r11;
616
+
617
+ // Get the bailout id from the stack.
618
+ __ movq(arg3, Operand(rsp, kSavedRegistersAreaSize));
619
+
620
+ // Get the address of the location in the code object if possible
621
+ // and compute the fp-to-sp delta in register arg5.
622
+ if (type() == EAGER) {
623
+ __ Set(arg4, 0);
624
+ __ lea(arg5, Operand(rsp, kSavedRegistersAreaSize + 1 * kPointerSize));
625
+ } else {
626
+ __ movq(arg4, Operand(rsp, kSavedRegistersAreaSize + 1 * kPointerSize));
627
+ __ lea(arg5, Operand(rsp, kSavedRegistersAreaSize + 2 * kPointerSize));
628
+ }
629
+
630
+ __ subq(arg5, rbp);
631
+ __ neg(arg5);
632
+
633
+ // Allocate a new deoptimizer object.
634
+ __ PrepareCallCFunction(5);
635
+ __ movq(rax, Operand(rbp, JavaScriptFrameConstants::kFunctionOffset));
636
+ __ movq(arg1, rax);
637
+ __ movq(arg2, Immediate(type()));
638
+ // Args 3 and 4 are already in the right registers.
639
+
640
+ // On windows put the argument on the stack (PrepareCallCFunction have
641
+ // created space for this). On linux pass the argument in r8.
642
+ #ifdef _WIN64
643
+ __ movq(Operand(rsp, 0 * kPointerSize), arg5);
644
+ #else
645
+ __ movq(r8, arg5);
646
+ #endif
647
+
648
+ __ CallCFunction(ExternalReference::new_deoptimizer_function(), 5);
649
+ // Preserve deoptimizer object in register rax and get the input
650
+ // frame descriptor pointer.
651
+ __ movq(rbx, Operand(rax, Deoptimizer::input_offset()));
652
+
653
+ // Fill in the input registers.
654
+ for (int i = kNumberOfRegisters -1; i >= 0; i--) {
655
+ int offset = (i * kPointerSize) + FrameDescription::registers_offset();
656
+ __ pop(Operand(rbx, offset));
657
+ }
658
+
659
+ // Fill in the double input registers.
660
+ int double_regs_offset = FrameDescription::double_registers_offset();
661
+ for (int i = 0; i < XMMRegister::kNumAllocatableRegisters; i++) {
662
+ int dst_offset = i * kDoubleSize + double_regs_offset;
663
+ __ pop(Operand(rbx, dst_offset));
664
+ }
665
+
666
+ // Remove the bailout id from the stack.
667
+ if (type() == EAGER) {
668
+ __ addq(rsp, Immediate(kPointerSize));
669
+ } else {
670
+ __ addq(rsp, Immediate(2 * kPointerSize));
671
+ }
672
+
673
+ // Compute a pointer to the unwinding limit in register rcx; that is
674
+ // the first stack slot not part of the input frame.
675
+ __ movq(rcx, Operand(rbx, FrameDescription::frame_size_offset()));
676
+ __ addq(rcx, rsp);
677
+
678
+ // Unwind the stack down to - but not including - the unwinding
679
+ // limit and copy the contents of the activation frame to the input
680
+ // frame description.
681
+ __ lea(rdx, Operand(rbx, FrameDescription::frame_content_offset()));
682
+ Label pop_loop;
683
+ __ bind(&pop_loop);
684
+ __ pop(Operand(rdx, 0));
685
+ __ addq(rdx, Immediate(sizeof(intptr_t)));
686
+ __ cmpq(rcx, rsp);
687
+ __ j(not_equal, &pop_loop);
688
+
689
+ // Compute the output frame in the deoptimizer.
690
+ __ push(rax);
691
+ __ PrepareCallCFunction(1);
692
+ __ movq(arg1, rax);
693
+ __ CallCFunction(ExternalReference::compute_output_frames_function(), 1);
694
+ __ pop(rax);
695
+
696
+ // Replace the current frame with the output frames.
697
+ Label outer_push_loop, inner_push_loop;
698
+ // Outer loop state: rax = current FrameDescription**, rdx = one past the
699
+ // last FrameDescription**.
700
+ __ movl(rdx, Operand(rax, Deoptimizer::output_count_offset()));
701
+ __ movq(rax, Operand(rax, Deoptimizer::output_offset()));
702
+ __ lea(rdx, Operand(rax, rdx, times_8, 0));
703
+ __ bind(&outer_push_loop);
704
+ // Inner loop state: rbx = current FrameDescription*, rcx = loop index.
705
+ __ movq(rbx, Operand(rax, 0));
706
+ __ movq(rcx, Operand(rbx, FrameDescription::frame_size_offset()));
707
+ __ bind(&inner_push_loop);
708
+ __ subq(rcx, Immediate(sizeof(intptr_t)));
709
+ __ push(Operand(rbx, rcx, times_1, FrameDescription::frame_content_offset()));
710
+ __ testq(rcx, rcx);
711
+ __ j(not_zero, &inner_push_loop);
712
+ __ addq(rax, Immediate(kPointerSize));
713
+ __ cmpq(rax, rdx);
714
+ __ j(below, &outer_push_loop);
715
+
716
+ // In case of OSR, we have to restore the XMM registers.
717
+ if (type() == OSR) {
718
+ for (int i = 0; i < XMMRegister::kNumAllocatableRegisters; ++i) {
719
+ XMMRegister xmm_reg = XMMRegister::FromAllocationIndex(i);
720
+ int src_offset = i * kDoubleSize + double_regs_offset;
721
+ __ movsd(xmm_reg, Operand(rbx, src_offset));
722
+ }
723
+ }
724
+
725
+ // Push state, pc, and continuation from the last output frame.
726
+ if (type() != OSR) {
727
+ __ push(Operand(rbx, FrameDescription::state_offset()));
728
+ }
729
+ __ push(Operand(rbx, FrameDescription::pc_offset()));
730
+ __ push(Operand(rbx, FrameDescription::continuation_offset()));
731
+
732
+ // Push the registers from the last output frame.
733
+ for (int i = 0; i < kNumberOfRegisters; i++) {
734
+ int offset = (i * kPointerSize) + FrameDescription::registers_offset();
735
+ __ push(Operand(rbx, offset));
736
+ }
737
+
738
+ // Restore the registers from the stack.
739
+ for (int i = kNumberOfRegisters - 1; i >= 0 ; i--) {
740
+ Register r = Register::toRegister(i);
741
+ // Do not restore rsp, simply pop the value into the next register
742
+ // and overwrite this afterwards.
743
+ if (r.is(rsp)) {
744
+ ASSERT(i > 0);
745
+ r = Register::toRegister(i - 1);
746
+ }
747
+ __ pop(r);
748
+ }
749
+
750
+ // Set up the roots register.
751
+ ExternalReference roots_address = ExternalReference::roots_address();
752
+ __ movq(r13, roots_address);
753
+
754
+ __ movq(kSmiConstantRegister,
755
+ reinterpret_cast<uint64_t>(Smi::FromInt(kSmiConstantRegisterValue)),
756
+ RelocInfo::NONE);
757
+
758
+ // Return to the continuation point.
759
+ __ ret(0);
760
+ }
761
+
762
+
763
+ void Deoptimizer::TableEntryGenerator::GeneratePrologue() {
764
+ // Create a sequence of deoptimization entries.
765
+ Label done;
766
+ for (int i = 0; i < count(); i++) {
767
+ int start = masm()->pc_offset();
768
+ USE(start);
769
+ __ push_imm32(i);
770
+ __ jmp(&done);
771
+ ASSERT(masm()->pc_offset() - start == table_entry_size_);
772
+ }
773
+ __ bind(&done);
774
+ }
775
+
776
+ #undef __
777
+
778
+
779
+ } } // namespace v8::internal
780
+
781
+ #endif // V8_TARGET_ARCH_X64