therubyracer 0.8.1.pre2 → 0.8.1

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

Potentially problematic release.


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

Files changed (877) hide show
  1. data/Changelog.md +2 -1
  2. data/README.md +6 -3
  3. data/ext/v8/upstream/3.1.8/.gitignore +31 -0
  4. data/ext/v8/upstream/3.1.8/AUTHORS +40 -0
  5. data/ext/v8/upstream/3.1.8/ChangeLog +2566 -0
  6. data/ext/v8/upstream/3.1.8/LICENSE +52 -0
  7. data/ext/v8/upstream/3.1.8/LICENSE.strongtalk +29 -0
  8. data/ext/v8/upstream/3.1.8/LICENSE.v8 +26 -0
  9. data/ext/v8/upstream/3.1.8/LICENSE.valgrind +45 -0
  10. data/ext/v8/upstream/3.1.8/SConstruct +1192 -0
  11. data/ext/v8/upstream/3.1.8/build/README.txt +25 -0
  12. data/ext/v8/upstream/3.1.8/build/all.gyp +18 -0
  13. data/ext/v8/upstream/3.1.8/build/armu.gypi +32 -0
  14. data/ext/v8/upstream/3.1.8/build/common.gypi +82 -0
  15. data/ext/v8/upstream/3.1.8/build/gyp_v8 +145 -0
  16. data/ext/v8/upstream/3.1.8/include/v8-debug.h +384 -0
  17. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +426 -0
  19. data/ext/v8/upstream/3.1.8/include/v8-testing.h +99 -0
  20. data/ext/v8/upstream/3.1.8/include/v8.h +3846 -0
  21. data/ext/v8/upstream/3.1.8/include/v8stdint.h +53 -0
  22. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +206 -0
  23. data/ext/v8/upstream/3.1.8/src/SConscript +356 -0
  24. data/ext/v8/upstream/3.1.8/src/accessors.cc +907 -0
  25. data/ext/v8/upstream/3.1.8/src/accessors.h +121 -0
  26. data/ext/v8/upstream/3.1.8/src/allocation.cc +204 -0
  27. data/ext/v8/upstream/3.1.8/src/allocation.h +176 -0
  28. data/ext/v8/upstream/3.1.8/src/api.cc +5191 -0
  29. data/ext/v8/upstream/3.1.8/src/api.h +508 -0
  30. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/apinatives.js +0 -0
  31. data/ext/v8/upstream/3.1.8/src/apiutils.h +80 -0
  32. data/ext/v8/upstream/3.1.8/src/arguments.h +105 -0
  33. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +352 -0
  34. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +2756 -0
  35. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +1294 -0
  36. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +1628 -0
  37. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +6783 -0
  38. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +657 -0
  39. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm-inl.h +48 -0
  40. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +7403 -0
  41. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +595 -0
  42. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.cc +152 -0
  43. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +769 -0
  44. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +147 -0
  45. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +315 -0
  46. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +700 -0
  47. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +1439 -0
  48. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.cc +45 -0
  49. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +168 -0
  50. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +4230 -0
  51. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +1799 -0
  52. data/ext/v8/upstream/3.1.8/src/arm/jump-target-arm.cc +174 -0
  53. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +2041 -0
  54. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +2046 -0
  55. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +3822 -0
  56. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +312 -0
  57. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +303 -0
  58. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.h +84 -0
  59. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +2701 -0
  60. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +1015 -0
  61. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +1280 -0
  62. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +252 -0
  63. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm-inl.h +0 -0
  64. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.cc +0 -0
  65. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.h +0 -0
  66. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +3165 -0
  67. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +402 -0
  68. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +4077 -0
  69. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/virtual-frame-arm-inl.h +0 -0
  70. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +843 -0
  71. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +520 -0
  72. data/ext/v8/upstream/3.1.8/src/array.js +1231 -0
  73. data/ext/v8/upstream/3.1.8/src/assembler.cc +973 -0
  74. data/ext/v8/upstream/3.1.8/src/assembler.h +787 -0
  75. data/ext/v8/upstream/3.1.8/src/ast-inl.h +107 -0
  76. data/ext/v8/upstream/3.1.8/src/ast.cc +1067 -0
  77. data/ext/v8/upstream/3.1.8/src/ast.h +2177 -0
  78. data/ext/v8/upstream/3.1.8/src/atomicops.h +165 -0
  79. data/ext/v8/upstream/3.1.8/src/atomicops_internals_arm_gcc.h +145 -0
  80. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.cc +126 -0
  81. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.h +287 -0
  82. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_macosx.h +301 -0
  83. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_msvc.h +203 -0
  84. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.cc +655 -0
  85. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.h +81 -0
  86. data/ext/v8/upstream/3.1.8/src/bignum.cc +768 -0
  87. data/ext/v8/upstream/3.1.8/src/bignum.h +140 -0
  88. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +1888 -0
  89. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/bootstrapper.h +0 -0
  90. data/ext/v8/upstream/3.1.8/src/builtins.cc +1586 -0
  91. data/ext/v8/upstream/3.1.8/src/builtins.h +339 -0
  92. data/ext/v8/upstream/3.1.8/src/bytecodes-irregexp.h +105 -0
  93. data/ext/v8/upstream/3.1.8/src/cached-powers.cc +177 -0
  94. data/ext/v8/upstream/3.1.8/src/cached-powers.h +65 -0
  95. data/ext/v8/upstream/3.1.8/src/char-predicates-inl.h +94 -0
  96. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/char-predicates.h +0 -0
  97. data/ext/v8/upstream/3.1.8/src/checks.cc +110 -0
  98. data/ext/v8/upstream/3.1.8/src/checks.h +292 -0
  99. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue-inl.h +0 -0
  100. data/ext/v8/upstream/3.1.8/src/circular-queue.cc +122 -0
  101. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue.h +0 -0
  102. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +230 -0
  103. data/ext/v8/upstream/3.1.8/src/code-stubs.h +950 -0
  104. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/code.h +0 -0
  105. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +64 -0
  106. data/ext/v8/upstream/3.1.8/src/codegen.cc +495 -0
  107. data/ext/v8/upstream/3.1.8/src/codegen.h +245 -0
  108. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +654 -0
  109. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +112 -0
  110. data/ext/v8/upstream/3.1.8/src/compiler.cc +806 -0
  111. data/ext/v8/upstream/3.1.8/src/compiler.h +290 -0
  112. data/ext/v8/upstream/3.1.8/src/contexts.cc +320 -0
  113. data/ext/v8/upstream/3.1.8/src/contexts.h +376 -0
  114. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/conversions-inl.h +0 -0
  115. data/ext/v8/upstream/3.1.8/src/conversions.cc +1069 -0
  116. data/ext/v8/upstream/3.1.8/src/conversions.h +122 -0
  117. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/counters.cc +0 -0
  118. data/ext/v8/upstream/3.1.8/src/counters.h +242 -0
  119. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +100 -0
  120. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +554 -0
  121. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +291 -0
  122. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/cpu.h +0 -0
  123. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +367 -0
  124. data/ext/v8/upstream/3.1.8/src/d8-debug.h +157 -0
  125. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-posix.cc +0 -0
  126. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-readline.cc +0 -0
  127. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-windows.cc +0 -0
  128. data/ext/v8/upstream/3.1.8/src/d8.cc +792 -0
  129. data/ext/v8/upstream/3.1.8/src/d8.gyp +85 -0
  130. data/ext/v8/upstream/3.1.8/src/d8.h +231 -0
  131. data/ext/v8/upstream/3.1.8/src/d8.js +2798 -0
  132. data/ext/v8/upstream/3.1.8/src/data-flow.cc +545 -0
  133. data/ext/v8/upstream/3.1.8/src/data-flow.h +379 -0
  134. data/ext/v8/upstream/3.1.8/src/date.js +1103 -0
  135. data/ext/v8/upstream/3.1.8/src/dateparser-inl.h +125 -0
  136. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/dateparser.cc +0 -0
  137. data/ext/v8/upstream/3.1.8/src/dateparser.h +263 -0
  138. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +446 -0
  139. data/ext/v8/upstream/3.1.8/src/debug-agent.h +131 -0
  140. data/ext/v8/upstream/3.1.8/src/debug-debugger.js +2569 -0
  141. data/ext/v8/upstream/3.1.8/src/debug.cc +3085 -0
  142. data/ext/v8/upstream/3.1.8/src/debug.h +1025 -0
  143. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +1185 -0
  144. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +529 -0
  145. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disasm.h +0 -0
  146. data/ext/v8/upstream/3.1.8/src/disassembler.cc +338 -0
  147. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disassembler.h +0 -0
  148. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.cc +0 -0
  149. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.h +0 -0
  150. data/ext/v8/upstream/3.1.8/src/double.h +238 -0
  151. data/ext/v8/upstream/3.1.8/src/dtoa.cc +103 -0
  152. data/ext/v8/upstream/3.1.8/src/dtoa.h +85 -0
  153. data/ext/v8/upstream/3.1.8/src/execution.cc +735 -0
  154. data/ext/v8/upstream/3.1.8/src/execution.h +322 -0
  155. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +53 -0
  156. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +264 -0
  157. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.h +64 -0
  158. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +141 -0
  159. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.h +50 -0
  160. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +58 -0
  161. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.h +49 -0
  162. data/ext/v8/upstream/3.1.8/src/factory.cc +1087 -0
  163. data/ext/v8/upstream/3.1.8/src/factory.h +432 -0
  164. data/ext/v8/upstream/3.1.8/src/fast-dtoa.cc +736 -0
  165. data/ext/v8/upstream/3.1.8/src/fast-dtoa.h +83 -0
  166. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.cc +0 -0
  167. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.h +0 -0
  168. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +552 -0
  169. data/ext/v8/upstream/3.1.8/src/flags.cc +551 -0
  170. data/ext/v8/upstream/3.1.8/src/flags.h +79 -0
  171. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/frame-element.cc +0 -0
  172. data/ext/v8/upstream/3.1.8/src/frame-element.h +277 -0
  173. data/ext/v8/upstream/3.1.8/src/frames-inl.h +210 -0
  174. data/ext/v8/upstream/3.1.8/src/frames.cc +1232 -0
  175. data/ext/v8/upstream/3.1.8/src/frames.h +826 -0
  176. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +1382 -0
  177. data/ext/v8/upstream/3.1.8/src/full-codegen.h +751 -0
  178. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +90 -0
  179. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +111 -0
  180. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +1547 -0
  181. data/ext/v8/upstream/3.1.8/src/gdb-jit.h +138 -0
  182. data/ext/v8/upstream/3.1.8/src/global-handles.cc +534 -0
  183. data/ext/v8/upstream/3.1.8/src/global-handles.h +181 -0
  184. data/ext/v8/upstream/3.1.8/src/globals.h +325 -0
  185. data/ext/v8/upstream/3.1.8/src/handles-inl.h +80 -0
  186. data/ext/v8/upstream/3.1.8/src/handles.cc +910 -0
  187. data/ext/v8/upstream/3.1.8/src/handles.h +424 -0
  188. data/ext/v8/upstream/3.1.8/src/hashmap.cc +230 -0
  189. data/ext/v8/upstream/3.1.8/src/hashmap.h +121 -0
  190. data/ext/v8/upstream/3.1.8/src/heap-inl.h +587 -0
  191. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +1128 -0
  192. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +381 -0
  193. data/ext/v8/upstream/3.1.8/src/heap.cc +5610 -0
  194. data/ext/v8/upstream/3.1.8/src/heap.h +2218 -0
  195. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +1490 -0
  196. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +3493 -0
  197. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +6056 -0
  198. data/ext/v8/upstream/3.1.8/src/hydrogen.h +1091 -0
  199. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +429 -0
  200. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +2800 -0
  201. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +1093 -0
  202. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +1590 -0
  203. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +6624 -0
  204. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +536 -0
  205. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/codegen-ia32-inl.h +0 -0
  206. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +10354 -0
  207. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +798 -0
  208. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +87 -0
  209. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +309 -0
  210. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +664 -0
  211. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +1597 -0
  212. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.cc +45 -0
  213. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +140 -0
  214. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +4278 -0
  215. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +1786 -0
  216. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/jump-target-ia32.cc +0 -0
  217. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +3880 -0
  218. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +309 -0
  219. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +460 -0
  220. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
  221. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +2095 -0
  222. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +2127 -0
  223. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +2031 -0
  224. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +798 -0
  225. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +1253 -0
  226. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +215 -0
  227. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  228. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.cc +0 -0
  229. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.h +0 -0
  230. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/simulator-ia32.cc +0 -0
  231. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +72 -0
  232. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +3732 -0
  233. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +1360 -0
  234. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +646 -0
  235. data/ext/v8/upstream/3.1.8/src/ic-inl.h +129 -0
  236. data/ext/v8/upstream/3.1.8/src/ic.cc +2333 -0
  237. data/ext/v8/upstream/3.1.8/src/ic.h +639 -0
  238. data/ext/v8/upstream/3.1.8/src/inspector.cc +63 -0
  239. data/ext/v8/upstream/3.1.8/src/inspector.h +62 -0
  240. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +655 -0
  241. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/interpreter-irregexp.h +0 -0
  242. data/ext/v8/upstream/3.1.8/src/json.js +342 -0
  243. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +5340 -0
  244. data/ext/v8/upstream/3.1.8/src/jsregexp.h +1484 -0
  245. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-heavy-inl.h +0 -0
  246. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +430 -0
  247. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +244 -0
  248. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-inl.h +0 -0
  249. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-light-inl.h +0 -0
  250. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +111 -0
  251. data/ext/v8/upstream/3.1.8/src/jump-target-light.h +193 -0
  252. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.cc +0 -0
  253. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.h +0 -0
  254. data/ext/v8/upstream/3.1.8/src/list-inl.h +206 -0
  255. data/ext/v8/upstream/3.1.8/src/list.h +164 -0
  256. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +140 -0
  257. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +2093 -0
  258. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +644 -0
  259. data/ext/v8/upstream/3.1.8/src/lithium.cc +168 -0
  260. data/ext/v8/upstream/3.1.8/src/lithium.h +592 -0
  261. data/ext/v8/upstream/3.1.8/src/liveedit-debugger.js +1082 -0
  262. data/ext/v8/upstream/3.1.8/src/liveedit.cc +1650 -0
  263. data/ext/v8/upstream/3.1.8/src/liveedit.h +174 -0
  264. data/ext/v8/upstream/3.1.8/src/liveobjectlist-inl.h +126 -0
  265. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +2527 -0
  266. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +322 -0
  267. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/log-inl.h +0 -0
  268. data/ext/v8/upstream/3.1.8/src/log-utils.cc +336 -0
  269. data/ext/v8/upstream/3.1.8/src/log-utils.h +232 -0
  270. data/ext/v8/upstream/3.1.8/src/log.cc +1608 -0
  271. data/ext/v8/upstream/3.1.8/src/log.h +379 -0
  272. data/ext/v8/upstream/3.1.8/src/macro-assembler.h +120 -0
  273. data/ext/v8/upstream/3.1.8/src/macros.py +178 -0
  274. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +2957 -0
  275. data/ext/v8/upstream/3.1.8/src/mark-compact.h +433 -0
  276. data/ext/v8/upstream/3.1.8/src/math.js +264 -0
  277. data/ext/v8/upstream/3.1.8/src/memory.h +82 -0
  278. data/ext/v8/upstream/3.1.8/src/messages.cc +164 -0
  279. data/ext/v8/upstream/3.1.8/src/messages.h +114 -0
  280. data/ext/v8/upstream/3.1.8/src/messages.js +1071 -0
  281. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips-inl.h +0 -0
  282. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips.cc +0 -0
  283. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +667 -0
  284. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +205 -0
  285. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips-inl.h +0 -0
  286. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips.cc +0 -0
  287. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +431 -0
  288. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.cc +0 -0
  289. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.h +0 -0
  290. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/cpu-mips.cc +0 -0
  291. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +127 -0
  292. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/disasm-mips.cc +0 -0
  293. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/fast-codegen-mips.cc +0 -0
  294. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +96 -0
  295. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/frames-mips.h +0 -0
  296. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/full-codegen-mips.cc +0 -0
  297. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +208 -0
  298. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/jump-target-mips.cc +0 -0
  299. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.cc +0 -0
  300. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.h +0 -0
  301. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips-inl.h +0 -0
  302. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.cc +0 -0
  303. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.h +0 -0
  304. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +1650 -0
  305. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +311 -0
  306. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +418 -0
  307. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.cc +0 -0
  308. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.h +0 -0
  309. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +2380 -0
  310. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mksnapshot.cc +0 -0
  311. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/natives.h +0 -0
  312. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +722 -0
  313. data/ext/v8/upstream/3.1.8/src/objects-inl.h +3946 -0
  314. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +801 -0
  315. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +142 -0
  316. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +401 -0
  317. data/ext/v8/upstream/3.1.8/src/objects.cc +10044 -0
  318. data/ext/v8/upstream/3.1.8/src/objects.h +6571 -0
  319. data/ext/v8/upstream/3.1.8/src/parser.cc +5165 -0
  320. data/ext/v8/upstream/3.1.8/src/parser.h +802 -0
  321. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +745 -0
  322. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +702 -0
  323. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +981 -0
  324. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +732 -0
  325. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +498 -0
  326. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +657 -0
  327. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +399 -0
  328. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +714 -0
  329. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +1974 -0
  330. data/ext/v8/upstream/3.1.8/src/platform.h +636 -0
  331. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +183 -0
  332. data/ext/v8/upstream/3.1.8/src/preparse-data.h +249 -0
  333. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +213 -0
  334. data/ext/v8/upstream/3.1.8/src/preparser.cc +1205 -0
  335. data/ext/v8/upstream/3.1.8/src/preparser.h +278 -0
  336. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +1539 -0
  337. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +223 -0
  338. data/ext/v8/upstream/3.1.8/src/profile-generator-inl.h +128 -0
  339. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +2899 -0
  340. data/ext/v8/upstream/3.1.8/src/profile-generator.h +1151 -0
  341. data/ext/v8/upstream/3.1.8/src/property.cc +96 -0
  342. data/ext/v8/upstream/3.1.8/src/property.h +337 -0
  343. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  344. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +470 -0
  345. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.h +142 -0
  346. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.cc +373 -0
  347. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.h +104 -0
  348. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +257 -0
  349. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +231 -0
  350. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.cc +0 -0
  351. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.h +0 -0
  352. data/ext/v8/upstream/3.1.8/src/regexp.js +483 -0
  353. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator-inl.h +0 -0
  354. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.cc +0 -0
  355. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.h +0 -0
  356. data/ext/v8/upstream/3.1.8/src/rewriter.cc +1023 -0
  357. data/ext/v8/upstream/3.1.8/src/rewriter.h +59 -0
  358. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +443 -0
  359. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +77 -0
  360. data/ext/v8/upstream/3.1.8/src/runtime.cc +11592 -0
  361. data/ext/v8/upstream/3.1.8/src/runtime.h +582 -0
  362. data/ext/v8/upstream/3.1.8/src/runtime.js +643 -0
  363. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +253 -0
  364. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +263 -0
  365. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +971 -0
  366. data/ext/v8/upstream/3.1.8/src/scanner-base.h +653 -0
  367. data/ext/v8/upstream/3.1.8/src/scanner.cc +586 -0
  368. data/ext/v8/upstream/3.1.8/src/scanner.h +194 -0
  369. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +636 -0
  370. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +238 -0
  371. data/ext/v8/upstream/3.1.8/src/scopes.cc +1063 -0
  372. data/ext/v8/upstream/3.1.8/src/scopes.h +494 -0
  373. data/ext/v8/upstream/3.1.8/src/serialize.cc +1535 -0
  374. data/ext/v8/upstream/3.1.8/src/serialize.h +584 -0
  375. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/shell.h +0 -0
  376. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/simulator.h +0 -0
  377. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/smart-pointer.h +0 -0
  378. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-common.cc +0 -0
  379. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-empty.cc +0 -0
  380. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot.h +0 -0
  381. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +524 -0
  382. data/ext/v8/upstream/3.1.8/src/spaces.cc +3254 -0
  383. data/ext/v8/upstream/3.1.8/src/spaces.h +2362 -0
  384. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree-inl.h +0 -0
  385. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree.h +0 -0
  386. data/ext/v8/upstream/3.1.8/src/string-search.cc +40 -0
  387. data/ext/v8/upstream/3.1.8/src/string-search.h +567 -0
  388. data/ext/v8/upstream/3.1.8/src/string-stream.cc +584 -0
  389. data/ext/v8/upstream/3.1.8/src/string-stream.h +191 -0
  390. data/ext/v8/upstream/3.1.8/src/string.js +915 -0
  391. data/ext/v8/upstream/3.1.8/src/strtod.cc +440 -0
  392. data/ext/v8/upstream/3.1.8/src/strtod.h +40 -0
  393. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +1878 -0
  394. data/ext/v8/upstream/3.1.8/src/stub-cache.h +849 -0
  395. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/third_party/valgrind/valgrind.h +0 -0
  396. data/ext/v8/upstream/3.1.8/src/token.cc +63 -0
  397. data/ext/v8/upstream/3.1.8/src/token.h +288 -0
  398. data/ext/v8/upstream/3.1.8/src/top.cc +1152 -0
  399. data/ext/v8/upstream/3.1.8/src/top.h +608 -0
  400. data/ext/v8/upstream/3.1.8/src/type-info.cc +406 -0
  401. data/ext/v8/upstream/3.1.8/src/type-info.h +283 -0
  402. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue-inl.h +0 -0
  403. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue.h +0 -0
  404. data/ext/v8/upstream/3.1.8/src/unicode-inl.h +238 -0
  405. data/ext/v8/upstream/3.1.8/src/unicode.cc +1624 -0
  406. data/ext/v8/upstream/3.1.8/src/unicode.h +280 -0
  407. data/ext/v8/upstream/3.1.8/src/uri.js +402 -0
  408. data/ext/v8/upstream/3.1.8/src/utils.cc +371 -0
  409. data/ext/v8/upstream/3.1.8/src/utils.h +793 -0
  410. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8-counters.cc +0 -0
  411. data/ext/v8/upstream/3.1.8/src/v8-counters.h +290 -0
  412. data/ext/v8/upstream/3.1.8/src/v8.cc +270 -0
  413. data/ext/v8/upstream/3.1.8/src/v8.h +127 -0
  414. data/ext/v8/upstream/3.1.8/src/v8checks.h +64 -0
  415. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8dll-main.cc +0 -0
  416. data/ext/v8/upstream/3.1.8/src/v8globals.h +480 -0
  417. data/ext/v8/upstream/3.1.8/src/v8natives.js +1252 -0
  418. data/ext/v8/upstream/3.1.8/src/v8preparserdll-main.cc +39 -0
  419. data/ext/v8/upstream/3.1.8/src/v8threads.cc +440 -0
  420. data/ext/v8/upstream/3.1.8/src/v8threads.h +157 -0
  421. data/ext/v8/upstream/3.1.8/src/v8utils.h +354 -0
  422. data/ext/v8/upstream/3.1.8/src/variables.cc +132 -0
  423. data/ext/v8/upstream/3.1.8/src/variables.h +212 -0
  424. data/ext/v8/upstream/3.1.8/src/version.cc +95 -0
  425. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/version.h +0 -0
  426. data/ext/v8/upstream/3.1.8/src/virtual-frame-heavy-inl.h +190 -0
  427. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-heavy.cc +0 -0
  428. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-inl.h +0 -0
  429. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light-inl.h +0 -0
  430. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light.cc +0 -0
  431. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame.cc +0 -0
  432. data/ext/v8/upstream/3.1.8/src/virtual-frame.h +59 -0
  433. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +134 -0
  434. data/ext/v8/upstream/3.1.8/src/vm-state.h +68 -0
  435. data/ext/v8/upstream/3.1.8/src/win32-headers.h +95 -0
  436. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +455 -0
  437. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +3162 -0
  438. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +1584 -0
  439. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +1492 -0
  440. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +5150 -0
  441. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +519 -0
  442. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64-inl.h +46 -0
  443. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +8835 -0
  444. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +750 -0
  445. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +86 -0
  446. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +316 -0
  447. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +781 -0
  448. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +1737 -0
  449. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.cc +45 -0
  450. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +130 -0
  451. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +3984 -0
  452. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +1761 -0
  453. data/ext/v8/upstream/3.1.8/src/x64/jump-target-x64.cc +437 -0
  454. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +3639 -0
  455. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +305 -0
  456. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.cc +320 -0
  457. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.h +74 -0
  458. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +2044 -0
  459. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +2052 -0
  460. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +2660 -0
  461. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +1852 -0
  462. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +1382 -0
  463. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +278 -0
  464. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64-inl.h +0 -0
  465. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.cc +0 -0
  466. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.h +0 -0
  467. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/simulator-x64.cc +0 -0
  468. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +71 -0
  469. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +3509 -0
  470. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +1292 -0
  471. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +593 -0
  472. data/ext/v8/upstream/3.1.8/src/zone-inl.h +83 -0
  473. data/ext/v8/upstream/3.1.8/src/zone.cc +195 -0
  474. data/ext/v8/upstream/3.1.8/src/zone.h +233 -0
  475. data/ext/v8/upstream/3.1.8/tools/codemap.js +265 -0
  476. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/consarray.js +0 -0
  477. data/ext/v8/upstream/3.1.8/tools/csvparser.js +78 -0
  478. data/ext/v8/upstream/3.1.8/tools/disasm.py +92 -0
  479. data/ext/v8/upstream/3.1.8/tools/gc-nvp-trace-processor.py +328 -0
  480. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/generate-ten-powers.scm +0 -0
  481. data/ext/v8/upstream/3.1.8/tools/grokdump.py +840 -0
  482. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +869 -0
  483. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/js2c.py +0 -0
  484. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/jsmin.py +0 -0
  485. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/linux-tick-processor +0 -0
  486. data/ext/v8/upstream/3.1.8/tools/ll_prof.py +919 -0
  487. data/ext/v8/upstream/3.1.8/tools/logreader.js +185 -0
  488. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-nm +0 -0
  489. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-tick-processor +0 -0
  490. data/ext/v8/upstream/3.1.8/tools/oom_dump/README +31 -0
  491. data/ext/v8/upstream/3.1.8/tools/oom_dump/SConstruct +42 -0
  492. data/ext/v8/upstream/3.1.8/tools/oom_dump/oom_dump.cc +288 -0
  493. data/ext/v8/upstream/3.1.8/tools/presubmit.py +305 -0
  494. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/process-heap-prof.py +0 -0
  495. data/ext/v8/upstream/3.1.8/tools/profile.js +751 -0
  496. data/ext/v8/upstream/3.1.8/tools/profile_view.js +219 -0
  497. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/run-valgrind.py +0 -0
  498. data/ext/v8/upstream/3.1.8/tools/splaytree.js +316 -0
  499. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/stats-viewer.py +0 -0
  500. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/tickprocessor-driver.js +0 -0
  501. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +863 -0
  502. data/ext/v8/upstream/3.1.8/tools/utils.py +96 -0
  503. data/ext/v8/upstream/3.1.8/tools/visual_studio/README.txt +70 -0
  504. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/arm.vsprops +0 -0
  505. data/ext/v8/upstream/3.1.8/tools/visual_studio/common.vsprops +34 -0
  506. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8.vcproj +0 -0
  507. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_arm.vcproj +0 -0
  508. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_x64.vcproj +0 -0
  509. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8js2c.cmd +0 -0
  510. data/ext/v8/upstream/3.1.8/tools/visual_studio/debug.vsprops +17 -0
  511. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/ia32.vsprops +0 -0
  512. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/js2c.cmd +0 -0
  513. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/release.vsprops +0 -0
  514. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.sln +0 -0
  515. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.vcproj +0 -0
  516. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.sln +0 -0
  517. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.vcproj +0 -0
  518. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +1296 -0
  519. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +1234 -0
  520. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +1296 -0
  521. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  522. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  523. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  524. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  525. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  526. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  527. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  528. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  529. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample.vcproj +147 -0
  530. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_arm.vcproj +147 -0
  531. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_x64.vcproj +163 -0
  532. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  533. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  534. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  535. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  536. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.sln +0 -0
  537. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.vcproj +0 -0
  538. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/x64.vsprops +0 -0
  539. data/ext/v8/upstream/3.1.8/tools/windows-tick-processor.bat +30 -0
  540. data/ext/v8/upstream/Makefile +2 -1
  541. data/ext/v8/v8_template.cpp +2 -2
  542. data/lib/v8/version.rb +1 -1
  543. data/spec/redjs/jsapi_spec.rb +2 -2
  544. metadata +552 -490
  545. data/ext/v8/upstream/2.3.3/.gitignore +0 -26
  546. data/ext/v8/upstream/2.3.3/AUTHORS +0 -31
  547. data/ext/v8/upstream/2.3.3/ChangeLog +0 -1916
  548. data/ext/v8/upstream/2.3.3/LICENSE +0 -55
  549. data/ext/v8/upstream/2.3.3/SConstruct +0 -1154
  550. data/ext/v8/upstream/2.3.3/include/v8-debug.h +0 -381
  551. data/ext/v8/upstream/2.3.3/include/v8-profiler.h +0 -353
  552. data/ext/v8/upstream/2.3.3/include/v8.h +0 -3616
  553. data/ext/v8/upstream/2.3.3/src/SConscript +0 -330
  554. data/ext/v8/upstream/2.3.3/src/accessors.cc +0 -661
  555. data/ext/v8/upstream/2.3.3/src/accessors.h +0 -114
  556. data/ext/v8/upstream/2.3.3/src/allocation.cc +0 -198
  557. data/ext/v8/upstream/2.3.3/src/allocation.h +0 -169
  558. data/ext/v8/upstream/2.3.3/src/api.cc +0 -4795
  559. data/ext/v8/upstream/2.3.3/src/api.h +0 -485
  560. data/ext/v8/upstream/2.3.3/src/apiutils.h +0 -69
  561. data/ext/v8/upstream/2.3.3/src/arguments.h +0 -96
  562. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm-inl.h +0 -305
  563. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.cc +0 -2580
  564. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.h +0 -1275
  565. data/ext/v8/upstream/2.3.3/src/arm/builtins-arm.cc +0 -1320
  566. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm-inl.h +0 -48
  567. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.cc +0 -11398
  568. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.h +0 -1102
  569. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.cc +0 -154
  570. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.h +0 -388
  571. data/ext/v8/upstream/2.3.3/src/arm/cpu-arm.cc +0 -142
  572. data/ext/v8/upstream/2.3.3/src/arm/debug-arm.cc +0 -309
  573. data/ext/v8/upstream/2.3.3/src/arm/disasm-arm.cc +0 -1459
  574. data/ext/v8/upstream/2.3.3/src/arm/fast-codegen-arm.cc +0 -241
  575. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.cc +0 -123
  576. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.h +0 -162
  577. data/ext/v8/upstream/2.3.3/src/arm/full-codegen-arm.cc +0 -3178
  578. data/ext/v8/upstream/2.3.3/src/arm/ic-arm.cc +0 -2258
  579. data/ext/v8/upstream/2.3.3/src/arm/jump-target-arm.cc +0 -164
  580. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.cc +0 -1892
  581. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.h +0 -727
  582. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.cc +0 -1261
  583. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.h +0 -266
  584. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.cc +0 -2822
  585. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.h +0 -361
  586. data/ext/v8/upstream/2.3.3/src/arm/stub-cache-arm.cc +0 -2387
  587. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.cc +0 -834
  588. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.h +0 -519
  589. data/ext/v8/upstream/2.3.3/src/array.js +0 -1127
  590. data/ext/v8/upstream/2.3.3/src/assembler.cc +0 -801
  591. data/ext/v8/upstream/2.3.3/src/assembler.h +0 -573
  592. data/ext/v8/upstream/2.3.3/src/ast-inl.h +0 -81
  593. data/ext/v8/upstream/2.3.3/src/ast.cc +0 -1152
  594. data/ext/v8/upstream/2.3.3/src/ast.h +0 -2106
  595. data/ext/v8/upstream/2.3.3/src/bootstrapper.cc +0 -1819
  596. data/ext/v8/upstream/2.3.3/src/builtins.cc +0 -1529
  597. data/ext/v8/upstream/2.3.3/src/builtins.h +0 -263
  598. data/ext/v8/upstream/2.3.3/src/bytecodes-irregexp.h +0 -104
  599. data/ext/v8/upstream/2.3.3/src/cached-powers.h +0 -119
  600. data/ext/v8/upstream/2.3.3/src/char-predicates-inl.h +0 -86
  601. data/ext/v8/upstream/2.3.3/src/checks.cc +0 -100
  602. data/ext/v8/upstream/2.3.3/src/checks.h +0 -310
  603. data/ext/v8/upstream/2.3.3/src/circular-queue.cc +0 -121
  604. data/ext/v8/upstream/2.3.3/src/code-stubs.cc +0 -177
  605. data/ext/v8/upstream/2.3.3/src/code-stubs.h +0 -177
  606. data/ext/v8/upstream/2.3.3/src/codegen-inl.h +0 -60
  607. data/ext/v8/upstream/2.3.3/src/codegen.cc +0 -516
  608. data/ext/v8/upstream/2.3.3/src/codegen.h +0 -897
  609. data/ext/v8/upstream/2.3.3/src/compilation-cache.cc +0 -562
  610. data/ext/v8/upstream/2.3.3/src/compilation-cache.h +0 -102
  611. data/ext/v8/upstream/2.3.3/src/compiler.cc +0 -654
  612. data/ext/v8/upstream/2.3.3/src/compiler.h +0 -299
  613. data/ext/v8/upstream/2.3.3/src/contexts.cc +0 -256
  614. data/ext/v8/upstream/2.3.3/src/contexts.h +0 -342
  615. data/ext/v8/upstream/2.3.3/src/conversions.cc +0 -1119
  616. data/ext/v8/upstream/2.3.3/src/conversions.h +0 -123
  617. data/ext/v8/upstream/2.3.3/src/counters.h +0 -239
  618. data/ext/v8/upstream/2.3.3/src/cpu-profiler-inl.h +0 -100
  619. data/ext/v8/upstream/2.3.3/src/cpu-profiler.cc +0 -538
  620. data/ext/v8/upstream/2.3.3/src/cpu-profiler.h +0 -285
  621. data/ext/v8/upstream/2.3.3/src/d8-debug.cc +0 -356
  622. data/ext/v8/upstream/2.3.3/src/d8-debug.h +0 -155
  623. data/ext/v8/upstream/2.3.3/src/d8.cc +0 -783
  624. data/ext/v8/upstream/2.3.3/src/d8.h +0 -227
  625. data/ext/v8/upstream/2.3.3/src/d8.js +0 -1683
  626. data/ext/v8/upstream/2.3.3/src/data-flow.cc +0 -758
  627. data/ext/v8/upstream/2.3.3/src/data-flow.h +0 -278
  628. data/ext/v8/upstream/2.3.3/src/date.js +0 -1059
  629. data/ext/v8/upstream/2.3.3/src/dateparser-inl.h +0 -123
  630. data/ext/v8/upstream/2.3.3/src/dateparser.h +0 -244
  631. data/ext/v8/upstream/2.3.3/src/debug-agent.cc +0 -427
  632. data/ext/v8/upstream/2.3.3/src/debug-agent.h +0 -129
  633. data/ext/v8/upstream/2.3.3/src/debug-debugger.js +0 -2227
  634. data/ext/v8/upstream/2.3.3/src/debug.cc +0 -3005
  635. data/ext/v8/upstream/2.3.3/src/debug.h +0 -993
  636. data/ext/v8/upstream/2.3.3/src/disassembler.cc +0 -312
  637. data/ext/v8/upstream/2.3.3/src/double.h +0 -169
  638. data/ext/v8/upstream/2.3.3/src/dtoa-config.c +0 -92
  639. data/ext/v8/upstream/2.3.3/src/dtoa.cc +0 -77
  640. data/ext/v8/upstream/2.3.3/src/dtoa.h +0 -81
  641. data/ext/v8/upstream/2.3.3/src/execution.cc +0 -809
  642. data/ext/v8/upstream/2.3.3/src/execution.h +0 -336
  643. data/ext/v8/upstream/2.3.3/src/factory.cc +0 -1003
  644. data/ext/v8/upstream/2.3.3/src/factory.h +0 -410
  645. data/ext/v8/upstream/2.3.3/src/fast-codegen.cc +0 -746
  646. data/ext/v8/upstream/2.3.3/src/fast-codegen.h +0 -161
  647. data/ext/v8/upstream/2.3.3/src/fast-dtoa.cc +0 -505
  648. data/ext/v8/upstream/2.3.3/src/fast-dtoa.h +0 -58
  649. data/ext/v8/upstream/2.3.3/src/flag-definitions.h +0 -455
  650. data/ext/v8/upstream/2.3.3/src/flags.cc +0 -551
  651. data/ext/v8/upstream/2.3.3/src/flags.h +0 -81
  652. data/ext/v8/upstream/2.3.3/src/flow-graph.cc +0 -763
  653. data/ext/v8/upstream/2.3.3/src/flow-graph.h +0 -180
  654. data/ext/v8/upstream/2.3.3/src/frame-element.h +0 -273
  655. data/ext/v8/upstream/2.3.3/src/frames-inl.h +0 -217
  656. data/ext/v8/upstream/2.3.3/src/frames.cc +0 -826
  657. data/ext/v8/upstream/2.3.3/src/frames.h +0 -682
  658. data/ext/v8/upstream/2.3.3/src/full-codegen.cc +0 -1443
  659. data/ext/v8/upstream/2.3.3/src/full-codegen.h +0 -548
  660. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.cc +0 -76
  661. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.h +0 -135
  662. data/ext/v8/upstream/2.3.3/src/global-handles.cc +0 -520
  663. data/ext/v8/upstream/2.3.3/src/global-handles.h +0 -180
  664. data/ext/v8/upstream/2.3.3/src/globals.h +0 -669
  665. data/ext/v8/upstream/2.3.3/src/handles-inl.h +0 -76
  666. data/ext/v8/upstream/2.3.3/src/handles.cc +0 -825
  667. data/ext/v8/upstream/2.3.3/src/handles.h +0 -393
  668. data/ext/v8/upstream/2.3.3/src/hashmap.cc +0 -226
  669. data/ext/v8/upstream/2.3.3/src/hashmap.h +0 -120
  670. data/ext/v8/upstream/2.3.3/src/heap-inl.h +0 -493
  671. data/ext/v8/upstream/2.3.3/src/heap-profiler.cc +0 -779
  672. data/ext/v8/upstream/2.3.3/src/heap-profiler.h +0 -323
  673. data/ext/v8/upstream/2.3.3/src/heap.cc +0 -4994
  674. data/ext/v8/upstream/2.3.3/src/heap.h +0 -1984
  675. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32-inl.h +0 -360
  676. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.cc +0 -2600
  677. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.h +0 -969
  678. data/ext/v8/upstream/2.3.3/src/ia32/builtins-ia32.cc +0 -1261
  679. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.cc +0 -13968
  680. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.h +0 -1097
  681. data/ext/v8/upstream/2.3.3/src/ia32/cpu-ia32.cc +0 -83
  682. data/ext/v8/upstream/2.3.3/src/ia32/debug-ia32.cc +0 -309
  683. data/ext/v8/upstream/2.3.3/src/ia32/disasm-ia32.cc +0 -1471
  684. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.cc +0 -954
  685. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.h +0 -155
  686. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.cc +0 -115
  687. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.h +0 -135
  688. data/ext/v8/upstream/2.3.3/src/ia32/full-codegen-ia32.cc +0 -3281
  689. data/ext/v8/upstream/2.3.3/src/ia32/ic-ia32.cc +0 -1966
  690. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.cc +0 -1610
  691. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.h +0 -610
  692. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.cc +0 -1247
  693. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.h +0 -214
  694. data/ext/v8/upstream/2.3.3/src/ia32/simulator-ia32.h +0 -62
  695. data/ext/v8/upstream/2.3.3/src/ia32/stub-cache-ia32.cc +0 -2750
  696. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.cc +0 -1334
  697. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.h +0 -627
  698. data/ext/v8/upstream/2.3.3/src/ic-inl.h +0 -120
  699. data/ext/v8/upstream/2.3.3/src/ic.cc +0 -1827
  700. data/ext/v8/upstream/2.3.3/src/ic.h +0 -515
  701. data/ext/v8/upstream/2.3.3/src/interpreter-irregexp.cc +0 -646
  702. data/ext/v8/upstream/2.3.3/src/json.js +0 -268
  703. data/ext/v8/upstream/2.3.3/src/jsregexp.cc +0 -5283
  704. data/ext/v8/upstream/2.3.3/src/jsregexp.h +0 -1463
  705. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.cc +0 -429
  706. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.h +0 -244
  707. data/ext/v8/upstream/2.3.3/src/jump-target-light.cc +0 -110
  708. data/ext/v8/upstream/2.3.3/src/jump-target-light.h +0 -192
  709. data/ext/v8/upstream/2.3.3/src/list-inl.h +0 -166
  710. data/ext/v8/upstream/2.3.3/src/list.h +0 -159
  711. data/ext/v8/upstream/2.3.3/src/liveedit-debugger.js +0 -1057
  712. data/ext/v8/upstream/2.3.3/src/liveedit.cc +0 -1480
  713. data/ext/v8/upstream/2.3.3/src/liveedit.h +0 -170
  714. data/ext/v8/upstream/2.3.3/src/log-utils.cc +0 -497
  715. data/ext/v8/upstream/2.3.3/src/log-utils.h +0 -289
  716. data/ext/v8/upstream/2.3.3/src/log.cc +0 -1561
  717. data/ext/v8/upstream/2.3.3/src/log.h +0 -384
  718. data/ext/v8/upstream/2.3.3/src/macro-assembler.h +0 -86
  719. data/ext/v8/upstream/2.3.3/src/macros.py +0 -177
  720. data/ext/v8/upstream/2.3.3/src/mark-compact.cc +0 -2330
  721. data/ext/v8/upstream/2.3.3/src/mark-compact.h +0 -451
  722. data/ext/v8/upstream/2.3.3/src/math.js +0 -264
  723. data/ext/v8/upstream/2.3.3/src/memory.h +0 -74
  724. data/ext/v8/upstream/2.3.3/src/messages.cc +0 -183
  725. data/ext/v8/upstream/2.3.3/src/messages.h +0 -113
  726. data/ext/v8/upstream/2.3.3/src/messages.js +0 -982
  727. data/ext/v8/upstream/2.3.3/src/mips/assembler-mips.h +0 -668
  728. data/ext/v8/upstream/2.3.3/src/mips/builtins-mips.cc +0 -205
  729. data/ext/v8/upstream/2.3.3/src/mips/codegen-mips.h +0 -434
  730. data/ext/v8/upstream/2.3.3/src/mips/debug-mips.cc +0 -131
  731. data/ext/v8/upstream/2.3.3/src/mips/frames-mips.cc +0 -102
  732. data/ext/v8/upstream/2.3.3/src/mips/ic-mips.cc +0 -220
  733. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.cc +0 -1651
  734. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.h +0 -311
  735. data/ext/v8/upstream/2.3.3/src/mips/stub-cache-mips.cc +0 -403
  736. data/ext/v8/upstream/2.3.3/src/mirror-debugger.js +0 -2380
  737. data/ext/v8/upstream/2.3.3/src/objects-debug.cc +0 -1366
  738. data/ext/v8/upstream/2.3.3/src/objects-inl.h +0 -3333
  739. data/ext/v8/upstream/2.3.3/src/objects.cc +0 -8820
  740. data/ext/v8/upstream/2.3.3/src/objects.h +0 -5373
  741. data/ext/v8/upstream/2.3.3/src/oprofile-agent.cc +0 -108
  742. data/ext/v8/upstream/2.3.3/src/oprofile-agent.h +0 -77
  743. data/ext/v8/upstream/2.3.3/src/parser.cc +0 -5207
  744. data/ext/v8/upstream/2.3.3/src/parser.h +0 -197
  745. data/ext/v8/upstream/2.3.3/src/platform-freebsd.cc +0 -667
  746. data/ext/v8/upstream/2.3.3/src/platform-linux.cc +0 -862
  747. data/ext/v8/upstream/2.3.3/src/platform-macos.cc +0 -665
  748. data/ext/v8/upstream/2.3.3/src/platform-nullos.cc +0 -454
  749. data/ext/v8/upstream/2.3.3/src/platform-openbsd.cc +0 -622
  750. data/ext/v8/upstream/2.3.3/src/platform-posix.cc +0 -362
  751. data/ext/v8/upstream/2.3.3/src/platform-solaris.cc +0 -653
  752. data/ext/v8/upstream/2.3.3/src/platform-win32.cc +0 -1911
  753. data/ext/v8/upstream/2.3.3/src/platform.h +0 -577
  754. data/ext/v8/upstream/2.3.3/src/powers-ten.h +0 -2461
  755. data/ext/v8/upstream/2.3.3/src/prettyprinter.cc +0 -1531
  756. data/ext/v8/upstream/2.3.3/src/prettyprinter.h +0 -221
  757. data/ext/v8/upstream/2.3.3/src/profile-generator-inl.h +0 -148
  758. data/ext/v8/upstream/2.3.3/src/profile-generator.cc +0 -1830
  759. data/ext/v8/upstream/2.3.3/src/profile-generator.h +0 -853
  760. data/ext/v8/upstream/2.3.3/src/property.cc +0 -96
  761. data/ext/v8/upstream/2.3.3/src/property.h +0 -315
  762. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.cc +0 -464
  763. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.h +0 -141
  764. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.cc +0 -356
  765. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.h +0 -103
  766. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.cc +0 -261
  767. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.h +0 -228
  768. data/ext/v8/upstream/2.3.3/src/regexp.js +0 -549
  769. data/ext/v8/upstream/2.3.3/src/rewriter.cc +0 -1038
  770. data/ext/v8/upstream/2.3.3/src/rewriter.h +0 -54
  771. data/ext/v8/upstream/2.3.3/src/runtime.cc +0 -10599
  772. data/ext/v8/upstream/2.3.3/src/runtime.h +0 -459
  773. data/ext/v8/upstream/2.3.3/src/runtime.js +0 -629
  774. data/ext/v8/upstream/2.3.3/src/scanner.cc +0 -1346
  775. data/ext/v8/upstream/2.3.3/src/scanner.h +0 -503
  776. data/ext/v8/upstream/2.3.3/src/scopeinfo.cc +0 -637
  777. data/ext/v8/upstream/2.3.3/src/scopeinfo.h +0 -233
  778. data/ext/v8/upstream/2.3.3/src/scopes.cc +0 -962
  779. data/ext/v8/upstream/2.3.3/src/scopes.h +0 -400
  780. data/ext/v8/upstream/2.3.3/src/serialize.cc +0 -1461
  781. data/ext/v8/upstream/2.3.3/src/serialize.h +0 -581
  782. data/ext/v8/upstream/2.3.3/src/spaces-inl.h +0 -483
  783. data/ext/v8/upstream/2.3.3/src/spaces.cc +0 -2901
  784. data/ext/v8/upstream/2.3.3/src/spaces.h +0 -2197
  785. data/ext/v8/upstream/2.3.3/src/string-stream.cc +0 -584
  786. data/ext/v8/upstream/2.3.3/src/string-stream.h +0 -189
  787. data/ext/v8/upstream/2.3.3/src/string.js +0 -1006
  788. data/ext/v8/upstream/2.3.3/src/stub-cache.cc +0 -1379
  789. data/ext/v8/upstream/2.3.3/src/stub-cache.h +0 -756
  790. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/COPYING +0 -15
  791. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/dtoa.c +0 -3334
  792. data/ext/v8/upstream/2.3.3/src/token.cc +0 -56
  793. data/ext/v8/upstream/2.3.3/src/token.h +0 -270
  794. data/ext/v8/upstream/2.3.3/src/top.cc +0 -1067
  795. data/ext/v8/upstream/2.3.3/src/top.h +0 -463
  796. data/ext/v8/upstream/2.3.3/src/type-info.cc +0 -53
  797. data/ext/v8/upstream/2.3.3/src/type-info.h +0 -244
  798. data/ext/v8/upstream/2.3.3/src/unicode-inl.h +0 -238
  799. data/ext/v8/upstream/2.3.3/src/unicode.cc +0 -749
  800. data/ext/v8/upstream/2.3.3/src/unicode.h +0 -279
  801. data/ext/v8/upstream/2.3.3/src/uri.js +0 -415
  802. data/ext/v8/upstream/2.3.3/src/utils.cc +0 -285
  803. data/ext/v8/upstream/2.3.3/src/utils.h +0 -745
  804. data/ext/v8/upstream/2.3.3/src/v8-counters.h +0 -250
  805. data/ext/v8/upstream/2.3.3/src/v8.cc +0 -228
  806. data/ext/v8/upstream/2.3.3/src/v8.h +0 -121
  807. data/ext/v8/upstream/2.3.3/src/v8natives.js +0 -1188
  808. data/ext/v8/upstream/2.3.3/src/v8threads.cc +0 -461
  809. data/ext/v8/upstream/2.3.3/src/v8threads.h +0 -159
  810. data/ext/v8/upstream/2.3.3/src/variables.cc +0 -119
  811. data/ext/v8/upstream/2.3.3/src/variables.h +0 -205
  812. data/ext/v8/upstream/2.3.3/src/version.cc +0 -88
  813. data/ext/v8/upstream/2.3.3/src/virtual-frame-heavy-inl.h +0 -192
  814. data/ext/v8/upstream/2.3.3/src/virtual-frame.h +0 -46
  815. data/ext/v8/upstream/2.3.3/src/vm-state-inl.h +0 -137
  816. data/ext/v8/upstream/2.3.3/src/vm-state.cc +0 -39
  817. data/ext/v8/upstream/2.3.3/src/vm-state.h +0 -77
  818. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64-inl.h +0 -400
  819. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.cc +0 -2963
  820. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.h +0 -1438
  821. data/ext/v8/upstream/2.3.3/src/x64/builtins-x64.cc +0 -1296
  822. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64-inl.h +0 -46
  823. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.cc +0 -12491
  824. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.h +0 -1090
  825. data/ext/v8/upstream/2.3.3/src/x64/cpu-x64.cc +0 -83
  826. data/ext/v8/upstream/2.3.3/src/x64/debug-x64.cc +0 -267
  827. data/ext/v8/upstream/2.3.3/src/x64/disasm-x64.cc +0 -1696
  828. data/ext/v8/upstream/2.3.3/src/x64/fast-codegen-x64.cc +0 -250
  829. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.cc +0 -113
  830. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.h +0 -125
  831. data/ext/v8/upstream/2.3.3/src/x64/full-codegen-x64.cc +0 -3270
  832. data/ext/v8/upstream/2.3.3/src/x64/ic-x64.cc +0 -1907
  833. data/ext/v8/upstream/2.3.3/src/x64/jump-target-x64.cc +0 -437
  834. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.cc +0 -2793
  835. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.h +0 -916
  836. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.cc +0 -1374
  837. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.h +0 -277
  838. data/ext/v8/upstream/2.3.3/src/x64/simulator-x64.h +0 -63
  839. data/ext/v8/upstream/2.3.3/src/x64/stub-cache-x64.cc +0 -2560
  840. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.cc +0 -1264
  841. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.h +0 -590
  842. data/ext/v8/upstream/2.3.3/src/zone-inl.h +0 -82
  843. data/ext/v8/upstream/2.3.3/src/zone.cc +0 -194
  844. data/ext/v8/upstream/2.3.3/src/zone.h +0 -221
  845. data/ext/v8/upstream/2.3.3/tools/codemap.js +0 -270
  846. data/ext/v8/upstream/2.3.3/tools/csvparser.js +0 -83
  847. data/ext/v8/upstream/2.3.3/tools/gc-nvp-trace-processor.py +0 -317
  848. data/ext/v8/upstream/2.3.3/tools/gyp/v8.gyp +0 -749
  849. data/ext/v8/upstream/2.3.3/tools/linux-tick-processor.py +0 -78
  850. data/ext/v8/upstream/2.3.3/tools/logreader.js +0 -338
  851. data/ext/v8/upstream/2.3.3/tools/oprofile/annotate +0 -7
  852. data/ext/v8/upstream/2.3.3/tools/oprofile/common +0 -19
  853. data/ext/v8/upstream/2.3.3/tools/oprofile/dump +0 -7
  854. data/ext/v8/upstream/2.3.3/tools/oprofile/report +0 -7
  855. data/ext/v8/upstream/2.3.3/tools/oprofile/reset +0 -7
  856. data/ext/v8/upstream/2.3.3/tools/oprofile/run +0 -14
  857. data/ext/v8/upstream/2.3.3/tools/oprofile/shutdown +0 -7
  858. data/ext/v8/upstream/2.3.3/tools/oprofile/start +0 -7
  859. data/ext/v8/upstream/2.3.3/tools/presubmit.py +0 -299
  860. data/ext/v8/upstream/2.3.3/tools/profile.js +0 -691
  861. data/ext/v8/upstream/2.3.3/tools/profile_view.js +0 -224
  862. data/ext/v8/upstream/2.3.3/tools/splaytree.js +0 -322
  863. data/ext/v8/upstream/2.3.3/tools/splaytree.py +0 -226
  864. data/ext/v8/upstream/2.3.3/tools/tickprocessor.js +0 -862
  865. data/ext/v8/upstream/2.3.3/tools/tickprocessor.py +0 -571
  866. data/ext/v8/upstream/2.3.3/tools/utils.py +0 -88
  867. data/ext/v8/upstream/2.3.3/tools/visual_studio/README.txt +0 -71
  868. data/ext/v8/upstream/2.3.3/tools/visual_studio/common.vsprops +0 -34
  869. data/ext/v8/upstream/2.3.3/tools/visual_studio/debug.vsprops +0 -17
  870. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base.vcproj +0 -1143
  871. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_arm.vcproj +0 -1115
  872. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_x64.vcproj +0 -1096
  873. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample.vcproj +0 -145
  874. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -145
  875. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -161
  876. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.bat +0 -29
  877. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.py +0 -137
@@ -0,0 +1,1382 @@
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