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,1443 +0,0 @@
1
- // Copyright 2009 the V8 project authors. All rights reserved.
2
- // Redistribution and use in source and binary forms, with or without
3
- // modification, are permitted provided that the following conditions are
4
- // met:
5
- //
6
- // * Redistributions of source code must retain the above copyright
7
- // notice, this list of conditions and the following disclaimer.
8
- // * Redistributions in binary form must reproduce the above
9
- // copyright notice, this list of conditions and the following
10
- // disclaimer in the documentation and/or other materials provided
11
- // with the distribution.
12
- // * Neither the name of Google Inc. nor the names of its
13
- // contributors may be used to endorse or promote products derived
14
- // from this software without specific prior written permission.
15
- //
16
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
-
28
- #include "v8.h"
29
-
30
- #include "codegen-inl.h"
31
- #include "compiler.h"
32
- #include "full-codegen.h"
33
- #include "scopes.h"
34
- #include "stub-cache.h"
35
- #include "debug.h"
36
- #include "liveedit.h"
37
-
38
- namespace v8 {
39
- namespace internal {
40
-
41
- #define BAILOUT(reason) \
42
- do { \
43
- if (FLAG_trace_bailout) { \
44
- PrintF("%s\n", reason); \
45
- } \
46
- has_supported_syntax_ = false; \
47
- return; \
48
- } while (false)
49
-
50
-
51
- #define CHECK_BAILOUT \
52
- do { \
53
- if (!has_supported_syntax_) return; \
54
- } while (false)
55
-
56
-
57
- void FullCodeGenSyntaxChecker::Check(FunctionLiteral* fun) {
58
- Scope* scope = fun->scope();
59
- VisitDeclarations(scope->declarations());
60
- CHECK_BAILOUT;
61
-
62
- VisitStatements(fun->body());
63
- }
64
-
65
-
66
- void FullCodeGenSyntaxChecker::VisitDeclarations(
67
- ZoneList<Declaration*>* decls) {
68
- for (int i = 0; i < decls->length(); i++) {
69
- Visit(decls->at(i));
70
- CHECK_BAILOUT;
71
- }
72
- }
73
-
74
-
75
- void FullCodeGenSyntaxChecker::VisitStatements(ZoneList<Statement*>* stmts) {
76
- for (int i = 0, len = stmts->length(); i < len; i++) {
77
- Visit(stmts->at(i));
78
- CHECK_BAILOUT;
79
- }
80
- }
81
-
82
-
83
- void FullCodeGenSyntaxChecker::VisitDeclaration(Declaration* decl) {
84
- Property* prop = decl->proxy()->AsProperty();
85
- if (prop != NULL) {
86
- Visit(prop->obj());
87
- Visit(prop->key());
88
- }
89
-
90
- if (decl->fun() != NULL) {
91
- Visit(decl->fun());
92
- }
93
- }
94
-
95
-
96
- void FullCodeGenSyntaxChecker::VisitBlock(Block* stmt) {
97
- VisitStatements(stmt->statements());
98
- }
99
-
100
-
101
- void FullCodeGenSyntaxChecker::VisitExpressionStatement(
102
- ExpressionStatement* stmt) {
103
- Visit(stmt->expression());
104
- }
105
-
106
-
107
- void FullCodeGenSyntaxChecker::VisitEmptyStatement(EmptyStatement* stmt) {
108
- // Supported.
109
- }
110
-
111
-
112
- void FullCodeGenSyntaxChecker::VisitIfStatement(IfStatement* stmt) {
113
- Visit(stmt->condition());
114
- CHECK_BAILOUT;
115
- Visit(stmt->then_statement());
116
- CHECK_BAILOUT;
117
- Visit(stmt->else_statement());
118
- }
119
-
120
-
121
- void FullCodeGenSyntaxChecker::VisitContinueStatement(ContinueStatement* stmt) {
122
- // Supported.
123
- }
124
-
125
-
126
- void FullCodeGenSyntaxChecker::VisitBreakStatement(BreakStatement* stmt) {
127
- // Supported.
128
- }
129
-
130
-
131
- void FullCodeGenSyntaxChecker::VisitReturnStatement(ReturnStatement* stmt) {
132
- Visit(stmt->expression());
133
- }
134
-
135
-
136
- void FullCodeGenSyntaxChecker::VisitWithEnterStatement(
137
- WithEnterStatement* stmt) {
138
- Visit(stmt->expression());
139
- }
140
-
141
-
142
- void FullCodeGenSyntaxChecker::VisitWithExitStatement(WithExitStatement* stmt) {
143
- // Supported.
144
- }
145
-
146
-
147
- void FullCodeGenSyntaxChecker::VisitSwitchStatement(SwitchStatement* stmt) {
148
- BAILOUT("SwitchStatement");
149
- }
150
-
151
-
152
- void FullCodeGenSyntaxChecker::VisitDoWhileStatement(DoWhileStatement* stmt) {
153
- Visit(stmt->cond());
154
- CHECK_BAILOUT;
155
- Visit(stmt->body());
156
- }
157
-
158
-
159
- void FullCodeGenSyntaxChecker::VisitWhileStatement(WhileStatement* stmt) {
160
- Visit(stmt->cond());
161
- CHECK_BAILOUT;
162
- Visit(stmt->body());
163
- }
164
-
165
-
166
- void FullCodeGenSyntaxChecker::VisitForStatement(ForStatement* stmt) {
167
- if (!FLAG_always_full_compiler) BAILOUT("ForStatement");
168
- if (stmt->init() != NULL) {
169
- Visit(stmt->init());
170
- CHECK_BAILOUT;
171
- }
172
- if (stmt->cond() != NULL) {
173
- Visit(stmt->cond());
174
- CHECK_BAILOUT;
175
- }
176
- Visit(stmt->body());
177
- if (stmt->next() != NULL) {
178
- CHECK_BAILOUT;
179
- Visit(stmt->next());
180
- }
181
- }
182
-
183
-
184
- void FullCodeGenSyntaxChecker::VisitForInStatement(ForInStatement* stmt) {
185
- BAILOUT("ForInStatement");
186
- }
187
-
188
-
189
- void FullCodeGenSyntaxChecker::VisitTryCatchStatement(TryCatchStatement* stmt) {
190
- Visit(stmt->try_block());
191
- CHECK_BAILOUT;
192
- Visit(stmt->catch_block());
193
- }
194
-
195
-
196
- void FullCodeGenSyntaxChecker::VisitTryFinallyStatement(
197
- TryFinallyStatement* stmt) {
198
- Visit(stmt->try_block());
199
- CHECK_BAILOUT;
200
- Visit(stmt->finally_block());
201
- }
202
-
203
-
204
- void FullCodeGenSyntaxChecker::VisitDebuggerStatement(
205
- DebuggerStatement* stmt) {
206
- // Supported.
207
- }
208
-
209
-
210
- void FullCodeGenSyntaxChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
211
- // Supported.
212
- }
213
-
214
-
215
- void FullCodeGenSyntaxChecker::VisitSharedFunctionInfoLiteral(
216
- SharedFunctionInfoLiteral* expr) {
217
- BAILOUT("SharedFunctionInfoLiteral");
218
- }
219
-
220
-
221
- void FullCodeGenSyntaxChecker::VisitConditional(Conditional* expr) {
222
- Visit(expr->condition());
223
- CHECK_BAILOUT;
224
- Visit(expr->then_expression());
225
- CHECK_BAILOUT;
226
- Visit(expr->else_expression());
227
- }
228
-
229
-
230
- void FullCodeGenSyntaxChecker::VisitSlot(Slot* expr) {
231
- UNREACHABLE();
232
- }
233
-
234
-
235
- void FullCodeGenSyntaxChecker::VisitVariableProxy(VariableProxy* expr) {
236
- // Supported.
237
- }
238
-
239
-
240
- void FullCodeGenSyntaxChecker::VisitLiteral(Literal* expr) {
241
- // Supported.
242
- }
243
-
244
-
245
- void FullCodeGenSyntaxChecker::VisitRegExpLiteral(RegExpLiteral* expr) {
246
- // Supported.
247
- }
248
-
249
-
250
- void FullCodeGenSyntaxChecker::VisitObjectLiteral(ObjectLiteral* expr) {
251
- ZoneList<ObjectLiteral::Property*>* properties = expr->properties();
252
-
253
- for (int i = 0, len = properties->length(); i < len; i++) {
254
- ObjectLiteral::Property* property = properties->at(i);
255
- if (property->IsCompileTimeValue()) continue;
256
- Visit(property->key());
257
- CHECK_BAILOUT;
258
- Visit(property->value());
259
- CHECK_BAILOUT;
260
- }
261
- }
262
-
263
-
264
- void FullCodeGenSyntaxChecker::VisitArrayLiteral(ArrayLiteral* expr) {
265
- ZoneList<Expression*>* subexprs = expr->values();
266
- for (int i = 0, len = subexprs->length(); i < len; i++) {
267
- Expression* subexpr = subexprs->at(i);
268
- if (subexpr->AsLiteral() != NULL) continue;
269
- if (CompileTimeValue::IsCompileTimeValue(subexpr)) continue;
270
- Visit(subexpr);
271
- CHECK_BAILOUT;
272
- }
273
- }
274
-
275
-
276
- void FullCodeGenSyntaxChecker::VisitCatchExtensionObject(
277
- CatchExtensionObject* expr) {
278
- Visit(expr->key());
279
- CHECK_BAILOUT;
280
- Visit(expr->value());
281
- }
282
-
283
-
284
- void FullCodeGenSyntaxChecker::VisitAssignment(Assignment* expr) {
285
- Token::Value op = expr->op();
286
- if (op == Token::INIT_CONST) BAILOUT("initialize constant");
287
-
288
- Variable* var = expr->target()->AsVariableProxy()->AsVariable();
289
- Property* prop = expr->target()->AsProperty();
290
- ASSERT(var == NULL || prop == NULL);
291
- if (var != NULL) {
292
- if (var->mode() == Variable::CONST) BAILOUT("Assignment to const");
293
- // All other variables are supported.
294
- } else if (prop != NULL) {
295
- Visit(prop->obj());
296
- CHECK_BAILOUT;
297
- Visit(prop->key());
298
- CHECK_BAILOUT;
299
- } else {
300
- // This is a throw reference error.
301
- BAILOUT("non-variable/non-property assignment");
302
- }
303
-
304
- Visit(expr->value());
305
- }
306
-
307
-
308
- void FullCodeGenSyntaxChecker::VisitThrow(Throw* expr) {
309
- Visit(expr->exception());
310
- }
311
-
312
-
313
- void FullCodeGenSyntaxChecker::VisitProperty(Property* expr) {
314
- Visit(expr->obj());
315
- CHECK_BAILOUT;
316
- Visit(expr->key());
317
- }
318
-
319
-
320
- void FullCodeGenSyntaxChecker::VisitCall(Call* expr) {
321
- Expression* fun = expr->expression();
322
- ZoneList<Expression*>* args = expr->arguments();
323
- Variable* var = fun->AsVariableProxy()->AsVariable();
324
-
325
- // Check for supported calls
326
- if (var != NULL && var->is_possibly_eval()) {
327
- BAILOUT("call to the identifier 'eval'");
328
- } else if (var != NULL && !var->is_this() && var->is_global()) {
329
- // Calls to global variables are supported.
330
- } else if (var != NULL && var->slot() != NULL &&
331
- var->slot()->type() == Slot::LOOKUP) {
332
- BAILOUT("call to a lookup slot");
333
- } else if (fun->AsProperty() != NULL) {
334
- Property* prop = fun->AsProperty();
335
- Visit(prop->obj());
336
- CHECK_BAILOUT;
337
- Visit(prop->key());
338
- CHECK_BAILOUT;
339
- } else {
340
- // Otherwise the call is supported if the function expression is.
341
- Visit(fun);
342
- }
343
- // Check all arguments to the call.
344
- for (int i = 0; i < args->length(); i++) {
345
- Visit(args->at(i));
346
- CHECK_BAILOUT;
347
- }
348
- }
349
-
350
-
351
- void FullCodeGenSyntaxChecker::VisitCallNew(CallNew* expr) {
352
- Visit(expr->expression());
353
- CHECK_BAILOUT;
354
- ZoneList<Expression*>* args = expr->arguments();
355
- // Check all arguments to the call
356
- for (int i = 0; i < args->length(); i++) {
357
- Visit(args->at(i));
358
- CHECK_BAILOUT;
359
- }
360
- }
361
-
362
-
363
- void FullCodeGenSyntaxChecker::VisitCallRuntime(CallRuntime* expr) {
364
- // Check for inline runtime call
365
- if (expr->name()->Get(0) == '_' &&
366
- CodeGenerator::FindInlineRuntimeLUT(expr->name()) != NULL) {
367
- BAILOUT("inlined runtime call");
368
- }
369
- // Check all arguments to the call. (Relies on TEMP meaning STACK.)
370
- for (int i = 0; i < expr->arguments()->length(); i++) {
371
- Visit(expr->arguments()->at(i));
372
- CHECK_BAILOUT;
373
- }
374
- }
375
-
376
-
377
- void FullCodeGenSyntaxChecker::VisitUnaryOperation(UnaryOperation* expr) {
378
- switch (expr->op()) {
379
- case Token::ADD:
380
- case Token::BIT_NOT:
381
- case Token::NOT:
382
- case Token::SUB:
383
- case Token::TYPEOF:
384
- case Token::VOID:
385
- Visit(expr->expression());
386
- break;
387
- case Token::DELETE:
388
- BAILOUT("UnaryOperation: DELETE");
389
- default:
390
- UNREACHABLE();
391
- }
392
- }
393
-
394
-
395
- void FullCodeGenSyntaxChecker::VisitCountOperation(CountOperation* expr) {
396
- Variable* var = expr->expression()->AsVariableProxy()->AsVariable();
397
- Property* prop = expr->expression()->AsProperty();
398
- ASSERT(var == NULL || prop == NULL);
399
- if (var != NULL) {
400
- // All global variables are supported.
401
- if (!var->is_global()) {
402
- ASSERT(var->slot() != NULL);
403
- Slot::Type type = var->slot()->type();
404
- if (type == Slot::LOOKUP) {
405
- BAILOUT("CountOperation with lookup slot");
406
- }
407
- }
408
- } else if (prop != NULL) {
409
- Visit(prop->obj());
410
- CHECK_BAILOUT;
411
- Visit(prop->key());
412
- CHECK_BAILOUT;
413
- } else {
414
- // This is a throw reference error.
415
- BAILOUT("CountOperation non-variable/non-property expression");
416
- }
417
- }
418
-
419
-
420
- void FullCodeGenSyntaxChecker::VisitBinaryOperation(BinaryOperation* expr) {
421
- Visit(expr->left());
422
- CHECK_BAILOUT;
423
- Visit(expr->right());
424
- }
425
-
426
-
427
- void FullCodeGenSyntaxChecker::VisitCompareOperation(CompareOperation* expr) {
428
- Visit(expr->left());
429
- CHECK_BAILOUT;
430
- Visit(expr->right());
431
- }
432
-
433
-
434
- void FullCodeGenSyntaxChecker::VisitThisFunction(ThisFunction* expr) {
435
- // Supported.
436
- }
437
-
438
- #undef BAILOUT
439
- #undef CHECK_BAILOUT
440
-
441
-
442
- void BreakableStatementChecker::Check(Statement* stmt) {
443
- Visit(stmt);
444
- }
445
-
446
-
447
- void BreakableStatementChecker::Check(Expression* expr) {
448
- Visit(expr);
449
- }
450
-
451
-
452
- void BreakableStatementChecker::VisitDeclaration(Declaration* decl) {
453
- }
454
-
455
-
456
- void BreakableStatementChecker::VisitBlock(Block* stmt) {
457
- }
458
-
459
-
460
- void BreakableStatementChecker::VisitExpressionStatement(
461
- ExpressionStatement* stmt) {
462
- // Check if expression is breakable.
463
- Visit(stmt->expression());
464
- }
465
-
466
-
467
- void BreakableStatementChecker::VisitEmptyStatement(EmptyStatement* stmt) {
468
- }
469
-
470
-
471
- void BreakableStatementChecker::VisitIfStatement(IfStatement* stmt) {
472
- // If the condition is breakable the if statement is breakable.
473
- Visit(stmt->condition());
474
- }
475
-
476
-
477
- void BreakableStatementChecker::VisitContinueStatement(
478
- ContinueStatement* stmt) {
479
- }
480
-
481
-
482
- void BreakableStatementChecker::VisitBreakStatement(BreakStatement* stmt) {
483
- }
484
-
485
-
486
- void BreakableStatementChecker::VisitReturnStatement(ReturnStatement* stmt) {
487
- // Return is breakable if the expression is.
488
- Visit(stmt->expression());
489
- }
490
-
491
-
492
- void BreakableStatementChecker::VisitWithEnterStatement(
493
- WithEnterStatement* stmt) {
494
- Visit(stmt->expression());
495
- }
496
-
497
-
498
- void BreakableStatementChecker::VisitWithExitStatement(
499
- WithExitStatement* stmt) {
500
- }
501
-
502
-
503
- void BreakableStatementChecker::VisitSwitchStatement(SwitchStatement* stmt) {
504
- // Switch statements breakable if the tag expression is.
505
- Visit(stmt->tag());
506
- }
507
-
508
-
509
- void BreakableStatementChecker::VisitDoWhileStatement(DoWhileStatement* stmt) {
510
- // Mark do while as breakable to avoid adding a break slot in front of it.
511
- is_breakable_ = true;
512
- }
513
-
514
-
515
- void BreakableStatementChecker::VisitWhileStatement(WhileStatement* stmt) {
516
- // Mark while statements breakable if the condition expression is.
517
- Visit(stmt->cond());
518
- }
519
-
520
-
521
- void BreakableStatementChecker::VisitForStatement(ForStatement* stmt) {
522
- // Mark for statements breakable if the condition expression is.
523
- if (stmt->cond() != NULL) {
524
- Visit(stmt->cond());
525
- }
526
- }
527
-
528
-
529
- void BreakableStatementChecker::VisitForInStatement(ForInStatement* stmt) {
530
- // Mark for in statements breakable if the enumerable expression is.
531
- Visit(stmt->enumerable());
532
- }
533
-
534
-
535
- void BreakableStatementChecker::VisitTryCatchStatement(
536
- TryCatchStatement* stmt) {
537
- // Mark try catch as breakable to avoid adding a break slot in front of it.
538
- is_breakable_ = true;
539
- }
540
-
541
-
542
- void BreakableStatementChecker::VisitTryFinallyStatement(
543
- TryFinallyStatement* stmt) {
544
- // Mark try finally as breakable to avoid adding a break slot in front of it.
545
- is_breakable_ = true;
546
- }
547
-
548
-
549
- void BreakableStatementChecker::VisitDebuggerStatement(
550
- DebuggerStatement* stmt) {
551
- // The debugger statement is breakable.
552
- is_breakable_ = true;
553
- }
554
-
555
-
556
- void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
557
- }
558
-
559
-
560
- void BreakableStatementChecker::VisitSharedFunctionInfoLiteral(
561
- SharedFunctionInfoLiteral* expr) {
562
- }
563
-
564
-
565
- void BreakableStatementChecker::VisitConditional(Conditional* expr) {
566
- }
567
-
568
-
569
- void BreakableStatementChecker::VisitSlot(Slot* expr) {
570
- }
571
-
572
-
573
- void BreakableStatementChecker::VisitVariableProxy(VariableProxy* expr) {
574
- }
575
-
576
-
577
- void BreakableStatementChecker::VisitLiteral(Literal* expr) {
578
- }
579
-
580
-
581
- void BreakableStatementChecker::VisitRegExpLiteral(RegExpLiteral* expr) {
582
- }
583
-
584
-
585
- void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) {
586
- }
587
-
588
-
589
- void BreakableStatementChecker::VisitArrayLiteral(ArrayLiteral* expr) {
590
- }
591
-
592
-
593
- void BreakableStatementChecker::VisitCatchExtensionObject(
594
- CatchExtensionObject* expr) {
595
- }
596
-
597
-
598
- void BreakableStatementChecker::VisitAssignment(Assignment* expr) {
599
- // If assigning to a property (including a global property) the assignment is
600
- // breakable.
601
- Variable* var = expr->target()->AsVariableProxy()->AsVariable();
602
- Property* prop = expr->target()->AsProperty();
603
- if (prop != NULL || (var != NULL && var->is_global())) {
604
- is_breakable_ = true;
605
- return;
606
- }
607
-
608
- // Otherwise the assignment is breakable if the assigned value is.
609
- Visit(expr->value());
610
- }
611
-
612
-
613
- void BreakableStatementChecker::VisitThrow(Throw* expr) {
614
- // Throw is breakable if the expression is.
615
- Visit(expr->exception());
616
- }
617
-
618
-
619
- void BreakableStatementChecker::VisitProperty(Property* expr) {
620
- // Property load is breakable.
621
- is_breakable_ = true;
622
- }
623
-
624
-
625
- void BreakableStatementChecker::VisitCall(Call* expr) {
626
- // Function calls both through IC and call stub are breakable.
627
- is_breakable_ = true;
628
- }
629
-
630
-
631
- void BreakableStatementChecker::VisitCallNew(CallNew* expr) {
632
- // Function calls through new are breakable.
633
- is_breakable_ = true;
634
- }
635
-
636
-
637
- void BreakableStatementChecker::VisitCallRuntime(CallRuntime* expr) {
638
- }
639
-
640
-
641
- void BreakableStatementChecker::VisitUnaryOperation(UnaryOperation* expr) {
642
- Visit(expr->expression());
643
- }
644
-
645
-
646
- void BreakableStatementChecker::VisitCountOperation(CountOperation* expr) {
647
- Visit(expr->expression());
648
- }
649
-
650
-
651
- void BreakableStatementChecker::VisitBinaryOperation(BinaryOperation* expr) {
652
- Visit(expr->left());
653
- Visit(expr->right());
654
- }
655
-
656
-
657
- void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) {
658
- Visit(expr->left());
659
- Visit(expr->right());
660
- }
661
-
662
-
663
- void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) {
664
- }
665
-
666
-
667
- #define __ ACCESS_MASM(masm())
668
-
669
- Handle<Code> FullCodeGenerator::MakeCode(CompilationInfo* info) {
670
- Handle<Script> script = info->script();
671
- if (!script->IsUndefined() && !script->source()->IsUndefined()) {
672
- int len = String::cast(script->source())->length();
673
- Counters::total_full_codegen_source_size.Increment(len);
674
- }
675
- CodeGenerator::MakeCodePrologue(info);
676
- const int kInitialBufferSize = 4 * KB;
677
- MacroAssembler masm(NULL, kInitialBufferSize);
678
-
679
- FullCodeGenerator cgen(&masm);
680
- cgen.Generate(info, PRIMARY);
681
- if (cgen.HasStackOverflow()) {
682
- ASSERT(!Top::has_pending_exception());
683
- return Handle<Code>::null();
684
- }
685
- Code::Flags flags = Code::ComputeFlags(Code::FUNCTION, NOT_IN_LOOP);
686
- return CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
687
- }
688
-
689
-
690
- int FullCodeGenerator::SlotOffset(Slot* slot) {
691
- ASSERT(slot != NULL);
692
- // Offset is negative because higher indexes are at lower addresses.
693
- int offset = -slot->index() * kPointerSize;
694
- // Adjust by a (parameter or local) base offset.
695
- switch (slot->type()) {
696
- case Slot::PARAMETER:
697
- offset += (scope()->num_parameters() + 1) * kPointerSize;
698
- break;
699
- case Slot::LOCAL:
700
- offset += JavaScriptFrameConstants::kLocal0Offset;
701
- break;
702
- case Slot::CONTEXT:
703
- case Slot::LOOKUP:
704
- UNREACHABLE();
705
- }
706
- return offset;
707
- }
708
-
709
-
710
- void FullCodeGenerator::VisitDeclarations(
711
- ZoneList<Declaration*>* declarations) {
712
- int length = declarations->length();
713
- int globals = 0;
714
- for (int i = 0; i < length; i++) {
715
- Declaration* decl = declarations->at(i);
716
- Variable* var = decl->proxy()->var();
717
- Slot* slot = var->slot();
718
-
719
- // If it was not possible to allocate the variable at compile
720
- // time, we need to "declare" it at runtime to make sure it
721
- // actually exists in the local context.
722
- if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) {
723
- VisitDeclaration(decl);
724
- } else {
725
- // Count global variables and functions for later processing
726
- globals++;
727
- }
728
- }
729
-
730
- // Compute array of global variable and function declarations.
731
- // Do nothing in case of no declared global functions or variables.
732
- if (globals > 0) {
733
- Handle<FixedArray> array = Factory::NewFixedArray(2 * globals, TENURED);
734
- for (int j = 0, i = 0; i < length; i++) {
735
- Declaration* decl = declarations->at(i);
736
- Variable* var = decl->proxy()->var();
737
- Slot* slot = var->slot();
738
-
739
- if ((slot == NULL || slot->type() != Slot::LOOKUP) && var->is_global()) {
740
- array->set(j++, *(var->name()));
741
- if (decl->fun() == NULL) {
742
- if (var->mode() == Variable::CONST) {
743
- // In case this is const property use the hole.
744
- array->set_the_hole(j++);
745
- } else {
746
- array->set_undefined(j++);
747
- }
748
- } else {
749
- Handle<SharedFunctionInfo> function =
750
- Compiler::BuildFunctionInfo(decl->fun(), script(), this);
751
- // Check for stack-overflow exception.
752
- if (HasStackOverflow()) return;
753
- array->set(j++, *function);
754
- }
755
- }
756
- }
757
- // Invoke the platform-dependent code generator to do the actual
758
- // declaration the global variables and functions.
759
- DeclareGlobals(array);
760
- }
761
- }
762
-
763
-
764
- void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
765
- if (FLAG_debug_info) {
766
- CodeGenerator::RecordPositions(masm_, fun->start_position());
767
- }
768
- }
769
-
770
-
771
- void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
772
- if (FLAG_debug_info) {
773
- CodeGenerator::RecordPositions(masm_, fun->end_position());
774
- }
775
- }
776
-
777
-
778
- void FullCodeGenerator::SetStatementPosition(Statement* stmt) {
779
- if (FLAG_debug_info) {
780
- #ifdef ENABLE_DEBUGGER_SUPPORT
781
- if (!Debugger::IsDebuggerActive()) {
782
- CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
783
- } else {
784
- // Check if the statement will be breakable without adding a debug break
785
- // slot.
786
- BreakableStatementChecker checker;
787
- checker.Check(stmt);
788
- // Record the statement position right here if the statement is not
789
- // breakable. For breakable statements the actual recording of the
790
- // position will be postponed to the breakable code (typically an IC).
791
- bool position_recorded = CodeGenerator::RecordPositions(
792
- masm_, stmt->statement_pos(), !checker.is_breakable());
793
- // If the position recording did record a new position generate a debug
794
- // break slot to make the statement breakable.
795
- if (position_recorded) {
796
- Debug::GenerateSlot(masm_);
797
- }
798
- }
799
- #else
800
- CodeGenerator::RecordPositions(masm_, stmt->statement_pos());
801
- #endif
802
- }
803
- }
804
-
805
-
806
- void FullCodeGenerator::SetExpressionPosition(Expression* expr, int pos) {
807
- if (FLAG_debug_info) {
808
- #ifdef ENABLE_DEBUGGER_SUPPORT
809
- if (!Debugger::IsDebuggerActive()) {
810
- CodeGenerator::RecordPositions(masm_, pos);
811
- } else {
812
- // Check if the expression will be breakable without adding a debug break
813
- // slot.
814
- BreakableStatementChecker checker;
815
- checker.Check(expr);
816
- // Record a statement position right here if the expression is not
817
- // breakable. For breakable expressions the actual recording of the
818
- // position will be postponed to the breakable code (typically an IC).
819
- // NOTE this will record a statement position for something which might
820
- // not be a statement. As stepping in the debugger will only stop at
821
- // statement positions this is used for e.g. the condition expression of
822
- // a do while loop.
823
- bool position_recorded = CodeGenerator::RecordPositions(
824
- masm_, pos, !checker.is_breakable());
825
- // If the position recording did record a new position generate a debug
826
- // break slot to make the statement breakable.
827
- if (position_recorded) {
828
- Debug::GenerateSlot(masm_);
829
- }
830
- }
831
- #else
832
- CodeGenerator::RecordPositions(masm_, pos);
833
- #endif
834
- }
835
- }
836
-
837
-
838
- void FullCodeGenerator::SetStatementPosition(int pos) {
839
- if (FLAG_debug_info) {
840
- CodeGenerator::RecordPositions(masm_, pos);
841
- }
842
- }
843
-
844
-
845
- void FullCodeGenerator::SetSourcePosition(int pos) {
846
- if (FLAG_debug_info && pos != RelocInfo::kNoPosition) {
847
- masm_->RecordPosition(pos);
848
- }
849
- }
850
-
851
-
852
- void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* expr) {
853
- Handle<String> name = expr->name();
854
- if (strcmp("_IsSmi", *name->ToCString()) == 0) {
855
- EmitIsSmi(expr->arguments());
856
- } else if (strcmp("_IsNonNegativeSmi", *name->ToCString()) == 0) {
857
- EmitIsNonNegativeSmi(expr->arguments());
858
- } else if (strcmp("_IsObject", *name->ToCString()) == 0) {
859
- EmitIsObject(expr->arguments());
860
- } else if (strcmp("_IsSpecObject", *name->ToCString()) == 0) {
861
- EmitIsSpecObject(expr->arguments());
862
- } else if (strcmp("_IsUndetectableObject", *name->ToCString()) == 0) {
863
- EmitIsUndetectableObject(expr->arguments());
864
- } else if (strcmp("_IsFunction", *name->ToCString()) == 0) {
865
- EmitIsFunction(expr->arguments());
866
- } else if (strcmp("_IsArray", *name->ToCString()) == 0) {
867
- EmitIsArray(expr->arguments());
868
- } else if (strcmp("_IsRegExp", *name->ToCString()) == 0) {
869
- EmitIsRegExp(expr->arguments());
870
- } else if (strcmp("_IsConstructCall", *name->ToCString()) == 0) {
871
- EmitIsConstructCall(expr->arguments());
872
- } else if (strcmp("_ObjectEquals", *name->ToCString()) == 0) {
873
- EmitObjectEquals(expr->arguments());
874
- } else if (strcmp("_Arguments", *name->ToCString()) == 0) {
875
- EmitArguments(expr->arguments());
876
- } else if (strcmp("_ArgumentsLength", *name->ToCString()) == 0) {
877
- EmitArgumentsLength(expr->arguments());
878
- } else if (strcmp("_ClassOf", *name->ToCString()) == 0) {
879
- EmitClassOf(expr->arguments());
880
- } else if (strcmp("_Log", *name->ToCString()) == 0) {
881
- EmitLog(expr->arguments());
882
- } else if (strcmp("_RandomHeapNumber", *name->ToCString()) == 0) {
883
- EmitRandomHeapNumber(expr->arguments());
884
- } else if (strcmp("_SubString", *name->ToCString()) == 0) {
885
- EmitSubString(expr->arguments());
886
- } else if (strcmp("_RegExpExec", *name->ToCString()) == 0) {
887
- EmitRegExpExec(expr->arguments());
888
- } else if (strcmp("_ValueOf", *name->ToCString()) == 0) {
889
- EmitValueOf(expr->arguments());
890
- } else if (strcmp("_SetValueOf", *name->ToCString()) == 0) {
891
- EmitSetValueOf(expr->arguments());
892
- } else if (strcmp("_NumberToString", *name->ToCString()) == 0) {
893
- EmitNumberToString(expr->arguments());
894
- } else if (strcmp("_StringCharFromCode", *name->ToCString()) == 0) {
895
- EmitStringCharFromCode(expr->arguments());
896
- } else if (strcmp("_StringCharCodeAt", *name->ToCString()) == 0) {
897
- EmitStringCharCodeAt(expr->arguments());
898
- } else if (strcmp("_StringCharAt", *name->ToCString()) == 0) {
899
- EmitStringCharAt(expr->arguments());
900
- } else if (strcmp("_StringAdd", *name->ToCString()) == 0) {
901
- EmitStringAdd(expr->arguments());
902
- } else if (strcmp("_StringCompare", *name->ToCString()) == 0) {
903
- EmitStringCompare(expr->arguments());
904
- } else if (strcmp("_MathPow", *name->ToCString()) == 0) {
905
- EmitMathPow(expr->arguments());
906
- } else if (strcmp("_MathSin", *name->ToCString()) == 0) {
907
- EmitMathSin(expr->arguments());
908
- } else if (strcmp("_MathCos", *name->ToCString()) == 0) {
909
- EmitMathCos(expr->arguments());
910
- } else if (strcmp("_MathSqrt", *name->ToCString()) == 0) {
911
- EmitMathSqrt(expr->arguments());
912
- } else if (strcmp("_CallFunction", *name->ToCString()) == 0) {
913
- EmitCallFunction(expr->arguments());
914
- } else if (strcmp("_RegExpConstructResult", *name->ToCString()) == 0) {
915
- EmitRegExpConstructResult(expr->arguments());
916
- } else if (strcmp("_SwapElements", *name->ToCString()) == 0) {
917
- EmitSwapElements(expr->arguments());
918
- } else if (strcmp("_GetFromCache", *name->ToCString()) == 0) {
919
- EmitGetFromCache(expr->arguments());
920
- } else {
921
- UNREACHABLE();
922
- }
923
- }
924
-
925
-
926
- void FullCodeGenerator::EmitLogicalOperation(BinaryOperation* expr) {
927
- Label eval_right, done;
928
-
929
- // Set up the appropriate context for the left subexpression based
930
- // on the operation and our own context. Initially assume we can
931
- // inherit both true and false labels from our context.
932
- if (expr->op() == Token::OR) {
933
- switch (context_) {
934
- case Expression::kUninitialized:
935
- UNREACHABLE();
936
- case Expression::kEffect:
937
- VisitForControl(expr->left(), &done, &eval_right);
938
- break;
939
- case Expression::kValue:
940
- VisitForValueControl(expr->left(),
941
- location_,
942
- &done,
943
- &eval_right);
944
- break;
945
- case Expression::kTest:
946
- VisitForControl(expr->left(), true_label_, &eval_right);
947
- break;
948
- case Expression::kValueTest:
949
- VisitForValueControl(expr->left(),
950
- location_,
951
- true_label_,
952
- &eval_right);
953
- break;
954
- case Expression::kTestValue:
955
- VisitForControl(expr->left(), true_label_, &eval_right);
956
- break;
957
- }
958
- } else {
959
- ASSERT_EQ(Token::AND, expr->op());
960
- switch (context_) {
961
- case Expression::kUninitialized:
962
- UNREACHABLE();
963
- case Expression::kEffect:
964
- VisitForControl(expr->left(), &eval_right, &done);
965
- break;
966
- case Expression::kValue:
967
- VisitForControlValue(expr->left(),
968
- location_,
969
- &eval_right,
970
- &done);
971
- break;
972
- case Expression::kTest:
973
- VisitForControl(expr->left(), &eval_right, false_label_);
974
- break;
975
- case Expression::kValueTest:
976
- VisitForControl(expr->left(), &eval_right, false_label_);
977
- break;
978
- case Expression::kTestValue:
979
- VisitForControlValue(expr->left(),
980
- location_,
981
- &eval_right,
982
- false_label_);
983
- break;
984
- }
985
- }
986
-
987
- __ bind(&eval_right);
988
- Visit(expr->right());
989
-
990
- __ bind(&done);
991
- }
992
-
993
-
994
- void FullCodeGenerator::VisitBlock(Block* stmt) {
995
- Comment cmnt(masm_, "[ Block");
996
- Breakable nested_statement(this, stmt);
997
- SetStatementPosition(stmt);
998
- VisitStatements(stmt->statements());
999
- __ bind(nested_statement.break_target());
1000
- }
1001
-
1002
-
1003
- void FullCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
1004
- Comment cmnt(masm_, "[ ExpressionStatement");
1005
- SetStatementPosition(stmt);
1006
- VisitForEffect(stmt->expression());
1007
- }
1008
-
1009
-
1010
- void FullCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
1011
- Comment cmnt(masm_, "[ EmptyStatement");
1012
- SetStatementPosition(stmt);
1013
- }
1014
-
1015
-
1016
- void FullCodeGenerator::VisitIfStatement(IfStatement* stmt) {
1017
- Comment cmnt(masm_, "[ IfStatement");
1018
- SetStatementPosition(stmt);
1019
- Label then_part, else_part, done;
1020
-
1021
- // Do not worry about optimizing for empty then or else bodies.
1022
- VisitForControl(stmt->condition(), &then_part, &else_part);
1023
-
1024
- __ bind(&then_part);
1025
- Visit(stmt->then_statement());
1026
- __ jmp(&done);
1027
-
1028
- __ bind(&else_part);
1029
- Visit(stmt->else_statement());
1030
-
1031
- __ bind(&done);
1032
- }
1033
-
1034
-
1035
- void FullCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
1036
- Comment cmnt(masm_, "[ ContinueStatement");
1037
- SetStatementPosition(stmt);
1038
- NestedStatement* current = nesting_stack_;
1039
- int stack_depth = 0;
1040
- while (!current->IsContinueTarget(stmt->target())) {
1041
- stack_depth = current->Exit(stack_depth);
1042
- current = current->outer();
1043
- }
1044
- __ Drop(stack_depth);
1045
-
1046
- Iteration* loop = current->AsIteration();
1047
- __ jmp(loop->continue_target());
1048
- }
1049
-
1050
-
1051
- void FullCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
1052
- Comment cmnt(masm_, "[ BreakStatement");
1053
- SetStatementPosition(stmt);
1054
- NestedStatement* current = nesting_stack_;
1055
- int stack_depth = 0;
1056
- while (!current->IsBreakTarget(stmt->target())) {
1057
- stack_depth = current->Exit(stack_depth);
1058
- current = current->outer();
1059
- }
1060
- __ Drop(stack_depth);
1061
-
1062
- Breakable* target = current->AsBreakable();
1063
- __ jmp(target->break_target());
1064
- }
1065
-
1066
-
1067
- void FullCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
1068
- Comment cmnt(masm_, "[ ReturnStatement");
1069
- SetStatementPosition(stmt);
1070
- Expression* expr = stmt->expression();
1071
- VisitForValue(expr, kAccumulator);
1072
-
1073
- // Exit all nested statements.
1074
- NestedStatement* current = nesting_stack_;
1075
- int stack_depth = 0;
1076
- while (current != NULL) {
1077
- stack_depth = current->Exit(stack_depth);
1078
- current = current->outer();
1079
- }
1080
- __ Drop(stack_depth);
1081
-
1082
- EmitReturnSequence();
1083
- }
1084
-
1085
-
1086
- void FullCodeGenerator::VisitWithEnterStatement(WithEnterStatement* stmt) {
1087
- Comment cmnt(masm_, "[ WithEnterStatement");
1088
- SetStatementPosition(stmt);
1089
-
1090
- VisitForValue(stmt->expression(), kStack);
1091
- if (stmt->is_catch_block()) {
1092
- __ CallRuntime(Runtime::kPushCatchContext, 1);
1093
- } else {
1094
- __ CallRuntime(Runtime::kPushContext, 1);
1095
- }
1096
- // Both runtime calls return the new context in both the context and the
1097
- // result registers.
1098
-
1099
- // Update local stack frame context field.
1100
- StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
1101
- }
1102
-
1103
-
1104
- void FullCodeGenerator::VisitWithExitStatement(WithExitStatement* stmt) {
1105
- Comment cmnt(masm_, "[ WithExitStatement");
1106
- SetStatementPosition(stmt);
1107
-
1108
- // Pop context.
1109
- LoadContextField(context_register(), Context::PREVIOUS_INDEX);
1110
- // Update local stack frame context field.
1111
- StoreToFrameField(StandardFrameConstants::kContextOffset, context_register());
1112
- }
1113
-
1114
-
1115
- void FullCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
1116
- Comment cmnt(masm_, "[ DoWhileStatement");
1117
- SetStatementPosition(stmt);
1118
- Label body, stack_limit_hit, stack_check_success;
1119
-
1120
- Iteration loop_statement(this, stmt);
1121
- increment_loop_depth();
1122
-
1123
- __ bind(&body);
1124
- Visit(stmt->body());
1125
-
1126
- // Check stack before looping.
1127
- __ StackLimitCheck(&stack_limit_hit);
1128
- __ bind(&stack_check_success);
1129
-
1130
- __ bind(loop_statement.continue_target());
1131
-
1132
- // Record the position of the do while condition and make sure it is possible
1133
- // to break on the condition.
1134
- SetExpressionPosition(stmt->cond(), stmt->condition_position());
1135
-
1136
- VisitForControl(stmt->cond(), &body, loop_statement.break_target());
1137
-
1138
- __ bind(&stack_limit_hit);
1139
- StackCheckStub stack_stub;
1140
- __ CallStub(&stack_stub);
1141
- __ jmp(&stack_check_success);
1142
-
1143
- __ bind(loop_statement.break_target());
1144
-
1145
- decrement_loop_depth();
1146
- }
1147
-
1148
-
1149
- void FullCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
1150
- Comment cmnt(masm_, "[ WhileStatement");
1151
- Label body, stack_limit_hit, stack_check_success;
1152
-
1153
- Iteration loop_statement(this, stmt);
1154
- increment_loop_depth();
1155
-
1156
- // Emit the test at the bottom of the loop.
1157
- __ jmp(loop_statement.continue_target());
1158
-
1159
- __ bind(&body);
1160
- Visit(stmt->body());
1161
-
1162
- __ bind(loop_statement.continue_target());
1163
- // Emit the statement position here as this is where the while statement code
1164
- // starts.
1165
- SetStatementPosition(stmt);
1166
-
1167
- // Check stack before looping.
1168
- __ StackLimitCheck(&stack_limit_hit);
1169
- __ bind(&stack_check_success);
1170
-
1171
- VisitForControl(stmt->cond(), &body, loop_statement.break_target());
1172
-
1173
- __ bind(&stack_limit_hit);
1174
- StackCheckStub stack_stub;
1175
- __ CallStub(&stack_stub);
1176
- __ jmp(&stack_check_success);
1177
-
1178
- __ bind(loop_statement.break_target());
1179
- decrement_loop_depth();
1180
- }
1181
-
1182
-
1183
- void FullCodeGenerator::VisitForStatement(ForStatement* stmt) {
1184
- Comment cmnt(masm_, "[ ForStatement");
1185
- Label test, body, stack_limit_hit, stack_check_success;
1186
-
1187
- Iteration loop_statement(this, stmt);
1188
- if (stmt->init() != NULL) {
1189
- Visit(stmt->init());
1190
- }
1191
-
1192
- increment_loop_depth();
1193
- // Emit the test at the bottom of the loop (even if empty).
1194
- __ jmp(&test);
1195
-
1196
- __ bind(&body);
1197
- Visit(stmt->body());
1198
-
1199
- __ bind(loop_statement.continue_target());
1200
-
1201
- SetStatementPosition(stmt);
1202
- if (stmt->next() != NULL) {
1203
- Visit(stmt->next());
1204
- }
1205
-
1206
- __ bind(&test);
1207
- // Emit the statement position here as this is where the for statement code
1208
- // starts.
1209
- SetStatementPosition(stmt);
1210
-
1211
- // Check stack before looping.
1212
- __ StackLimitCheck(&stack_limit_hit);
1213
- __ bind(&stack_check_success);
1214
-
1215
- if (stmt->cond() != NULL) {
1216
- VisitForControl(stmt->cond(), &body, loop_statement.break_target());
1217
- } else {
1218
- __ jmp(&body);
1219
- }
1220
-
1221
- __ bind(&stack_limit_hit);
1222
- StackCheckStub stack_stub;
1223
- __ CallStub(&stack_stub);
1224
- __ jmp(&stack_check_success);
1225
-
1226
- __ bind(loop_statement.break_target());
1227
- decrement_loop_depth();
1228
- }
1229
-
1230
-
1231
- void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
1232
- Comment cmnt(masm_, "[ TryCatchStatement");
1233
- SetStatementPosition(stmt);
1234
- // The try block adds a handler to the exception handler chain
1235
- // before entering, and removes it again when exiting normally.
1236
- // If an exception is thrown during execution of the try block,
1237
- // control is passed to the handler, which also consumes the handler.
1238
- // At this point, the exception is in a register, and store it in
1239
- // the temporary local variable (prints as ".catch-var") before
1240
- // executing the catch block. The catch block has been rewritten
1241
- // to introduce a new scope to bind the catch variable and to remove
1242
- // that scope again afterwards.
1243
-
1244
- Label try_handler_setup, catch_entry, done;
1245
- __ Call(&try_handler_setup);
1246
- // Try handler code, exception in result register.
1247
-
1248
- // Store exception in local .catch variable before executing catch block.
1249
- {
1250
- // The catch variable is *always* a variable proxy for a local variable.
1251
- Variable* catch_var = stmt->catch_var()->AsVariableProxy()->AsVariable();
1252
- ASSERT_NOT_NULL(catch_var);
1253
- Slot* variable_slot = catch_var->slot();
1254
- ASSERT_NOT_NULL(variable_slot);
1255
- ASSERT_EQ(Slot::LOCAL, variable_slot->type());
1256
- StoreToFrameField(SlotOffset(variable_slot), result_register());
1257
- }
1258
-
1259
- Visit(stmt->catch_block());
1260
- __ jmp(&done);
1261
-
1262
- // Try block code. Sets up the exception handler chain.
1263
- __ bind(&try_handler_setup);
1264
- {
1265
- TryCatch try_block(this, &catch_entry);
1266
- __ PushTryHandler(IN_JAVASCRIPT, TRY_CATCH_HANDLER);
1267
- Visit(stmt->try_block());
1268
- __ PopTryHandler();
1269
- }
1270
- __ bind(&done);
1271
- }
1272
-
1273
-
1274
- void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1275
- Comment cmnt(masm_, "[ TryFinallyStatement");
1276
- SetStatementPosition(stmt);
1277
- // Try finally is compiled by setting up a try-handler on the stack while
1278
- // executing the try body, and removing it again afterwards.
1279
- //
1280
- // The try-finally construct can enter the finally block in three ways:
1281
- // 1. By exiting the try-block normally. This removes the try-handler and
1282
- // calls the finally block code before continuing.
1283
- // 2. By exiting the try-block with a function-local control flow transfer
1284
- // (break/continue/return). The site of the, e.g., break removes the
1285
- // try handler and calls the finally block code before continuing
1286
- // its outward control transfer.
1287
- // 3. by exiting the try-block with a thrown exception.
1288
- // This can happen in nested function calls. It traverses the try-handler
1289
- // chain and consumes the try-handler entry before jumping to the
1290
- // handler code. The handler code then calls the finally-block before
1291
- // rethrowing the exception.
1292
- //
1293
- // The finally block must assume a return address on top of the stack
1294
- // (or in the link register on ARM chips) and a value (return value or
1295
- // exception) in the result register (rax/eax/r0), both of which must
1296
- // be preserved. The return address isn't GC-safe, so it should be
1297
- // cooked before GC.
1298
- Label finally_entry;
1299
- Label try_handler_setup;
1300
-
1301
- // Setup the try-handler chain. Use a call to
1302
- // Jump to try-handler setup and try-block code. Use call to put try-handler
1303
- // address on stack.
1304
- __ Call(&try_handler_setup);
1305
- // Try handler code. Return address of call is pushed on handler stack.
1306
- {
1307
- // This code is only executed during stack-handler traversal when an
1308
- // exception is thrown. The execption is in the result register, which
1309
- // is retained by the finally block.
1310
- // Call the finally block and then rethrow the exception.
1311
- __ Call(&finally_entry);
1312
- __ push(result_register());
1313
- __ CallRuntime(Runtime::kReThrow, 1);
1314
- }
1315
-
1316
- __ bind(&finally_entry);
1317
- {
1318
- // Finally block implementation.
1319
- Finally finally_block(this);
1320
- EnterFinallyBlock();
1321
- Visit(stmt->finally_block());
1322
- ExitFinallyBlock(); // Return to the calling code.
1323
- }
1324
-
1325
- __ bind(&try_handler_setup);
1326
- {
1327
- // Setup try handler (stack pointer registers).
1328
- TryFinally try_block(this, &finally_entry);
1329
- __ PushTryHandler(IN_JAVASCRIPT, TRY_FINALLY_HANDLER);
1330
- Visit(stmt->try_block());
1331
- __ PopTryHandler();
1332
- }
1333
- // Execute the finally block on the way out.
1334
- __ Call(&finally_entry);
1335
- }
1336
-
1337
-
1338
- void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
1339
- #ifdef ENABLE_DEBUGGER_SUPPORT
1340
- Comment cmnt(masm_, "[ DebuggerStatement");
1341
- SetStatementPosition(stmt);
1342
-
1343
- __ DebugBreak();
1344
- // Ignore the return value.
1345
- #endif
1346
- }
1347
-
1348
-
1349
- void FullCodeGenerator::VisitConditional(Conditional* expr) {
1350
- Comment cmnt(masm_, "[ Conditional");
1351
- Label true_case, false_case, done;
1352
- VisitForControl(expr->condition(), &true_case, &false_case);
1353
-
1354
- __ bind(&true_case);
1355
- SetExpressionPosition(expr->then_expression(),
1356
- expr->then_expression_position());
1357
- Visit(expr->then_expression());
1358
- // If control flow falls through Visit, jump to done.
1359
- if (context_ == Expression::kEffect || context_ == Expression::kValue) {
1360
- __ jmp(&done);
1361
- }
1362
-
1363
- __ bind(&false_case);
1364
- SetExpressionPosition(expr->else_expression(),
1365
- expr->else_expression_position());
1366
- Visit(expr->else_expression());
1367
- // If control flow falls through Visit, merge it with true case here.
1368
- if (context_ == Expression::kEffect || context_ == Expression::kValue) {
1369
- __ bind(&done);
1370
- }
1371
- }
1372
-
1373
-
1374
- void FullCodeGenerator::VisitSlot(Slot* expr) {
1375
- // Slots do not appear directly in the AST.
1376
- UNREACHABLE();
1377
- }
1378
-
1379
-
1380
- void FullCodeGenerator::VisitLiteral(Literal* expr) {
1381
- Comment cmnt(masm_, "[ Literal");
1382
- Apply(context_, expr);
1383
- }
1384
-
1385
-
1386
- void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1387
- Comment cmnt(masm_, "[ FunctionLiteral");
1388
-
1389
- // Build the function boilerplate and instantiate it.
1390
- Handle<SharedFunctionInfo> function_info =
1391
- Compiler::BuildFunctionInfo(expr, script(), this);
1392
- if (HasStackOverflow()) return;
1393
- EmitNewClosure(function_info);
1394
- }
1395
-
1396
-
1397
- void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
1398
- SharedFunctionInfoLiteral* expr) {
1399
- Comment cmnt(masm_, "[ SharedFunctionInfoLiteral");
1400
- EmitNewClosure(expr->shared_function_info());
1401
- }
1402
-
1403
-
1404
- void FullCodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* expr) {
1405
- // Call runtime routine to allocate the catch extension object and
1406
- // assign the exception value to the catch variable.
1407
- Comment cmnt(masm_, "[ CatchExtensionObject");
1408
- VisitForValue(expr->key(), kStack);
1409
- VisitForValue(expr->value(), kStack);
1410
- // Create catch extension object.
1411
- __ CallRuntime(Runtime::kCreateCatchExtensionObject, 2);
1412
- Apply(context_, result_register());
1413
- }
1414
-
1415
-
1416
- void FullCodeGenerator::VisitThrow(Throw* expr) {
1417
- Comment cmnt(masm_, "[ Throw");
1418
- VisitForValue(expr->exception(), kStack);
1419
- __ CallRuntime(Runtime::kThrow, 1);
1420
- // Never returns here.
1421
- }
1422
-
1423
-
1424
- int FullCodeGenerator::TryFinally::Exit(int stack_depth) {
1425
- // The macros used here must preserve the result register.
1426
- __ Drop(stack_depth);
1427
- __ PopTryHandler();
1428
- __ Call(finally_entry_);
1429
- return 0;
1430
- }
1431
-
1432
-
1433
- int FullCodeGenerator::TryCatch::Exit(int stack_depth) {
1434
- // The macros used here must preserve the result register.
1435
- __ Drop(stack_depth);
1436
- __ PopTryHandler();
1437
- return 0;
1438
- }
1439
-
1440
- #undef __
1441
-
1442
-
1443
- } } // namespace v8::internal