therubyracer 0.9.0beta2 → 0.9.0beta3

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

Potentially problematic release.


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

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