therubyracer 0.8.1.pre2 → 0.8.1

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

Potentially problematic release.


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

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