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,1463 +0,0 @@
1
- // Copyright 2006-2008 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
- #ifndef V8_JSREGEXP_H_
29
- #define V8_JSREGEXP_H_
30
-
31
- #include "macro-assembler.h"
32
- #include "zone-inl.h"
33
-
34
- namespace v8 {
35
- namespace internal {
36
-
37
-
38
- class RegExpMacroAssembler;
39
-
40
-
41
- class RegExpImpl {
42
- public:
43
- // Whether V8 is compiled with native regexp support or not.
44
- static bool UsesNativeRegExp() {
45
- #ifdef V8_INTERPRETED_REGEXP
46
- return false;
47
- #else
48
- return true;
49
- #endif
50
- }
51
-
52
- // Creates a regular expression literal in the old space.
53
- // This function calls the garbage collector if necessary.
54
- static Handle<Object> CreateRegExpLiteral(Handle<JSFunction> constructor,
55
- Handle<String> pattern,
56
- Handle<String> flags,
57
- bool* has_pending_exception);
58
-
59
- // Returns a string representation of a regular expression.
60
- // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4.
61
- // This function calls the garbage collector if necessary.
62
- static Handle<String> ToString(Handle<Object> value);
63
-
64
- // Parses the RegExp pattern and prepares the JSRegExp object with
65
- // generic data and choice of implementation - as well as what
66
- // the implementation wants to store in the data field.
67
- // Returns false if compilation fails.
68
- static Handle<Object> Compile(Handle<JSRegExp> re,
69
- Handle<String> pattern,
70
- Handle<String> flags);
71
-
72
- // See ECMA-262 section 15.10.6.2.
73
- // This function calls the garbage collector if necessary.
74
- static Handle<Object> Exec(Handle<JSRegExp> regexp,
75
- Handle<String> subject,
76
- int index,
77
- Handle<JSArray> lastMatchInfo);
78
-
79
- // Prepares a JSRegExp object with Irregexp-specific data.
80
- static void IrregexpInitialize(Handle<JSRegExp> re,
81
- Handle<String> pattern,
82
- JSRegExp::Flags flags,
83
- int capture_register_count);
84
-
85
-
86
- static void AtomCompile(Handle<JSRegExp> re,
87
- Handle<String> pattern,
88
- JSRegExp::Flags flags,
89
- Handle<String> match_pattern);
90
-
91
- static Handle<Object> AtomExec(Handle<JSRegExp> regexp,
92
- Handle<String> subject,
93
- int index,
94
- Handle<JSArray> lastMatchInfo);
95
-
96
- enum IrregexpResult { RE_FAILURE = 0, RE_SUCCESS = 1, RE_EXCEPTION = -1 };
97
-
98
- // Prepare a RegExp for being executed one or more times (using
99
- // IrregexpExecOnce) on the subject.
100
- // This ensures that the regexp is compiled for the subject, and that
101
- // the subject is flat.
102
- // Returns the number of integer spaces required by IrregexpExecOnce
103
- // as its "registers" argument. If the regexp cannot be compiled,
104
- // an exception is set as pending, and this function returns negative.
105
- static int IrregexpPrepare(Handle<JSRegExp> regexp,
106
- Handle<String> subject);
107
-
108
- // Execute a regular expression once on the subject, starting from
109
- // character "index".
110
- // If successful, returns RE_SUCCESS and set the capture positions
111
- // in the first registers.
112
- // If matching fails, returns RE_FAILURE.
113
- // If execution fails, sets a pending exception and returns RE_EXCEPTION.
114
- static IrregexpResult IrregexpExecOnce(Handle<JSRegExp> regexp,
115
- Handle<String> subject,
116
- int index,
117
- Vector<int32_t> registers);
118
-
119
- // Execute an Irregexp bytecode pattern.
120
- // On a successful match, the result is a JSArray containing
121
- // captured positions. On a failure, the result is the null value.
122
- // Returns an empty handle in case of an exception.
123
- static Handle<Object> IrregexpExec(Handle<JSRegExp> regexp,
124
- Handle<String> subject,
125
- int index,
126
- Handle<JSArray> lastMatchInfo);
127
-
128
- // Array index in the lastMatchInfo array.
129
- static const int kLastCaptureCount = 0;
130
- static const int kLastSubject = 1;
131
- static const int kLastInput = 2;
132
- static const int kFirstCapture = 3;
133
- static const int kLastMatchOverhead = 3;
134
-
135
- // Direct offset into the lastMatchInfo array.
136
- static const int kLastCaptureCountOffset =
137
- FixedArray::kHeaderSize + kLastCaptureCount * kPointerSize;
138
- static const int kLastSubjectOffset =
139
- FixedArray::kHeaderSize + kLastSubject * kPointerSize;
140
- static const int kLastInputOffset =
141
- FixedArray::kHeaderSize + kLastInput * kPointerSize;
142
- static const int kFirstCaptureOffset =
143
- FixedArray::kHeaderSize + kFirstCapture * kPointerSize;
144
-
145
- // Used to access the lastMatchInfo array.
146
- static int GetCapture(FixedArray* array, int index) {
147
- return Smi::cast(array->get(index + kFirstCapture))->value();
148
- }
149
-
150
- static void SetLastCaptureCount(FixedArray* array, int to) {
151
- array->set(kLastCaptureCount, Smi::FromInt(to));
152
- }
153
-
154
- static void SetLastSubject(FixedArray* array, String* to) {
155
- array->set(kLastSubject, to);
156
- }
157
-
158
- static void SetLastInput(FixedArray* array, String* to) {
159
- array->set(kLastInput, to);
160
- }
161
-
162
- static void SetCapture(FixedArray* array, int index, int to) {
163
- array->set(index + kFirstCapture, Smi::FromInt(to));
164
- }
165
-
166
- static int GetLastCaptureCount(FixedArray* array) {
167
- return Smi::cast(array->get(kLastCaptureCount))->value();
168
- }
169
-
170
- // For acting on the JSRegExp data FixedArray.
171
- static int IrregexpMaxRegisterCount(FixedArray* re);
172
- static void SetIrregexpMaxRegisterCount(FixedArray* re, int value);
173
- static int IrregexpNumberOfCaptures(FixedArray* re);
174
- static int IrregexpNumberOfRegisters(FixedArray* re);
175
- static ByteArray* IrregexpByteCode(FixedArray* re, bool is_ascii);
176
- static Code* IrregexpNativeCode(FixedArray* re, bool is_ascii);
177
-
178
- private:
179
- static String* last_ascii_string_;
180
- static String* two_byte_cached_string_;
181
-
182
- static bool CompileIrregexp(Handle<JSRegExp> re, bool is_ascii);
183
- static inline bool EnsureCompiledIrregexp(Handle<JSRegExp> re, bool is_ascii);
184
-
185
-
186
- // Set the subject cache. The previous string buffer is not deleted, so the
187
- // caller should ensure that it doesn't leak.
188
- static void SetSubjectCache(String* subject,
189
- char* utf8_subject,
190
- int uft8_length,
191
- int character_position,
192
- int utf8_position);
193
-
194
- // A one element cache of the last utf8_subject string and its length. The
195
- // subject JS String object is cached in the heap. We also cache a
196
- // translation between position and utf8 position.
197
- static char* utf8_subject_cache_;
198
- static int utf8_length_cache_;
199
- static int utf8_position_;
200
- static int character_position_;
201
- };
202
-
203
-
204
- // Represents the location of one element relative to the intersection of
205
- // two sets. Corresponds to the four areas of a Venn diagram.
206
- enum ElementInSetsRelation {
207
- kInsideNone = 0,
208
- kInsideFirst = 1,
209
- kInsideSecond = 2,
210
- kInsideBoth = 3
211
- };
212
-
213
-
214
- // Represents the relation of two sets.
215
- // Sets can be either disjoint, partially or fully overlapping, or equal.
216
- class SetRelation BASE_EMBEDDED {
217
- public:
218
- // Relation is represented by a bit saying whether there are elements in
219
- // one set that is not in the other, and a bit saying that there are elements
220
- // that are in both sets.
221
-
222
- // Location of an element. Corresponds to the internal areas of
223
- // a Venn diagram.
224
- enum {
225
- kInFirst = 1 << kInsideFirst,
226
- kInSecond = 1 << kInsideSecond,
227
- kInBoth = 1 << kInsideBoth
228
- };
229
- SetRelation() : bits_(0) {}
230
- ~SetRelation() {}
231
- // Add the existence of objects in a particular
232
- void SetElementsInFirstSet() { bits_ |= kInFirst; }
233
- void SetElementsInSecondSet() { bits_ |= kInSecond; }
234
- void SetElementsInBothSets() { bits_ |= kInBoth; }
235
- // Check the currently known relation of the sets (common functions only,
236
- // for other combinations, use value() to get the bits and check them
237
- // manually).
238
- // Sets are completely disjoint.
239
- bool Disjoint() { return (bits_ & kInBoth) == 0; }
240
- // Sets are equal.
241
- bool Equals() { return (bits_ & (kInFirst | kInSecond)) == 0; }
242
- // First set contains second.
243
- bool Contains() { return (bits_ & kInSecond) == 0; }
244
- // Second set contains first.
245
- bool ContainedIn() { return (bits_ & kInFirst) == 0; }
246
- bool NonTrivialIntersection() {
247
- return (bits_ == (kInFirst | kInSecond | kInBoth));
248
- }
249
- int value() { return bits_; }
250
- private:
251
- int bits_;
252
- };
253
-
254
-
255
- class CharacterRange {
256
- public:
257
- CharacterRange() : from_(0), to_(0) { }
258
- // For compatibility with the CHECK_OK macro
259
- CharacterRange(void* null) { ASSERT_EQ(NULL, null); } //NOLINT
260
- CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) { }
261
- static void AddClassEscape(uc16 type, ZoneList<CharacterRange>* ranges);
262
- static Vector<const uc16> GetWordBounds();
263
- static inline CharacterRange Singleton(uc16 value) {
264
- return CharacterRange(value, value);
265
- }
266
- static inline CharacterRange Range(uc16 from, uc16 to) {
267
- ASSERT(from <= to);
268
- return CharacterRange(from, to);
269
- }
270
- static inline CharacterRange Everything() {
271
- return CharacterRange(0, 0xFFFF);
272
- }
273
- bool Contains(uc16 i) { return from_ <= i && i <= to_; }
274
- uc16 from() const { return from_; }
275
- void set_from(uc16 value) { from_ = value; }
276
- uc16 to() const { return to_; }
277
- void set_to(uc16 value) { to_ = value; }
278
- bool is_valid() { return from_ <= to_; }
279
- bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
280
- bool IsSingleton() { return (from_ == to_); }
281
- void AddCaseEquivalents(ZoneList<CharacterRange>* ranges, bool is_ascii);
282
- static void Split(ZoneList<CharacterRange>* base,
283
- Vector<const uc16> overlay,
284
- ZoneList<CharacterRange>** included,
285
- ZoneList<CharacterRange>** excluded);
286
- // Whether a range list is in canonical form: Ranges ordered by from value,
287
- // and ranges non-overlapping and non-adjacent.
288
- static bool IsCanonical(ZoneList<CharacterRange>* ranges);
289
- // Convert range list to canonical form. The characters covered by the ranges
290
- // will still be the same, but no character is in more than one range, and
291
- // adjacent ranges are merged. The resulting list may be shorter than the
292
- // original, but cannot be longer.
293
- static void Canonicalize(ZoneList<CharacterRange>* ranges);
294
- // Check how the set of characters defined by a CharacterRange list relates
295
- // to the set of word characters. List must be in canonical form.
296
- static SetRelation WordCharacterRelation(ZoneList<CharacterRange>* ranges);
297
- // Takes two character range lists (representing character sets) in canonical
298
- // form and merges them.
299
- // The characters that are only covered by the first set are added to
300
- // first_set_only_out. the characters that are only in the second set are
301
- // added to second_set_only_out, and the characters that are in both are
302
- // added to both_sets_out.
303
- // The pointers to first_set_only_out, second_set_only_out and both_sets_out
304
- // should be to empty lists, but they need not be distinct, and may be NULL.
305
- // If NULL, the characters are dropped, and if two arguments are the same
306
- // pointer, the result is the union of the two sets that would be created
307
- // if the pointers had been distinct.
308
- // This way, the Merge function can compute all the usual set operations:
309
- // union (all three out-sets are equal), intersection (only both_sets_out is
310
- // non-NULL), and set difference (only first_set is non-NULL).
311
- static void Merge(ZoneList<CharacterRange>* first_set,
312
- ZoneList<CharacterRange>* second_set,
313
- ZoneList<CharacterRange>* first_set_only_out,
314
- ZoneList<CharacterRange>* second_set_only_out,
315
- ZoneList<CharacterRange>* both_sets_out);
316
- // Negate the contents of a character range in canonical form.
317
- static void Negate(ZoneList<CharacterRange>* src,
318
- ZoneList<CharacterRange>* dst);
319
- static const int kRangeCanonicalizeMax = 0x346;
320
- static const int kStartMarker = (1 << 24);
321
- static const int kPayloadMask = (1 << 24) - 1;
322
-
323
- private:
324
- uc16 from_;
325
- uc16 to_;
326
- };
327
-
328
-
329
- // A set of unsigned integers that behaves especially well on small
330
- // integers (< 32). May do zone-allocation.
331
- class OutSet: public ZoneObject {
332
- public:
333
- OutSet() : first_(0), remaining_(NULL), successors_(NULL) { }
334
- OutSet* Extend(unsigned value);
335
- bool Get(unsigned value);
336
- static const unsigned kFirstLimit = 32;
337
-
338
- private:
339
- // Destructively set a value in this set. In most cases you want
340
- // to use Extend instead to ensure that only one instance exists
341
- // that contains the same values.
342
- void Set(unsigned value);
343
-
344
- // The successors are a list of sets that contain the same values
345
- // as this set and the one more value that is not present in this
346
- // set.
347
- ZoneList<OutSet*>* successors() { return successors_; }
348
-
349
- OutSet(uint32_t first, ZoneList<unsigned>* remaining)
350
- : first_(first), remaining_(remaining), successors_(NULL) { }
351
- uint32_t first_;
352
- ZoneList<unsigned>* remaining_;
353
- ZoneList<OutSet*>* successors_;
354
- friend class Trace;
355
- };
356
-
357
-
358
- // A mapping from integers, specified as ranges, to a set of integers.
359
- // Used for mapping character ranges to choices.
360
- class DispatchTable : public ZoneObject {
361
- public:
362
- class Entry {
363
- public:
364
- Entry() : from_(0), to_(0), out_set_(NULL) { }
365
- Entry(uc16 from, uc16 to, OutSet* out_set)
366
- : from_(from), to_(to), out_set_(out_set) { }
367
- uc16 from() { return from_; }
368
- uc16 to() { return to_; }
369
- void set_to(uc16 value) { to_ = value; }
370
- void AddValue(int value) { out_set_ = out_set_->Extend(value); }
371
- OutSet* out_set() { return out_set_; }
372
- private:
373
- uc16 from_;
374
- uc16 to_;
375
- OutSet* out_set_;
376
- };
377
-
378
- class Config {
379
- public:
380
- typedef uc16 Key;
381
- typedef Entry Value;
382
- static const uc16 kNoKey;
383
- static const Entry kNoValue;
384
- static inline int Compare(uc16 a, uc16 b) {
385
- if (a == b)
386
- return 0;
387
- else if (a < b)
388
- return -1;
389
- else
390
- return 1;
391
- }
392
- };
393
-
394
- void AddRange(CharacterRange range, int value);
395
- OutSet* Get(uc16 value);
396
- void Dump();
397
-
398
- template <typename Callback>
399
- void ForEach(Callback* callback) { return tree()->ForEach(callback); }
400
- private:
401
- // There can't be a static empty set since it allocates its
402
- // successors in a zone and caches them.
403
- OutSet* empty() { return &empty_; }
404
- OutSet empty_;
405
- ZoneSplayTree<Config>* tree() { return &tree_; }
406
- ZoneSplayTree<Config> tree_;
407
- };
408
-
409
-
410
- #define FOR_EACH_NODE_TYPE(VISIT) \
411
- VISIT(End) \
412
- VISIT(Action) \
413
- VISIT(Choice) \
414
- VISIT(BackReference) \
415
- VISIT(Assertion) \
416
- VISIT(Text)
417
-
418
-
419
- #define FOR_EACH_REG_EXP_TREE_TYPE(VISIT) \
420
- VISIT(Disjunction) \
421
- VISIT(Alternative) \
422
- VISIT(Assertion) \
423
- VISIT(CharacterClass) \
424
- VISIT(Atom) \
425
- VISIT(Quantifier) \
426
- VISIT(Capture) \
427
- VISIT(Lookahead) \
428
- VISIT(BackReference) \
429
- VISIT(Empty) \
430
- VISIT(Text)
431
-
432
-
433
- #define FORWARD_DECLARE(Name) class RegExp##Name;
434
- FOR_EACH_REG_EXP_TREE_TYPE(FORWARD_DECLARE)
435
- #undef FORWARD_DECLARE
436
-
437
-
438
- class TextElement {
439
- public:
440
- enum Type {UNINITIALIZED, ATOM, CHAR_CLASS};
441
- TextElement() : type(UNINITIALIZED) { }
442
- explicit TextElement(Type t) : type(t), cp_offset(-1) { }
443
- static TextElement Atom(RegExpAtom* atom);
444
- static TextElement CharClass(RegExpCharacterClass* char_class);
445
- int length();
446
- Type type;
447
- union {
448
- RegExpAtom* u_atom;
449
- RegExpCharacterClass* u_char_class;
450
- } data;
451
- int cp_offset;
452
- };
453
-
454
-
455
- class Trace;
456
-
457
-
458
- struct NodeInfo {
459
- NodeInfo()
460
- : being_analyzed(false),
461
- been_analyzed(false),
462
- follows_word_interest(false),
463
- follows_newline_interest(false),
464
- follows_start_interest(false),
465
- at_end(false),
466
- visited(false) { }
467
-
468
- // Returns true if the interests and assumptions of this node
469
- // matches the given one.
470
- bool Matches(NodeInfo* that) {
471
- return (at_end == that->at_end) &&
472
- (follows_word_interest == that->follows_word_interest) &&
473
- (follows_newline_interest == that->follows_newline_interest) &&
474
- (follows_start_interest == that->follows_start_interest);
475
- }
476
-
477
- // Updates the interests of this node given the interests of the
478
- // node preceding it.
479
- void AddFromPreceding(NodeInfo* that) {
480
- at_end |= that->at_end;
481
- follows_word_interest |= that->follows_word_interest;
482
- follows_newline_interest |= that->follows_newline_interest;
483
- follows_start_interest |= that->follows_start_interest;
484
- }
485
-
486
- bool HasLookbehind() {
487
- return follows_word_interest ||
488
- follows_newline_interest ||
489
- follows_start_interest;
490
- }
491
-
492
- // Sets the interests of this node to include the interests of the
493
- // following node.
494
- void AddFromFollowing(NodeInfo* that) {
495
- follows_word_interest |= that->follows_word_interest;
496
- follows_newline_interest |= that->follows_newline_interest;
497
- follows_start_interest |= that->follows_start_interest;
498
- }
499
-
500
- void ResetCompilationState() {
501
- being_analyzed = false;
502
- been_analyzed = false;
503
- }
504
-
505
- bool being_analyzed: 1;
506
- bool been_analyzed: 1;
507
-
508
- // These bits are set of this node has to know what the preceding
509
- // character was.
510
- bool follows_word_interest: 1;
511
- bool follows_newline_interest: 1;
512
- bool follows_start_interest: 1;
513
-
514
- bool at_end: 1;
515
- bool visited: 1;
516
- };
517
-
518
-
519
- class SiblingList {
520
- public:
521
- SiblingList() : list_(NULL) { }
522
- int length() {
523
- return list_ == NULL ? 0 : list_->length();
524
- }
525
- void Ensure(RegExpNode* parent) {
526
- if (list_ == NULL) {
527
- list_ = new ZoneList<RegExpNode*>(2);
528
- list_->Add(parent);
529
- }
530
- }
531
- void Add(RegExpNode* node) { list_->Add(node); }
532
- RegExpNode* Get(int index) { return list_->at(index); }
533
- private:
534
- ZoneList<RegExpNode*>* list_;
535
- };
536
-
537
-
538
- // Details of a quick mask-compare check that can look ahead in the
539
- // input stream.
540
- class QuickCheckDetails {
541
- public:
542
- QuickCheckDetails()
543
- : characters_(0),
544
- mask_(0),
545
- value_(0),
546
- cannot_match_(false) { }
547
- explicit QuickCheckDetails(int characters)
548
- : characters_(characters),
549
- mask_(0),
550
- value_(0),
551
- cannot_match_(false) { }
552
- bool Rationalize(bool ascii);
553
- // Merge in the information from another branch of an alternation.
554
- void Merge(QuickCheckDetails* other, int from_index);
555
- // Advance the current position by some amount.
556
- void Advance(int by, bool ascii);
557
- void Clear();
558
- bool cannot_match() { return cannot_match_; }
559
- void set_cannot_match() { cannot_match_ = true; }
560
- struct Position {
561
- Position() : mask(0), value(0), determines_perfectly(false) { }
562
- uc16 mask;
563
- uc16 value;
564
- bool determines_perfectly;
565
- };
566
- int characters() { return characters_; }
567
- void set_characters(int characters) { characters_ = characters; }
568
- Position* positions(int index) {
569
- ASSERT(index >= 0);
570
- ASSERT(index < characters_);
571
- return positions_ + index;
572
- }
573
- uint32_t mask() { return mask_; }
574
- uint32_t value() { return value_; }
575
-
576
- private:
577
- // How many characters do we have quick check information from. This is
578
- // the same for all branches of a choice node.
579
- int characters_;
580
- Position positions_[4];
581
- // These values are the condensate of the above array after Rationalize().
582
- uint32_t mask_;
583
- uint32_t value_;
584
- // If set to true, there is no way this quick check can match at all.
585
- // E.g., if it requires to be at the start of the input, and isn't.
586
- bool cannot_match_;
587
- };
588
-
589
-
590
- class RegExpNode: public ZoneObject {
591
- public:
592
- RegExpNode() : first_character_set_(NULL), trace_count_(0) { }
593
- virtual ~RegExpNode();
594
- virtual void Accept(NodeVisitor* visitor) = 0;
595
- // Generates a goto to this node or actually generates the code at this point.
596
- virtual void Emit(RegExpCompiler* compiler, Trace* trace) = 0;
597
- // How many characters must this node consume at a minimum in order to
598
- // succeed. If we have found at least 'still_to_find' characters that
599
- // must be consumed there is no need to ask any following nodes whether
600
- // they are sure to eat any more characters.
601
- virtual int EatsAtLeast(int still_to_find, int recursion_depth) = 0;
602
- // Emits some quick code that checks whether the preloaded characters match.
603
- // Falls through on certain failure, jumps to the label on possible success.
604
- // If the node cannot make a quick check it does nothing and returns false.
605
- bool EmitQuickCheck(RegExpCompiler* compiler,
606
- Trace* trace,
607
- bool preload_has_checked_bounds,
608
- Label* on_possible_success,
609
- QuickCheckDetails* details_return,
610
- bool fall_through_on_failure);
611
- // For a given number of characters this returns a mask and a value. The
612
- // next n characters are anded with the mask and compared with the value.
613
- // A comparison failure indicates the node cannot match the next n characters.
614
- // A comparison success indicates the node may match.
615
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
616
- RegExpCompiler* compiler,
617
- int characters_filled_in,
618
- bool not_at_start) = 0;
619
- static const int kNodeIsTooComplexForGreedyLoops = -1;
620
- virtual int GreedyLoopTextLength() { return kNodeIsTooComplexForGreedyLoops; }
621
- Label* label() { return &label_; }
622
- // If non-generic code is generated for a node (ie the node is not at the
623
- // start of the trace) then it cannot be reused. This variable sets a limit
624
- // on how often we allow that to happen before we insist on starting a new
625
- // trace and generating generic code for a node that can be reused by flushing
626
- // the deferred actions in the current trace and generating a goto.
627
- static const int kMaxCopiesCodeGenerated = 10;
628
-
629
- NodeInfo* info() { return &info_; }
630
-
631
- void AddSibling(RegExpNode* node) { siblings_.Add(node); }
632
-
633
- // Static version of EnsureSibling that expresses the fact that the
634
- // result has the same type as the input.
635
- template <class C>
636
- static C* EnsureSibling(C* node, NodeInfo* info, bool* cloned) {
637
- return static_cast<C*>(node->EnsureSibling(info, cloned));
638
- }
639
-
640
- SiblingList* siblings() { return &siblings_; }
641
- void set_siblings(SiblingList* other) { siblings_ = *other; }
642
-
643
- // Return the set of possible next characters recognized by the regexp
644
- // (or a safe subset, potentially the set of all characters).
645
- ZoneList<CharacterRange>* FirstCharacterSet();
646
-
647
- // Compute (if possible within the budget of traversed nodes) the
648
- // possible first characters of the input matched by this node and
649
- // its continuation. Returns the remaining budget after the computation.
650
- // If the budget is spent, the result is negative, and the cached
651
- // first_character_set_ value isn't set.
652
- virtual int ComputeFirstCharacterSet(int budget);
653
-
654
- // Get and set the cached first character set value.
655
- ZoneList<CharacterRange>* first_character_set() {
656
- return first_character_set_;
657
- }
658
- void set_first_character_set(ZoneList<CharacterRange>* character_set) {
659
- first_character_set_ = character_set;
660
- }
661
-
662
- protected:
663
- enum LimitResult { DONE, CONTINUE };
664
- static const int kComputeFirstCharacterSetFail = -1;
665
-
666
- LimitResult LimitVersions(RegExpCompiler* compiler, Trace* trace);
667
-
668
- // Returns a sibling of this node whose interests and assumptions
669
- // match the ones in the given node info. If no sibling exists NULL
670
- // is returned.
671
- RegExpNode* TryGetSibling(NodeInfo* info);
672
-
673
- // Returns a sibling of this node whose interests match the ones in
674
- // the given node info. The info must not contain any assertions.
675
- // If no node exists a new one will be created by cloning the current
676
- // node. The result will always be an instance of the same concrete
677
- // class as this node.
678
- RegExpNode* EnsureSibling(NodeInfo* info, bool* cloned);
679
-
680
- // Returns a clone of this node initialized using the copy constructor
681
- // of its concrete class. Note that the node may have to be pre-
682
- // processed before it is on a usable state.
683
- virtual RegExpNode* Clone() = 0;
684
-
685
- private:
686
- static const int kFirstCharBudget = 10;
687
- Label label_;
688
- NodeInfo info_;
689
- SiblingList siblings_;
690
- ZoneList<CharacterRange>* first_character_set_;
691
- // This variable keeps track of how many times code has been generated for
692
- // this node (in different traces). We don't keep track of where the
693
- // generated code is located unless the code is generated at the start of
694
- // a trace, in which case it is generic and can be reused by flushing the
695
- // deferred operations in the current trace and generating a goto.
696
- int trace_count_;
697
- };
698
-
699
-
700
- // A simple closed interval.
701
- class Interval {
702
- public:
703
- Interval() : from_(kNone), to_(kNone) { }
704
- Interval(int from, int to) : from_(from), to_(to) { }
705
- Interval Union(Interval that) {
706
- if (that.from_ == kNone)
707
- return *this;
708
- else if (from_ == kNone)
709
- return that;
710
- else
711
- return Interval(Min(from_, that.from_), Max(to_, that.to_));
712
- }
713
- bool Contains(int value) {
714
- return (from_ <= value) && (value <= to_);
715
- }
716
- bool is_empty() { return from_ == kNone; }
717
- int from() { return from_; }
718
- int to() { return to_; }
719
- static Interval Empty() { return Interval(); }
720
- static const int kNone = -1;
721
- private:
722
- int from_;
723
- int to_;
724
- };
725
-
726
-
727
- class SeqRegExpNode: public RegExpNode {
728
- public:
729
- explicit SeqRegExpNode(RegExpNode* on_success)
730
- : on_success_(on_success) { }
731
- RegExpNode* on_success() { return on_success_; }
732
- void set_on_success(RegExpNode* node) { on_success_ = node; }
733
- private:
734
- RegExpNode* on_success_;
735
- };
736
-
737
-
738
- class ActionNode: public SeqRegExpNode {
739
- public:
740
- enum Type {
741
- SET_REGISTER,
742
- INCREMENT_REGISTER,
743
- STORE_POSITION,
744
- BEGIN_SUBMATCH,
745
- POSITIVE_SUBMATCH_SUCCESS,
746
- EMPTY_MATCH_CHECK,
747
- CLEAR_CAPTURES
748
- };
749
- static ActionNode* SetRegister(int reg, int val, RegExpNode* on_success);
750
- static ActionNode* IncrementRegister(int reg, RegExpNode* on_success);
751
- static ActionNode* StorePosition(int reg,
752
- bool is_capture,
753
- RegExpNode* on_success);
754
- static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success);
755
- static ActionNode* BeginSubmatch(int stack_pointer_reg,
756
- int position_reg,
757
- RegExpNode* on_success);
758
- static ActionNode* PositiveSubmatchSuccess(int stack_pointer_reg,
759
- int restore_reg,
760
- int clear_capture_count,
761
- int clear_capture_from,
762
- RegExpNode* on_success);
763
- static ActionNode* EmptyMatchCheck(int start_register,
764
- int repetition_register,
765
- int repetition_limit,
766
- RegExpNode* on_success);
767
- virtual void Accept(NodeVisitor* visitor);
768
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
769
- virtual int EatsAtLeast(int still_to_find, int recursion_depth);
770
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
771
- RegExpCompiler* compiler,
772
- int filled_in,
773
- bool not_at_start) {
774
- return on_success()->GetQuickCheckDetails(
775
- details, compiler, filled_in, not_at_start);
776
- }
777
- Type type() { return type_; }
778
- // TODO(erikcorry): We should allow some action nodes in greedy loops.
779
- virtual int GreedyLoopTextLength() { return kNodeIsTooComplexForGreedyLoops; }
780
- virtual ActionNode* Clone() { return new ActionNode(*this); }
781
- virtual int ComputeFirstCharacterSet(int budget);
782
- private:
783
- union {
784
- struct {
785
- int reg;
786
- int value;
787
- } u_store_register;
788
- struct {
789
- int reg;
790
- } u_increment_register;
791
- struct {
792
- int reg;
793
- bool is_capture;
794
- } u_position_register;
795
- struct {
796
- int stack_pointer_register;
797
- int current_position_register;
798
- int clear_register_count;
799
- int clear_register_from;
800
- } u_submatch;
801
- struct {
802
- int start_register;
803
- int repetition_register;
804
- int repetition_limit;
805
- } u_empty_match_check;
806
- struct {
807
- int range_from;
808
- int range_to;
809
- } u_clear_captures;
810
- } data_;
811
- ActionNode(Type type, RegExpNode* on_success)
812
- : SeqRegExpNode(on_success),
813
- type_(type) { }
814
- Type type_;
815
- friend class DotPrinter;
816
- };
817
-
818
-
819
- class TextNode: public SeqRegExpNode {
820
- public:
821
- TextNode(ZoneList<TextElement>* elms,
822
- RegExpNode* on_success)
823
- : SeqRegExpNode(on_success),
824
- elms_(elms) { }
825
- TextNode(RegExpCharacterClass* that,
826
- RegExpNode* on_success)
827
- : SeqRegExpNode(on_success),
828
- elms_(new ZoneList<TextElement>(1)) {
829
- elms_->Add(TextElement::CharClass(that));
830
- }
831
- virtual void Accept(NodeVisitor* visitor);
832
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
833
- virtual int EatsAtLeast(int still_to_find, int recursion_depth);
834
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
835
- RegExpCompiler* compiler,
836
- int characters_filled_in,
837
- bool not_at_start);
838
- ZoneList<TextElement>* elements() { return elms_; }
839
- void MakeCaseIndependent(bool is_ascii);
840
- virtual int GreedyLoopTextLength();
841
- virtual TextNode* Clone() {
842
- TextNode* result = new TextNode(*this);
843
- result->CalculateOffsets();
844
- return result;
845
- }
846
- void CalculateOffsets();
847
- virtual int ComputeFirstCharacterSet(int budget);
848
- private:
849
- enum TextEmitPassType {
850
- NON_ASCII_MATCH, // Check for characters that can't match.
851
- SIMPLE_CHARACTER_MATCH, // Case-dependent single character check.
852
- NON_LETTER_CHARACTER_MATCH, // Check characters that have no case equivs.
853
- CASE_CHARACTER_MATCH, // Case-independent single character check.
854
- CHARACTER_CLASS_MATCH // Character class.
855
- };
856
- static bool SkipPass(int pass, bool ignore_case);
857
- static const int kFirstRealPass = SIMPLE_CHARACTER_MATCH;
858
- static const int kLastPass = CHARACTER_CLASS_MATCH;
859
- void TextEmitPass(RegExpCompiler* compiler,
860
- TextEmitPassType pass,
861
- bool preloaded,
862
- Trace* trace,
863
- bool first_element_checked,
864
- int* checked_up_to);
865
- int Length();
866
- ZoneList<TextElement>* elms_;
867
- };
868
-
869
-
870
- class AssertionNode: public SeqRegExpNode {
871
- public:
872
- enum AssertionNodeType {
873
- AT_END,
874
- AT_START,
875
- AT_BOUNDARY,
876
- AT_NON_BOUNDARY,
877
- AFTER_NEWLINE,
878
- // Types not directly expressible in regexp syntax.
879
- // Used for modifying a boundary node if its following character is
880
- // known to be word and/or non-word.
881
- AFTER_NONWORD_CHARACTER,
882
- AFTER_WORD_CHARACTER
883
- };
884
- static AssertionNode* AtEnd(RegExpNode* on_success) {
885
- return new AssertionNode(AT_END, on_success);
886
- }
887
- static AssertionNode* AtStart(RegExpNode* on_success) {
888
- return new AssertionNode(AT_START, on_success);
889
- }
890
- static AssertionNode* AtBoundary(RegExpNode* on_success) {
891
- return new AssertionNode(AT_BOUNDARY, on_success);
892
- }
893
- static AssertionNode* AtNonBoundary(RegExpNode* on_success) {
894
- return new AssertionNode(AT_NON_BOUNDARY, on_success);
895
- }
896
- static AssertionNode* AfterNewline(RegExpNode* on_success) {
897
- return new AssertionNode(AFTER_NEWLINE, on_success);
898
- }
899
- virtual void Accept(NodeVisitor* visitor);
900
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
901
- virtual int EatsAtLeast(int still_to_find, int recursion_depth);
902
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
903
- RegExpCompiler* compiler,
904
- int filled_in,
905
- bool not_at_start);
906
- virtual int ComputeFirstCharacterSet(int budget);
907
- virtual AssertionNode* Clone() { return new AssertionNode(*this); }
908
- AssertionNodeType type() { return type_; }
909
- void set_type(AssertionNodeType type) { type_ = type; }
910
- private:
911
- AssertionNode(AssertionNodeType t, RegExpNode* on_success)
912
- : SeqRegExpNode(on_success), type_(t) { }
913
- AssertionNodeType type_;
914
- };
915
-
916
-
917
- class BackReferenceNode: public SeqRegExpNode {
918
- public:
919
- BackReferenceNode(int start_reg,
920
- int end_reg,
921
- RegExpNode* on_success)
922
- : SeqRegExpNode(on_success),
923
- start_reg_(start_reg),
924
- end_reg_(end_reg) { }
925
- virtual void Accept(NodeVisitor* visitor);
926
- int start_register() { return start_reg_; }
927
- int end_register() { return end_reg_; }
928
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
929
- virtual int EatsAtLeast(int still_to_find, int recursion_depth);
930
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
931
- RegExpCompiler* compiler,
932
- int characters_filled_in,
933
- bool not_at_start) {
934
- return;
935
- }
936
- virtual BackReferenceNode* Clone() { return new BackReferenceNode(*this); }
937
- virtual int ComputeFirstCharacterSet(int budget);
938
- private:
939
- int start_reg_;
940
- int end_reg_;
941
- };
942
-
943
-
944
- class EndNode: public RegExpNode {
945
- public:
946
- enum Action { ACCEPT, BACKTRACK, NEGATIVE_SUBMATCH_SUCCESS };
947
- explicit EndNode(Action action) : action_(action) { }
948
- virtual void Accept(NodeVisitor* visitor);
949
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
950
- virtual int EatsAtLeast(int still_to_find, int recursion_depth) { return 0; }
951
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
952
- RegExpCompiler* compiler,
953
- int characters_filled_in,
954
- bool not_at_start) {
955
- // Returning 0 from EatsAtLeast should ensure we never get here.
956
- UNREACHABLE();
957
- }
958
- virtual EndNode* Clone() { return new EndNode(*this); }
959
- private:
960
- Action action_;
961
- };
962
-
963
-
964
- class NegativeSubmatchSuccess: public EndNode {
965
- public:
966
- NegativeSubmatchSuccess(int stack_pointer_reg,
967
- int position_reg,
968
- int clear_capture_count,
969
- int clear_capture_start)
970
- : EndNode(NEGATIVE_SUBMATCH_SUCCESS),
971
- stack_pointer_register_(stack_pointer_reg),
972
- current_position_register_(position_reg),
973
- clear_capture_count_(clear_capture_count),
974
- clear_capture_start_(clear_capture_start) { }
975
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
976
-
977
- private:
978
- int stack_pointer_register_;
979
- int current_position_register_;
980
- int clear_capture_count_;
981
- int clear_capture_start_;
982
- };
983
-
984
-
985
- class Guard: public ZoneObject {
986
- public:
987
- enum Relation { LT, GEQ };
988
- Guard(int reg, Relation op, int value)
989
- : reg_(reg),
990
- op_(op),
991
- value_(value) { }
992
- int reg() { return reg_; }
993
- Relation op() { return op_; }
994
- int value() { return value_; }
995
-
996
- private:
997
- int reg_;
998
- Relation op_;
999
- int value_;
1000
- };
1001
-
1002
-
1003
- class GuardedAlternative {
1004
- public:
1005
- explicit GuardedAlternative(RegExpNode* node) : node_(node), guards_(NULL) { }
1006
- void AddGuard(Guard* guard);
1007
- RegExpNode* node() { return node_; }
1008
- void set_node(RegExpNode* node) { node_ = node; }
1009
- ZoneList<Guard*>* guards() { return guards_; }
1010
-
1011
- private:
1012
- RegExpNode* node_;
1013
- ZoneList<Guard*>* guards_;
1014
- };
1015
-
1016
-
1017
- class AlternativeGeneration;
1018
-
1019
-
1020
- class ChoiceNode: public RegExpNode {
1021
- public:
1022
- explicit ChoiceNode(int expected_size)
1023
- : alternatives_(new ZoneList<GuardedAlternative>(expected_size)),
1024
- table_(NULL),
1025
- not_at_start_(false),
1026
- being_calculated_(false) { }
1027
- virtual void Accept(NodeVisitor* visitor);
1028
- void AddAlternative(GuardedAlternative node) { alternatives()->Add(node); }
1029
- ZoneList<GuardedAlternative>* alternatives() { return alternatives_; }
1030
- DispatchTable* GetTable(bool ignore_case);
1031
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
1032
- virtual int EatsAtLeast(int still_to_find, int recursion_depth);
1033
- int EatsAtLeastHelper(int still_to_find,
1034
- int recursion_depth,
1035
- RegExpNode* ignore_this_node);
1036
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
1037
- RegExpCompiler* compiler,
1038
- int characters_filled_in,
1039
- bool not_at_start);
1040
- virtual ChoiceNode* Clone() { return new ChoiceNode(*this); }
1041
-
1042
- bool being_calculated() { return being_calculated_; }
1043
- bool not_at_start() { return not_at_start_; }
1044
- void set_not_at_start() { not_at_start_ = true; }
1045
- void set_being_calculated(bool b) { being_calculated_ = b; }
1046
- virtual bool try_to_emit_quick_check_for_alternative(int i) { return true; }
1047
-
1048
- protected:
1049
- int GreedyLoopTextLength(GuardedAlternative* alternative);
1050
- ZoneList<GuardedAlternative>* alternatives_;
1051
-
1052
- private:
1053
- friend class DispatchTableConstructor;
1054
- friend class Analysis;
1055
- void GenerateGuard(RegExpMacroAssembler* macro_assembler,
1056
- Guard* guard,
1057
- Trace* trace);
1058
- int CalculatePreloadCharacters(RegExpCompiler* compiler);
1059
- void EmitOutOfLineContinuation(RegExpCompiler* compiler,
1060
- Trace* trace,
1061
- GuardedAlternative alternative,
1062
- AlternativeGeneration* alt_gen,
1063
- int preload_characters,
1064
- bool next_expects_preload);
1065
- DispatchTable* table_;
1066
- // If true, this node is never checked at the start of the input.
1067
- // Allows a new trace to start with at_start() set to false.
1068
- bool not_at_start_;
1069
- bool being_calculated_;
1070
- };
1071
-
1072
-
1073
- class NegativeLookaheadChoiceNode: public ChoiceNode {
1074
- public:
1075
- explicit NegativeLookaheadChoiceNode(GuardedAlternative this_must_fail,
1076
- GuardedAlternative then_do_this)
1077
- : ChoiceNode(2) {
1078
- AddAlternative(this_must_fail);
1079
- AddAlternative(then_do_this);
1080
- }
1081
- virtual int EatsAtLeast(int still_to_find, int recursion_depth);
1082
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
1083
- RegExpCompiler* compiler,
1084
- int characters_filled_in,
1085
- bool not_at_start);
1086
- // For a negative lookahead we don't emit the quick check for the
1087
- // alternative that is expected to fail. This is because quick check code
1088
- // starts by loading enough characters for the alternative that takes fewest
1089
- // characters, but on a negative lookahead the negative branch did not take
1090
- // part in that calculation (EatsAtLeast) so the assumptions don't hold.
1091
- virtual bool try_to_emit_quick_check_for_alternative(int i) { return i != 0; }
1092
- virtual int ComputeFirstCharacterSet(int budget);
1093
- };
1094
-
1095
-
1096
- class LoopChoiceNode: public ChoiceNode {
1097
- public:
1098
- explicit LoopChoiceNode(bool body_can_be_zero_length)
1099
- : ChoiceNode(2),
1100
- loop_node_(NULL),
1101
- continue_node_(NULL),
1102
- body_can_be_zero_length_(body_can_be_zero_length) { }
1103
- void AddLoopAlternative(GuardedAlternative alt);
1104
- void AddContinueAlternative(GuardedAlternative alt);
1105
- virtual void Emit(RegExpCompiler* compiler, Trace* trace);
1106
- virtual int EatsAtLeast(int still_to_find, int recursion_depth);
1107
- virtual void GetQuickCheckDetails(QuickCheckDetails* details,
1108
- RegExpCompiler* compiler,
1109
- int characters_filled_in,
1110
- bool not_at_start);
1111
- virtual int ComputeFirstCharacterSet(int budget);
1112
- virtual LoopChoiceNode* Clone() { return new LoopChoiceNode(*this); }
1113
- RegExpNode* loop_node() { return loop_node_; }
1114
- RegExpNode* continue_node() { return continue_node_; }
1115
- bool body_can_be_zero_length() { return body_can_be_zero_length_; }
1116
- virtual void Accept(NodeVisitor* visitor);
1117
-
1118
- private:
1119
- // AddAlternative is made private for loop nodes because alternatives
1120
- // should not be added freely, we need to keep track of which node
1121
- // goes back to the node itself.
1122
- void AddAlternative(GuardedAlternative node) {
1123
- ChoiceNode::AddAlternative(node);
1124
- }
1125
-
1126
- RegExpNode* loop_node_;
1127
- RegExpNode* continue_node_;
1128
- bool body_can_be_zero_length_;
1129
- };
1130
-
1131
-
1132
- // There are many ways to generate code for a node. This class encapsulates
1133
- // the current way we should be generating. In other words it encapsulates
1134
- // the current state of the code generator. The effect of this is that we
1135
- // generate code for paths that the matcher can take through the regular
1136
- // expression. A given node in the regexp can be code-generated several times
1137
- // as it can be part of several traces. For example for the regexp:
1138
- // /foo(bar|ip)baz/ the code to match baz will be generated twice, once as part
1139
- // of the foo-bar-baz trace and once as part of the foo-ip-baz trace. The code
1140
- // to match foo is generated only once (the traces have a common prefix). The
1141
- // code to store the capture is deferred and generated (twice) after the places
1142
- // where baz has been matched.
1143
- class Trace {
1144
- public:
1145
- // A value for a property that is either known to be true, know to be false,
1146
- // or not known.
1147
- enum TriBool {
1148
- UNKNOWN = -1, FALSE = 0, TRUE = 1
1149
- };
1150
-
1151
- class DeferredAction {
1152
- public:
1153
- DeferredAction(ActionNode::Type type, int reg)
1154
- : type_(type), reg_(reg), next_(NULL) { }
1155
- DeferredAction* next() { return next_; }
1156
- bool Mentions(int reg);
1157
- int reg() { return reg_; }
1158
- ActionNode::Type type() { return type_; }
1159
- private:
1160
- ActionNode::Type type_;
1161
- int reg_;
1162
- DeferredAction* next_;
1163
- friend class Trace;
1164
- };
1165
-
1166
- class DeferredCapture : public DeferredAction {
1167
- public:
1168
- DeferredCapture(int reg, bool is_capture, Trace* trace)
1169
- : DeferredAction(ActionNode::STORE_POSITION, reg),
1170
- cp_offset_(trace->cp_offset()),
1171
- is_capture_(is_capture) { }
1172
- int cp_offset() { return cp_offset_; }
1173
- bool is_capture() { return is_capture_; }
1174
- private:
1175
- int cp_offset_;
1176
- bool is_capture_;
1177
- void set_cp_offset(int cp_offset) { cp_offset_ = cp_offset; }
1178
- };
1179
-
1180
- class DeferredSetRegister : public DeferredAction {
1181
- public:
1182
- DeferredSetRegister(int reg, int value)
1183
- : DeferredAction(ActionNode::SET_REGISTER, reg),
1184
- value_(value) { }
1185
- int value() { return value_; }
1186
- private:
1187
- int value_;
1188
- };
1189
-
1190
- class DeferredClearCaptures : public DeferredAction {
1191
- public:
1192
- explicit DeferredClearCaptures(Interval range)
1193
- : DeferredAction(ActionNode::CLEAR_CAPTURES, -1),
1194
- range_(range) { }
1195
- Interval range() { return range_; }
1196
- private:
1197
- Interval range_;
1198
- };
1199
-
1200
- class DeferredIncrementRegister : public DeferredAction {
1201
- public:
1202
- explicit DeferredIncrementRegister(int reg)
1203
- : DeferredAction(ActionNode::INCREMENT_REGISTER, reg) { }
1204
- };
1205
-
1206
- Trace()
1207
- : cp_offset_(0),
1208
- actions_(NULL),
1209
- backtrack_(NULL),
1210
- stop_node_(NULL),
1211
- loop_label_(NULL),
1212
- characters_preloaded_(0),
1213
- bound_checked_up_to_(0),
1214
- flush_budget_(100),
1215
- at_start_(UNKNOWN) { }
1216
-
1217
- // End the trace. This involves flushing the deferred actions in the trace
1218
- // and pushing a backtrack location onto the backtrack stack. Once this is
1219
- // done we can start a new trace or go to one that has already been
1220
- // generated.
1221
- void Flush(RegExpCompiler* compiler, RegExpNode* successor);
1222
- int cp_offset() { return cp_offset_; }
1223
- DeferredAction* actions() { return actions_; }
1224
- // A trivial trace is one that has no deferred actions or other state that
1225
- // affects the assumptions used when generating code. There is no recorded
1226
- // backtrack location in a trivial trace, so with a trivial trace we will
1227
- // generate code that, on a failure to match, gets the backtrack location
1228
- // from the backtrack stack rather than using a direct jump instruction. We
1229
- // always start code generation with a trivial trace and non-trivial traces
1230
- // are created as we emit code for nodes or add to the list of deferred
1231
- // actions in the trace. The location of the code generated for a node using
1232
- // a trivial trace is recorded in a label in the node so that gotos can be
1233
- // generated to that code.
1234
- bool is_trivial() {
1235
- return backtrack_ == NULL &&
1236
- actions_ == NULL &&
1237
- cp_offset_ == 0 &&
1238
- characters_preloaded_ == 0 &&
1239
- bound_checked_up_to_ == 0 &&
1240
- quick_check_performed_.characters() == 0 &&
1241
- at_start_ == UNKNOWN;
1242
- }
1243
- TriBool at_start() { return at_start_; }
1244
- void set_at_start(bool at_start) { at_start_ = at_start ? TRUE : FALSE; }
1245
- Label* backtrack() { return backtrack_; }
1246
- Label* loop_label() { return loop_label_; }
1247
- RegExpNode* stop_node() { return stop_node_; }
1248
- int characters_preloaded() { return characters_preloaded_; }
1249
- int bound_checked_up_to() { return bound_checked_up_to_; }
1250
- int flush_budget() { return flush_budget_; }
1251
- QuickCheckDetails* quick_check_performed() { return &quick_check_performed_; }
1252
- bool mentions_reg(int reg);
1253
- // Returns true if a deferred position store exists to the specified
1254
- // register and stores the offset in the out-parameter. Otherwise
1255
- // returns false.
1256
- bool GetStoredPosition(int reg, int* cp_offset);
1257
- // These set methods and AdvanceCurrentPositionInTrace should be used only on
1258
- // new traces - the intention is that traces are immutable after creation.
1259
- void add_action(DeferredAction* new_action) {
1260
- ASSERT(new_action->next_ == NULL);
1261
- new_action->next_ = actions_;
1262
- actions_ = new_action;
1263
- }
1264
- void set_backtrack(Label* backtrack) { backtrack_ = backtrack; }
1265
- void set_stop_node(RegExpNode* node) { stop_node_ = node; }
1266
- void set_loop_label(Label* label) { loop_label_ = label; }
1267
- void set_characters_preloaded(int count) { characters_preloaded_ = count; }
1268
- void set_bound_checked_up_to(int to) { bound_checked_up_to_ = to; }
1269
- void set_flush_budget(int to) { flush_budget_ = to; }
1270
- void set_quick_check_performed(QuickCheckDetails* d) {
1271
- quick_check_performed_ = *d;
1272
- }
1273
- void InvalidateCurrentCharacter();
1274
- void AdvanceCurrentPositionInTrace(int by, RegExpCompiler* compiler);
1275
- private:
1276
- int FindAffectedRegisters(OutSet* affected_registers);
1277
- void PerformDeferredActions(RegExpMacroAssembler* macro,
1278
- int max_register,
1279
- OutSet& affected_registers,
1280
- OutSet* registers_to_pop,
1281
- OutSet* registers_to_clear);
1282
- void RestoreAffectedRegisters(RegExpMacroAssembler* macro,
1283
- int max_register,
1284
- OutSet& registers_to_pop,
1285
- OutSet& registers_to_clear);
1286
- int cp_offset_;
1287
- DeferredAction* actions_;
1288
- Label* backtrack_;
1289
- RegExpNode* stop_node_;
1290
- Label* loop_label_;
1291
- int characters_preloaded_;
1292
- int bound_checked_up_to_;
1293
- QuickCheckDetails quick_check_performed_;
1294
- int flush_budget_;
1295
- TriBool at_start_;
1296
- };
1297
-
1298
-
1299
- class NodeVisitor {
1300
- public:
1301
- virtual ~NodeVisitor() { }
1302
- #define DECLARE_VISIT(Type) \
1303
- virtual void Visit##Type(Type##Node* that) = 0;
1304
- FOR_EACH_NODE_TYPE(DECLARE_VISIT)
1305
- #undef DECLARE_VISIT
1306
- virtual void VisitLoopChoice(LoopChoiceNode* that) { VisitChoice(that); }
1307
- };
1308
-
1309
-
1310
- // Node visitor used to add the start set of the alternatives to the
1311
- // dispatch table of a choice node.
1312
- class DispatchTableConstructor: public NodeVisitor {
1313
- public:
1314
- DispatchTableConstructor(DispatchTable* table, bool ignore_case)
1315
- : table_(table),
1316
- choice_index_(-1),
1317
- ignore_case_(ignore_case) { }
1318
-
1319
- void BuildTable(ChoiceNode* node);
1320
-
1321
- void AddRange(CharacterRange range) {
1322
- table()->AddRange(range, choice_index_);
1323
- }
1324
-
1325
- void AddInverse(ZoneList<CharacterRange>* ranges);
1326
-
1327
- #define DECLARE_VISIT(Type) \
1328
- virtual void Visit##Type(Type##Node* that);
1329
- FOR_EACH_NODE_TYPE(DECLARE_VISIT)
1330
- #undef DECLARE_VISIT
1331
-
1332
- DispatchTable* table() { return table_; }
1333
- void set_choice_index(int value) { choice_index_ = value; }
1334
-
1335
- protected:
1336
- DispatchTable* table_;
1337
- int choice_index_;
1338
- bool ignore_case_;
1339
- };
1340
-
1341
-
1342
- // Assertion propagation moves information about assertions such as
1343
- // \b to the affected nodes. For instance, in /.\b./ information must
1344
- // be propagated to the first '.' that whatever follows needs to know
1345
- // if it matched a word or a non-word, and to the second '.' that it
1346
- // has to check if it succeeds a word or non-word. In this case the
1347
- // result will be something like:
1348
- //
1349
- // +-------+ +------------+
1350
- // | . | | . |
1351
- // +-------+ ---> +------------+
1352
- // | word? | | check word |
1353
- // +-------+ +------------+
1354
- class Analysis: public NodeVisitor {
1355
- public:
1356
- Analysis(bool ignore_case, bool is_ascii)
1357
- : ignore_case_(ignore_case),
1358
- is_ascii_(is_ascii),
1359
- error_message_(NULL) { }
1360
- void EnsureAnalyzed(RegExpNode* node);
1361
-
1362
- #define DECLARE_VISIT(Type) \
1363
- virtual void Visit##Type(Type##Node* that);
1364
- FOR_EACH_NODE_TYPE(DECLARE_VISIT)
1365
- #undef DECLARE_VISIT
1366
- virtual void VisitLoopChoice(LoopChoiceNode* that);
1367
-
1368
- bool has_failed() { return error_message_ != NULL; }
1369
- const char* error_message() {
1370
- ASSERT(error_message_ != NULL);
1371
- return error_message_;
1372
- }
1373
- void fail(const char* error_message) {
1374
- error_message_ = error_message;
1375
- }
1376
- private:
1377
- bool ignore_case_;
1378
- bool is_ascii_;
1379
- const char* error_message_;
1380
-
1381
- DISALLOW_IMPLICIT_CONSTRUCTORS(Analysis);
1382
- };
1383
-
1384
-
1385
- struct RegExpCompileData {
1386
- RegExpCompileData()
1387
- : tree(NULL),
1388
- node(NULL),
1389
- simple(true),
1390
- contains_anchor(false),
1391
- capture_count(0) { }
1392
- RegExpTree* tree;
1393
- RegExpNode* node;
1394
- bool simple;
1395
- bool contains_anchor;
1396
- Handle<String> error;
1397
- int capture_count;
1398
- };
1399
-
1400
-
1401
- class RegExpEngine: public AllStatic {
1402
- public:
1403
- struct CompilationResult {
1404
- explicit CompilationResult(const char* error_message)
1405
- : error_message(error_message),
1406
- code(Heap::the_hole_value()),
1407
- num_registers(0) {}
1408
- CompilationResult(Object* code, int registers)
1409
- : error_message(NULL),
1410
- code(code),
1411
- num_registers(registers) {}
1412
- const char* error_message;
1413
- Object* code;
1414
- int num_registers;
1415
- };
1416
-
1417
- static CompilationResult Compile(RegExpCompileData* input,
1418
- bool ignore_case,
1419
- bool multiline,
1420
- Handle<String> pattern,
1421
- bool is_ascii);
1422
-
1423
- static void DotPrint(const char* label, RegExpNode* node, bool ignore_case);
1424
- };
1425
-
1426
-
1427
- class OffsetsVector {
1428
- public:
1429
- inline OffsetsVector(int num_registers)
1430
- : offsets_vector_length_(num_registers) {
1431
- if (offsets_vector_length_ > kStaticOffsetsVectorSize) {
1432
- vector_ = NewArray<int>(offsets_vector_length_);
1433
- } else {
1434
- vector_ = static_offsets_vector_;
1435
- }
1436
- }
1437
- inline ~OffsetsVector() {
1438
- if (offsets_vector_length_ > kStaticOffsetsVectorSize) {
1439
- DeleteArray(vector_);
1440
- vector_ = NULL;
1441
- }
1442
- }
1443
- inline int* vector() { return vector_; }
1444
- inline int length() { return offsets_vector_length_; }
1445
-
1446
- static const int kStaticOffsetsVectorSize = 50;
1447
-
1448
- private:
1449
- static Address static_offsets_vector_address() {
1450
- return reinterpret_cast<Address>(&static_offsets_vector_);
1451
- }
1452
-
1453
- int* vector_;
1454
- int offsets_vector_length_;
1455
- static int static_offsets_vector_[kStaticOffsetsVectorSize];
1456
-
1457
- friend class ExternalReference;
1458
- };
1459
-
1460
-
1461
- } } // namespace v8::internal
1462
-
1463
- #endif // V8_JSREGEXP_H_