therubyracer 0.8.1.pre2 → 0.8.1

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

Potentially problematic release.


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

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