therubyracer 0.9.0beta2 → 0.9.0beta3

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 (920) hide show
  1. data/.gitmodules +3 -0
  2. data/ext/v8/upstream/Makefile +1 -2
  3. data/ext/v8/upstream/v8/.gitignore +33 -0
  4. data/ext/v8/upstream/v8/AUTHORS +42 -0
  5. data/ext/v8/upstream/v8/ChangeLog +2663 -0
  6. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE +0 -0
  7. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.strongtalk +0 -0
  8. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.v8 +0 -0
  9. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.valgrind +0 -0
  10. data/ext/v8/upstream/v8/SConstruct +1473 -0
  11. data/ext/v8/upstream/{3.1.8 → v8}/build/README.txt +0 -0
  12. data/ext/v8/upstream/{3.1.8 → v8}/build/all.gyp +0 -0
  13. data/ext/v8/upstream/{3.1.8 → v8}/build/armu.gypi +0 -0
  14. data/ext/v8/upstream/{3.1.8 → v8}/build/common.gypi +0 -0
  15. data/ext/v8/upstream/{3.1.8 → v8}/build/gyp_v8 +0 -0
  16. data/ext/v8/upstream/v8/include/v8-debug.h +394 -0
  17. data/ext/v8/upstream/v8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/v8/include/v8-profiler.h +505 -0
  19. data/ext/v8/upstream/v8/include/v8-testing.h +104 -0
  20. data/ext/v8/upstream/v8/include/v8.h +4000 -0
  21. data/ext/v8/upstream/{3.1.8 → v8}/include/v8stdint.h +0 -0
  22. data/ext/v8/upstream/v8/preparser/SConscript +38 -0
  23. data/ext/v8/upstream/v8/preparser/preparser-process.cc +169 -0
  24. data/ext/v8/upstream/v8/src/SConscript +380 -0
  25. data/ext/v8/upstream/v8/src/accessors.cc +766 -0
  26. data/ext/v8/upstream/{3.1.8 → v8}/src/accessors.h +0 -0
  27. data/ext/v8/upstream/v8/src/allocation-inl.h +49 -0
  28. data/ext/v8/upstream/v8/src/allocation.cc +122 -0
  29. data/ext/v8/upstream/v8/src/allocation.h +143 -0
  30. data/ext/v8/upstream/v8/src/api.cc +5678 -0
  31. data/ext/v8/upstream/v8/src/api.h +572 -0
  32. data/ext/v8/upstream/{3.1.8 → v8}/src/apinatives.js +0 -0
  33. data/ext/v8/upstream/v8/src/apiutils.h +73 -0
  34. data/ext/v8/upstream/v8/src/arguments.h +116 -0
  35. data/ext/v8/upstream/v8/src/arm/assembler-arm-inl.h +353 -0
  36. data/ext/v8/upstream/v8/src/arm/assembler-arm.cc +2877 -0
  37. data/ext/v8/upstream/v8/src/arm/assembler-arm.h +1382 -0
  38. data/ext/v8/upstream/v8/src/arm/builtins-arm.cc +1634 -0
  39. data/ext/v8/upstream/v8/src/arm/code-stubs-arm.cc +6917 -0
  40. data/ext/v8/upstream/v8/src/arm/code-stubs-arm.h +623 -0
  41. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/codegen-arm-inl.h +0 -0
  42. data/ext/v8/upstream/v8/src/arm/codegen-arm.cc +7437 -0
  43. data/ext/v8/upstream/v8/src/arm/codegen-arm.h +595 -0
  44. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/constants-arm.cc +0 -0
  45. data/ext/v8/upstream/v8/src/arm/constants-arm.h +778 -0
  46. data/ext/v8/upstream/v8/src/arm/cpu-arm.cc +149 -0
  47. data/ext/v8/upstream/v8/src/arm/debug-arm.cc +317 -0
  48. data/ext/v8/upstream/v8/src/arm/deoptimizer-arm.cc +737 -0
  49. data/ext/v8/upstream/v8/src/arm/disasm-arm.cc +1503 -0
  50. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/frames-arm.cc +0 -0
  51. data/ext/v8/upstream/v8/src/arm/frames-arm.h +168 -0
  52. data/ext/v8/upstream/v8/src/arm/full-codegen-arm.cc +4374 -0
  53. data/ext/v8/upstream/v8/src/arm/ic-arm.cc +1793 -0
  54. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/jump-target-arm.cc +0 -0
  55. data/ext/v8/upstream/v8/src/arm/lithium-arm.cc +2120 -0
  56. data/ext/v8/upstream/v8/src/arm/lithium-arm.h +2179 -0
  57. data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.cc +4132 -0
  58. data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.h +329 -0
  59. data/ext/v8/upstream/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
  60. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/lithium-gap-resolver-arm.h +0 -0
  61. data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.cc +2939 -0
  62. data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.h +1071 -0
  63. data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
  64. data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
  65. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm-inl.h +0 -0
  66. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.cc +0 -0
  67. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.h +0 -0
  68. data/ext/v8/upstream/v8/src/arm/simulator-arm.cc +3288 -0
  69. data/ext/v8/upstream/v8/src/arm/simulator-arm.h +413 -0
  70. data/ext/v8/upstream/v8/src/arm/stub-cache-arm.cc +4034 -0
  71. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/virtual-frame-arm-inl.h +0 -0
  72. data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.cc +843 -0
  73. data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.h +523 -0
  74. data/ext/v8/upstream/v8/src/array.js +1249 -0
  75. data/ext/v8/upstream/v8/src/assembler.cc +1067 -0
  76. data/ext/v8/upstream/v8/src/assembler.h +823 -0
  77. data/ext/v8/upstream/v8/src/ast-inl.h +112 -0
  78. data/ext/v8/upstream/v8/src/ast.cc +1078 -0
  79. data/ext/v8/upstream/v8/src/ast.h +2234 -0
  80. data/ext/v8/upstream/v8/src/atomicops.h +167 -0
  81. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_arm_gcc.h +0 -0
  82. data/ext/v8/upstream/v8/src/atomicops_internals_mips_gcc.h +169 -0
  83. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.cc +0 -0
  84. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.h +0 -0
  85. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_macosx.h +0 -0
  86. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_msvc.h +0 -0
  87. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.cc +0 -0
  88. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.h +0 -0
  89. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.cc +0 -0
  90. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.h +0 -0
  91. data/ext/v8/upstream/v8/src/bootstrapper.cc +2138 -0
  92. data/ext/v8/upstream/v8/src/bootstrapper.h +185 -0
  93. data/ext/v8/upstream/v8/src/builtins.cc +1708 -0
  94. data/ext/v8/upstream/v8/src/builtins.h +368 -0
  95. data/ext/v8/upstream/{3.1.8 → v8}/src/bytecodes-irregexp.h +0 -0
  96. data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.cc +0 -0
  97. data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.h +0 -0
  98. data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates-inl.h +0 -0
  99. data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates.h +0 -0
  100. data/ext/v8/upstream/v8/src/checks.cc +110 -0
  101. data/ext/v8/upstream/v8/src/checks.h +296 -0
  102. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue-inl.h +0 -0
  103. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.cc +0 -0
  104. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.h +0 -0
  105. data/ext/v8/upstream/v8/src/code-stubs.cc +240 -0
  106. data/ext/v8/upstream/v8/src/code-stubs.h +971 -0
  107. data/ext/v8/upstream/{3.1.8 → v8}/src/code.h +0 -0
  108. data/ext/v8/upstream/v8/src/codegen-inl.h +68 -0
  109. data/ext/v8/upstream/v8/src/codegen.cc +505 -0
  110. data/ext/v8/upstream/v8/src/codegen.h +245 -0
  111. data/ext/v8/upstream/v8/src/compilation-cache.cc +540 -0
  112. data/ext/v8/upstream/v8/src/compilation-cache.h +287 -0
  113. data/ext/v8/upstream/v8/src/compiler.cc +792 -0
  114. data/ext/v8/upstream/v8/src/compiler.h +307 -0
  115. data/ext/v8/upstream/v8/src/contexts.cc +327 -0
  116. data/ext/v8/upstream/v8/src/contexts.h +382 -0
  117. data/ext/v8/upstream/{3.1.8 → v8}/src/conversions-inl.h +0 -0
  118. data/ext/v8/upstream/v8/src/conversions.cc +1125 -0
  119. data/ext/v8/upstream/{3.1.8 → v8}/src/conversions.h +0 -0
  120. data/ext/v8/upstream/v8/src/counters.cc +93 -0
  121. data/ext/v8/upstream/v8/src/counters.h +254 -0
  122. data/ext/v8/upstream/v8/src/cpu-profiler-inl.h +101 -0
  123. data/ext/v8/upstream/v8/src/cpu-profiler.cc +606 -0
  124. data/ext/v8/upstream/v8/src/cpu-profiler.h +305 -0
  125. data/ext/v8/upstream/v8/src/cpu.h +67 -0
  126. data/ext/v8/upstream/v8/src/d8-debug.cc +367 -0
  127. data/ext/v8/upstream/v8/src/d8-debug.h +158 -0
  128. data/ext/v8/upstream/v8/src/d8-posix.cc +695 -0
  129. data/ext/v8/upstream/{3.1.8 → v8}/src/d8-readline.cc +0 -0
  130. data/ext/v8/upstream/{3.1.8 → v8}/src/d8-windows.cc +0 -0
  131. data/ext/v8/upstream/v8/src/d8.cc +796 -0
  132. data/ext/v8/upstream/v8/src/d8.gyp +88 -0
  133. data/ext/v8/upstream/{3.1.8 → v8}/src/d8.h +0 -0
  134. data/ext/v8/upstream/{3.1.8 → v8}/src/d8.js +0 -0
  135. data/ext/v8/upstream/{3.1.8 → v8}/src/data-flow.cc +0 -0
  136. data/ext/v8/upstream/v8/src/data-flow.h +379 -0
  137. data/ext/v8/upstream/{3.1.8 → v8}/src/date.js +0 -0
  138. data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser-inl.h +0 -0
  139. data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser.cc +0 -0
  140. data/ext/v8/upstream/v8/src/dateparser.h +265 -0
  141. data/ext/v8/upstream/v8/src/debug-agent.cc +447 -0
  142. data/ext/v8/upstream/v8/src/debug-agent.h +129 -0
  143. data/ext/v8/upstream/{3.1.8 → v8}/src/debug-debugger.js +0 -0
  144. data/ext/v8/upstream/v8/src/debug.cc +3188 -0
  145. data/ext/v8/upstream/v8/src/debug.h +1055 -0
  146. data/ext/v8/upstream/v8/src/deoptimizer.cc +1296 -0
  147. data/ext/v8/upstream/v8/src/deoptimizer.h +629 -0
  148. data/ext/v8/upstream/v8/src/disasm.h +80 -0
  149. data/ext/v8/upstream/v8/src/disassembler.cc +339 -0
  150. data/ext/v8/upstream/{3.1.8 → v8}/src/disassembler.h +0 -0
  151. data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.cc +0 -0
  152. data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.h +0 -0
  153. data/ext/v8/upstream/{3.1.8 → v8}/src/double.h +0 -0
  154. data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.cc +0 -0
  155. data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.h +0 -0
  156. data/ext/v8/upstream/v8/src/execution.cc +791 -0
  157. data/ext/v8/upstream/v8/src/execution.h +291 -0
  158. data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.cc +250 -0
  159. data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.h +89 -0
  160. data/ext/v8/upstream/v8/src/extensions/experimental/experimental.gyp +55 -0
  161. data/ext/v8/upstream/v8/src/extensions/experimental/i18n-extension.cc +284 -0
  162. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/experimental/i18n-extension.h +0 -0
  163. data/ext/v8/upstream/v8/src/extensions/externalize-string-extension.cc +141 -0
  164. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/externalize-string-extension.h +0 -0
  165. data/ext/v8/upstream/v8/src/extensions/gc-extension.cc +58 -0
  166. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/gc-extension.h +0 -0
  167. data/ext/v8/upstream/v8/src/factory.cc +1194 -0
  168. data/ext/v8/upstream/v8/src/factory.h +436 -0
  169. data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.cc +0 -0
  170. data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.h +0 -0
  171. data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.cc +0 -0
  172. data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.h +0 -0
  173. data/ext/v8/upstream/v8/src/flag-definitions.h +556 -0
  174. data/ext/v8/upstream/{3.1.8 → v8}/src/flags.cc +0 -0
  175. data/ext/v8/upstream/{3.1.8 → v8}/src/flags.h +0 -0
  176. data/ext/v8/upstream/v8/src/frame-element.cc +37 -0
  177. data/ext/v8/upstream/v8/src/frame-element.h +269 -0
  178. data/ext/v8/upstream/v8/src/frames-inl.h +236 -0
  179. data/ext/v8/upstream/v8/src/frames.cc +1273 -0
  180. data/ext/v8/upstream/v8/src/frames.h +854 -0
  181. data/ext/v8/upstream/v8/src/full-codegen.cc +1385 -0
  182. data/ext/v8/upstream/v8/src/full-codegen.h +753 -0
  183. data/ext/v8/upstream/v8/src/func-name-inferrer.cc +91 -0
  184. data/ext/v8/upstream/v8/src/func-name-inferrer.h +111 -0
  185. data/ext/v8/upstream/v8/src/gdb-jit.cc +1548 -0
  186. data/ext/v8/upstream/{3.1.8 → v8}/src/gdb-jit.h +0 -0
  187. data/ext/v8/upstream/v8/src/global-handles.cc +596 -0
  188. data/ext/v8/upstream/v8/src/global-handles.h +239 -0
  189. data/ext/v8/upstream/v8/src/globals.h +325 -0
  190. data/ext/v8/upstream/v8/src/handles-inl.h +177 -0
  191. data/ext/v8/upstream/v8/src/handles.cc +965 -0
  192. data/ext/v8/upstream/v8/src/handles.h +372 -0
  193. data/ext/v8/upstream/{3.1.8 → v8}/src/hashmap.cc +0 -0
  194. data/ext/v8/upstream/v8/src/hashmap.h +121 -0
  195. data/ext/v8/upstream/v8/src/heap-inl.h +703 -0
  196. data/ext/v8/upstream/v8/src/heap-profiler.cc +1173 -0
  197. data/ext/v8/upstream/v8/src/heap-profiler.h +396 -0
  198. data/ext/v8/upstream/v8/src/heap.cc +5856 -0
  199. data/ext/v8/upstream/v8/src/heap.h +2264 -0
  200. data/ext/v8/upstream/v8/src/hydrogen-instructions.cc +1639 -0
  201. data/ext/v8/upstream/v8/src/hydrogen-instructions.h +3657 -0
  202. data/ext/v8/upstream/v8/src/hydrogen.cc +6011 -0
  203. data/ext/v8/upstream/v8/src/hydrogen.h +1137 -0
  204. data/ext/v8/upstream/v8/src/ia32/assembler-ia32-inl.h +430 -0
  205. data/ext/v8/upstream/v8/src/ia32/assembler-ia32.cc +2846 -0
  206. data/ext/v8/upstream/v8/src/ia32/assembler-ia32.h +1159 -0
  207. data/ext/v8/upstream/v8/src/ia32/builtins-ia32.cc +1596 -0
  208. data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.cc +6549 -0
  209. data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.h +495 -0
  210. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/codegen-ia32-inl.h +0 -0
  211. data/ext/v8/upstream/v8/src/ia32/codegen-ia32.cc +10385 -0
  212. data/ext/v8/upstream/v8/src/ia32/codegen-ia32.h +801 -0
  213. data/ext/v8/upstream/v8/src/ia32/cpu-ia32.cc +88 -0
  214. data/ext/v8/upstream/v8/src/ia32/debug-ia32.cc +312 -0
  215. data/ext/v8/upstream/v8/src/ia32/deoptimizer-ia32.cc +774 -0
  216. data/ext/v8/upstream/v8/src/ia32/disasm-ia32.cc +1620 -0
  217. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/frames-ia32.cc +0 -0
  218. data/ext/v8/upstream/v8/src/ia32/frames-ia32.h +140 -0
  219. data/ext/v8/upstream/v8/src/ia32/full-codegen-ia32.cc +4357 -0
  220. data/ext/v8/upstream/v8/src/ia32/ic-ia32.cc +1779 -0
  221. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/jump-target-ia32.cc +0 -0
  222. data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.cc +4158 -0
  223. data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.h +318 -0
  224. data/ext/v8/upstream/v8/src/ia32/lithium-gap-resolver-ia32.cc +466 -0
  225. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/lithium-gap-resolver-ia32.h +0 -0
  226. data/ext/v8/upstream/v8/src/ia32/lithium-ia32.cc +2181 -0
  227. data/ext/v8/upstream/v8/src/ia32/lithium-ia32.h +2235 -0
  228. data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.cc +2056 -0
  229. data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.h +807 -0
  230. data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.cc +1264 -0
  231. data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
  232. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  233. data/ext/v8/upstream/v8/src/ia32/register-allocator-ia32.cc +157 -0
  234. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32.h +0 -0
  235. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/simulator-ia32.cc +0 -0
  236. data/ext/v8/upstream/v8/src/ia32/simulator-ia32.h +72 -0
  237. data/ext/v8/upstream/v8/src/ia32/stub-cache-ia32.cc +3711 -0
  238. data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.cc +1366 -0
  239. data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.h +650 -0
  240. data/ext/v8/upstream/v8/src/ic-inl.h +130 -0
  241. data/ext/v8/upstream/v8/src/ic.cc +2389 -0
  242. data/ext/v8/upstream/v8/src/ic.h +675 -0
  243. data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.cc +0 -0
  244. data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.h +0 -0
  245. data/ext/v8/upstream/v8/src/interpreter-irregexp.cc +659 -0
  246. data/ext/v8/upstream/v8/src/interpreter-irregexp.h +49 -0
  247. data/ext/v8/upstream/v8/src/isolate.cc +883 -0
  248. data/ext/v8/upstream/v8/src/isolate.h +1306 -0
  249. data/ext/v8/upstream/v8/src/json.js +342 -0
  250. data/ext/v8/upstream/v8/src/jsregexp.cc +5371 -0
  251. data/ext/v8/upstream/v8/src/jsregexp.h +1483 -0
  252. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-heavy-inl.h +0 -0
  253. data/ext/v8/upstream/v8/src/jump-target-heavy.cc +427 -0
  254. data/ext/v8/upstream/v8/src/jump-target-heavy.h +238 -0
  255. data/ext/v8/upstream/v8/src/jump-target-inl.h +48 -0
  256. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light-inl.h +0 -0
  257. data/ext/v8/upstream/v8/src/jump-target-light.cc +111 -0
  258. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light.h +0 -0
  259. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.cc +0 -0
  260. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.h +0 -0
  261. data/ext/v8/upstream/{3.1.8 → v8}/src/list-inl.h +0 -0
  262. data/ext/v8/upstream/{3.1.8 → v8}/src/list.h +0 -0
  263. data/ext/v8/upstream/v8/src/lithium-allocator-inl.h +142 -0
  264. data/ext/v8/upstream/v8/src/lithium-allocator.cc +2105 -0
  265. data/ext/v8/upstream/v8/src/lithium-allocator.h +630 -0
  266. data/ext/v8/upstream/v8/src/lithium.cc +169 -0
  267. data/ext/v8/upstream/{3.1.8 → v8}/src/lithium.h +0 -0
  268. data/ext/v8/upstream/{3.1.8 → v8}/src/liveedit-debugger.js +0 -0
  269. data/ext/v8/upstream/v8/src/liveedit.cc +1693 -0
  270. data/ext/v8/upstream/v8/src/liveedit.h +179 -0
  271. data/ext/v8/upstream/{3.1.8 → v8}/src/liveobjectlist-inl.h +0 -0
  272. data/ext/v8/upstream/v8/src/liveobjectlist.cc +2589 -0
  273. data/ext/v8/upstream/v8/src/liveobjectlist.h +322 -0
  274. data/ext/v8/upstream/{3.1.8 → v8}/src/log-inl.h +0 -0
  275. data/ext/v8/upstream/v8/src/log-utils.cc +423 -0
  276. data/ext/v8/upstream/v8/src/log-utils.h +229 -0
  277. data/ext/v8/upstream/v8/src/log.cc +1666 -0
  278. data/ext/v8/upstream/v8/src/log.h +446 -0
  279. data/ext/v8/upstream/{3.1.8 → v8}/src/macro-assembler.h +0 -0
  280. data/ext/v8/upstream/{3.1.8 → v8}/src/macros.py +0 -0
  281. data/ext/v8/upstream/v8/src/mark-compact.cc +3092 -0
  282. data/ext/v8/upstream/v8/src/mark-compact.h +506 -0
  283. data/ext/v8/upstream/{3.1.8 → v8}/src/math.js +0 -0
  284. data/ext/v8/upstream/v8/src/messages.cc +166 -0
  285. data/ext/v8/upstream/{3.1.8 → v8}/src/messages.h +0 -0
  286. data/ext/v8/upstream/v8/src/messages.js +1090 -0
  287. data/ext/v8/upstream/v8/src/mips/assembler-mips-inl.h +335 -0
  288. data/ext/v8/upstream/v8/src/mips/assembler-mips.cc +2093 -0
  289. data/ext/v8/upstream/v8/src/mips/assembler-mips.h +1066 -0
  290. data/ext/v8/upstream/v8/src/mips/builtins-mips.cc +148 -0
  291. data/ext/v8/upstream/v8/src/mips/code-stubs-mips.cc +752 -0
  292. data/ext/v8/upstream/v8/src/mips/code-stubs-mips.h +511 -0
  293. data/ext/v8/upstream/v8/src/mips/codegen-mips-inl.h +64 -0
  294. data/ext/v8/upstream/v8/src/mips/codegen-mips.cc +1213 -0
  295. data/ext/v8/upstream/v8/src/mips/codegen-mips.h +633 -0
  296. data/ext/v8/upstream/v8/src/mips/constants-mips.cc +352 -0
  297. data/ext/v8/upstream/v8/src/mips/constants-mips.h +723 -0
  298. data/ext/v8/upstream/v8/src/mips/cpu-mips.cc +90 -0
  299. data/ext/v8/upstream/v8/src/mips/debug-mips.cc +155 -0
  300. data/ext/v8/upstream/v8/src/mips/deoptimizer-mips.cc +91 -0
  301. data/ext/v8/upstream/v8/src/mips/disasm-mips.cc +1023 -0
  302. data/ext/v8/upstream/v8/src/mips/frames-mips.cc +48 -0
  303. data/ext/v8/upstream/v8/src/mips/frames-mips.h +179 -0
  304. data/ext/v8/upstream/v8/src/mips/full-codegen-mips.cc +727 -0
  305. data/ext/v8/upstream/v8/src/mips/ic-mips.cc +244 -0
  306. data/ext/v8/upstream/v8/src/mips/jump-target-mips.cc +80 -0
  307. data/ext/v8/upstream/v8/src/mips/lithium-codegen-mips.h +65 -0
  308. data/ext/v8/upstream/v8/src/mips/lithium-mips.h +304 -0
  309. data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.cc +3327 -0
  310. data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.h +1058 -0
  311. data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
  312. data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
  313. data/ext/v8/upstream/v8/src/mips/register-allocator-mips-inl.h +134 -0
  314. data/ext/v8/upstream/{3.1.8 → v8}/src/mips/register-allocator-mips.cc +0 -0
  315. data/ext/v8/upstream/v8/src/mips/register-allocator-mips.h +47 -0
  316. data/ext/v8/upstream/v8/src/mips/simulator-mips.cc +2438 -0
  317. data/ext/v8/upstream/v8/src/mips/simulator-mips.h +394 -0
  318. data/ext/v8/upstream/v8/src/mips/stub-cache-mips.cc +601 -0
  319. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips-inl.h +58 -0
  320. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.cc +307 -0
  321. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.h +530 -0
  322. data/ext/v8/upstream/v8/src/mirror-debugger.js +2381 -0
  323. data/ext/v8/upstream/v8/src/mksnapshot.cc +256 -0
  324. data/ext/v8/upstream/{3.1.8 → v8}/src/natives.h +0 -0
  325. data/ext/v8/upstream/v8/src/objects-debug.cc +722 -0
  326. data/ext/v8/upstream/v8/src/objects-inl.h +4166 -0
  327. data/ext/v8/upstream/v8/src/objects-printer.cc +801 -0
  328. data/ext/v8/upstream/v8/src/objects-visiting.cc +142 -0
  329. data/ext/v8/upstream/v8/src/objects-visiting.h +422 -0
  330. data/ext/v8/upstream/v8/src/objects.cc +10296 -0
  331. data/ext/v8/upstream/v8/src/objects.h +6662 -0
  332. data/ext/v8/upstream/v8/src/parser.cc +5168 -0
  333. data/ext/v8/upstream/v8/src/parser.h +823 -0
  334. data/ext/v8/upstream/v8/src/platform-cygwin.cc +811 -0
  335. data/ext/v8/upstream/v8/src/platform-freebsd.cc +854 -0
  336. data/ext/v8/upstream/v8/src/platform-linux.cc +1120 -0
  337. data/ext/v8/upstream/v8/src/platform-macos.cc +865 -0
  338. data/ext/v8/upstream/v8/src/platform-nullos.cc +504 -0
  339. data/ext/v8/upstream/v8/src/platform-openbsd.cc +672 -0
  340. data/ext/v8/upstream/v8/src/platform-posix.cc +424 -0
  341. data/ext/v8/upstream/v8/src/platform-solaris.cc +796 -0
  342. data/ext/v8/upstream/v8/src/platform-tls-mac.h +62 -0
  343. data/ext/v8/upstream/v8/src/platform-tls-win32.h +62 -0
  344. data/ext/v8/upstream/v8/src/platform-tls.h +50 -0
  345. data/ext/v8/upstream/v8/src/platform-win32.cc +2072 -0
  346. data/ext/v8/upstream/v8/src/platform.h +693 -0
  347. data/ext/v8/upstream/v8/src/preparse-data.cc +185 -0
  348. data/ext/v8/upstream/{3.1.8 → v8}/src/preparse-data.h +0 -0
  349. data/ext/v8/upstream/v8/src/preparser-api.cc +219 -0
  350. data/ext/v8/upstream/v8/src/preparser.cc +1205 -0
  351. data/ext/v8/upstream/{3.1.8 → v8}/src/preparser.h +0 -0
  352. data/ext/v8/upstream/v8/src/prettyprinter.cc +1530 -0
  353. data/ext/v8/upstream/v8/src/prettyprinter.h +223 -0
  354. data/ext/v8/upstream/{3.1.8 → v8}/src/profile-generator-inl.h +0 -0
  355. data/ext/v8/upstream/v8/src/profile-generator.cc +3095 -0
  356. data/ext/v8/upstream/v8/src/profile-generator.h +1125 -0
  357. data/ext/v8/upstream/v8/src/property.cc +102 -0
  358. data/ext/v8/upstream/v8/src/property.h +348 -0
  359. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  360. data/ext/v8/upstream/v8/src/regexp-macro-assembler-irregexp.cc +470 -0
  361. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp.h +0 -0
  362. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.cc +0 -0
  363. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.h +0 -0
  364. data/ext/v8/upstream/v8/src/regexp-macro-assembler.cc +266 -0
  365. data/ext/v8/upstream/v8/src/regexp-macro-assembler.h +236 -0
  366. data/ext/v8/upstream/v8/src/regexp-stack.cc +111 -0
  367. data/ext/v8/upstream/v8/src/regexp-stack.h +147 -0
  368. data/ext/v8/upstream/v8/src/regexp.js +483 -0
  369. data/ext/v8/upstream/v8/src/register-allocator-inl.h +141 -0
  370. data/ext/v8/upstream/v8/src/register-allocator.cc +98 -0
  371. data/ext/v8/upstream/v8/src/register-allocator.h +310 -0
  372. data/ext/v8/upstream/v8/src/rewriter.cc +1024 -0
  373. data/ext/v8/upstream/{3.1.8 → v8}/src/rewriter.h +0 -0
  374. data/ext/v8/upstream/v8/src/runtime-profiler.cc +478 -0
  375. data/ext/v8/upstream/v8/src/runtime-profiler.h +192 -0
  376. data/ext/v8/upstream/v8/src/runtime.cc +11949 -0
  377. data/ext/v8/upstream/v8/src/runtime.h +643 -0
  378. data/ext/v8/upstream/{3.1.8 → v8}/src/runtime.js +0 -0
  379. data/ext/v8/upstream/v8/src/safepoint-table.cc +256 -0
  380. data/ext/v8/upstream/v8/src/safepoint-table.h +269 -0
  381. data/ext/v8/upstream/v8/src/scanner-base.cc +964 -0
  382. data/ext/v8/upstream/v8/src/scanner-base.h +664 -0
  383. data/ext/v8/upstream/v8/src/scanner.cc +584 -0
  384. data/ext/v8/upstream/v8/src/scanner.h +196 -0
  385. data/ext/v8/upstream/v8/src/scopeinfo.cc +631 -0
  386. data/ext/v8/upstream/v8/src/scopeinfo.h +249 -0
  387. data/ext/v8/upstream/v8/src/scopes.cc +1093 -0
  388. data/ext/v8/upstream/v8/src/scopes.h +508 -0
  389. data/ext/v8/upstream/v8/src/serialize.cc +1574 -0
  390. data/ext/v8/upstream/v8/src/serialize.h +589 -0
  391. data/ext/v8/upstream/{3.1.8 → v8}/src/shell.h +0 -0
  392. data/ext/v8/upstream/{3.1.8 → v8}/src/simulator.h +0 -0
  393. data/ext/v8/upstream/v8/src/small-pointer-list.h +163 -0
  394. data/ext/v8/upstream/{3.1.8 → v8}/src/smart-pointer.h +0 -0
  395. data/ext/v8/upstream/v8/src/snapshot-common.cc +82 -0
  396. data/ext/v8/upstream/{3.1.8 → v8}/src/snapshot-empty.cc +0 -0
  397. data/ext/v8/upstream/v8/src/snapshot.h +73 -0
  398. data/ext/v8/upstream/v8/src/spaces-inl.h +529 -0
  399. data/ext/v8/upstream/v8/src/spaces.cc +3147 -0
  400. data/ext/v8/upstream/v8/src/spaces.h +2368 -0
  401. data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree-inl.h +0 -0
  402. data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree.h +0 -0
  403. data/ext/v8/upstream/v8/src/string-search.cc +41 -0
  404. data/ext/v8/upstream/v8/src/string-search.h +568 -0
  405. data/ext/v8/upstream/v8/src/string-stream.cc +592 -0
  406. data/ext/v8/upstream/{3.1.8 → v8}/src/string-stream.h +0 -0
  407. data/ext/v8/upstream/v8/src/string.js +915 -0
  408. data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.cc +0 -0
  409. data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.h +0 -0
  410. data/ext/v8/upstream/v8/src/stub-cache.cc +1940 -0
  411. data/ext/v8/upstream/v8/src/stub-cache.h +866 -0
  412. data/ext/v8/upstream/{3.1.8 → v8}/src/third_party/valgrind/valgrind.h +0 -0
  413. data/ext/v8/upstream/v8/src/token.cc +63 -0
  414. data/ext/v8/upstream/v8/src/token.h +288 -0
  415. data/ext/v8/upstream/v8/src/top.cc +983 -0
  416. data/ext/v8/upstream/v8/src/type-info.cc +472 -0
  417. data/ext/v8/upstream/v8/src/type-info.h +290 -0
  418. data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue-inl.h +0 -0
  419. data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue.h +0 -0
  420. data/ext/v8/upstream/{3.1.8 → v8}/src/unicode-inl.h +0 -0
  421. data/ext/v8/upstream/v8/src/unicode.cc +1624 -0
  422. data/ext/v8/upstream/v8/src/unicode.h +280 -0
  423. data/ext/v8/upstream/{3.1.8 → v8}/src/uri.js +0 -0
  424. data/ext/v8/upstream/{3.1.8 → v8}/src/utils.cc +0 -0
  425. data/ext/v8/upstream/v8/src/utils.h +796 -0
  426. data/ext/v8/upstream/v8/src/v8-counters.cc +62 -0
  427. data/ext/v8/upstream/v8/src/v8-counters.h +311 -0
  428. data/ext/v8/upstream/v8/src/v8.cc +215 -0
  429. data/ext/v8/upstream/v8/src/v8.h +130 -0
  430. data/ext/v8/upstream/{3.1.8 → v8}/src/v8checks.h +0 -0
  431. data/ext/v8/upstream/{3.1.8 → v8}/src/v8dll-main.cc +0 -0
  432. data/ext/v8/upstream/v8/src/v8globals.h +486 -0
  433. data/ext/v8/upstream/{3.1.8/src/memory.h → v8/src/v8memory.h} +0 -0
  434. data/ext/v8/upstream/v8/src/v8natives.js +1293 -0
  435. data/ext/v8/upstream/{3.1.8 → v8}/src/v8preparserdll-main.cc +0 -0
  436. data/ext/v8/upstream/v8/src/v8threads.cc +453 -0
  437. data/ext/v8/upstream/v8/src/v8threads.h +164 -0
  438. data/ext/v8/upstream/v8/src/v8utils.h +317 -0
  439. data/ext/v8/upstream/{3.1.8 → v8}/src/variables.cc +0 -0
  440. data/ext/v8/upstream/v8/src/variables.h +212 -0
  441. data/ext/v8/upstream/v8/src/version.cc +116 -0
  442. data/ext/v8/upstream/v8/src/version.h +68 -0
  443. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy-inl.h +0 -0
  444. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy.cc +0 -0
  445. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-inl.h +0 -0
  446. data/ext/v8/upstream/v8/src/virtual-frame-light-inl.h +171 -0
  447. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-light.cc +0 -0
  448. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.cc +0 -0
  449. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.h +0 -0
  450. data/ext/v8/upstream/v8/src/vm-state-inl.h +138 -0
  451. data/ext/v8/upstream/v8/src/vm-state.h +70 -0
  452. data/ext/v8/upstream/v8/src/win32-headers.h +96 -0
  453. data/ext/v8/upstream/v8/src/x64/assembler-x64-inl.h +456 -0
  454. data/ext/v8/upstream/v8/src/x64/assembler-x64.cc +2954 -0
  455. data/ext/v8/upstream/v8/src/x64/assembler-x64.h +1630 -0
  456. data/ext/v8/upstream/v8/src/x64/builtins-x64.cc +1493 -0
  457. data/ext/v8/upstream/v8/src/x64/code-stubs-x64.cc +5132 -0
  458. data/ext/v8/upstream/v8/src/x64/code-stubs-x64.h +477 -0
  459. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/codegen-x64-inl.h +0 -0
  460. data/ext/v8/upstream/v8/src/x64/codegen-x64.cc +8843 -0
  461. data/ext/v8/upstream/v8/src/x64/codegen-x64.h +753 -0
  462. data/ext/v8/upstream/v8/src/x64/cpu-x64.cc +88 -0
  463. data/ext/v8/upstream/v8/src/x64/debug-x64.cc +318 -0
  464. data/ext/v8/upstream/v8/src/x64/deoptimizer-x64.cc +815 -0
  465. data/ext/v8/upstream/v8/src/x64/disasm-x64.cc +1752 -0
  466. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/frames-x64.cc +0 -0
  467. data/ext/v8/upstream/v8/src/x64/frames-x64.h +130 -0
  468. data/ext/v8/upstream/v8/src/x64/full-codegen-x64.cc +4339 -0
  469. data/ext/v8/upstream/v8/src/x64/ic-x64.cc +1752 -0
  470. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/jump-target-x64.cc +0 -0
  471. data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.cc +3970 -0
  472. data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.h +318 -0
  473. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.cc +0 -0
  474. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.h +0 -0
  475. data/ext/v8/upstream/v8/src/x64/lithium-x64.cc +2115 -0
  476. data/ext/v8/upstream/v8/src/x64/lithium-x64.h +2161 -0
  477. data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.cc +2911 -0
  478. data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.h +1984 -0
  479. data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
  480. data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
  481. data/ext/v8/upstream/v8/src/x64/register-allocator-x64-inl.h +87 -0
  482. data/ext/v8/upstream/v8/src/x64/register-allocator-x64.cc +95 -0
  483. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/register-allocator-x64.h +0 -0
  484. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/simulator-x64.cc +0 -0
  485. data/ext/v8/upstream/v8/src/x64/simulator-x64.h +71 -0
  486. data/ext/v8/upstream/v8/src/x64/stub-cache-x64.cc +3460 -0
  487. data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.cc +1296 -0
  488. data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.h +597 -0
  489. data/ext/v8/upstream/v8/src/zone-inl.h +129 -0
  490. data/ext/v8/upstream/v8/src/zone.cc +196 -0
  491. data/ext/v8/upstream/v8/src/zone.h +236 -0
  492. data/ext/v8/upstream/{3.1.8 → v8}/tools/codemap.js +0 -0
  493. data/ext/v8/upstream/{3.1.8 → v8}/tools/consarray.js +0 -0
  494. data/ext/v8/upstream/{3.1.8 → v8}/tools/csvparser.js +0 -0
  495. data/ext/v8/upstream/{3.1.8 → v8}/tools/disasm.py +0 -0
  496. data/ext/v8/upstream/v8/tools/freebsd-tick-processor +10 -0
  497. data/ext/v8/upstream/{3.1.8 → v8}/tools/gc-nvp-trace-processor.py +0 -0
  498. data/ext/v8/upstream/{3.1.8 → v8}/tools/generate-ten-powers.scm +0 -0
  499. data/ext/v8/upstream/{3.1.8 → v8}/tools/grokdump.py +0 -0
  500. data/ext/v8/upstream/v8/tools/gyp/v8.gyp +844 -0
  501. data/ext/v8/upstream/{3.1.8 → v8}/tools/js2c.py +0 -0
  502. data/ext/v8/upstream/{3.1.8 → v8}/tools/jsmin.py +0 -0
  503. data/ext/v8/upstream/v8/tools/linux-tick-processor +35 -0
  504. data/ext/v8/upstream/{3.1.8 → v8}/tools/ll_prof.py +0 -0
  505. data/ext/v8/upstream/{3.1.8 → v8}/tools/logreader.js +0 -0
  506. data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-nm +0 -0
  507. data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-tick-processor +0 -0
  508. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/README +0 -0
  509. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/SConstruct +0 -0
  510. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/oom_dump.cc +0 -0
  511. data/ext/v8/upstream/{3.1.8 → v8}/tools/presubmit.py +0 -0
  512. data/ext/v8/upstream/{3.1.8 → v8}/tools/process-heap-prof.py +0 -0
  513. data/ext/v8/upstream/{3.1.8 → v8}/tools/profile.js +0 -0
  514. data/ext/v8/upstream/{3.1.8 → v8}/tools/profile_view.js +0 -0
  515. data/ext/v8/upstream/{3.1.8 → v8}/tools/run-valgrind.py +0 -0
  516. data/ext/v8/upstream/{3.1.8 → v8}/tools/splaytree.js +0 -0
  517. data/ext/v8/upstream/{3.1.8 → v8}/tools/stats-viewer.py +0 -0
  518. data/ext/v8/upstream/v8/tools/test.py +1490 -0
  519. data/ext/v8/upstream/{3.1.8 → v8}/tools/tickprocessor-driver.js +0 -0
  520. data/ext/v8/upstream/v8/tools/tickprocessor.js +877 -0
  521. data/ext/v8/upstream/{3.1.8 → v8}/tools/utils.py +0 -0
  522. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/README.txt +0 -0
  523. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/arm.vsprops +0 -0
  524. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/common.vsprops +0 -0
  525. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8.vcproj +0 -0
  526. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_arm.vcproj +0 -0
  527. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_x64.vcproj +0 -0
  528. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8js2c.cmd +0 -0
  529. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/debug.vsprops +0 -0
  530. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/ia32.vsprops +0 -0
  531. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/js2c.cmd +0 -0
  532. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/release.vsprops +0 -0
  533. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.sln +0 -0
  534. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.vcproj +0 -0
  535. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.sln +0 -0
  536. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.vcproj +0 -0
  537. data/ext/v8/upstream/v8/tools/visual_studio/v8_base.vcproj +1308 -0
  538. data/ext/v8/upstream/v8/tools/visual_studio/v8_base_arm.vcproj +1238 -0
  539. data/ext/v8/upstream/v8/tools/visual_studio/v8_base_x64.vcproj +1300 -0
  540. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  541. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  542. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  543. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  544. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  545. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  546. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  547. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  548. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample.vcproj +0 -0
  549. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -0
  550. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -0
  551. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  552. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  553. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  554. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  555. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.sln +0 -0
  556. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.vcproj +0 -0
  557. data/ext/v8/upstream/v8/tools/visual_studio/x64.vsprops +18 -0
  558. data/ext/v8/upstream/{3.1.8 → v8}/tools/windows-tick-processor.bat +0 -0
  559. data/ext/v8/v8_callbacks.cpp +52 -92
  560. data/ext/v8/v8_date.cpp +2 -3
  561. data/ext/v8/v8_object.cpp +4 -0
  562. data/ext/v8/v8_template.cpp +2 -2
  563. data/ext/v8/v8_try_catch.cpp +8 -38
  564. data/lib/v8/version.rb +1 -1
  565. data/spec/ext/ext_spec_helper.rb +2 -20
  566. data/spec/ext/object_spec.rb +0 -12
  567. data/spec/ext/try_catch_spec.rb +29 -1
  568. data/spec/spec_helper.rb +1 -0
  569. data/spec/v8/portal/proxies_spec.rb +1 -84
  570. data/specmem/handle_memspec.rb +41 -0
  571. data/specmem/object_memspec.rb +16 -0
  572. data/specmem/proxies_memspec.rb +86 -0
  573. data/specmem/spec_helper.rb +24 -0
  574. data/therubyracer.gemspec +7 -2
  575. metadata +564 -541
  576. data/ext/v8/upstream/3.1.8/.gitignore +0 -31
  577. data/ext/v8/upstream/3.1.8/AUTHORS +0 -40
  578. data/ext/v8/upstream/3.1.8/ChangeLog +0 -2566
  579. data/ext/v8/upstream/3.1.8/SConstruct +0 -1192
  580. data/ext/v8/upstream/3.1.8/include/v8-debug.h +0 -384
  581. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +0 -116
  582. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +0 -426
  583. data/ext/v8/upstream/3.1.8/include/v8-testing.h +0 -99
  584. data/ext/v8/upstream/3.1.8/include/v8.h +0 -3846
  585. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +0 -206
  586. data/ext/v8/upstream/3.1.8/src/SConscript +0 -356
  587. data/ext/v8/upstream/3.1.8/src/accessors.cc +0 -907
  588. data/ext/v8/upstream/3.1.8/src/allocation.cc +0 -204
  589. data/ext/v8/upstream/3.1.8/src/allocation.h +0 -176
  590. data/ext/v8/upstream/3.1.8/src/api.cc +0 -5191
  591. data/ext/v8/upstream/3.1.8/src/api.h +0 -508
  592. data/ext/v8/upstream/3.1.8/src/apiutils.h +0 -80
  593. data/ext/v8/upstream/3.1.8/src/arguments.h +0 -105
  594. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +0 -352
  595. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +0 -2756
  596. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +0 -1294
  597. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +0 -1628
  598. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +0 -6783
  599. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +0 -657
  600. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +0 -7403
  601. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +0 -595
  602. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +0 -769
  603. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +0 -147
  604. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +0 -315
  605. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +0 -700
  606. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +0 -1439
  607. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +0 -168
  608. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +0 -4230
  609. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +0 -1799
  610. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +0 -2041
  611. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +0 -2046
  612. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +0 -3822
  613. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +0 -312
  614. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +0 -303
  615. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +0 -2701
  616. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +0 -1015
  617. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +0 -1280
  618. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +0 -252
  619. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +0 -3165
  620. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +0 -402
  621. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +0 -4077
  622. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +0 -843
  623. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +0 -520
  624. data/ext/v8/upstream/3.1.8/src/array.js +0 -1231
  625. data/ext/v8/upstream/3.1.8/src/assembler.cc +0 -973
  626. data/ext/v8/upstream/3.1.8/src/assembler.h +0 -787
  627. data/ext/v8/upstream/3.1.8/src/ast-inl.h +0 -107
  628. data/ext/v8/upstream/3.1.8/src/ast.cc +0 -1067
  629. data/ext/v8/upstream/3.1.8/src/ast.h +0 -2177
  630. data/ext/v8/upstream/3.1.8/src/atomicops.h +0 -165
  631. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +0 -1888
  632. data/ext/v8/upstream/3.1.8/src/bootstrapper.h +0 -118
  633. data/ext/v8/upstream/3.1.8/src/builtins.cc +0 -1586
  634. data/ext/v8/upstream/3.1.8/src/builtins.h +0 -339
  635. data/ext/v8/upstream/3.1.8/src/checks.cc +0 -110
  636. data/ext/v8/upstream/3.1.8/src/checks.h +0 -292
  637. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +0 -230
  638. data/ext/v8/upstream/3.1.8/src/code-stubs.h +0 -950
  639. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +0 -64
  640. data/ext/v8/upstream/3.1.8/src/codegen.cc +0 -495
  641. data/ext/v8/upstream/3.1.8/src/codegen.h +0 -245
  642. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +0 -654
  643. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +0 -112
  644. data/ext/v8/upstream/3.1.8/src/compiler.cc +0 -806
  645. data/ext/v8/upstream/3.1.8/src/compiler.h +0 -290
  646. data/ext/v8/upstream/3.1.8/src/contexts.cc +0 -320
  647. data/ext/v8/upstream/3.1.8/src/contexts.h +0 -376
  648. data/ext/v8/upstream/3.1.8/src/conversions.cc +0 -1069
  649. data/ext/v8/upstream/3.1.8/src/counters.cc +0 -78
  650. data/ext/v8/upstream/3.1.8/src/counters.h +0 -242
  651. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +0 -100
  652. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +0 -554
  653. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +0 -291
  654. data/ext/v8/upstream/3.1.8/src/cpu.h +0 -65
  655. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +0 -367
  656. data/ext/v8/upstream/3.1.8/src/d8-debug.h +0 -157
  657. data/ext/v8/upstream/3.1.8/src/d8-posix.cc +0 -693
  658. data/ext/v8/upstream/3.1.8/src/d8.cc +0 -792
  659. data/ext/v8/upstream/3.1.8/src/d8.gyp +0 -85
  660. data/ext/v8/upstream/3.1.8/src/data-flow.h +0 -379
  661. data/ext/v8/upstream/3.1.8/src/dateparser.h +0 -263
  662. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +0 -446
  663. data/ext/v8/upstream/3.1.8/src/debug-agent.h +0 -131
  664. data/ext/v8/upstream/3.1.8/src/debug.cc +0 -3085
  665. data/ext/v8/upstream/3.1.8/src/debug.h +0 -1025
  666. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +0 -1185
  667. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +0 -529
  668. data/ext/v8/upstream/3.1.8/src/disasm.h +0 -77
  669. data/ext/v8/upstream/3.1.8/src/disassembler.cc +0 -338
  670. data/ext/v8/upstream/3.1.8/src/execution.cc +0 -735
  671. data/ext/v8/upstream/3.1.8/src/execution.h +0 -322
  672. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +0 -53
  673. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +0 -264
  674. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +0 -141
  675. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +0 -58
  676. data/ext/v8/upstream/3.1.8/src/factory.cc +0 -1087
  677. data/ext/v8/upstream/3.1.8/src/factory.h +0 -432
  678. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +0 -552
  679. data/ext/v8/upstream/3.1.8/src/frame-element.cc +0 -42
  680. data/ext/v8/upstream/3.1.8/src/frame-element.h +0 -277
  681. data/ext/v8/upstream/3.1.8/src/frames-inl.h +0 -210
  682. data/ext/v8/upstream/3.1.8/src/frames.cc +0 -1232
  683. data/ext/v8/upstream/3.1.8/src/frames.h +0 -826
  684. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +0 -1382
  685. data/ext/v8/upstream/3.1.8/src/full-codegen.h +0 -751
  686. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +0 -90
  687. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +0 -111
  688. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +0 -1547
  689. data/ext/v8/upstream/3.1.8/src/global-handles.cc +0 -534
  690. data/ext/v8/upstream/3.1.8/src/global-handles.h +0 -181
  691. data/ext/v8/upstream/3.1.8/src/globals.h +0 -325
  692. data/ext/v8/upstream/3.1.8/src/handles-inl.h +0 -80
  693. data/ext/v8/upstream/3.1.8/src/handles.cc +0 -910
  694. data/ext/v8/upstream/3.1.8/src/handles.h +0 -424
  695. data/ext/v8/upstream/3.1.8/src/hashmap.h +0 -121
  696. data/ext/v8/upstream/3.1.8/src/heap-inl.h +0 -587
  697. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +0 -1128
  698. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +0 -381
  699. data/ext/v8/upstream/3.1.8/src/heap.cc +0 -5610
  700. data/ext/v8/upstream/3.1.8/src/heap.h +0 -2218
  701. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +0 -1490
  702. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +0 -3493
  703. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +0 -6056
  704. data/ext/v8/upstream/3.1.8/src/hydrogen.h +0 -1091
  705. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +0 -429
  706. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +0 -2800
  707. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +0 -1093
  708. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +0 -1590
  709. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +0 -6624
  710. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +0 -536
  711. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +0 -10354
  712. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +0 -798
  713. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +0 -87
  714. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +0 -309
  715. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +0 -664
  716. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +0 -1597
  717. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +0 -140
  718. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +0 -4278
  719. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +0 -1786
  720. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +0 -3880
  721. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +0 -309
  722. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +0 -460
  723. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +0 -2095
  724. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +0 -2127
  725. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +0 -2031
  726. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +0 -798
  727. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +0 -1253
  728. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +0 -215
  729. data/ext/v8/upstream/3.1.8/src/ia32/register-allocator-ia32.cc +0 -157
  730. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +0 -72
  731. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +0 -3732
  732. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +0 -1360
  733. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +0 -646
  734. data/ext/v8/upstream/3.1.8/src/ic-inl.h +0 -129
  735. data/ext/v8/upstream/3.1.8/src/ic.cc +0 -2333
  736. data/ext/v8/upstream/3.1.8/src/ic.h +0 -639
  737. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +0 -655
  738. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.h +0 -48
  739. data/ext/v8/upstream/3.1.8/src/json.js +0 -342
  740. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +0 -5340
  741. data/ext/v8/upstream/3.1.8/src/jsregexp.h +0 -1484
  742. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +0 -430
  743. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +0 -244
  744. data/ext/v8/upstream/3.1.8/src/jump-target-inl.h +0 -48
  745. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +0 -111
  746. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +0 -140
  747. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +0 -2093
  748. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +0 -644
  749. data/ext/v8/upstream/3.1.8/src/lithium.cc +0 -168
  750. data/ext/v8/upstream/3.1.8/src/liveedit.cc +0 -1650
  751. data/ext/v8/upstream/3.1.8/src/liveedit.h +0 -174
  752. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +0 -2527
  753. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +0 -322
  754. data/ext/v8/upstream/3.1.8/src/log-utils.cc +0 -336
  755. data/ext/v8/upstream/3.1.8/src/log-utils.h +0 -232
  756. data/ext/v8/upstream/3.1.8/src/log.cc +0 -1608
  757. data/ext/v8/upstream/3.1.8/src/log.h +0 -379
  758. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +0 -2957
  759. data/ext/v8/upstream/3.1.8/src/mark-compact.h +0 -433
  760. data/ext/v8/upstream/3.1.8/src/messages.cc +0 -164
  761. data/ext/v8/upstream/3.1.8/src/messages.js +0 -1071
  762. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips-inl.h +0 -215
  763. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.cc +0 -1219
  764. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +0 -667
  765. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +0 -205
  766. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips-inl.h +0 -70
  767. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.cc +0 -1437
  768. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +0 -431
  769. data/ext/v8/upstream/3.1.8/src/mips/constants-mips.cc +0 -328
  770. data/ext/v8/upstream/3.1.8/src/mips/constants-mips.h +0 -525
  771. data/ext/v8/upstream/3.1.8/src/mips/cpu-mips.cc +0 -73
  772. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +0 -127
  773. data/ext/v8/upstream/3.1.8/src/mips/disasm-mips.cc +0 -787
  774. data/ext/v8/upstream/3.1.8/src/mips/fast-codegen-mips.cc +0 -77
  775. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +0 -96
  776. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.h +0 -164
  777. data/ext/v8/upstream/3.1.8/src/mips/full-codegen-mips.cc +0 -277
  778. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +0 -208
  779. data/ext/v8/upstream/3.1.8/src/mips/jump-target-mips.cc +0 -175
  780. data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.cc +0 -1326
  781. data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.h +0 -461
  782. data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips-inl.h +0 -137
  783. data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips.h +0 -46
  784. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +0 -1650
  785. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +0 -311
  786. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +0 -418
  787. data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.cc +0 -319
  788. data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.h +0 -548
  789. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +0 -2380
  790. data/ext/v8/upstream/3.1.8/src/mksnapshot.cc +0 -256
  791. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +0 -722
  792. data/ext/v8/upstream/3.1.8/src/objects-inl.h +0 -3946
  793. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +0 -801
  794. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +0 -142
  795. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +0 -401
  796. data/ext/v8/upstream/3.1.8/src/objects.cc +0 -10044
  797. data/ext/v8/upstream/3.1.8/src/objects.h +0 -6571
  798. data/ext/v8/upstream/3.1.8/src/parser.cc +0 -5165
  799. data/ext/v8/upstream/3.1.8/src/parser.h +0 -802
  800. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +0 -745
  801. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +0 -702
  802. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +0 -981
  803. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +0 -732
  804. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +0 -498
  805. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +0 -657
  806. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +0 -399
  807. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +0 -714
  808. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +0 -1974
  809. data/ext/v8/upstream/3.1.8/src/platform.h +0 -636
  810. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +0 -183
  811. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +0 -213
  812. data/ext/v8/upstream/3.1.8/src/preparser.cc +0 -1205
  813. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +0 -1539
  814. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +0 -223
  815. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +0 -2899
  816. data/ext/v8/upstream/3.1.8/src/profile-generator.h +0 -1151
  817. data/ext/v8/upstream/3.1.8/src/property.cc +0 -96
  818. data/ext/v8/upstream/3.1.8/src/property.h +0 -337
  819. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +0 -470
  820. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +0 -257
  821. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +0 -231
  822. data/ext/v8/upstream/3.1.8/src/regexp-stack.cc +0 -103
  823. data/ext/v8/upstream/3.1.8/src/regexp-stack.h +0 -123
  824. data/ext/v8/upstream/3.1.8/src/regexp.js +0 -483
  825. data/ext/v8/upstream/3.1.8/src/register-allocator-inl.h +0 -141
  826. data/ext/v8/upstream/3.1.8/src/register-allocator.cc +0 -104
  827. data/ext/v8/upstream/3.1.8/src/register-allocator.h +0 -320
  828. data/ext/v8/upstream/3.1.8/src/rewriter.cc +0 -1023
  829. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +0 -443
  830. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +0 -77
  831. data/ext/v8/upstream/3.1.8/src/runtime.cc +0 -11592
  832. data/ext/v8/upstream/3.1.8/src/runtime.h +0 -582
  833. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +0 -253
  834. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +0 -263
  835. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +0 -971
  836. data/ext/v8/upstream/3.1.8/src/scanner-base.h +0 -653
  837. data/ext/v8/upstream/3.1.8/src/scanner.cc +0 -586
  838. data/ext/v8/upstream/3.1.8/src/scanner.h +0 -194
  839. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +0 -636
  840. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +0 -238
  841. data/ext/v8/upstream/3.1.8/src/scopes.cc +0 -1063
  842. data/ext/v8/upstream/3.1.8/src/scopes.h +0 -494
  843. data/ext/v8/upstream/3.1.8/src/serialize.cc +0 -1535
  844. data/ext/v8/upstream/3.1.8/src/serialize.h +0 -584
  845. data/ext/v8/upstream/3.1.8/src/snapshot-common.cc +0 -82
  846. data/ext/v8/upstream/3.1.8/src/snapshot.h +0 -71
  847. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +0 -524
  848. data/ext/v8/upstream/3.1.8/src/spaces.cc +0 -3254
  849. data/ext/v8/upstream/3.1.8/src/spaces.h +0 -2362
  850. data/ext/v8/upstream/3.1.8/src/string-search.cc +0 -40
  851. data/ext/v8/upstream/3.1.8/src/string-search.h +0 -567
  852. data/ext/v8/upstream/3.1.8/src/string-stream.cc +0 -584
  853. data/ext/v8/upstream/3.1.8/src/string.js +0 -915
  854. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +0 -1878
  855. data/ext/v8/upstream/3.1.8/src/stub-cache.h +0 -849
  856. data/ext/v8/upstream/3.1.8/src/token.cc +0 -63
  857. data/ext/v8/upstream/3.1.8/src/token.h +0 -288
  858. data/ext/v8/upstream/3.1.8/src/top.cc +0 -1152
  859. data/ext/v8/upstream/3.1.8/src/top.h +0 -608
  860. data/ext/v8/upstream/3.1.8/src/type-info.cc +0 -406
  861. data/ext/v8/upstream/3.1.8/src/type-info.h +0 -283
  862. data/ext/v8/upstream/3.1.8/src/unicode.cc +0 -1624
  863. data/ext/v8/upstream/3.1.8/src/unicode.h +0 -280
  864. data/ext/v8/upstream/3.1.8/src/utils.h +0 -793
  865. data/ext/v8/upstream/3.1.8/src/v8-counters.cc +0 -55
  866. data/ext/v8/upstream/3.1.8/src/v8-counters.h +0 -290
  867. data/ext/v8/upstream/3.1.8/src/v8.cc +0 -270
  868. data/ext/v8/upstream/3.1.8/src/v8.h +0 -127
  869. data/ext/v8/upstream/3.1.8/src/v8globals.h +0 -480
  870. data/ext/v8/upstream/3.1.8/src/v8natives.js +0 -1252
  871. data/ext/v8/upstream/3.1.8/src/v8threads.cc +0 -440
  872. data/ext/v8/upstream/3.1.8/src/v8threads.h +0 -157
  873. data/ext/v8/upstream/3.1.8/src/v8utils.h +0 -354
  874. data/ext/v8/upstream/3.1.8/src/variables.h +0 -212
  875. data/ext/v8/upstream/3.1.8/src/version.cc +0 -95
  876. data/ext/v8/upstream/3.1.8/src/version.h +0 -64
  877. data/ext/v8/upstream/3.1.8/src/virtual-frame-light-inl.h +0 -170
  878. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +0 -134
  879. data/ext/v8/upstream/3.1.8/src/vm-state.h +0 -68
  880. data/ext/v8/upstream/3.1.8/src/win32-headers.h +0 -95
  881. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +0 -455
  882. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +0 -3162
  883. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +0 -1584
  884. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +0 -1492
  885. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +0 -5150
  886. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +0 -519
  887. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +0 -8835
  888. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +0 -750
  889. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +0 -86
  890. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +0 -316
  891. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +0 -781
  892. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +0 -1737
  893. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +0 -130
  894. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +0 -3984
  895. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +0 -1761
  896. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +0 -3639
  897. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +0 -305
  898. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +0 -2044
  899. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +0 -2052
  900. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +0 -2660
  901. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +0 -1852
  902. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +0 -1382
  903. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +0 -278
  904. data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64-inl.h +0 -87
  905. data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64.cc +0 -91
  906. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +0 -71
  907. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +0 -3509
  908. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +0 -1292
  909. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +0 -593
  910. data/ext/v8/upstream/3.1.8/src/zone-inl.h +0 -83
  911. data/ext/v8/upstream/3.1.8/src/zone.cc +0 -195
  912. data/ext/v8/upstream/3.1.8/src/zone.h +0 -233
  913. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +0 -869
  914. data/ext/v8/upstream/3.1.8/tools/linux-tick-processor +0 -33
  915. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +0 -863
  916. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +0 -1296
  917. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +0 -1234
  918. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +0 -1296
  919. data/ext/v8/upstream/3.1.8/tools/visual_studio/x64.vsprops +0 -17
  920. data/spec/ext/mem_spec.rb +0 -42
