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,1346 +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
- #include "v8.h"
29
-
30
- #include "ast.h"
31
- #include "handles.h"
32
- #include "scanner.h"
33
-
34
- namespace v8 {
35
- namespace internal {
36
-
37
- // ----------------------------------------------------------------------------
38
- // Character predicates
39
-
40
-
41
- unibrow::Predicate<IdentifierStart, 128> Scanner::kIsIdentifierStart;
42
- unibrow::Predicate<IdentifierPart, 128> Scanner::kIsIdentifierPart;
43
- unibrow::Predicate<unibrow::LineTerminator, 128> Scanner::kIsLineTerminator;
44
- unibrow::Predicate<unibrow::WhiteSpace, 128> Scanner::kIsWhiteSpace;
45
-
46
-
47
- StaticResource<Scanner::Utf8Decoder> Scanner::utf8_decoder_;
48
-
49
-
50
- // ----------------------------------------------------------------------------
51
- // UTF8Buffer
52
-
53
- UTF8Buffer::UTF8Buffer() : data_(NULL), limit_(NULL) { }
54
-
55
-
56
- UTF8Buffer::~UTF8Buffer() {
57
- if (data_ != NULL) DeleteArray(data_);
58
- }
59
-
60
-
61
- void UTF8Buffer::AddCharSlow(uc32 c) {
62
- static const int kCapacityGrowthLimit = 1 * MB;
63
- if (cursor_ > limit_) {
64
- int old_capacity = Capacity();
65
- int old_position = pos();
66
- int new_capacity =
67
- Min(old_capacity * 3, old_capacity + kCapacityGrowthLimit);
68
- char* new_data = NewArray<char>(new_capacity);
69
- memcpy(new_data, data_, old_position);
70
- DeleteArray(data_);
71
- data_ = new_data;
72
- cursor_ = new_data + old_position;
73
- limit_ = ComputeLimit(new_data, new_capacity);
74
- ASSERT(Capacity() == new_capacity && pos() == old_position);
75
- }
76
- if (static_cast<unsigned>(c) <= unibrow::Utf8::kMaxOneByteChar) {
77
- *cursor_++ = c; // Common case: 7-bit ASCII.
78
- } else {
79
- cursor_ += unibrow::Utf8::Encode(cursor_, c);
80
- }
81
- ASSERT(pos() <= Capacity());
82
- }
83
-
84
-
85
- // ----------------------------------------------------------------------------
86
- // UTF16Buffer
87
-
88
-
89
- UTF16Buffer::UTF16Buffer()
90
- : pos_(0), end_(Scanner::kNoEndPosition) { }
91
-
92
-
93
- // CharacterStreamUTF16Buffer
94
- CharacterStreamUTF16Buffer::CharacterStreamUTF16Buffer()
95
- : pushback_buffer_(0), last_(0), stream_(NULL) { }
96
-
97
-
98
- void CharacterStreamUTF16Buffer::Initialize(Handle<String> data,
99
- unibrow::CharacterStream* input,
100
- int start_position,
101
- int end_position) {
102
- stream_ = input;
103
- if (start_position > 0) {
104
- SeekForward(start_position);
105
- }
106
- end_ = end_position != Scanner::kNoEndPosition ? end_position : kMaxInt;
107
- }
108
-
109
-
110
- void CharacterStreamUTF16Buffer::PushBack(uc32 ch) {
111
- pushback_buffer()->Add(last_);
112
- last_ = ch;
113
- pos_--;
114
- }
115
-
116
-
117
- uc32 CharacterStreamUTF16Buffer::Advance() {
118
- ASSERT(end_ != Scanner::kNoEndPosition);
119
- ASSERT(end_ >= 0);
120
- // NOTE: It is of importance to Persian / Farsi resources that we do
121
- // *not* strip format control characters in the scanner; see
122
- //
123
- // https://bugzilla.mozilla.org/show_bug.cgi?id=274152
124
- //
125
- // So, even though ECMA-262, section 7.1, page 11, dictates that we
126
- // must remove Unicode format-control characters, we do not. This is
127
- // in line with how IE and SpiderMonkey handles it.
128
- if (!pushback_buffer()->is_empty()) {
129
- pos_++;
130
- return last_ = pushback_buffer()->RemoveLast();
131
- } else if (stream_->has_more() && pos_ < end_) {
132
- pos_++;
133
- uc32 next = stream_->GetNext();
134
- return last_ = next;
135
- } else {
136
- // Note: currently the following increment is necessary to avoid a
137
- // test-parser problem!
138
- pos_++;
139
- return last_ = static_cast<uc32>(-1);
140
- }
141
- }
142
-
143
-
144
- void CharacterStreamUTF16Buffer::SeekForward(int pos) {
145
- pos_ = pos;
146
- ASSERT(pushback_buffer()->is_empty());
147
- stream_->Seek(pos);
148
- }
149
-
150
-
151
- // ExternalStringUTF16Buffer
152
- template <typename StringType, typename CharType>
153
- ExternalStringUTF16Buffer<StringType, CharType>::ExternalStringUTF16Buffer()
154
- : raw_data_(NULL) { }
155
-
156
-
157
- template <typename StringType, typename CharType>
158
- void ExternalStringUTF16Buffer<StringType, CharType>::Initialize(
159
- Handle<StringType> data,
160
- int start_position,
161
- int end_position) {
162
- ASSERT(!data.is_null());
163
- raw_data_ = data->resource()->data();
164
-
165
- ASSERT(end_position <= data->length());
166
- if (start_position > 0) {
167
- SeekForward(start_position);
168
- }
169
- end_ =
170
- end_position != Scanner::kNoEndPosition ? end_position : data->length();
171
- }
172
-
173
-
174
- template <typename StringType, typename CharType>
175
- uc32 ExternalStringUTF16Buffer<StringType, CharType>::Advance() {
176
- if (pos_ < end_) {
177
- return raw_data_[pos_++];
178
- } else {
179
- // note: currently the following increment is necessary to avoid a
180
- // test-parser problem!
181
- pos_++;
182
- return static_cast<uc32>(-1);
183
- }
184
- }
185
-
186
-
187
- template <typename StringType, typename CharType>
188
- void ExternalStringUTF16Buffer<StringType, CharType>::PushBack(uc32 ch) {
189
- pos_--;
190
- ASSERT(pos_ >= Scanner::kCharacterLookaheadBufferSize);
191
- ASSERT(raw_data_[pos_ - Scanner::kCharacterLookaheadBufferSize] == ch);
192
- }
193
-
194
-
195
- template <typename StringType, typename CharType>
196
- void ExternalStringUTF16Buffer<StringType, CharType>::SeekForward(int pos) {
197
- pos_ = pos;
198
- }
199
-
200
-
201
- // ----------------------------------------------------------------------------
202
- // Keyword Matcher
203
-
204
- KeywordMatcher::FirstState KeywordMatcher::first_states_[] = {
205
- { "break", KEYWORD_PREFIX, Token::BREAK },
206
- { NULL, C, Token::ILLEGAL },
207
- { NULL, D, Token::ILLEGAL },
208
- { "else", KEYWORD_PREFIX, Token::ELSE },
209
- { NULL, F, Token::ILLEGAL },
210
- { NULL, UNMATCHABLE, Token::ILLEGAL },
211
- { NULL, UNMATCHABLE, Token::ILLEGAL },
212
- { NULL, I, Token::ILLEGAL },
213
- { NULL, UNMATCHABLE, Token::ILLEGAL },
214
- { NULL, UNMATCHABLE, Token::ILLEGAL },
215
- { NULL, UNMATCHABLE, Token::ILLEGAL },
216
- { NULL, UNMATCHABLE, Token::ILLEGAL },
217
- { NULL, N, Token::ILLEGAL },
218
- { NULL, UNMATCHABLE, Token::ILLEGAL },
219
- { NULL, UNMATCHABLE, Token::ILLEGAL },
220
- { NULL, UNMATCHABLE, Token::ILLEGAL },
221
- { "return", KEYWORD_PREFIX, Token::RETURN },
222
- { "switch", KEYWORD_PREFIX, Token::SWITCH },
223
- { NULL, T, Token::ILLEGAL },
224
- { NULL, UNMATCHABLE, Token::ILLEGAL },
225
- { NULL, V, Token::ILLEGAL },
226
- { NULL, W, Token::ILLEGAL }
227
- };
228
-
229
-
230
- void KeywordMatcher::Step(uc32 input) {
231
- switch (state_) {
232
- case INITIAL: {
233
- // matching the first character is the only state with significant fanout.
234
- // Match only lower-case letters in range 'b'..'w'.
235
- unsigned int offset = input - kFirstCharRangeMin;
236
- if (offset < kFirstCharRangeLength) {
237
- state_ = first_states_[offset].state;
238
- if (state_ == KEYWORD_PREFIX) {
239
- keyword_ = first_states_[offset].keyword;
240
- counter_ = 1;
241
- keyword_token_ = first_states_[offset].token;
242
- }
243
- return;
244
- }
245
- break;
246
- }
247
- case KEYWORD_PREFIX:
248
- if (keyword_[counter_] == input) {
249
- ASSERT_NE(input, '\0');
250
- counter_++;
251
- if (keyword_[counter_] == '\0') {
252
- state_ = KEYWORD_MATCHED;
253
- token_ = keyword_token_;
254
- }
255
- return;
256
- }
257
- break;
258
- case KEYWORD_MATCHED:
259
- token_ = Token::IDENTIFIER;
260
- break;
261
- case C:
262
- if (MatchState(input, 'a', CA)) return;
263
- if (MatchState(input, 'o', CO)) return;
264
- break;
265
- case CA:
266
- if (MatchKeywordStart(input, "case", 2, Token::CASE)) return;
267
- if (MatchKeywordStart(input, "catch", 2, Token::CATCH)) return;
268
- break;
269
- case CO:
270
- if (MatchState(input, 'n', CON)) return;
271
- break;
272
- case CON:
273
- if (MatchKeywordStart(input, "const", 3, Token::CONST)) return;
274
- if (MatchKeywordStart(input, "continue", 3, Token::CONTINUE)) return;
275
- break;
276
- case D:
277
- if (MatchState(input, 'e', DE)) return;
278
- if (MatchKeyword(input, 'o', KEYWORD_MATCHED, Token::DO)) return;
279
- break;
280
- case DE:
281
- if (MatchKeywordStart(input, "debugger", 2, Token::DEBUGGER)) return;
282
- if (MatchKeywordStart(input, "default", 2, Token::DEFAULT)) return;
283
- if (MatchKeywordStart(input, "delete", 2, Token::DELETE)) return;
284
- break;
285
- case F:
286
- if (MatchKeywordStart(input, "false", 1, Token::FALSE_LITERAL)) return;
287
- if (MatchKeywordStart(input, "finally", 1, Token::FINALLY)) return;
288
- if (MatchKeywordStart(input, "for", 1, Token::FOR)) return;
289
- if (MatchKeywordStart(input, "function", 1, Token::FUNCTION)) return;
290
- break;
291
- case I:
292
- if (MatchKeyword(input, 'f', KEYWORD_MATCHED, Token::IF)) return;
293
- if (MatchKeyword(input, 'n', IN, Token::IN)) return;
294
- break;
295
- case IN:
296
- token_ = Token::IDENTIFIER;
297
- if (MatchKeywordStart(input, "instanceof", 2, Token::INSTANCEOF)) {
298
- return;
299
- }
300
- break;
301
- case N:
302
- if (MatchKeywordStart(input, "native", 1, Token::NATIVE)) return;
303
- if (MatchKeywordStart(input, "new", 1, Token::NEW)) return;
304
- if (MatchKeywordStart(input, "null", 1, Token::NULL_LITERAL)) return;
305
- break;
306
- case T:
307
- if (MatchState(input, 'h', TH)) return;
308
- if (MatchState(input, 'r', TR)) return;
309
- if (MatchKeywordStart(input, "typeof", 1, Token::TYPEOF)) return;
310
- break;
311
- case TH:
312
- if (MatchKeywordStart(input, "this", 2, Token::THIS)) return;
313
- if (MatchKeywordStart(input, "throw", 2, Token::THROW)) return;
314
- break;
315
- case TR:
316
- if (MatchKeywordStart(input, "true", 2, Token::TRUE_LITERAL)) return;
317
- if (MatchKeyword(input, 'y', KEYWORD_MATCHED, Token::TRY)) return;
318
- break;
319
- case V:
320
- if (MatchKeywordStart(input, "var", 1, Token::VAR)) return;
321
- if (MatchKeywordStart(input, "void", 1, Token::VOID)) return;
322
- break;
323
- case W:
324
- if (MatchKeywordStart(input, "while", 1, Token::WHILE)) return;
325
- if (MatchKeywordStart(input, "with", 1, Token::WITH)) return;
326
- break;
327
- default:
328
- UNREACHABLE();
329
- }
330
- // On fallthrough, it's a failure.
331
- state_ = UNMATCHABLE;
332
- }
333
-
334
-
335
- // ----------------------------------------------------------------------------
336
- // Scanner
337
-
338
- Scanner::Scanner(ParserMode pre)
339
- : is_pre_parsing_(pre == PREPARSE), stack_overflow_(false) { }
340
-
341
-
342
- void Scanner::Initialize(Handle<String> source,
343
- ParserLanguage language) {
344
- Init(source, NULL, 0, source->length(), language);
345
- }
346
-
347
-
348
- void Scanner::Initialize(Handle<String> source,
349
- unibrow::CharacterStream* stream,
350
- ParserLanguage language) {
351
- Init(source, stream, 0, kNoEndPosition, language);
352
- }
353
-
354
-
355
- void Scanner::Initialize(Handle<String> source,
356
- int start_position,
357
- int end_position,
358
- ParserLanguage language) {
359
- Init(source, NULL, start_position, end_position, language);
360
- }
361
-
362
-
363
- void Scanner::Init(Handle<String> source,
364
- unibrow::CharacterStream* stream,
365
- int start_position,
366
- int end_position,
367
- ParserLanguage language) {
368
- // Either initialize the scanner from a character stream or from a
369
- // string.
370
- ASSERT(source.is_null() || stream == NULL);
371
-
372
- // Initialize the source buffer.
373
- if (!source.is_null() && StringShape(*source).IsExternalTwoByte()) {
374
- two_byte_string_buffer_.Initialize(
375
- Handle<ExternalTwoByteString>::cast(source),
376
- start_position,
377
- end_position);
378
- source_ = &two_byte_string_buffer_;
379
- } else if (!source.is_null() && StringShape(*source).IsExternalAscii()) {
380
- ascii_string_buffer_.Initialize(
381
- Handle<ExternalAsciiString>::cast(source),
382
- start_position,
383
- end_position);
384
- source_ = &ascii_string_buffer_;
385
- } else {
386
- if (!source.is_null()) {
387
- safe_string_input_buffer_.Reset(source.location());
388
- stream = &safe_string_input_buffer_;
389
- }
390
- char_stream_buffer_.Initialize(source,
391
- stream,
392
- start_position,
393
- end_position);
394
- source_ = &char_stream_buffer_;
395
- }
396
-
397
- is_parsing_json_ = (language == JSON);
398
-
399
- // Set c0_ (one character ahead)
400
- ASSERT(kCharacterLookaheadBufferSize == 1);
401
- Advance();
402
- // Initializer current_ to not refer to a literal buffer.
403
- current_.literal_buffer = NULL;
404
-
405
- // Skip initial whitespace allowing HTML comment ends just like
406
- // after a newline and scan first token.
407
- has_line_terminator_before_next_ = true;
408
- SkipWhiteSpace();
409
- Scan();
410
- }
411
-
412
-
413
- Token::Value Scanner::Next() {
414
- // BUG 1215673: Find a thread safe way to set a stack limit in
415
- // pre-parse mode. Otherwise, we cannot safely pre-parse from other
416
- // threads.
417
- current_ = next_;
418
- // Check for stack-overflow before returning any tokens.
419
- StackLimitCheck check;
420
- if (check.HasOverflowed()) {
421
- stack_overflow_ = true;
422
- next_.token = Token::ILLEGAL;
423
- } else {
424
- Scan();
425
- }
426
- return current_.token;
427
- }
428
-
429
-
430
- void Scanner::StartLiteral() {
431
- // Use the first buffer unless it's currently in use by the current_ token.
432
- // In most cases we won't have two literals/identifiers in a row, so
433
- // the second buffer won't be used very often and is unlikely to grow much.
434
- UTF8Buffer* free_buffer =
435
- (current_.literal_buffer != &literal_buffer_1_) ? &literal_buffer_1_
436
- : &literal_buffer_2_;
437
- next_.literal_buffer = free_buffer;
438
- free_buffer->Reset();
439
- }
440
-
441
-
442
- void Scanner::AddChar(uc32 c) {
443
- next_.literal_buffer->AddChar(c);
444
- }
445
-
446
-
447
- void Scanner::TerminateLiteral() {
448
- AddChar(0);
449
- }
450
-
451
-
452
- void Scanner::AddCharAdvance() {
453
- AddChar(c0_);
454
- Advance();
455
- }
456
-
457
-
458
- static inline bool IsByteOrderMark(uc32 c) {
459
- // The Unicode value U+FFFE is guaranteed never to be assigned as a
460
- // Unicode character; this implies that in a Unicode context the
461
- // 0xFF, 0xFE byte pattern can only be interpreted as the U+FEFF
462
- // character expressed in little-endian byte order (since it could
463
- // not be a U+FFFE character expressed in big-endian byte
464
- // order). Nevertheless, we check for it to be compatible with
465
- // Spidermonkey.
466
- return c == 0xFEFF || c == 0xFFFE;
467
- }
468
-
469
-
470
- bool Scanner::SkipJsonWhiteSpace() {
471
- int start_position = source_pos();
472
- // JSON WhiteSpace is tab, carrige-return, newline and space.
473
- while (c0_ == ' ' || c0_ == '\n' || c0_ == '\r' || c0_ == '\t') {
474
- Advance();
475
- }
476
- return source_pos() != start_position;
477
- }
478
-
479
-
480
- bool Scanner::SkipJavaScriptWhiteSpace() {
481
- int start_position = source_pos();
482
-
483
- while (true) {
484
- // We treat byte-order marks (BOMs) as whitespace for better
485
- // compatibility with Spidermonkey and other JavaScript engines.
486
- while (kIsWhiteSpace.get(c0_) || IsByteOrderMark(c0_)) {
487
- // IsWhiteSpace() includes line terminators!
488
- if (kIsLineTerminator.get(c0_)) {
489
- // Ignore line terminators, but remember them. This is necessary
490
- // for automatic semicolon insertion.
491
- has_line_terminator_before_next_ = true;
492
- }
493
- Advance();
494
- }
495
-
496
- // If there is an HTML comment end '-->' at the beginning of a
497
- // line (with only whitespace in front of it), we treat the rest
498
- // of the line as a comment. This is in line with the way
499
- // SpiderMonkey handles it.
500
- if (c0_ == '-' && has_line_terminator_before_next_) {
501
- Advance();
502
- if (c0_ == '-') {
503
- Advance();
504
- if (c0_ == '>') {
505
- // Treat the rest of the line as a comment.
506
- SkipSingleLineComment();
507
- // Continue skipping white space after the comment.
508
- continue;
509
- }
510
- PushBack('-'); // undo Advance()
511
- }
512
- PushBack('-'); // undo Advance()
513
- }
514
- // Return whether or not we skipped any characters.
515
- return source_pos() != start_position;
516
- }
517
- }
518
-
519
-
520
- Token::Value Scanner::SkipSingleLineComment() {
521
- Advance();
522
-
523
- // The line terminator at the end of the line is not considered
524
- // to be part of the single-line comment; it is recognized
525
- // separately by the lexical grammar and becomes part of the
526
- // stream of input elements for the syntactic grammar (see
527
- // ECMA-262, section 7.4, page 12).
528
- while (c0_ >= 0 && !kIsLineTerminator.get(c0_)) {
529
- Advance();
530
- }
531
-
532
- return Token::WHITESPACE;
533
- }
534
-
535
-
536
- Token::Value Scanner::SkipMultiLineComment() {
537
- ASSERT(c0_ == '*');
538
- Advance();
539
-
540
- while (c0_ >= 0) {
541
- char ch = c0_;
542
- Advance();
543
- // If we have reached the end of the multi-line comment, we
544
- // consume the '/' and insert a whitespace. This way all
545
- // multi-line comments are treated as whitespace - even the ones
546
- // containing line terminators. This contradicts ECMA-262, section
547
- // 7.4, page 12, that says that multi-line comments containing
548
- // line terminators should be treated as a line terminator, but it
549
- // matches the behaviour of SpiderMonkey and KJS.
550
- if (ch == '*' && c0_ == '/') {
551
- c0_ = ' ';
552
- return Token::WHITESPACE;
553
- }
554
- }
555
-
556
- // Unterminated multi-line comment.
557
- return Token::ILLEGAL;
558
- }
559
-
560
-
561
- Token::Value Scanner::ScanHtmlComment() {
562
- // Check for <!-- comments.
563
- ASSERT(c0_ == '!');
564
- Advance();
565
- if (c0_ == '-') {
566
- Advance();
567
- if (c0_ == '-') return SkipSingleLineComment();
568
- PushBack('-'); // undo Advance()
569
- }
570
- PushBack('!'); // undo Advance()
571
- ASSERT(c0_ == '!');
572
- return Token::LT;
573
- }
574
-
575
-
576
-
577
- void Scanner::ScanJson() {
578
- next_.literal_buffer = NULL;
579
- Token::Value token;
580
- has_line_terminator_before_next_ = false;
581
- do {
582
- // Remember the position of the next token
583
- next_.location.beg_pos = source_pos();
584
- switch (c0_) {
585
- case '\t':
586
- case '\r':
587
- case '\n':
588
- case ' ':
589
- Advance();
590
- token = Token::WHITESPACE;
591
- break;
592
- case '{':
593
- Advance();
594
- token = Token::LBRACE;
595
- break;
596
- case '}':
597
- Advance();
598
- token = Token::RBRACE;
599
- break;
600
- case '[':
601
- Advance();
602
- token = Token::LBRACK;
603
- break;
604
- case ']':
605
- Advance();
606
- token = Token::RBRACK;
607
- break;
608
- case ':':
609
- Advance();
610
- token = Token::COLON;
611
- break;
612
- case ',':
613
- Advance();
614
- token = Token::COMMA;
615
- break;
616
- case '"':
617
- token = ScanJsonString();
618
- break;
619
- case '-':
620
- case '0':
621
- case '1':
622
- case '2':
623
- case '3':
624
- case '4':
625
- case '5':
626
- case '6':
627
- case '7':
628
- case '8':
629
- case '9':
630
- token = ScanJsonNumber();
631
- break;
632
- case 't':
633
- token = ScanJsonIdentifier("true", Token::TRUE_LITERAL);
634
- break;
635
- case 'f':
636
- token = ScanJsonIdentifier("false", Token::FALSE_LITERAL);
637
- break;
638
- case 'n':
639
- token = ScanJsonIdentifier("null", Token::NULL_LITERAL);
640
- break;
641
- default:
642
- if (c0_ < 0) {
643
- Advance();
644
- token = Token::EOS;
645
- } else {
646
- Advance();
647
- token = Select(Token::ILLEGAL);
648
- }
649
- }
650
- } while (token == Token::WHITESPACE);
651
-
652
- next_.location.end_pos = source_pos();
653
- next_.token = token;
654
- }
655
-
656
-
657
- Token::Value Scanner::ScanJsonString() {
658
- ASSERT_EQ('"', c0_);
659
- Advance();
660
- StartLiteral();
661
- while (c0_ != '"' && c0_ > 0) {
662
- // Check for control character (0x00-0x1f) or unterminated string (<0).
663
- if (c0_ < 0x20) return Token::ILLEGAL;
664
- if (c0_ != '\\') {
665
- AddCharAdvance();
666
- } else {
667
- Advance();
668
- switch (c0_) {
669
- case '"':
670
- case '\\':
671
- case '/':
672
- AddChar(c0_);
673
- break;
674
- case 'b':
675
- AddChar('\x08');
676
- break;
677
- case 'f':
678
- AddChar('\x0c');
679
- break;
680
- case 'n':
681
- AddChar('\x0a');
682
- break;
683
- case 'r':
684
- AddChar('\x0d');
685
- break;
686
- case 't':
687
- AddChar('\x09');
688
- break;
689
- case 'u': {
690
- uc32 value = 0;
691
- for (int i = 0; i < 4; i++) {
692
- Advance();
693
- int digit = HexValue(c0_);
694
- if (digit < 0) return Token::ILLEGAL;
695
- value = value * 16 + digit;
696
- }
697
- AddChar(value);
698
- break;
699
- }
700
- default:
701
- return Token::ILLEGAL;
702
- }
703
- Advance();
704
- }
705
- }
706
- if (c0_ != '"') {
707
- return Token::ILLEGAL;
708
- }
709
- TerminateLiteral();
710
- Advance();
711
- return Token::STRING;
712
- }
713
-
714
-
715
- Token::Value Scanner::ScanJsonNumber() {
716
- StartLiteral();
717
- if (c0_ == '-') AddCharAdvance();
718
- if (c0_ == '0') {
719
- AddCharAdvance();
720
- // Prefix zero is only allowed if it's the only digit before
721
- // a decimal point or exponent.
722
- if ('0' <= c0_ && c0_ <= '9') return Token::ILLEGAL;
723
- } else {
724
- if (c0_ < '1' || c0_ > '9') return Token::ILLEGAL;
725
- do {
726
- AddCharAdvance();
727
- } while (c0_ >= '0' && c0_ <= '9');
728
- }
729
- if (c0_ == '.') {
730
- AddCharAdvance();
731
- if (c0_ < '0' || c0_ > '9') return Token::ILLEGAL;
732
- do {
733
- AddCharAdvance();
734
- } while (c0_ >= '0' && c0_ <= '9');
735
- }
736
- if ((c0_ | 0x20) == 'e') {
737
- AddCharAdvance();
738
- if (c0_ == '-' || c0_ == '+') AddCharAdvance();
739
- if (c0_ < '0' || c0_ > '9') return Token::ILLEGAL;
740
- do {
741
- AddCharAdvance();
742
- } while (c0_ >= '0' && c0_ <= '9');
743
- }
744
- TerminateLiteral();
745
- return Token::NUMBER;
746
- }
747
-
748
-
749
- Token::Value Scanner::ScanJsonIdentifier(const char* text,
750
- Token::Value token) {
751
- StartLiteral();
752
- while (*text != '\0') {
753
- if (c0_ != *text) return Token::ILLEGAL;
754
- Advance();
755
- text++;
756
- }
757
- if (kIsIdentifierPart.get(c0_)) return Token::ILLEGAL;
758
- TerminateLiteral();
759
- return token;
760
- }
761
-
762
-
763
- void Scanner::ScanJavaScript() {
764
- next_.literal_buffer = NULL;
765
- Token::Value token;
766
- has_line_terminator_before_next_ = false;
767
- do {
768
- // Remember the position of the next token
769
- next_.location.beg_pos = source_pos();
770
-
771
- switch (c0_) {
772
- case ' ':
773
- case '\t':
774
- Advance();
775
- token = Token::WHITESPACE;
776
- break;
777
-
778
- case '\n':
779
- Advance();
780
- has_line_terminator_before_next_ = true;
781
- token = Token::WHITESPACE;
782
- break;
783
-
784
- case '"': case '\'':
785
- token = ScanString();
786
- break;
787
-
788
- case '<':
789
- // < <= << <<= <!--
790
- Advance();
791
- if (c0_ == '=') {
792
- token = Select(Token::LTE);
793
- } else if (c0_ == '<') {
794
- token = Select('=', Token::ASSIGN_SHL, Token::SHL);
795
- } else if (c0_ == '!') {
796
- token = ScanHtmlComment();
797
- } else {
798
- token = Token::LT;
799
- }
800
- break;
801
-
802
- case '>':
803
- // > >= >> >>= >>> >>>=
804
- Advance();
805
- if (c0_ == '=') {
806
- token = Select(Token::GTE);
807
- } else if (c0_ == '>') {
808
- // >> >>= >>> >>>=
809
- Advance();
810
- if (c0_ == '=') {
811
- token = Select(Token::ASSIGN_SAR);
812
- } else if (c0_ == '>') {
813
- token = Select('=', Token::ASSIGN_SHR, Token::SHR);
814
- } else {
815
- token = Token::SAR;
816
- }
817
- } else {
818
- token = Token::GT;
819
- }
820
- break;
821
-
822
- case '=':
823
- // = == ===
824
- Advance();
825
- if (c0_ == '=') {
826
- token = Select('=', Token::EQ_STRICT, Token::EQ);
827
- } else {
828
- token = Token::ASSIGN;
829
- }
830
- break;
831
-
832
- case '!':
833
- // ! != !==
834
- Advance();
835
- if (c0_ == '=') {
836
- token = Select('=', Token::NE_STRICT, Token::NE);
837
- } else {
838
- token = Token::NOT;
839
- }
840
- break;
841
-
842
- case '+':
843
- // + ++ +=
844
- Advance();
845
- if (c0_ == '+') {
846
- token = Select(Token::INC);
847
- } else if (c0_ == '=') {
848
- token = Select(Token::ASSIGN_ADD);
849
- } else {
850
- token = Token::ADD;
851
- }
852
- break;
853
-
854
- case '-':
855
- // - -- --> -=
856
- Advance();
857
- if (c0_ == '-') {
858
- Advance();
859
- if (c0_ == '>' && has_line_terminator_before_next_) {
860
- // For compatibility with SpiderMonkey, we skip lines that
861
- // start with an HTML comment end '-->'.
862
- token = SkipSingleLineComment();
863
- } else {
864
- token = Token::DEC;
865
- }
866
- } else if (c0_ == '=') {
867
- token = Select(Token::ASSIGN_SUB);
868
- } else {
869
- token = Token::SUB;
870
- }
871
- break;
872
-
873
- case '*':
874
- // * *=
875
- token = Select('=', Token::ASSIGN_MUL, Token::MUL);
876
- break;
877
-
878
- case '%':
879
- // % %=
880
- token = Select('=', Token::ASSIGN_MOD, Token::MOD);
881
- break;
882
-
883
- case '/':
884
- // / // /* /=
885
- Advance();
886
- if (c0_ == '/') {
887
- token = SkipSingleLineComment();
888
- } else if (c0_ == '*') {
889
- token = SkipMultiLineComment();
890
- } else if (c0_ == '=') {
891
- token = Select(Token::ASSIGN_DIV);
892
- } else {
893
- token = Token::DIV;
894
- }
895
- break;
896
-
897
- case '&':
898
- // & && &=
899
- Advance();
900
- if (c0_ == '&') {
901
- token = Select(Token::AND);
902
- } else if (c0_ == '=') {
903
- token = Select(Token::ASSIGN_BIT_AND);
904
- } else {
905
- token = Token::BIT_AND;
906
- }
907
- break;
908
-
909
- case '|':
910
- // | || |=
911
- Advance();
912
- if (c0_ == '|') {
913
- token = Select(Token::OR);
914
- } else if (c0_ == '=') {
915
- token = Select(Token::ASSIGN_BIT_OR);
916
- } else {
917
- token = Token::BIT_OR;
918
- }
919
- break;
920
-
921
- case '^':
922
- // ^ ^=
923
- token = Select('=', Token::ASSIGN_BIT_XOR, Token::BIT_XOR);
924
- break;
925
-
926
- case '.':
927
- // . Number
928
- Advance();
929
- if (IsDecimalDigit(c0_)) {
930
- token = ScanNumber(true);
931
- } else {
932
- token = Token::PERIOD;
933
- }
934
- break;
935
-
936
- case ':':
937
- token = Select(Token::COLON);
938
- break;
939
-
940
- case ';':
941
- token = Select(Token::SEMICOLON);
942
- break;
943
-
944
- case ',':
945
- token = Select(Token::COMMA);
946
- break;
947
-
948
- case '(':
949
- token = Select(Token::LPAREN);
950
- break;
951
-
952
- case ')':
953
- token = Select(Token::RPAREN);
954
- break;
955
-
956
- case '[':
957
- token = Select(Token::LBRACK);
958
- break;
959
-
960
- case ']':
961
- token = Select(Token::RBRACK);
962
- break;
963
-
964
- case '{':
965
- token = Select(Token::LBRACE);
966
- break;
967
-
968
- case '}':
969
- token = Select(Token::RBRACE);
970
- break;
971
-
972
- case '?':
973
- token = Select(Token::CONDITIONAL);
974
- break;
975
-
976
- case '~':
977
- token = Select(Token::BIT_NOT);
978
- break;
979
-
980
- default:
981
- if (kIsIdentifierStart.get(c0_)) {
982
- token = ScanIdentifier();
983
- } else if (IsDecimalDigit(c0_)) {
984
- token = ScanNumber(false);
985
- } else if (SkipWhiteSpace()) {
986
- token = Token::WHITESPACE;
987
- } else if (c0_ < 0) {
988
- token = Token::EOS;
989
- } else {
990
- token = Select(Token::ILLEGAL);
991
- }
992
- break;
993
- }
994
-
995
- // Continue scanning for tokens as long as we're just skipping
996
- // whitespace.
997
- } while (token == Token::WHITESPACE);
998
-
999
- next_.location.end_pos = source_pos();
1000
- next_.token = token;
1001
- }
1002
-
1003
-
1004
- void Scanner::SeekForward(int pos) {
1005
- source_->SeekForward(pos - 1);
1006
- Advance();
1007
- Scan();
1008
- }
1009
-
1010
-
1011
- uc32 Scanner::ScanHexEscape(uc32 c, int length) {
1012
- ASSERT(length <= 4); // prevent overflow
1013
-
1014
- uc32 digits[4];
1015
- uc32 x = 0;
1016
- for (int i = 0; i < length; i++) {
1017
- digits[i] = c0_;
1018
- int d = HexValue(c0_);
1019
- if (d < 0) {
1020
- // According to ECMA-262, 3rd, 7.8.4, page 18, these hex escapes
1021
- // should be illegal, but other JS VMs just return the
1022
- // non-escaped version of the original character.
1023
-
1024
- // Push back digits read, except the last one (in c0_).
1025
- for (int j = i-1; j >= 0; j--) {
1026
- PushBack(digits[j]);
1027
- }
1028
- // Notice: No handling of error - treat it as "\u"->"u".
1029
- return c;
1030
- }
1031
- x = x * 16 + d;
1032
- Advance();
1033
- }
1034
-
1035
- return x;
1036
- }
1037
-
1038
-
1039
- // Octal escapes of the forms '\0xx' and '\xxx' are not a part of
1040
- // ECMA-262. Other JS VMs support them.
1041
- uc32 Scanner::ScanOctalEscape(uc32 c, int length) {
1042
- uc32 x = c - '0';
1043
- for (int i = 0; i < length; i++) {
1044
- int d = c0_ - '0';
1045
- if (d < 0 || d > 7) break;
1046
- int nx = x * 8 + d;
1047
- if (nx >= 256) break;
1048
- x = nx;
1049
- Advance();
1050
- }
1051
- return x;
1052
- }
1053
-
1054
-
1055
- void Scanner::ScanEscape() {
1056
- uc32 c = c0_;
1057
- Advance();
1058
-
1059
- // Skip escaped newlines.
1060
- if (kIsLineTerminator.get(c)) {
1061
- // Allow CR+LF newlines in multiline string literals.
1062
- if (IsCarriageReturn(c) && IsLineFeed(c0_)) Advance();
1063
- // Allow LF+CR newlines in multiline string literals.
1064
- if (IsLineFeed(c) && IsCarriageReturn(c0_)) Advance();
1065
- return;
1066
- }
1067
-
1068
- switch (c) {
1069
- case '\'': // fall through
1070
- case '"' : // fall through
1071
- case '\\': break;
1072
- case 'b' : c = '\b'; break;
1073
- case 'f' : c = '\f'; break;
1074
- case 'n' : c = '\n'; break;
1075
- case 'r' : c = '\r'; break;
1076
- case 't' : c = '\t'; break;
1077
- case 'u' : c = ScanHexEscape(c, 4); break;
1078
- case 'v' : c = '\v'; break;
1079
- case 'x' : c = ScanHexEscape(c, 2); break;
1080
- case '0' : // fall through
1081
- case '1' : // fall through
1082
- case '2' : // fall through
1083
- case '3' : // fall through
1084
- case '4' : // fall through
1085
- case '5' : // fall through
1086
- case '6' : // fall through
1087
- case '7' : c = ScanOctalEscape(c, 2); break;
1088
- }
1089
-
1090
- // According to ECMA-262, 3rd, 7.8.4 (p 18ff) these
1091
- // should be illegal, but they are commonly handled
1092
- // as non-escaped characters by JS VMs.
1093
- AddChar(c);
1094
- }
1095
-
1096
-
1097
- Token::Value Scanner::ScanString() {
1098
- uc32 quote = c0_;
1099
- Advance(); // consume quote
1100
-
1101
- StartLiteral();
1102
- while (c0_ != quote && c0_ >= 0 && !kIsLineTerminator.get(c0_)) {
1103
- uc32 c = c0_;
1104
- Advance();
1105
- if (c == '\\') {
1106
- if (c0_ < 0) return Token::ILLEGAL;
1107
- ScanEscape();
1108
- } else {
1109
- AddChar(c);
1110
- }
1111
- }
1112
- if (c0_ != quote) {
1113
- return Token::ILLEGAL;
1114
- }
1115
- TerminateLiteral();
1116
-
1117
- Advance(); // consume quote
1118
- return Token::STRING;
1119
- }
1120
-
1121
-
1122
- Token::Value Scanner::Select(Token::Value tok) {
1123
- Advance();
1124
- return tok;
1125
- }
1126
-
1127
-
1128
- Token::Value Scanner::Select(uc32 next, Token::Value then, Token::Value else_) {
1129
- Advance();
1130
- if (c0_ == next) {
1131
- Advance();
1132
- return then;
1133
- } else {
1134
- return else_;
1135
- }
1136
- }
1137
-
1138
-
1139
- // Returns true if any decimal digits were scanned, returns false otherwise.
1140
- void Scanner::ScanDecimalDigits() {
1141
- while (IsDecimalDigit(c0_))
1142
- AddCharAdvance();
1143
- }
1144
-
1145
-
1146
- Token::Value Scanner::ScanNumber(bool seen_period) {
1147
- ASSERT(IsDecimalDigit(c0_)); // the first digit of the number or the fraction
1148
-
1149
- enum { DECIMAL, HEX, OCTAL } kind = DECIMAL;
1150
-
1151
- StartLiteral();
1152
- if (seen_period) {
1153
- // we have already seen a decimal point of the float
1154
- AddChar('.');
1155
- ScanDecimalDigits(); // we know we have at least one digit
1156
-
1157
- } else {
1158
- // if the first character is '0' we must check for octals and hex
1159
- if (c0_ == '0') {
1160
- AddCharAdvance();
1161
-
1162
- // either 0, 0exxx, 0Exxx, 0.xxx, an octal number, or a hex number
1163
- if (c0_ == 'x' || c0_ == 'X') {
1164
- // hex number
1165
- kind = HEX;
1166
- AddCharAdvance();
1167
- if (!IsHexDigit(c0_))
1168
- // we must have at least one hex digit after 'x'/'X'
1169
- return Token::ILLEGAL;
1170
- while (IsHexDigit(c0_))
1171
- AddCharAdvance();
1172
-
1173
- } else if ('0' <= c0_ && c0_ <= '7') {
1174
- // (possible) octal number
1175
- kind = OCTAL;
1176
- while (true) {
1177
- if (c0_ == '8' || c0_ == '9') {
1178
- kind = DECIMAL;
1179
- break;
1180
- }
1181
- if (c0_ < '0' || '7' < c0_) break;
1182
- AddCharAdvance();
1183
- }
1184
- }
1185
- }
1186
-
1187
- // Parse decimal digits and allow trailing fractional part.
1188
- if (kind == DECIMAL) {
1189
- ScanDecimalDigits(); // optional
1190
- if (c0_ == '.') {
1191
- AddCharAdvance();
1192
- ScanDecimalDigits(); // optional
1193
- }
1194
- }
1195
- }
1196
-
1197
- // scan exponent, if any
1198
- if (c0_ == 'e' || c0_ == 'E') {
1199
- ASSERT(kind != HEX); // 'e'/'E' must be scanned as part of the hex number
1200
- if (kind == OCTAL) return Token::ILLEGAL; // no exponent for octals allowed
1201
- // scan exponent
1202
- AddCharAdvance();
1203
- if (c0_ == '+' || c0_ == '-')
1204
- AddCharAdvance();
1205
- if (!IsDecimalDigit(c0_))
1206
- // we must have at least one decimal digit after 'e'/'E'
1207
- return Token::ILLEGAL;
1208
- ScanDecimalDigits();
1209
- }
1210
- TerminateLiteral();
1211
-
1212
- // The source character immediately following a numeric literal must
1213
- // not be an identifier start or a decimal digit; see ECMA-262
1214
- // section 7.8.3, page 17 (note that we read only one decimal digit
1215
- // if the value is 0).
1216
- if (IsDecimalDigit(c0_) || kIsIdentifierStart.get(c0_))
1217
- return Token::ILLEGAL;
1218
-
1219
- return Token::NUMBER;
1220
- }
1221
-
1222
-
1223
- uc32 Scanner::ScanIdentifierUnicodeEscape() {
1224
- Advance();
1225
- if (c0_ != 'u') return unibrow::Utf8::kBadChar;
1226
- Advance();
1227
- uc32 c = ScanHexEscape('u', 4);
1228
- // We do not allow a unicode escape sequence to start another
1229
- // unicode escape sequence.
1230
- if (c == '\\') return unibrow::Utf8::kBadChar;
1231
- return c;
1232
- }
1233
-
1234
-
1235
- Token::Value Scanner::ScanIdentifier() {
1236
- ASSERT(kIsIdentifierStart.get(c0_));
1237
-
1238
- StartLiteral();
1239
- KeywordMatcher keyword_match;
1240
-
1241
- // Scan identifier start character.
1242
- if (c0_ == '\\') {
1243
- uc32 c = ScanIdentifierUnicodeEscape();
1244
- // Only allow legal identifier start characters.
1245
- if (!kIsIdentifierStart.get(c)) return Token::ILLEGAL;
1246
- AddChar(c);
1247
- keyword_match.Fail();
1248
- } else {
1249
- AddChar(c0_);
1250
- keyword_match.AddChar(c0_);
1251
- Advance();
1252
- }
1253
-
1254
- // Scan the rest of the identifier characters.
1255
- while (kIsIdentifierPart.get(c0_)) {
1256
- if (c0_ == '\\') {
1257
- uc32 c = ScanIdentifierUnicodeEscape();
1258
- // Only allow legal identifier part characters.
1259
- if (!kIsIdentifierPart.get(c)) return Token::ILLEGAL;
1260
- AddChar(c);
1261
- keyword_match.Fail();
1262
- } else {
1263
- AddChar(c0_);
1264
- keyword_match.AddChar(c0_);
1265
- Advance();
1266
- }
1267
- }
1268
- TerminateLiteral();
1269
-
1270
- return keyword_match.token();
1271
- }
1272
-
1273
-
1274
-
1275
- bool Scanner::IsIdentifier(unibrow::CharacterStream* buffer) {
1276
- // Checks whether the buffer contains an identifier (no escape).
1277
- if (!buffer->has_more()) return false;
1278
- if (!kIsIdentifierStart.get(buffer->GetNext())) return false;
1279
- while (buffer->has_more()) {
1280
- if (!kIsIdentifierPart.get(buffer->GetNext())) return false;
1281
- }
1282
- return true;
1283
- }
1284
-
1285
-
1286
- bool Scanner::ScanRegExpPattern(bool seen_equal) {
1287
- // Scan: ('/' | '/=') RegularExpressionBody '/' RegularExpressionFlags
1288
- bool in_character_class = false;
1289
-
1290
- // Previous token is either '/' or '/=', in the second case, the
1291
- // pattern starts at =.
1292
- next_.location.beg_pos = source_pos() - (seen_equal ? 2 : 1);
1293
- next_.location.end_pos = source_pos() - (seen_equal ? 1 : 0);
1294
-
1295
- // Scan regular expression body: According to ECMA-262, 3rd, 7.8.5,
1296
- // the scanner should pass uninterpreted bodies to the RegExp
1297
- // constructor.
1298
- StartLiteral();
1299
- if (seen_equal)
1300
- AddChar('=');
1301
-
1302
- while (c0_ != '/' || in_character_class) {
1303
- if (kIsLineTerminator.get(c0_) || c0_ < 0)
1304
- return false;
1305
- if (c0_ == '\\') { // escaped character
1306
- AddCharAdvance();
1307
- if (kIsLineTerminator.get(c0_) || c0_ < 0)
1308
- return false;
1309
- AddCharAdvance();
1310
- } else { // unescaped character
1311
- if (c0_ == '[')
1312
- in_character_class = true;
1313
- if (c0_ == ']')
1314
- in_character_class = false;
1315
- AddCharAdvance();
1316
- }
1317
- }
1318
- Advance(); // consume '/'
1319
-
1320
- TerminateLiteral();
1321
-
1322
- return true;
1323
- }
1324
-
1325
- bool Scanner::ScanRegExpFlags() {
1326
- // Scan regular expression flags.
1327
- StartLiteral();
1328
- while (kIsIdentifierPart.get(c0_)) {
1329
- if (c0_ == '\\') {
1330
- uc32 c = ScanIdentifierUnicodeEscape();
1331
- if (c != static_cast<uc32>(unibrow::Utf8::kBadChar)) {
1332
- // We allow any escaped character, unlike the restriction on
1333
- // IdentifierPart when it is used to build an IdentifierName.
1334
- AddChar(c);
1335
- continue;
1336
- }
1337
- }
1338
- AddCharAdvance();
1339
- }
1340
- TerminateLiteral();
1341
-
1342
- next_.location.end_pos = source_pos() - 1;
1343
- return true;
1344
- }
1345
-
1346
- } } // namespace v8::internal