@@ -1,1382 +0,0 @@
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 "serialize.h"
33
- #include "unicode.h"
34
- #include "log.h"
35
- #include "regexp-stack.h"
36
- #include "macro-assembler.h"
37
- #include "regexp-macro-assembler.h"
38
- #include "x64/regexp-macro-assembler-x64.h"
39
-
40
- namespace v8 {
41
- namespace internal {
42
-
43
- #ifndef V8_INTERPRETED_REGEXP
44
-
45
- /*
46
- * This assembler uses the following register assignment convention
47
- * - rdx : currently loaded character(s) as ASCII or UC16. Must be loaded using
48
- * LoadCurrentCharacter before using any of the dispatch methods.
49
- * - rdi : current position in input, as negative offset from end of string.
50
- * Please notice that this is the byte offset, not the character
51
- * offset! Is always a 32-bit signed (negative) offset, but must be
52
- * maintained sign-extended to 64 bits, since it is used as index.
53
- * - rsi : end of input (points to byte after last character in input),
54
- * so that rsi+rdi points to the current character.
55
- * - rbp : frame pointer. Used to access arguments, local variables and
56
- * RegExp registers.
57
- * - rsp : points to tip of C stack.
58
- * - rcx : points to tip of backtrack stack. The backtrack stack contains
59
- * only 32-bit values. Most are offsets from some base (e.g., character
60
- * positions from end of string or code location from Code* pointer).
61
- * - r8 : code object pointer. Used to convert between absolute and
62
- * code-object-relative addresses.
63
- *
64
- * The registers rax, rbx, r9 and r11 are free to use for computations.
65
- * If changed to use r12+, they should be saved as callee-save registers.
66
- *
67
- * Each call to a C++ method should retain these registers.
68
- *
69
- * The stack will have the following content, in some order, indexable from the
70
- * frame pointer (see, e.g., kStackHighEnd):
71
- * - direct_call (if 1, direct call from JavaScript code, if 0 call
72
- * through the runtime system)
73
- * - stack_area_base (High end of the memory area to use as
74
- * backtracking stack)
75
- * - int* capture_array (int[num_saved_registers_], for output).
76
- * - end of input (Address of end of string)
77
- * - start of input (Address of first character in string)
78
- * - start index (character index of start)
79
- * - String* input_string (input string)
80
- * - return address
81
- * - backup of callee save registers (rbx, possibly rsi and rdi).
82
- * - Offset of location before start of input (effectively character
83
- * position -1). Used to initialize capture registers to a non-position.
84
- * - At start of string (if 1, we are starting at the start of the
85
- * string, otherwise 0)
86
- * - register 0 rbp[-n] (Only positions must be stored in the first
87
- * - register 1 rbp[-n-8] num_saved_registers_ registers)
88
- * - ...
89
- *
90
- * The first num_saved_registers_ registers are initialized to point to
91
- * "character -1" in the string (i.e., char_size() bytes before the first
92
- * character of the string). The remaining registers starts out uninitialized.
93
- *
94
- * The first seven values must be provided by the calling code by
95
- * calling the code's entry address cast to a function pointer with the
96
- * following signature:
97
- * int (*match)(String* input_string,
98
- * int start_index,
99
- * Address start,
100
- * Address end,
101
- * int* capture_output_array,
102
- * bool at_start,
103
- * byte* stack_area_base,
104
- * bool direct_call)
105
- */
106
-
107
- #define __ ACCESS_MASM(masm_)
108
-
109
- RegExpMacroAssemblerX64::RegExpMacroAssemblerX64(
110
- Mode mode,
111
- int registers_to_save)
112
- : masm_(new MacroAssembler(NULL, kRegExpCodeSize)),
113
- code_relative_fixup_positions_(4),
114
- mode_(mode),
115
- num_registers_(registers_to_save),
116
- num_saved_registers_(registers_to_save),
117
- entry_label_(),
118
- start_label_(),
119
- success_label_(),
120
- backtrack_label_(),
121
- exit_label_() {
122
- ASSERT_EQ(0, registers_to_save % 2);
123
- __ jmp(&entry_label_); // We'll write the entry code when we know more.
124
- __ bind(&start_label_); // And then continue from here.
125
- }
126
-
127
-
128
- RegExpMacroAssemblerX64::~RegExpMacroAssemblerX64() {
129
- delete masm_;
130
- // Unuse labels in case we throw away the assembler without calling GetCode.
131
- entry_label_.Unuse();
132
- start_label_.Unuse();
133
- success_label_.Unuse();
134
- backtrack_label_.Unuse();
135
- exit_label_.Unuse();
136
- check_preempt_label_.Unuse();
137
- stack_overflow_label_.Unuse();
138
- }
139
-
140
-
141
- int RegExpMacroAssemblerX64::stack_limit_slack() {
142
- return RegExpStack::kStackLimitSlack;
143
- }
144
-
145
-
146
- void RegExpMacroAssemblerX64::AdvanceCurrentPosition(int by) {
147
- if (by != 0) {
148
- __ addq(rdi, Immediate(by * char_size()));
149
- }
150
- }
151
-
152
-
153
- void RegExpMacroAssemblerX64::AdvanceRegister(int reg, int by) {
154
- ASSERT(reg >= 0);
155
- ASSERT(reg < num_registers_);
156
- if (by != 0) {
157
- __ addq(register_location(reg), Immediate(by));
158
- }
159
- }
160
-
161
-
162
- void RegExpMacroAssemblerX64::Backtrack() {
163
- CheckPreemption();
164
- // Pop Code* offset from backtrack stack, add Code* and jump to location.
165
- Pop(rbx);
166
- __ addq(rbx, code_object_pointer());
167
- __ jmp(rbx);
168
- }
169
-
170
-
171
- void RegExpMacroAssemblerX64::Bind(Label* label) {
172
- __ bind(label);
173
- }
174
-
175
-
176
- void RegExpMacroAssemblerX64::CheckCharacter(uint32_t c, Label* on_equal) {
177
- __ cmpl(current_character(), Immediate(c));
178
- BranchOrBacktrack(equal, on_equal);
179
- }
180
-
181
-
182
- void RegExpMacroAssemblerX64::CheckCharacterGT(uc16 limit, Label* on_greater) {
183
- __ cmpl(current_character(), Immediate(limit));
184
- BranchOrBacktrack(greater, on_greater);
185
- }
186
-
187
-
188
- void RegExpMacroAssemblerX64::CheckAtStart(Label* on_at_start) {
189
- Label not_at_start;
190
- // Did we start the match at the start of the string at all?
191
- __ cmpb(Operand(rbp, kStartIndex), Immediate(0));
192
- BranchOrBacktrack(not_equal, &not_at_start);
193
- // If we did, are we still at the start of the input?
194
- __ lea(rax, Operand(rsi, rdi, times_1, 0));
195
- __ cmpq(rax, Operand(rbp, kInputStart));
196
- BranchOrBacktrack(equal, on_at_start);
197
- __ bind(&not_at_start);
198
- }
199
-
200
-
201
- void RegExpMacroAssemblerX64::CheckNotAtStart(Label* on_not_at_start) {
202
- // Did we start the match at the start of the string at all?
203
- __ cmpb(Operand(rbp, kStartIndex), Immediate(0));
204
- BranchOrBacktrack(not_equal, on_not_at_start);
205
- // If we did, are we still at the start of the input?
206
- __ lea(rax, Operand(rsi, rdi, times_1, 0));
207
- __ cmpq(rax, Operand(rbp, kInputStart));
208
- BranchOrBacktrack(not_equal, on_not_at_start);
209
- }
210
-
211
-
212
- void RegExpMacroAssemblerX64::CheckCharacterLT(uc16 limit, Label* on_less) {
213
- __ cmpl(current_character(), Immediate(limit));
214
- BranchOrBacktrack(less, on_less);
215
- }
216
-
217
-
218
- void RegExpMacroAssemblerX64::CheckCharacters(Vector<const uc16> str,
219
- int cp_offset,
220
- Label* on_failure,
221
- bool check_end_of_string) {
222
- #ifdef DEBUG
223
- // If input is ASCII, don't even bother calling here if the string to
224
- // match contains a non-ascii character.
225
- if (mode_ == ASCII) {
226
- ASSERT(String::IsAscii(str.start(), str.length()));
227
- }
228
- #endif
229
- int byte_length = str.length() * char_size();
230
- int byte_offset = cp_offset * char_size();
231
- if (check_end_of_string) {
232
- // Check that there are at least str.length() characters left in the input.
233
- __ cmpl(rdi, Immediate(-(byte_offset + byte_length)));
234
- BranchOrBacktrack(greater, on_failure);
235
- }
236
-
237
- if (on_failure == NULL) {
238
- // Instead of inlining a backtrack, (re)use the global backtrack target.
239
- on_failure = &backtrack_label_;
240
- }
241
-
242
- // Do one character test first to minimize loading for the case that
243
- // we don't match at all (loading more than one character introduces that
244
- // chance of reading unaligned and reading across cache boundaries).
245
- // If the first character matches, expect a larger chance of matching the
246
- // string, and start loading more characters at a time.
247
- if (mode_ == ASCII) {
248
- __ cmpb(Operand(rsi, rdi, times_1, byte_offset),
249
- Immediate(static_cast<int8_t>(str[0])));
250
- } else {
251
- // Don't use 16-bit immediate. The size changing prefix throws off
252
- // pre-decoding.
253
- __ movzxwl(rax,
254
- Operand(rsi, rdi, times_1, byte_offset));
255
- __ cmpl(rax, Immediate(static_cast<int32_t>(str[0])));
256
- }
257
- BranchOrBacktrack(not_equal, on_failure);
258
-
259
- __ lea(rbx, Operand(rsi, rdi, times_1, 0));
260
- for (int i = 1, n = str.length(); i < n; ) {
261
- if (mode_ == ASCII) {
262
- if (i + 8 <= n) {
263
- uint64_t combined_chars =
264
- (static_cast<uint64_t>(str[i + 0]) << 0) ||
265
- (static_cast<uint64_t>(str[i + 1]) << 8) ||
266
- (static_cast<uint64_t>(str[i + 2]) << 16) ||
267
- (static_cast<uint64_t>(str[i + 3]) << 24) ||
268
- (static_cast<uint64_t>(str[i + 4]) << 32) ||
269
- (static_cast<uint64_t>(str[i + 5]) << 40) ||
270
- (static_cast<uint64_t>(str[i + 6]) << 48) ||
271
- (static_cast<uint64_t>(str[i + 7]) << 56);
272
- __ movq(rax, combined_chars, RelocInfo::NONE);
273
- __ cmpq(rax, Operand(rbx, byte_offset + i));
274
- i += 8;
275
- } else if (i + 4 <= n) {
276
- uint32_t combined_chars =
277
- (static_cast<uint32_t>(str[i + 0]) << 0) ||
278
- (static_cast<uint32_t>(str[i + 1]) << 8) ||
279
- (static_cast<uint32_t>(str[i + 2]) << 16) ||
280
- (static_cast<uint32_t>(str[i + 3]) << 24);
281
- __ cmpl(Operand(rbx, byte_offset + i), Immediate(combined_chars));
282
- i += 4;
283
- } else {
284
- __ cmpb(Operand(rbx, byte_offset + i),
285
- Immediate(static_cast<int8_t>(str[i])));
286
- i++;
287
- }
288
- } else {
289
- ASSERT(mode_ == UC16);
290
- if (i + 4 <= n) {
291
- uint64_t combined_chars = *reinterpret_cast<const uint64_t*>(&str[i]);
292
- __ movq(rax, combined_chars, RelocInfo::NONE);
293
- __ cmpq(rax,
294
- Operand(rsi, rdi, times_1, byte_offset + i * sizeof(uc16)));
295
- i += 4;
296
- } else if (i + 2 <= n) {
297
- uint32_t combined_chars = *reinterpret_cast<const uint32_t*>(&str[i]);
298
- __ cmpl(Operand(rsi, rdi, times_1, byte_offset + i * sizeof(uc16)),
299
- Immediate(combined_chars));
300
- i += 2;
301
- } else {
302
- __ movzxwl(rax,
303
- Operand(rsi, rdi, times_1, byte_offset + i * sizeof(uc16)));
304
- __ cmpl(rax, Immediate(str[i]));
305
- i++;
306
- }
307
- }
308
- BranchOrBacktrack(not_equal, on_failure);
309
- }
310
- }
311
-
312
-
313
- void RegExpMacroAssemblerX64::CheckGreedyLoop(Label* on_equal) {
314
- Label fallthrough;
315
- __ cmpl(rdi, Operand(backtrack_stackpointer(), 0));
316
- __ j(not_equal, &fallthrough);
317
- Drop();
318
- BranchOrBacktrack(no_condition, on_equal);
319
- __ bind(&fallthrough);
320
- }
321
-
322
-
323
- void RegExpMacroAssemblerX64::CheckNotBackReferenceIgnoreCase(
324
- int start_reg,
325
- Label* on_no_match) {
326
- Label fallthrough;
327
- __ movq(rdx, register_location(start_reg)); // Offset of start of capture
328
- __ movq(rbx, register_location(start_reg + 1)); // Offset of end of capture
329
- __ subq(rbx, rdx); // Length of capture.
330
-
331
- // -----------------------
332
- // rdx = Start offset of capture.
333
- // rbx = Length of capture
334
-
335
- // If length is negative, this code will fail (it's a symptom of a partial or
336
- // illegal capture where start of capture after end of capture).
337
- // This must not happen (no back-reference can reference a capture that wasn't
338
- // closed before in the reg-exp, and we must not generate code that can cause
339
- // this condition).
340
-
341
- // If length is zero, either the capture is empty or it is nonparticipating.
342
- // In either case succeed immediately.
343
- __ j(equal, &fallthrough);
344
-
345
- if (mode_ == ASCII) {
346
- Label loop_increment;
347
- if (on_no_match == NULL) {
348
- on_no_match = &backtrack_label_;
349
- }
350
-
351
- __ lea(r9, Operand(rsi, rdx, times_1, 0));
352
- __ lea(r11, Operand(rsi, rdi, times_1, 0));
353
- __ addq(rbx, r9); // End of capture
354
- // ---------------------
355
- // r11 - current input character address
356
- // r9 - current capture character address
357
- // rbx - end of capture
358
-
359
- Label loop;
360
- __ bind(&loop);
361
- __ movzxbl(rdx, Operand(r9, 0));
362
- __ movzxbl(rax, Operand(r11, 0));
363
- // al - input character
364
- // dl - capture character
365
- __ cmpb(rax, rdx);
366
- __ j(equal, &loop_increment);
367
-
368
- // Mismatch, try case-insensitive match (converting letters to lower-case).
369
- // I.e., if or-ing with 0x20 makes values equal and in range 'a'-'z', it's
370
- // a match.
371
- __ or_(rax, Immediate(0x20)); // Convert match character to lower-case.
372
- __ or_(rdx, Immediate(0x20)); // Convert capture character to lower-case.
373
- __ cmpb(rax, rdx);
374
- __ j(not_equal, on_no_match); // Definitely not equal.
375
- __ subb(rax, Immediate('a'));
376
- __ cmpb(rax, Immediate('z' - 'a'));
377
- __ j(above, on_no_match); // Weren't letters anyway.
378
-
379
- __ bind(&loop_increment);
380
- // Increment pointers into match and capture strings.
381
- __ addq(r11, Immediate(1));
382
- __ addq(r9, Immediate(1));
383
- // Compare to end of capture, and loop if not done.
384
- __ cmpq(r9, rbx);
385
- __ j(below, &loop);
386
-
387
- // Compute new value of character position after the matched part.
388
- __ movq(rdi, r11);
389
- __ subq(rdi, rsi);
390
- } else {
391
- ASSERT(mode_ == UC16);
392
- // Save important/volatile registers before calling C function.
393
- #ifndef _WIN64
394
- // Caller save on Linux and callee save in Windows.
395
- __ push(rsi);
396
- __ push(rdi);
397
- #endif
398
- __ push(backtrack_stackpointer());
399
-
400
- static const int num_arguments = 3;
401
- __ PrepareCallCFunction(num_arguments);
402
-
403
- // Put arguments into parameter registers. Parameters are
404
- // Address byte_offset1 - Address captured substring's start.
405
- // Address byte_offset2 - Address of current character position.
406
- // size_t byte_length - length of capture in bytes(!)
407
- #ifdef _WIN64
408
- // Compute and set byte_offset1 (start of capture).
409
- __ lea(rcx, Operand(rsi, rdx, times_1, 0));
410
- // Set byte_offset2.
411
- __ lea(rdx, Operand(rsi, rdi, times_1, 0));
412
- // Set byte_length.
413
- __ movq(r8, rbx);
414
- #else // AMD64 calling convention
415
- // Compute byte_offset2 (current position = rsi+rdi).
416
- __ lea(rax, Operand(rsi, rdi, times_1, 0));
417
- // Compute and set byte_offset1 (start of capture).
418
- __ lea(rdi, Operand(rsi, rdx, times_1, 0));
419
- // Set byte_offset2.
420
- __ movq(rsi, rax);
421
- // Set byte_length.
422
- __ movq(rdx, rbx);
423
- #endif
424
- ExternalReference compare =
425
- ExternalReference::re_case_insensitive_compare_uc16();
426
- __ CallCFunction(compare, num_arguments);
427
-
428
- // Restore original values before reacting on result value.
429
- __ Move(code_object_pointer(), masm_->CodeObject());
430
- __ pop(backtrack_stackpointer());
431
- #ifndef _WIN64
432
- __ pop(rdi);
433
- __ pop(rsi);
434
- #endif
435
-
436
- // Check if function returned non-zero for success or zero for failure.
437
- __ testq(rax, rax);
438
- BranchOrBacktrack(zero, on_no_match);
439
- // On success, increment position by length of capture.
440
- // Requires that rbx is callee save (true for both Win64 and AMD64 ABIs).
441
- __ addq(rdi, rbx);
442
- }
443
- __ bind(&fallthrough);
444
- }
445
-
446
-
447
- void RegExpMacroAssemblerX64::CheckNotBackReference(
448
- int start_reg,
449
- Label* on_no_match) {
450
- Label fallthrough;
451
-
452
- // Find length of back-referenced capture.
453
- __ movq(rdx, register_location(start_reg));
454
- __ movq(rax, register_location(start_reg + 1));
455
- __ subq(rax, rdx); // Length to check.
456
-
457
- // Fail on partial or illegal capture (start of capture after end of capture).
458
- // This must not happen (no back-reference can reference a capture that wasn't
459
- // closed before in the reg-exp).
460
- __ Check(greater_equal, "Invalid capture referenced");
461
-
462
- // Succeed on empty capture (including non-participating capture)
463
- __ j(equal, &fallthrough);
464
-
465
- // -----------------------
466
- // rdx - Start of capture
467
- // rax - length of capture
468
-
469
- // Check that there are sufficient characters left in the input.
470
- __ movl(rbx, rdi);
471
- __ addl(rbx, rax);
472
- BranchOrBacktrack(greater, on_no_match);
473
-
474
- // Compute pointers to match string and capture string
475
- __ lea(rbx, Operand(rsi, rdi, times_1, 0)); // Start of match.
476
- __ addq(rdx, rsi); // Start of capture.
477
- __ lea(r9, Operand(rdx, rax, times_1, 0)); // End of capture
478
-
479
- // -----------------------
480
- // rbx - current capture character address.
481
- // rbx - current input character address .
482
- // r9 - end of input to match (capture length after rbx).
483
-
484
- Label loop;
485
- __ bind(&loop);
486
- if (mode_ == ASCII) {
487
- __ movzxbl(rax, Operand(rdx, 0));
488
- __ cmpb(rax, Operand(rbx, 0));
489
- } else {
490
- ASSERT(mode_ == UC16);
491
- __ movzxwl(rax, Operand(rdx, 0));
492
- __ cmpw(rax, Operand(rbx, 0));
493
- }
494
- BranchOrBacktrack(not_equal, on_no_match);
495
- // Increment pointers into capture and match string.
496
- __ addq(rbx, Immediate(char_size()));
497
- __ addq(rdx, Immediate(char_size()));
498
- // Check if we have reached end of match area.
499
- __ cmpq(rdx, r9);
500
- __ j(below, &loop);
501
-
502
- // Success.
503
- // Set current character position to position after match.
504
- __ movq(rdi, rbx);
505
- __ subq(rdi, rsi);
506
-
507
- __ bind(&fallthrough);
508
- }
509
-
510
-
511
- void RegExpMacroAssemblerX64::CheckNotRegistersEqual(int reg1,
512
- int reg2,
513
- Label* on_not_equal) {
514
- __ movq(rax, register_location(reg1));
515
- __ cmpq(rax, register_location(reg2));
516
- BranchOrBacktrack(not_equal, on_not_equal);
517
- }
518
-
519
-
520
- void RegExpMacroAssemblerX64::CheckNotCharacter(uint32_t c,
521
- Label* on_not_equal) {
522
- __ cmpl(current_character(), Immediate(c));
523
- BranchOrBacktrack(not_equal, on_not_equal);
524
- }
525
-
526
-
527
- void RegExpMacroAssemblerX64::CheckCharacterAfterAnd(uint32_t c,
528
- uint32_t mask,
529
- Label* on_equal) {
530
- __ movl(rax, current_character());
531
- __ and_(rax, Immediate(mask));
532
- __ cmpl(rax, Immediate(c));
533
- BranchOrBacktrack(equal, on_equal);
534
- }
535
-
536
-
537
- void RegExpMacroAssemblerX64::CheckNotCharacterAfterAnd(uint32_t c,
538
- uint32_t mask,
539
- Label* on_not_equal) {
540
- __ movl(rax, current_character());
541
- __ and_(rax, Immediate(mask));
542
- __ cmpl(rax, Immediate(c));
543
- BranchOrBacktrack(not_equal, on_not_equal);
544
- }
545
-
546
-
547
- void RegExpMacroAssemblerX64::CheckNotCharacterAfterMinusAnd(
548
- uc16 c,
549
- uc16 minus,
550
- uc16 mask,
551
- Label* on_not_equal) {
552
- ASSERT(minus < String::kMaxUC16CharCode);
553
- __ lea(rax, Operand(current_character(), -minus));
554
- __ and_(rax, Immediate(mask));
555
- __ cmpl(rax, Immediate(c));
556
- BranchOrBacktrack(not_equal, on_not_equal);
557
- }
558
-
559
-
560
- bool RegExpMacroAssemblerX64::CheckSpecialCharacterClass(uc16 type,
561
- Label* on_no_match) {
562
- // Range checks (c in min..max) are generally implemented by an unsigned
563
- // (c - min) <= (max - min) check, using the sequence:
564
- // lea(rax, Operand(current_character(), -min)) or sub(rax, Immediate(min))
565
- // cmp(rax, Immediate(max - min))
566
- switch (type) {
567
- case 's':
568
- // Match space-characters
569
- if (mode_ == ASCII) {
570
- // ASCII space characters are '\t'..'\r' and ' '.
571
- Label success;
572
- __ cmpl(current_character(), Immediate(' '));
573
- __ j(equal, &success);
574
- // Check range 0x09..0x0d
575
- __ lea(rax, Operand(current_character(), -'\t'));
576
- __ cmpl(rax, Immediate('\r' - '\t'));
577
- BranchOrBacktrack(above, on_no_match);
578
- __ bind(&success);
579
- return true;
580
- }
581
- return false;
582
- case 'S':
583
- // Match non-space characters.
584
- if (mode_ == ASCII) {
585
- // ASCII space characters are '\t'..'\r' and ' '.
586
- __ cmpl(current_character(), Immediate(' '));
587
- BranchOrBacktrack(equal, on_no_match);
588
- __ lea(rax, Operand(current_character(), -'\t'));
589
- __ cmpl(rax, Immediate('\r' - '\t'));
590
- BranchOrBacktrack(below_equal, on_no_match);
591
- return true;
592
- }
593
- return false;
594
- case 'd':
595
- // Match ASCII digits ('0'..'9')
596
- __ lea(rax, Operand(current_character(), -'0'));
597
- __ cmpl(rax, Immediate('9' - '0'));
598
- BranchOrBacktrack(above, on_no_match);
599
- return true;
600
- case 'D':
601
- // Match non ASCII-digits
602
- __ lea(rax, Operand(current_character(), -'0'));
603
- __ cmpl(rax, Immediate('9' - '0'));
604
- BranchOrBacktrack(below_equal, on_no_match);
605
- return true;
606
- case '.': {
607
- // Match non-newlines (not 0x0a('\n'), 0x0d('\r'), 0x2028 and 0x2029)
608
- __ movl(rax, current_character());
609
- __ xor_(rax, Immediate(0x01));
610
- // See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0c
611
- __ subl(rax, Immediate(0x0b));
612
- __ cmpl(rax, Immediate(0x0c - 0x0b));
613
- BranchOrBacktrack(below_equal, on_no_match);
614
- if (mode_ == UC16) {
615
- // Compare original value to 0x2028 and 0x2029, using the already
616
- // computed (current_char ^ 0x01 - 0x0b). I.e., check for
617
- // 0x201d (0x2028 - 0x0b) or 0x201e.
618
- __ subl(rax, Immediate(0x2028 - 0x0b));
619
- __ cmpl(rax, Immediate(0x2029 - 0x2028));
620
- BranchOrBacktrack(below_equal, on_no_match);
621
- }
622
- return true;
623
- }
624
- case 'n': {
625
- // Match newlines (0x0a('\n'), 0x0d('\r'), 0x2028 and 0x2029)
626
- __ movl(rax, current_character());
627
- __ xor_(rax, Immediate(0x01));
628
- // See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0c
629
- __ subl(rax, Immediate(0x0b));
630
- __ cmpl(rax, Immediate(0x0c - 0x0b));
631
- if (mode_ == ASCII) {
632
- BranchOrBacktrack(above, on_no_match);
633
- } else {
634
- Label done;
635
- BranchOrBacktrack(below_equal, &done);
636
- // Compare original value to 0x2028 and 0x2029, using the already
637
- // computed (current_char ^ 0x01 - 0x0b). I.e., check for
638
- // 0x201d (0x2028 - 0x0b) or 0x201e.
639
- __ subl(rax, Immediate(0x2028 - 0x0b));
640
- __ cmpl(rax, Immediate(0x2029 - 0x2028));
641
- BranchOrBacktrack(above, on_no_match);
642
- __ bind(&done);
643
- }
644
- return true;
645
- }
646
- case 'w': {
647
- if (mode_ != ASCII) {
648
- // Table is 128 entries, so all ASCII characters can be tested.
649
- __ cmpl(current_character(), Immediate('z'));
650
- BranchOrBacktrack(above, on_no_match);
651
- }
652
- __ movq(rbx, ExternalReference::re_word_character_map());
653
- ASSERT_EQ(0, word_character_map[0]); // Character '\0' is not a word char.
654
- ExternalReference word_map = ExternalReference::re_word_character_map();
655
- __ testb(Operand(rbx, current_character(), times_1, 0),
656
- current_character());
657
- BranchOrBacktrack(zero, on_no_match);
658
- return true;
659
- }
660
- case 'W': {
661
- Label done;
662
- if (mode_ != ASCII) {
663
- // Table is 128 entries, so all ASCII characters can be tested.
664
- __ cmpl(current_character(), Immediate('z'));
665
- __ j(above, &done);
666
- }
667
- __ movq(rbx, ExternalReference::re_word_character_map());
668
- ASSERT_EQ(0, word_character_map[0]); // Character '\0' is not a word char.
669
- ExternalReference word_map = ExternalReference::re_word_character_map();
670
- __ testb(Operand(rbx, current_character(), times_1, 0),
671
- current_character());
672
- BranchOrBacktrack(not_zero, on_no_match);
673
- if (mode_ != ASCII) {
674
- __ bind(&done);
675
- }
676
- return true;
677
- }
678
-
679
- case '*':
680
- // Match any character.
681
- return true;
682
- // No custom implementation (yet): s(UC16), S(UC16).
683
- default:
684
- return false;
685
- }
686
- }
687
-
688
-
689
- void RegExpMacroAssemblerX64::Fail() {
690
- ASSERT(FAILURE == 0); // Return value for failure is zero.
691
- __ Set(rax, 0);
692
- __ jmp(&exit_label_);
693
- }
694
-
695
-
696
- Handle<Object> RegExpMacroAssemblerX64::GetCode(Handle<String> source) {
697
- // Finalize code - write the entry point code now we know how many
698
- // registers we need.
699
- // Entry code:
700
- __ bind(&entry_label_);
701
- // Start new stack frame.
702
- __ push(rbp);
703
- __ movq(rbp, rsp);
704
- // Save parameters and callee-save registers. Order here should correspond
705
- // to order of kBackup_ebx etc.
706
- #ifdef _WIN64
707
- // MSVC passes arguments in rcx, rdx, r8, r9, with backing stack slots.
708
- // Store register parameters in pre-allocated stack slots,
709
- __ movq(Operand(rbp, kInputString), rcx);
710
- __ movq(Operand(rbp, kStartIndex), rdx); // Passed as int32 in edx.
711
- __ movq(Operand(rbp, kInputStart), r8);
712
- __ movq(Operand(rbp, kInputEnd), r9);
713
- // Callee-save on Win64.
714
- __ push(rsi);
715
- __ push(rdi);
716
- __ push(rbx);
717
- #else
718
- // GCC passes arguments in rdi, rsi, rdx, rcx, r8, r9 (and then on stack).
719
- // Push register parameters on stack for reference.
720
- ASSERT_EQ(kInputString, -1 * kPointerSize);
721
- ASSERT_EQ(kStartIndex, -2 * kPointerSize);
722
- ASSERT_EQ(kInputStart, -3 * kPointerSize);
723
- ASSERT_EQ(kInputEnd, -4 * kPointerSize);
724
- ASSERT_EQ(kRegisterOutput, -5 * kPointerSize);
725
- ASSERT_EQ(kStackHighEnd, -6 * kPointerSize);
726
- __ push(rdi);
727
- __ push(rsi);
728
- __ push(rdx);
729
- __ push(rcx);
730
- __ push(r8);
731
- __ push(r9);
732
-
733
- __ push(rbx); // Callee-save
734
- #endif
735
-
736
- __ push(Immediate(0)); // Make room for "at start" constant.
737
-
738
- // Check if we have space on the stack for registers.
739
- Label stack_limit_hit;
740
- Label stack_ok;
741
-
742
- ExternalReference stack_limit =
743
- ExternalReference::address_of_stack_limit();
744
- __ movq(rcx, rsp);
745
- __ movq(kScratchRegister, stack_limit);
746
- __ subq(rcx, Operand(kScratchRegister, 0));
747
- // Handle it if the stack pointer is already below the stack limit.
748
- __ j(below_equal, &stack_limit_hit);
749
- // Check if there is room for the variable number of registers above
750
- // the stack limit.
751
- __ cmpq(rcx, Immediate(num_registers_ * kPointerSize));
752
- __ j(above_equal, &stack_ok);
753
- // Exit with OutOfMemory exception. There is not enough space on the stack
754
- // for our working registers.
755
- __ movq(rax, Immediate(EXCEPTION));
756
- __ jmp(&exit_label_);
757
-
758
- __ bind(&stack_limit_hit);
759
- __ Move(code_object_pointer(), masm_->CodeObject());
760
- CallCheckStackGuardState(); // Preserves no registers beside rbp and rsp.
761
- __ testq(rax, rax);
762
- // If returned value is non-zero, we exit with the returned value as result.
763
- __ j(not_zero, &exit_label_);
764
-
765
- __ bind(&stack_ok);
766
-
767
- // Allocate space on stack for registers.
768
- __ subq(rsp, Immediate(num_registers_ * kPointerSize));
769
- // Load string length.
770
- __ movq(rsi, Operand(rbp, kInputEnd));
771
- // Load input position.
772
- __ movq(rdi, Operand(rbp, kInputStart));
773
- // Set up rdi to be negative offset from string end.
774
- __ subq(rdi, rsi);
775
- // Set rax to address of char before start of the string
776
- // (effectively string position -1).
777
- __ movq(rbx, Operand(rbp, kStartIndex));
778
- __ neg(rbx);
779
- if (mode_ == UC16) {
780
- __ lea(rax, Operand(rdi, rbx, times_2, -char_size()));
781
- } else {
782
- __ lea(rax, Operand(rdi, rbx, times_1, -char_size()));
783
- }
784
- // Store this value in a local variable, for use when clearing
785
- // position registers.
786
- __ movq(Operand(rbp, kInputStartMinusOne), rax);
787
-
788
- if (num_saved_registers_ > 0) {
789
- // Fill saved registers with initial value = start offset - 1
790
- // Fill in stack push order, to avoid accessing across an unwritten
791
- // page (a problem on Windows).
792
- __ movq(rcx, Immediate(kRegisterZero));
793
- Label init_loop;
794
- __ bind(&init_loop);
795
- __ movq(Operand(rbp, rcx, times_1, 0), rax);
796
- __ subq(rcx, Immediate(kPointerSize));
797
- __ cmpq(rcx,
798
- Immediate(kRegisterZero - num_saved_registers_ * kPointerSize));
799
- __ j(greater, &init_loop);
800
- }
801
- // Ensure that we have written to each stack page, in order. Skipping a page
802
- // on Windows can cause segmentation faults. Assuming page size is 4k.
803
- const int kPageSize = 4096;
804
- const int kRegistersPerPage = kPageSize / kPointerSize;
805
- for (int i = num_saved_registers_ + kRegistersPerPage - 1;
806
- i < num_registers_;
807
- i += kRegistersPerPage) {
808
- __ movq(register_location(i), rax); // One write every page.
809
- }
810
-
811
- // Initialize backtrack stack pointer.
812
- __ movq(backtrack_stackpointer(), Operand(rbp, kStackHighEnd));
813
- // Initialize code object pointer.
814
- __ Move(code_object_pointer(), masm_->CodeObject());
815
- // Load previous char as initial value of current-character.
816
- Label at_start;
817
- __ cmpb(Operand(rbp, kStartIndex), Immediate(0));
818
- __ j(equal, &at_start);
819
- LoadCurrentCharacterUnchecked(-1, 1); // Load previous char.
820
- __ jmp(&start_label_);
821
- __ bind(&at_start);
822
- __ movq(current_character(), Immediate('\n'));
823
- __ jmp(&start_label_);
824
-
825
-
826
- // Exit code:
827
- if (success_label_.is_linked()) {
828
- // Save captures when successful.
829
- __ bind(&success_label_);
830
- if (num_saved_registers_ > 0) {
831
- // copy captures to output
832
- __ movq(rdx, Operand(rbp, kStartIndex));
833
- __ movq(rbx, Operand(rbp, kRegisterOutput));
834
- __ movq(rcx, Operand(rbp, kInputEnd));
835
- __ subq(rcx, Operand(rbp, kInputStart));
836
- if (mode_ == UC16) {
837
- __ lea(rcx, Operand(rcx, rdx, times_2, 0));
838
- } else {
839
- __ addq(rcx, rdx);
840
- }
841
- for (int i = 0; i < num_saved_registers_; i++) {
842
- __ movq(rax, register_location(i));
843
- __ addq(rax, rcx); // Convert to index from start, not end.
844
- if (mode_ == UC16) {
845
- __ sar(rax, Immediate(1)); // Convert byte index to character index.
846
- }
847
- __ movl(Operand(rbx, i * kIntSize), rax);
848
- }
849
- }
850
- __ movq(rax, Immediate(SUCCESS));
851
- }
852
-
853
- // Exit and return rax
854
- __ bind(&exit_label_);
855
-
856
- #ifdef _WIN64
857
- // Restore callee save registers.
858
- __ lea(rsp, Operand(rbp, kLastCalleeSaveRegister));
859
- __ pop(rbx);
860
- __ pop(rdi);
861
- __ pop(rsi);
862
- // Stack now at rbp.
863
- #else
864
- // Restore callee save register.
865
- __ movq(rbx, Operand(rbp, kBackup_rbx));
866
- // Skip rsp to rbp.
867
- __ movq(rsp, rbp);
868
- #endif
869
- // Exit function frame, restore previous one.
870
- __ pop(rbp);
871
- __ ret(0);
872
-
873
- // Backtrack code (branch target for conditional backtracks).
874
- if (backtrack_label_.is_linked()) {
875
- __ bind(&backtrack_label_);
876
- Backtrack();
877
- }
878
-
879
- Label exit_with_exception;
880
-
881
- // Preempt-code
882
- if (check_preempt_label_.is_linked()) {
883
- SafeCallTarget(&check_preempt_label_);
884
-
885
- __ push(backtrack_stackpointer());
886
- __ push(rdi);
887
-
888
- CallCheckStackGuardState();
889
- __ testq(rax, rax);
890
- // If returning non-zero, we should end execution with the given
891
- // result as return value.
892
- __ j(not_zero, &exit_label_);
893
-
894
- // Restore registers.
895
- __ Move(code_object_pointer(), masm_->CodeObject());
896
- __ pop(rdi);
897
- __ pop(backtrack_stackpointer());
898
- // String might have moved: Reload esi from frame.
899
- __ movq(rsi, Operand(rbp, kInputEnd));
900
- SafeReturn();
901
- }
902
-
903
- // Backtrack stack overflow code.
904
- if (stack_overflow_label_.is_linked()) {
905
- SafeCallTarget(&stack_overflow_label_);
906
- // Reached if the backtrack-stack limit has been hit.
907
-
908
- Label grow_failed;
909
- // Save registers before calling C function
910
- #ifndef _WIN64
911
- // Callee-save in Microsoft 64-bit ABI, but not in AMD64 ABI.
912
- __ push(rsi);
913
- __ push(rdi);
914
- #endif
915
-
916
- // Call GrowStack(backtrack_stackpointer())
917
- static const int num_arguments = 2;
918
- __ PrepareCallCFunction(num_arguments);
919
- #ifdef _WIN64
920
- // Microsoft passes parameters in rcx, rdx.
921
- // First argument, backtrack stackpointer, is already in rcx.
922
- __ lea(rdx, Operand(rbp, kStackHighEnd)); // Second argument
923
- #else
924
- // AMD64 ABI passes parameters in rdi, rsi.
925
- __ movq(rdi, backtrack_stackpointer()); // First argument.
926
- __ lea(rsi, Operand(rbp, kStackHighEnd)); // Second argument.
927
- #endif
928
- ExternalReference grow_stack = ExternalReference::re_grow_stack();
929
- __ CallCFunction(grow_stack, num_arguments);
930
- // If return NULL, we have failed to grow the stack, and
931
- // must exit with a stack-overflow exception.
932
- __ testq(rax, rax);
933
- __ j(equal, &exit_with_exception);
934
- // Otherwise use return value as new stack pointer.
935
- __ movq(backtrack_stackpointer(), rax);
936
- // Restore saved registers and continue.
937
- __ Move(code_object_pointer(), masm_->CodeObject());
938
- #ifndef _WIN64
939
- __ pop(rdi);
940
- __ pop(rsi);
941
- #endif
942
- SafeReturn();
943
- }
944
-
945
- if (exit_with_exception.is_linked()) {
946
- // If any of the code above needed to exit with an exception.
947
- __ bind(&exit_with_exception);
948
- // Exit with Result EXCEPTION(-1) to signal thrown exception.
949
- __ movq(rax, Immediate(EXCEPTION));
950
- __ jmp(&exit_label_);
951
- }
952
-
953
- FixupCodeRelativePositions();
954
-
955
- CodeDesc code_desc;
956
- masm_->GetCode(&code_desc);
957
- Handle<Code> code = Factory::NewCode(code_desc,
958
- Code::ComputeFlags(Code::REGEXP),
959
- masm_->CodeObject());
960
- PROFILE(RegExpCodeCreateEvent(*code, *source));
961
- return Handle<Object>::cast(code);
962
- }
963
-
964
-
965
- void RegExpMacroAssemblerX64::GoTo(Label* to) {
966
- BranchOrBacktrack(no_condition, to);
967
- }
968
-
969
-
970
- void RegExpMacroAssemblerX64::IfRegisterGE(int reg,
971
- int comparand,
972
- Label* if_ge) {
973
- __ cmpq(register_location(reg), Immediate(comparand));
974
- BranchOrBacktrack(greater_equal, if_ge);
975
- }
976
-
977
-
978
- void RegExpMacroAssemblerX64::IfRegisterLT(int reg,
979
- int comparand,
980
- Label* if_lt) {
981
- __ cmpq(register_location(reg), Immediate(comparand));
982
- BranchOrBacktrack(less, if_lt);
983
- }
984
-
985
-
986
- void RegExpMacroAssemblerX64::IfRegisterEqPos(int reg,
987
- Label* if_eq) {
988
- __ cmpq(rdi, register_location(reg));
989
- BranchOrBacktrack(equal, if_eq);
990
- }
991
-
992
-
993
- RegExpMacroAssembler::IrregexpImplementation
994
- RegExpMacroAssemblerX64::Implementation() {
995
- return kX64Implementation;
996
- }
997
-
998
-
999
- void RegExpMacroAssemblerX64::LoadCurrentCharacter(int cp_offset,
1000
- Label* on_end_of_input,
1001
- bool check_bounds,
1002
- int characters) {
1003
- ASSERT(cp_offset >= -1); // ^ and \b can look behind one character.
1004
- ASSERT(cp_offset < (1<<30)); // Be sane! (And ensure negation works)
1005
- if (check_bounds) {
1006
- CheckPosition(cp_offset + characters - 1, on_end_of_input);
1007
- }
1008
- LoadCurrentCharacterUnchecked(cp_offset, characters);
1009
- }
1010
-
1011
-
1012
- void RegExpMacroAssemblerX64::PopCurrentPosition() {
1013
- Pop(rdi);
1014
- }
1015
-
1016
-
1017
- void RegExpMacroAssemblerX64::PopRegister(int register_index) {
1018
- Pop(rax);
1019
- __ movq(register_location(register_index), rax);
1020
- }
1021
-
1022
-
1023
- void RegExpMacroAssemblerX64::PushBacktrack(Label* label) {
1024
- Push(label);
1025
- CheckStackLimit();
1026
- }
1027
-
1028
-
1029
- void RegExpMacroAssemblerX64::PushCurrentPosition() {
1030
- Push(rdi);
1031
- }
1032
-
1033
-
1034
- void RegExpMacroAssemblerX64::PushRegister(int register_index,
1035
- StackCheckFlag check_stack_limit) {
1036
- __ movq(rax, register_location(register_index));
1037
- Push(rax);
1038
- if (check_stack_limit) CheckStackLimit();
1039
- }
1040
-
1041
-
1042
- void RegExpMacroAssemblerX64::ReadCurrentPositionFromRegister(int reg) {
1043
- __ movq(rdi, register_location(reg));
1044
- }
1045
-
1046
-
1047
- void RegExpMacroAssemblerX64::ReadStackPointerFromRegister(int reg) {
1048
- __ movq(backtrack_stackpointer(), register_location(reg));
1049
- __ addq(backtrack_stackpointer(), Operand(rbp, kStackHighEnd));
1050
- }
1051
-
1052
-
1053
- void RegExpMacroAssemblerX64::SetCurrentPositionFromEnd(int by) {
1054
- NearLabel after_position;
1055
- __ cmpq(rdi, Immediate(-by * char_size()));
1056
- __ j(greater_equal, &after_position);
1057
- __ movq(rdi, Immediate(-by * char_size()));
1058
- // On RegExp code entry (where this operation is used), the character before
1059
- // the current position is expected to be already loaded.
1060
- // We have advanced the position, so it's safe to read backwards.
1061
- LoadCurrentCharacterUnchecked(-1, 1);
1062
- __ bind(&after_position);
1063
- }
1064
-
1065
-
1066
- void RegExpMacroAssemblerX64::SetRegister(int register_index, int to) {
1067
- ASSERT(register_index >= num_saved_registers_); // Reserved for positions!
1068
- __ movq(register_location(register_index), Immediate(to));
1069
- }
1070
-
1071
-
1072
- void RegExpMacroAssemblerX64::Succeed() {
1073
- __ jmp(&success_label_);
1074
- }
1075
-
1076
-
1077
- void RegExpMacroAssemblerX64::WriteCurrentPositionToRegister(int reg,
1078
- int cp_offset) {
1079
- if (cp_offset == 0) {
1080
- __ movq(register_location(reg), rdi);
1081
- } else {
1082
- __ lea(rax, Operand(rdi, cp_offset * char_size()));
1083
- __ movq(register_location(reg), rax);
1084
- }
1085
- }
1086
-
1087
-
1088
- void RegExpMacroAssemblerX64::ClearRegisters(int reg_from, int reg_to) {
1089
- ASSERT(reg_from <= reg_to);
1090
- __ movq(rax, Operand(rbp, kInputStartMinusOne));
1091
- for (int reg = reg_from; reg <= reg_to; reg++) {
1092
- __ movq(register_location(reg), rax);
1093
- }
1094
- }
1095
-
1096
-
1097
- void RegExpMacroAssemblerX64::WriteStackPointerToRegister(int reg) {
1098
- __ movq(rax, backtrack_stackpointer());
1099
- __ subq(rax, Operand(rbp, kStackHighEnd));
1100
- __ movq(register_location(reg), rax);
1101
- }
1102
-
1103
-
1104
- // Private methods:
1105
-
1106
- void RegExpMacroAssemblerX64::CallCheckStackGuardState() {
1107
- // This function call preserves no register values. Caller should
1108
- // store anything volatile in a C call or overwritten by this function.
1109
- static const int num_arguments = 3;
1110
- __ PrepareCallCFunction(num_arguments);
1111
- #ifdef _WIN64
1112
- // Second argument: Code* of self. (Do this before overwriting r8).
1113
- __ movq(rdx, code_object_pointer());
1114
- // Third argument: RegExp code frame pointer.
1115
- __ movq(r8, rbp);
1116
- // First argument: Next address on the stack (will be address of
1117
- // return address).
1118
- __ lea(rcx, Operand(rsp, -kPointerSize));
1119
- #else
1120
- // Third argument: RegExp code frame pointer.
1121
- __ movq(rdx, rbp);
1122
- // Second argument: Code* of self.
1123
- __ movq(rsi, code_object_pointer());
1124
- // First argument: Next address on the stack (will be address of
1125
- // return address).
1126
- __ lea(rdi, Operand(rsp, -kPointerSize));
1127
- #endif
1128
- ExternalReference stack_check =
1129
- ExternalReference::re_check_stack_guard_state();
1130
- __ CallCFunction(stack_check, num_arguments);
1131
- }
1132
-
1133
-
1134
- // Helper function for reading a value out of a stack frame.
1135
- template <typename T>
1136
- static T& frame_entry(Address re_frame, int frame_offset) {
1137
- return reinterpret_cast<T&>(Memory::int32_at(re_frame + frame_offset));
1138
- }
1139
-
1140
-
1141
- int RegExpMacroAssemblerX64::CheckStackGuardState(Address* return_address,
1142
- Code* re_code,
1143
- Address re_frame) {
1144
- if (StackGuard::IsStackOverflow()) {
1145
- Top::StackOverflow();
1146
- return EXCEPTION;
1147
- }
1148
-
1149
- // If not real stack overflow the stack guard was used to interrupt
1150
- // execution for another purpose.
1151
-
1152
- // If this is a direct call from JavaScript retry the RegExp forcing the call
1153
- // through the runtime system. Currently the direct call cannot handle a GC.
1154
- if (frame_entry<int>(re_frame, kDirectCall) == 1) {
1155
- return RETRY;
1156
- }
1157
-
1158
- // Prepare for possible GC.
1159
- HandleScope handles;
1160
- Handle<Code> code_handle(re_code);
1161
-
1162
- Handle<String> subject(frame_entry<String*>(re_frame, kInputString));
1163
- // Current string.
1164
- bool is_ascii = subject->IsAsciiRepresentation();
1165
-
1166
- ASSERT(re_code->instruction_start() <= *return_address);
1167
- ASSERT(*return_address <=
1168
- re_code->instruction_start() + re_code->instruction_size());
1169
-
1170
- MaybeObject* result = Execution::HandleStackGuardInterrupt();
1171
-
1172
- if (*code_handle != re_code) { // Return address no longer valid
1173
- intptr_t delta = *code_handle - re_code;
1174
- // Overwrite the return address on the stack.
1175
- *return_address += delta;
1176
- }
1177
-
1178
- if (result->IsException()) {
1179
- return EXCEPTION;
1180
- }
1181
-
1182
- // String might have changed.
1183
- if (subject->IsAsciiRepresentation() != is_ascii) {
1184
- // If we changed between an ASCII and an UC16 string, the specialized
1185
- // code cannot be used, and we need to restart regexp matching from
1186
- // scratch (including, potentially, compiling a new version of the code).
1187
- return RETRY;
1188
- }
1189
-
1190
- // Otherwise, the content of the string might have moved. It must still
1191
- // be a sequential or external string with the same content.
1192
- // Update the start and end pointers in the stack frame to the current
1193
- // location (whether it has actually moved or not).
1194
- ASSERT(StringShape(*subject).IsSequential() ||
1195
- StringShape(*subject).IsExternal());
1196
-
1197
- // The original start address of the characters to match.
1198
- const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart);
1199
-
1200
- // Find the current start address of the same character at the current string
1201
- // position.
1202
- int start_index = frame_entry<int>(re_frame, kStartIndex);
1203
- const byte* new_address = StringCharacterPosition(*subject, start_index);
1204
-
1205
- if (start_address != new_address) {
1206
- // If there is a difference, update the object pointer and start and end
1207
- // addresses in the RegExp stack frame to match the new value.
1208
- const byte* end_address = frame_entry<const byte* >(re_frame, kInputEnd);
1209
- int byte_length = static_cast<int>(end_address - start_address);
1210
- frame_entry<const String*>(re_frame, kInputString) = *subject;
1211
- frame_entry<const byte*>(re_frame, kInputStart) = new_address;
1212
- frame_entry<const byte*>(re_frame, kInputEnd) = new_address + byte_length;
1213
- }
1214
-
1215
- return 0;
1216
- }
1217
-
1218
-
1219
- Operand RegExpMacroAssemblerX64::register_location(int register_index) {
1220
- ASSERT(register_index < (1<<30));
1221
- if (num_registers_ <= register_index) {
1222
- num_registers_ = register_index + 1;
1223
- }
1224
- return Operand(rbp, kRegisterZero - register_index * kPointerSize);
1225
- }
1226
-
1227
-
1228
- void RegExpMacroAssemblerX64::CheckPosition(int cp_offset,
1229
- Label* on_outside_input) {
1230
- __ cmpl(rdi, Immediate(-cp_offset * char_size()));
1231
- BranchOrBacktrack(greater_equal, on_outside_input);
1232
- }
1233
-
1234
-
1235
- void RegExpMacroAssemblerX64::BranchOrBacktrack(Condition condition,
1236
- Label* to) {
1237
- if (condition < 0) { // No condition
1238
- if (to == NULL) {
1239
- Backtrack();
1240
- return;
1241
- }
1242
- __ jmp(to);
1243
- return;
1244
- }
1245
- if (to == NULL) {
1246
- __ j(condition, &backtrack_label_);
1247
- return;
1248
- }
1249
- __ j(condition, to);
1250
- }
1251
-
1252
-
1253
- void RegExpMacroAssemblerX64::SafeCall(Label* to) {
1254
- __ call(to);
1255
- }
1256
-
1257
-
1258
- void RegExpMacroAssemblerX64::SafeCallTarget(Label* label) {
1259
- __ bind(label);
1260
- __ subq(Operand(rsp, 0), code_object_pointer());
1261
- }
1262
-
1263
-
1264
- void RegExpMacroAssemblerX64::SafeReturn() {
1265
- __ addq(Operand(rsp, 0), code_object_pointer());
1266
- __ ret(0);
1267
- }
1268
-
1269
-
1270
- void RegExpMacroAssemblerX64::Push(Register source) {
1271
- ASSERT(!source.is(backtrack_stackpointer()));
1272
- // Notice: This updates flags, unlike normal Push.
1273
- __ subq(backtrack_stackpointer(), Immediate(kIntSize));
1274
- __ movl(Operand(backtrack_stackpointer(), 0), source);
1275
- }
1276
-
1277
-
1278
- void RegExpMacroAssemblerX64::Push(Immediate value) {
1279
- // Notice: This updates flags, unlike normal Push.
1280
- __ subq(backtrack_stackpointer(), Immediate(kIntSize));
1281
- __ movl(Operand(backtrack_stackpointer(), 0), value);
1282
- }
1283
-
1284
-
1285
- void RegExpMacroAssemblerX64::FixupCodeRelativePositions() {
1286
- for (int i = 0, n = code_relative_fixup_positions_.length(); i < n; i++) {
1287
- int position = code_relative_fixup_positions_[i];
1288
- // The position succeeds a relative label offset from position.
1289
- // Patch the relative offset to be relative to the Code object pointer
1290
- // instead.
1291
- int patch_position = position - kIntSize;
1292
- int offset = masm_->long_at(patch_position);
1293
- masm_->long_at_put(patch_position,
1294
- offset
1295
- + position
1296
- + Code::kHeaderSize
1297
- - kHeapObjectTag);
1298
- }
1299
- code_relative_fixup_positions_.Clear();
1300
- }
1301
-
1302
-
1303
- void RegExpMacroAssemblerX64::Push(Label* backtrack_target) {
1304
- __ subq(backtrack_stackpointer(), Immediate(kIntSize));
1305
- __ movl(Operand(backtrack_stackpointer(), 0), backtrack_target);
1306
- MarkPositionForCodeRelativeFixup();
1307
- }
1308
-
1309
-
1310
- void RegExpMacroAssemblerX64::Pop(Register target) {
1311
- ASSERT(!target.is(backtrack_stackpointer()));
1312
- __ movsxlq(target, Operand(backtrack_stackpointer(), 0));
1313
- // Notice: This updates flags, unlike normal Pop.
1314
- __ addq(backtrack_stackpointer(), Immediate(kIntSize));
1315
- }
1316
-
1317
-
1318
- void RegExpMacroAssemblerX64::Drop() {
1319
- __ addq(backtrack_stackpointer(), Immediate(kIntSize));
1320
- }
1321
-
1322
-
1323
- void RegExpMacroAssemblerX64::CheckPreemption() {
1324
- // Check for preemption.
1325
- Label no_preempt;
1326
- ExternalReference stack_limit =
1327
- ExternalReference::address_of_stack_limit();
1328
- __ load_rax(stack_limit);
1329
- __ cmpq(rsp, rax);
1330
- __ j(above, &no_preempt);
1331
-
1332
- SafeCall(&check_preempt_label_);
1333
-
1334
- __ bind(&no_preempt);
1335
- }
1336
-
1337
-
1338
- void RegExpMacroAssemblerX64::CheckStackLimit() {
1339
- Label no_stack_overflow;
1340
- ExternalReference stack_limit =
1341
- ExternalReference::address_of_regexp_stack_limit();
1342
- __ load_rax(stack_limit);
1343
- __ cmpq(backtrack_stackpointer(), rax);
1344
- __ j(above, &no_stack_overflow);
1345
-
1346
- SafeCall(&stack_overflow_label_);
1347
-
1348
- __ bind(&no_stack_overflow);
1349
- }
1350
-
1351
-
1352
- void RegExpMacroAssemblerX64::LoadCurrentCharacterUnchecked(int cp_offset,
1353
- int characters) {
1354
- if (mode_ == ASCII) {
1355
- if (characters == 4) {
1356
- __ movl(current_character(), Operand(rsi, rdi, times_1, cp_offset));
1357
- } else if (characters == 2) {
1358
- __ movzxwl(current_character(), Operand(rsi, rdi, times_1, cp_offset));
1359
- } else {
1360
- ASSERT(characters == 1);
1361
- __ movzxbl(current_character(), Operand(rsi, rdi, times_1, cp_offset));
1362
- }
1363
- } else {
1364
- ASSERT(mode_ == UC16);
1365
- if (characters == 2) {
1366
- __ movl(current_character(),
1367
- Operand(rsi, rdi, times_1, cp_offset * sizeof(uc16)));
1368
- } else {
1369
- ASSERT(characters == 1);
1370
- __ movzxwl(current_character(),
1371
- Operand(rsi, rdi, times_1, cp_offset * sizeof(uc16)));
1372
- }
1373
- }
1374
- }
1375
-
1376
- #undef __
1377
-
1378
- #endif // V8_INTERPRETED_REGEXP
1379
-
1380
- }} // namespace v8::internal
1381
-
1382
- #endif // V8_TARGET_ARCH_X64