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
@@ -0,0 +1,238 @@
1
+ // Copyright 2006-2008 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_SCOPEINFO_H_
29
+ #define V8_SCOPEINFO_H_
30
+
31
+ #include "variables.h"
32
+ #include "zone-inl.h"
33
+
34
+ namespace v8 {
35
+ namespace internal {
36
+
37
+ // Scope information represents information about a functions's
38
+ // scopes (currently only one, because we don't do any inlining)
39
+ // and the allocation of the scope's variables. Scope information
40
+ // is stored in a compressed form in FixedArray objects and is used
41
+ // at runtime (stack dumps, deoptimization, etc.).
42
+ //
43
+ // Historical note: In other VMs built by this team, ScopeInfo was
44
+ // usually called DebugInfo since the information was used (among
45
+ // other things) for on-demand debugging (Self, Smalltalk). However,
46
+ // DebugInfo seems misleading, since this information is primarily used
47
+ // in debugging-unrelated contexts.
48
+
49
+ // Forward defined as
50
+ // template <class Allocator = FreeStoreAllocationPolicy> class ScopeInfo;
51
+ template<class Allocator>
52
+ class ScopeInfo BASE_EMBEDDED {
53
+ public:
54
+ // Create a ScopeInfo instance from a scope.
55
+ explicit ScopeInfo(Scope* scope);
56
+
57
+ // Create a ScopeInfo instance from SerializedScopeInfo.
58
+ explicit ScopeInfo(SerializedScopeInfo* data);
59
+
60
+ // Creates a SerializedScopeInfo holding the serialized scope info.
61
+ Handle<SerializedScopeInfo> Serialize();
62
+
63
+ // --------------------------------------------------------------------------
64
+ // Lookup
65
+
66
+ Handle<String> function_name() const { return function_name_; }
67
+
68
+ Handle<String> parameter_name(int i) const { return parameters_[i]; }
69
+ int number_of_parameters() const { return parameters_.length(); }
70
+
71
+ Handle<String> stack_slot_name(int i) const { return stack_slots_[i]; }
72
+ int number_of_stack_slots() const { return stack_slots_.length(); }
73
+
74
+ Handle<String> context_slot_name(int i) const {
75
+ return context_slots_[i - Context::MIN_CONTEXT_SLOTS];
76
+ }
77
+ int number_of_context_slots() const {
78
+ int l = context_slots_.length();
79
+ return l == 0 ? 0 : l + Context::MIN_CONTEXT_SLOTS;
80
+ }
81
+
82
+ Handle<String> LocalName(int i) const;
83
+ int NumberOfLocals() const;
84
+
85
+ // --------------------------------------------------------------------------
86
+ // Debugging support
87
+
88
+ #ifdef DEBUG
89
+ void Print();
90
+ #endif
91
+
92
+ private:
93
+ Handle<String> function_name_;
94
+ bool calls_eval_;
95
+ List<Handle<String>, Allocator > parameters_;
96
+ List<Handle<String>, Allocator > stack_slots_;
97
+ List<Handle<String>, Allocator > context_slots_;
98
+ List<Variable::Mode, Allocator > context_modes_;
99
+ };
100
+
101
+
102
+ // This object provides quick access to scope info details for runtime
103
+ // routines w/o the need to explicitly create a ScopeInfo object.
104
+ class SerializedScopeInfo : public FixedArray {
105
+ public :
106
+
107
+ static SerializedScopeInfo* cast(Object* object) {
108
+ ASSERT(object->IsFixedArray());
109
+ return reinterpret_cast<SerializedScopeInfo*>(object);
110
+ }
111
+
112
+ // Does this scope call eval?
113
+ bool CallsEval();
114
+
115
+ // Does this scope have an arguments shadow?
116
+ bool HasArgumentsShadow() {
117
+ return StackSlotIndex(Heap::arguments_shadow_symbol()) >= 0;
118
+ }
119
+
120
+ // Return the number of stack slots for code.
121
+ int NumberOfStackSlots();
122
+
123
+ // Return the number of context slots for code.
124
+ int NumberOfContextSlots();
125
+
126
+ // Return if this has context slots besides MIN_CONTEXT_SLOTS;
127
+ bool HasHeapAllocatedLocals();
128
+
129
+ // Lookup support for serialized scope info. Returns the
130
+ // the stack slot index for a given slot name if the slot is
131
+ // present; otherwise returns a value < 0. The name must be a symbol
132
+ // (canonicalized).
133
+ int StackSlotIndex(String* name);
134
+
135
+ // Lookup support for serialized scope info. Returns the
136
+ // context slot index for a given slot name if the slot is present; otherwise
137
+ // returns a value < 0. The name must be a symbol (canonicalized).
138
+ // If the slot is present and mode != NULL, sets *mode to the corresponding
139
+ // mode for that variable.
140
+ int ContextSlotIndex(String* name, Variable::Mode* mode);
141
+
142
+ // Lookup support for serialized scope info. Returns the
143
+ // parameter index for a given parameter name if the parameter is present;
144
+ // otherwise returns a value < 0. The name must be a symbol (canonicalized).
145
+ int ParameterIndex(String* name);
146
+
147
+ // Lookup support for serialized scope info. Returns the
148
+ // function context slot index if the function name is present (named
149
+ // function expressions, only), otherwise returns a value < 0. The name
150
+ // must be a symbol (canonicalized).
151
+ int FunctionContextSlotIndex(String* name);
152
+
153
+ static Handle<SerializedScopeInfo> Create(Scope* scope);
154
+
155
+ // Serializes empty scope info.
156
+ static SerializedScopeInfo* Empty();
157
+
158
+ private:
159
+
160
+ inline Object** ContextEntriesAddr();
161
+
162
+ inline Object** ParameterEntriesAddr();
163
+
164
+ inline Object** StackSlotEntriesAddr();
165
+ };
166
+
167
+
168
+ // Cache for mapping (data, property name) into context slot index.
169
+ // The cache contains both positive and negative results.
170
+ // Slot index equals -1 means the property is absent.
171
+ // Cleared at startup and prior to mark sweep collection.
172
+ class ContextSlotCache {
173
+ public:
174
+ // Lookup context slot index for (data, name).
175
+ // If absent, kNotFound is returned.
176
+ static int Lookup(Object* data,
177
+ String* name,
178
+ Variable::Mode* mode);
179
+
180
+ // Update an element in the cache.
181
+ static void Update(Object* data,
182
+ String* name,
183
+ Variable::Mode mode,
184
+ int slot_index);
185
+
186
+ // Clear the cache.
187
+ static void Clear();
188
+
189
+ static const int kNotFound = -2;
190
+ private:
191
+ inline static int Hash(Object* data, String* name);
192
+
193
+ #ifdef DEBUG
194
+ static void ValidateEntry(Object* data,
195
+ String* name,
196
+ Variable::Mode mode,
197
+ int slot_index);
198
+ #endif
199
+
200
+ static const int kLength = 256;
201
+ struct Key {
202
+ Object* data;
203
+ String* name;
204
+ };
205
+
206
+ struct Value {
207
+ Value(Variable::Mode mode, int index) {
208
+ ASSERT(ModeField::is_valid(mode));
209
+ ASSERT(IndexField::is_valid(index));
210
+ value_ = ModeField::encode(mode) | IndexField::encode(index);
211
+ ASSERT(mode == this->mode());
212
+ ASSERT(index == this->index());
213
+ }
214
+
215
+ inline Value(uint32_t value) : value_(value) {}
216
+
217
+ uint32_t raw() { return value_; }
218
+
219
+ Variable::Mode mode() { return ModeField::decode(value_); }
220
+
221
+ int index() { return IndexField::decode(value_); }
222
+
223
+ // Bit fields in value_ (type, shift, size). Must be public so the
224
+ // constants can be embedded in generated code.
225
+ class ModeField: public BitField<Variable::Mode, 0, 3> {};
226
+ class IndexField: public BitField<int, 3, 32-3> {};
227
+ private:
228
+ uint32_t value_;
229
+ };
230
+
231
+ static Key keys_[kLength];
232
+ static uint32_t values_[kLength];
233
+ };
234
+
235
+
236
+ } } // namespace v8::internal
237
+
238
+ #endif // V8_SCOPEINFO_H_
@@ -0,0 +1,1063 @@
1
+ // Copyright 2010 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 "scopes.h"
31
+
32
+ #include "bootstrapper.h"
33
+ #include "compiler.h"
34
+ #include "prettyprinter.h"
35
+ #include "scopeinfo.h"
36
+
37
+ namespace v8 {
38
+ namespace internal {
39
+
40
+ // ----------------------------------------------------------------------------
41
+ // A Zone allocator for use with LocalsMap.
42
+
43
+ class ZoneAllocator: public Allocator {
44
+ public:
45
+ /* nothing to do */
46
+ virtual ~ZoneAllocator() {}
47
+
48
+ virtual void* New(size_t size) { return Zone::New(static_cast<int>(size)); }
49
+
50
+ /* ignored - Zone is freed in one fell swoop */
51
+ virtual void Delete(void* p) {}
52
+ };
53
+
54
+
55
+ static ZoneAllocator LocalsMapAllocator;
56
+
57
+
58
+ // ----------------------------------------------------------------------------
59
+ // Implementation of LocalsMap
60
+ //
61
+ // Note: We are storing the handle locations as key values in the hash map.
62
+ // When inserting a new variable via Declare(), we rely on the fact that
63
+ // the handle location remains alive for the duration of that variable
64
+ // use. Because a Variable holding a handle with the same location exists
65
+ // this is ensured.
66
+
67
+ static bool Match(void* key1, void* key2) {
68
+ String* name1 = *reinterpret_cast<String**>(key1);
69
+ String* name2 = *reinterpret_cast<String**>(key2);
70
+ ASSERT(name1->IsSymbol());
71
+ ASSERT(name2->IsSymbol());
72
+ return name1 == name2;
73
+ }
74
+
75
+
76
+ // Dummy constructor
77
+ VariableMap::VariableMap(bool gotta_love_static_overloading) : HashMap() {}
78
+
79
+ VariableMap::VariableMap() : HashMap(Match, &LocalsMapAllocator, 8) {}
80
+ VariableMap::~VariableMap() {}
81
+
82
+
83
+ Variable* VariableMap::Declare(Scope* scope,
84
+ Handle<String> name,
85
+ Variable::Mode mode,
86
+ bool is_valid_lhs,
87
+ Variable::Kind kind) {
88
+ HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), true);
89
+ if (p->value == NULL) {
90
+ // The variable has not been declared yet -> insert it.
91
+ ASSERT(p->key == name.location());
92
+ p->value = new Variable(scope, name, mode, is_valid_lhs, kind);
93
+ }
94
+ return reinterpret_cast<Variable*>(p->value);
95
+ }
96
+
97
+
98
+ Variable* VariableMap::Lookup(Handle<String> name) {
99
+ HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), false);
100
+ if (p != NULL) {
101
+ ASSERT(*reinterpret_cast<String**>(p->key) == *name);
102
+ ASSERT(p->value != NULL);
103
+ return reinterpret_cast<Variable*>(p->value);
104
+ }
105
+ return NULL;
106
+ }
107
+
108
+
109
+ // ----------------------------------------------------------------------------
110
+ // Implementation of Scope
111
+
112
+
113
+ // Dummy constructor
114
+ Scope::Scope(Type type)
115
+ : inner_scopes_(0),
116
+ variables_(false),
117
+ temps_(0),
118
+ params_(0),
119
+ unresolved_(0),
120
+ decls_(0) {
121
+ SetDefaults(type, NULL, NULL);
122
+ ASSERT(!resolved());
123
+ }
124
+
125
+
126
+ Scope::Scope(Scope* outer_scope, Type type)
127
+ : inner_scopes_(4),
128
+ variables_(),
129
+ temps_(4),
130
+ params_(4),
131
+ unresolved_(16),
132
+ decls_(4) {
133
+ SetDefaults(type, outer_scope, NULL);
134
+ // At some point we might want to provide outer scopes to
135
+ // eval scopes (by walking the stack and reading the scope info).
136
+ // In that case, the ASSERT below needs to be adjusted.
137
+ ASSERT((type == GLOBAL_SCOPE || type == EVAL_SCOPE) == (outer_scope == NULL));
138
+ ASSERT(!HasIllegalRedeclaration());
139
+ ASSERT(!resolved());
140
+ }
141
+
142
+
143
+ Scope::Scope(Scope* inner_scope, SerializedScopeInfo* scope_info)
144
+ : inner_scopes_(4),
145
+ variables_(),
146
+ temps_(4),
147
+ params_(4),
148
+ unresolved_(16),
149
+ decls_(4) {
150
+ ASSERT(scope_info != NULL);
151
+ SetDefaults(FUNCTION_SCOPE, inner_scope->outer_scope(), scope_info);
152
+ ASSERT(resolved());
153
+ InsertAfterScope(inner_scope);
154
+ if (scope_info->HasHeapAllocatedLocals()) {
155
+ num_heap_slots_ = scope_info_->NumberOfContextSlots();
156
+ }
157
+
158
+ // This scope's arguments shadow (if present) is context-allocated if an inner
159
+ // scope accesses this one's parameters. Allocate the arguments_shadow_
160
+ // variable if necessary.
161
+ Variable::Mode mode;
162
+ int arguments_shadow_index =
163
+ scope_info_->ContextSlotIndex(Heap::arguments_shadow_symbol(), &mode);
164
+ if (arguments_shadow_index >= 0) {
165
+ ASSERT(mode == Variable::INTERNAL);
166
+ arguments_shadow_ = new Variable(this,
167
+ Factory::arguments_shadow_symbol(),
168
+ Variable::INTERNAL,
169
+ true,
170
+ Variable::ARGUMENTS);
171
+ arguments_shadow_->set_rewrite(
172
+ new Slot(arguments_shadow_, Slot::CONTEXT, arguments_shadow_index));
173
+ arguments_shadow_->set_is_used(true);
174
+ }
175
+ }
176
+
177
+
178
+
179
+ bool Scope::Analyze(CompilationInfo* info) {
180
+ ASSERT(info->function() != NULL);
181
+ Scope* top = info->function()->scope();
182
+
183
+ // If we have a serialized scope info, reuse it.
184
+ if (!info->closure().is_null()) {
185
+ SerializedScopeInfo* scope_info = info->closure()->shared()->scope_info();
186
+ if (scope_info != SerializedScopeInfo::Empty()) {
187
+ Scope* scope = top;
188
+ JSFunction* current = *info->closure();
189
+ do {
190
+ current = current->context()->closure();
191
+ SerializedScopeInfo* scope_info = current->shared()->scope_info();
192
+ if (scope_info != SerializedScopeInfo::Empty()) {
193
+ scope = new Scope(scope, scope_info);
194
+ } else {
195
+ ASSERT(current->context()->IsGlobalContext());
196
+ }
197
+ } while (!current->context()->IsGlobalContext());
198
+ }
199
+ }
200
+
201
+ while (top->outer_scope() != NULL) top = top->outer_scope();
202
+ top->AllocateVariables(info->calling_context());
203
+
204
+ #ifdef DEBUG
205
+ if (Bootstrapper::IsActive()
206
+ ? FLAG_print_builtin_scopes
207
+ : FLAG_print_scopes) {
208
+ info->function()->scope()->Print();
209
+ }
210
+ #endif
211
+
212
+ info->SetScope(info->function()->scope());
213
+ return true; // Can not fail.
214
+ }
215
+
216
+
217
+ void Scope::Initialize(bool inside_with) {
218
+ ASSERT(!resolved());
219
+
220
+ // Add this scope as a new inner scope of the outer scope.
221
+ if (outer_scope_ != NULL) {
222
+ outer_scope_->inner_scopes_.Add(this);
223
+ scope_inside_with_ = outer_scope_->scope_inside_with_ || inside_with;
224
+ } else {
225
+ scope_inside_with_ = inside_with;
226
+ }
227
+
228
+ // Declare convenience variables.
229
+ // Declare and allocate receiver (even for the global scope, and even
230
+ // if naccesses_ == 0).
231
+ // NOTE: When loading parameters in the global scope, we must take
232
+ // care not to access them as properties of the global object, but
233
+ // instead load them directly from the stack. Currently, the only
234
+ // such parameter is 'this' which is passed on the stack when
235
+ // invoking scripts
236
+ Variable* var =
237
+ variables_.Declare(this, Factory::this_symbol(), Variable::VAR,
238
+ false, Variable::THIS);
239
+ var->set_rewrite(new Slot(var, Slot::PARAMETER, -1));
240
+ receiver_ = var;
241
+
242
+ if (is_function_scope()) {
243
+ // Declare 'arguments' variable which exists in all functions.
244
+ // Note that it might never be accessed, in which case it won't be
245
+ // allocated during variable allocation.
246
+ variables_.Declare(this, Factory::arguments_symbol(), Variable::VAR,
247
+ true, Variable::ARGUMENTS);
248
+ }
249
+ }
250
+
251
+
252
+ Variable* Scope::LocalLookup(Handle<String> name) {
253
+ Variable* result = variables_.Lookup(name);
254
+ if (result != NULL || !resolved()) {
255
+ return result;
256
+ }
257
+ // If the scope is resolved, we can find a variable in serialized scope info.
258
+
259
+ // We should never lookup 'arguments' in this scope
260
+ // as it is implicitly present in any scope.
261
+ ASSERT(*name != *Factory::arguments_symbol());
262
+
263
+ // Assert that there is no local slot with the given name.
264
+ ASSERT(scope_info_->StackSlotIndex(*name) < 0);
265
+
266
+ // Check context slot lookup.
267
+ Variable::Mode mode;
268
+ int index = scope_info_->ContextSlotIndex(*name, &mode);
269
+ if (index >= 0) {
270
+ Variable* var =
271
+ variables_.Declare(this, name, mode, true, Variable::NORMAL);
272
+ var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
273
+ return var;
274
+ }
275
+
276
+ index = scope_info_->ParameterIndex(*name);
277
+ if (index >= 0) {
278
+ // ".arguments" must be present in context slots.
279
+ ASSERT(arguments_shadow_ != NULL);
280
+ Variable* var =
281
+ variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
282
+ Property* rewrite =
283
+ new Property(new VariableProxy(arguments_shadow_),
284
+ new Literal(Handle<Object>(Smi::FromInt(index))),
285
+ RelocInfo::kNoPosition,
286
+ Property::SYNTHETIC);
287
+ rewrite->set_is_arguments_access(true);
288
+ var->set_rewrite(rewrite);
289
+ return var;
290
+ }
291
+
292
+ index = scope_info_->FunctionContextSlotIndex(*name);
293
+ if (index >= 0) {
294
+ // Check that there is no local slot with the given name.
295
+ ASSERT(scope_info_->StackSlotIndex(*name) < 0);
296
+ Variable* var =
297
+ variables_.Declare(this, name, Variable::VAR, true, Variable::NORMAL);
298
+ var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
299
+ return var;
300
+ }
301
+
302
+ return NULL;
303
+ }
304
+
305
+
306
+ Variable* Scope::Lookup(Handle<String> name) {
307
+ for (Scope* scope = this;
308
+ scope != NULL;
309
+ scope = scope->outer_scope()) {
310
+ Variable* var = scope->LocalLookup(name);
311
+ if (var != NULL) return var;
312
+ }
313
+ return NULL;
314
+ }
315
+
316
+
317
+ Variable* Scope::DeclareFunctionVar(Handle<String> name) {
318
+ ASSERT(is_function_scope() && function_ == NULL);
319
+ function_ = new Variable(this, name, Variable::CONST, true, Variable::NORMAL);
320
+ return function_;
321
+ }
322
+
323
+
324
+ Variable* Scope::DeclareLocal(Handle<String> name, Variable::Mode mode) {
325
+ // DYNAMIC variables are introduces during variable allocation,
326
+ // INTERNAL variables are allocated explicitly, and TEMPORARY
327
+ // variables are allocated via NewTemporary().
328
+ ASSERT(!resolved());
329
+ ASSERT(mode == Variable::VAR || mode == Variable::CONST);
330
+ return variables_.Declare(this, name, mode, true, Variable::NORMAL);
331
+ }
332
+
333
+
334
+ Variable* Scope::DeclareGlobal(Handle<String> name) {
335
+ ASSERT(is_global_scope());
336
+ return variables_.Declare(this, name, Variable::DYNAMIC_GLOBAL, true,
337
+ Variable::NORMAL);
338
+ }
339
+
340
+
341
+ void Scope::AddParameter(Variable* var) {
342
+ ASSERT(is_function_scope());
343
+ ASSERT(LocalLookup(var->name()) == var);
344
+ params_.Add(var);
345
+ }
346
+
347
+
348
+ VariableProxy* Scope::NewUnresolved(Handle<String> name, bool inside_with) {
349
+ // Note that we must not share the unresolved variables with
350
+ // the same name because they may be removed selectively via
351
+ // RemoveUnresolved().
352
+ ASSERT(!resolved());
353
+ VariableProxy* proxy = new VariableProxy(name, false, inside_with);
354
+ unresolved_.Add(proxy);
355
+ return proxy;
356
+ }
357
+
358
+
359
+ void Scope::RemoveUnresolved(VariableProxy* var) {
360
+ // Most likely (always?) any variable we want to remove
361
+ // was just added before, so we search backwards.
362
+ for (int i = unresolved_.length(); i-- > 0;) {
363
+ if (unresolved_[i] == var) {
364
+ unresolved_.Remove(i);
365
+ return;
366
+ }
367
+ }
368
+ }
369
+
370
+
371
+ Variable* Scope::NewTemporary(Handle<String> name) {
372
+ ASSERT(!resolved());
373
+ Variable* var =
374
+ new Variable(this, name, Variable::TEMPORARY, true, Variable::NORMAL);
375
+ temps_.Add(var);
376
+ return var;
377
+ }
378
+
379
+
380
+ void Scope::AddDeclaration(Declaration* declaration) {
381
+ decls_.Add(declaration);
382
+ }
383
+
384
+
385
+ void Scope::SetIllegalRedeclaration(Expression* expression) {
386
+ // Record only the first illegal redeclaration.
387
+ if (!HasIllegalRedeclaration()) {
388
+ illegal_redecl_ = expression;
389
+ }
390
+ ASSERT(HasIllegalRedeclaration());
391
+ }
392
+
393
+
394
+ void Scope::VisitIllegalRedeclaration(AstVisitor* visitor) {
395
+ ASSERT(HasIllegalRedeclaration());
396
+ illegal_redecl_->Accept(visitor);
397
+ }
398
+
399
+
400
+ template<class Allocator>
401
+ void Scope::CollectUsedVariables(List<Variable*, Allocator>* locals) {
402
+ // Collect variables in this scope.
403
+ // Note that the function_ variable - if present - is not
404
+ // collected here but handled separately in ScopeInfo
405
+ // which is the current user of this function).
406
+ for (int i = 0; i < temps_.length(); i++) {
407
+ Variable* var = temps_[i];
408
+ if (var->is_used()) {
409
+ locals->Add(var);
410
+ }
411
+ }
412
+ for (VariableMap::Entry* p = variables_.Start();
413
+ p != NULL;
414
+ p = variables_.Next(p)) {
415
+ Variable* var = reinterpret_cast<Variable*>(p->value);
416
+ if (var->is_used()) {
417
+ locals->Add(var);
418
+ }
419
+ }
420
+ }
421
+
422
+
423
+ // Make sure the method gets instantiated by the template system.
424
+ template void Scope::CollectUsedVariables(
425
+ List<Variable*, FreeStoreAllocationPolicy>* locals);
426
+ template void Scope::CollectUsedVariables(
427
+ List<Variable*, PreallocatedStorage>* locals);
428
+ template void Scope::CollectUsedVariables(
429
+ List<Variable*, ZoneListAllocationPolicy>* locals);
430
+
431
+
432
+ void Scope::AllocateVariables(Handle<Context> context) {
433
+ ASSERT(outer_scope_ == NULL); // eval or global scopes only
434
+
435
+ // 1) Propagate scope information.
436
+ // If we are in an eval scope, we may have other outer scopes about
437
+ // which we don't know anything at this point. Thus we must be conservative
438
+ // and assume they may invoke eval themselves. Eventually we could capture
439
+ // this information in the ScopeInfo and then use it here (by traversing
440
+ // the call chain stack, at compile time).
441
+ bool eval_scope = is_eval_scope();
442
+ PropagateScopeInfo(eval_scope, eval_scope);
443
+
444
+ // 2) Resolve variables.
445
+ Scope* global_scope = NULL;
446
+ if (is_global_scope()) global_scope = this;
447
+ ResolveVariablesRecursively(global_scope, context);
448
+
449
+ // 3) Allocate variables.
450
+ AllocateVariablesRecursively();
451
+ }
452
+
453
+
454
+ bool Scope::AllowsLazyCompilation() const {
455
+ return !force_eager_compilation_ && HasTrivialOuterContext();
456
+ }
457
+
458
+
459
+ bool Scope::HasTrivialContext() const {
460
+ // A function scope has a trivial context if it always is the global
461
+ // context. We iteratively scan out the context chain to see if
462
+ // there is anything that makes this scope non-trivial; otherwise we
463
+ // return true.
464
+ for (const Scope* scope = this; scope != NULL; scope = scope->outer_scope_) {
465
+ if (scope->is_eval_scope()) return false;
466
+ if (scope->scope_inside_with_) return false;
467
+ if (scope->num_heap_slots_ > 0) return false;
468
+ }
469
+ return true;
470
+ }
471
+
472
+
473
+ bool Scope::HasTrivialOuterContext() const {
474
+ Scope* outer = outer_scope_;
475
+ if (outer == NULL) return true;
476
+ // Note that the outer context may be trivial in general, but the current
477
+ // scope may be inside a 'with' statement in which case the outer context
478
+ // for this scope is not trivial.
479
+ return !scope_inside_with_ && outer->HasTrivialContext();
480
+ }
481
+
482
+
483
+ int Scope::ContextChainLength(Scope* scope) {
484
+ int n = 0;
485
+ for (Scope* s = this; s != scope; s = s->outer_scope_) {
486
+ ASSERT(s != NULL); // scope must be in the scope chain
487
+ if (s->num_heap_slots() > 0) n++;
488
+ }
489
+ return n;
490
+ }
491
+
492
+
493
+ #ifdef DEBUG
494
+ static const char* Header(Scope::Type type) {
495
+ switch (type) {
496
+ case Scope::EVAL_SCOPE: return "eval";
497
+ case Scope::FUNCTION_SCOPE: return "function";
498
+ case Scope::GLOBAL_SCOPE: return "global";
499
+ }
500
+ UNREACHABLE();
501
+ return NULL;
502
+ }
503
+
504
+
505
+ static void Indent(int n, const char* str) {
506
+ PrintF("%*s%s", n, "", str);
507
+ }
508
+
509
+
510
+ static void PrintName(Handle<String> name) {
511
+ SmartPointer<char> s = name->ToCString(DISALLOW_NULLS);
512
+ PrintF("%s", *s);
513
+ }
514
+
515
+
516
+ static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) {
517
+ if (var->is_used() || var->rewrite() != NULL) {
518
+ Indent(indent, Variable::Mode2String(var->mode()));
519
+ PrintF(" ");
520
+ PrintName(var->name());
521
+ PrintF("; // ");
522
+ if (var->rewrite() != NULL) {
523
+ PrintF("%s, ", printer->Print(var->rewrite()));
524
+ if (var->is_accessed_from_inner_scope()) PrintF(", ");
525
+ }
526
+ if (var->is_accessed_from_inner_scope()) PrintF("inner scope access");
527
+ PrintF("\n");
528
+ }
529
+ }
530
+
531
+
532
+ static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) {
533
+ for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
534
+ Variable* var = reinterpret_cast<Variable*>(p->value);
535
+ PrintVar(printer, indent, var);
536
+ }
537
+ }
538
+
539
+
540
+ void Scope::Print(int n) {
541
+ int n0 = (n > 0 ? n : 0);
542
+ int n1 = n0 + 2; // indentation
543
+
544
+ // Print header.
545
+ Indent(n0, Header(type_));
546
+ if (scope_name_->length() > 0) {
547
+ PrintF(" ");
548
+ PrintName(scope_name_);
549
+ }
550
+
551
+ // Print parameters, if any.
552
+ if (is_function_scope()) {
553
+ PrintF(" (");
554
+ for (int i = 0; i < params_.length(); i++) {
555
+ if (i > 0) PrintF(", ");
556
+ PrintName(params_[i]->name());
557
+ }
558
+ PrintF(")");
559
+ }
560
+
561
+ PrintF(" {\n");
562
+
563
+ // Function name, if any (named function literals, only).
564
+ if (function_ != NULL) {
565
+ Indent(n1, "// (local) function name: ");
566
+ PrintName(function_->name());
567
+ PrintF("\n");
568
+ }
569
+
570
+ // Scope info.
571
+ if (HasTrivialOuterContext()) {
572
+ Indent(n1, "// scope has trivial outer context\n");
573
+ }
574
+ if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
575
+ if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
576
+ if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
577
+ if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n");
578
+ if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
579
+ if (outer_scope_is_eval_scope_) {
580
+ Indent(n1, "// outer scope is 'eval' scope\n");
581
+ }
582
+ if (num_stack_slots_ > 0) { Indent(n1, "// ");
583
+ PrintF("%d stack slots\n", num_stack_slots_); }
584
+ if (num_heap_slots_ > 0) { Indent(n1, "// ");
585
+ PrintF("%d heap slots\n", num_heap_slots_); }
586
+
587
+ // Print locals.
588
+ PrettyPrinter printer;
589
+ Indent(n1, "// function var\n");
590
+ if (function_ != NULL) {
591
+ PrintVar(&printer, n1, function_);
592
+ }
593
+
594
+ Indent(n1, "// temporary vars\n");
595
+ for (int i = 0; i < temps_.length(); i++) {
596
+ PrintVar(&printer, n1, temps_[i]);
597
+ }
598
+
599
+ Indent(n1, "// local vars\n");
600
+ PrintMap(&printer, n1, &variables_);
601
+
602
+ Indent(n1, "// dynamic vars\n");
603
+ if (dynamics_ != NULL) {
604
+ PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC));
605
+ PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_LOCAL));
606
+ PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC_GLOBAL));
607
+ }
608
+
609
+ // Print inner scopes (disable by providing negative n).
610
+ if (n >= 0) {
611
+ for (int i = 0; i < inner_scopes_.length(); i++) {
612
+ PrintF("\n");
613
+ inner_scopes_[i]->Print(n1);
614
+ }
615
+ }
616
+
617
+ Indent(n0, "}\n");
618
+ }
619
+ #endif // DEBUG
620
+
621
+
622
+ Variable* Scope::NonLocal(Handle<String> name, Variable::Mode mode) {
623
+ if (dynamics_ == NULL) dynamics_ = new DynamicScopePart();
624
+ VariableMap* map = dynamics_->GetMap(mode);
625
+ Variable* var = map->Lookup(name);
626
+ if (var == NULL) {
627
+ // Declare a new non-local.
628
+ var = map->Declare(NULL, name, mode, true, Variable::NORMAL);
629
+ // Allocate it by giving it a dynamic lookup.
630
+ var->set_rewrite(new Slot(var, Slot::LOOKUP, -1));
631
+ }
632
+ return var;
633
+ }
634
+
635
+
636
+ // Lookup a variable starting with this scope. The result is either
637
+ // the statically resolved variable belonging to an outer scope, or
638
+ // NULL. It may be NULL because a) we couldn't find a variable, or b)
639
+ // because the variable is just a guess (and may be shadowed by
640
+ // another variable that is introduced dynamically via an 'eval' call
641
+ // or a 'with' statement).
642
+ Variable* Scope::LookupRecursive(Handle<String> name,
643
+ bool inner_lookup,
644
+ Variable** invalidated_local) {
645
+ // If we find a variable, but the current scope calls 'eval', the found
646
+ // variable may not be the correct one (the 'eval' may introduce a
647
+ // property with the same name). In that case, remember that the variable
648
+ // found is just a guess.
649
+ bool guess = scope_calls_eval_;
650
+
651
+ // Try to find the variable in this scope.
652
+ Variable* var = LocalLookup(name);
653
+
654
+ if (var != NULL) {
655
+ // We found a variable. If this is not an inner lookup, we are done.
656
+ // (Even if there is an 'eval' in this scope which introduces the
657
+ // same variable again, the resulting variable remains the same.
658
+ // Note that enclosing 'with' statements are handled at the call site.)
659
+ if (!inner_lookup)
660
+ return var;
661
+
662
+ } else {
663
+ // We did not find a variable locally. Check against the function variable,
664
+ // if any. We can do this for all scopes, since the function variable is
665
+ // only present - if at all - for function scopes.
666
+ //
667
+ // This lookup corresponds to a lookup in the "intermediate" scope sitting
668
+ // between this scope and the outer scope. (ECMA-262, 3rd., requires that
669
+ // the name of named function literal is kept in an intermediate scope
670
+ // in between this scope and the next outer scope.)
671
+ if (function_ != NULL && function_->name().is_identical_to(name)) {
672
+ var = function_;
673
+
674
+ } else if (outer_scope_ != NULL) {
675
+ var = outer_scope_->LookupRecursive(name, true, invalidated_local);
676
+ // We may have found a variable in an outer scope. However, if
677
+ // the current scope is inside a 'with', the actual variable may
678
+ // be a property introduced via the 'with' statement. Then, the
679
+ // variable we may have found is just a guess.
680
+ if (scope_inside_with_)
681
+ guess = true;
682
+ }
683
+
684
+ // If we did not find a variable, we are done.
685
+ if (var == NULL)
686
+ return NULL;
687
+ }
688
+
689
+ ASSERT(var != NULL);
690
+
691
+ // If this is a lookup from an inner scope, mark the variable.
692
+ if (inner_lookup) {
693
+ var->MarkAsAccessedFromInnerScope();
694
+ }
695
+
696
+ // If the variable we have found is just a guess, invalidate the
697
+ // result. If the found variable is local, record that fact so we
698
+ // can generate fast code to get it if it is not shadowed by eval.
699
+ if (guess) {
700
+ if (!var->is_global()) *invalidated_local = var;
701
+ var = NULL;
702
+ }
703
+
704
+ return var;
705
+ }
706
+
707
+
708
+ void Scope::ResolveVariable(Scope* global_scope,
709
+ Handle<Context> context,
710
+ VariableProxy* proxy) {
711
+ ASSERT(global_scope == NULL || global_scope->is_global_scope());
712
+
713
+ // If the proxy is already resolved there's nothing to do
714
+ // (functions and consts may be resolved by the parser).
715
+ if (proxy->var() != NULL) return;
716
+
717
+ // Otherwise, try to resolve the variable.
718
+ Variable* invalidated_local = NULL;
719
+ Variable* var = LookupRecursive(proxy->name(), false, &invalidated_local);
720
+
721
+ if (proxy->inside_with()) {
722
+ // If we are inside a local 'with' statement, all bets are off
723
+ // and we cannot resolve the proxy to a local variable even if
724
+ // we found an outer matching variable.
725
+ // Note that we must do a lookup anyway, because if we find one,
726
+ // we must mark that variable as potentially accessed from this
727
+ // inner scope (the property may not be in the 'with' object).
728
+ var = NonLocal(proxy->name(), Variable::DYNAMIC);
729
+
730
+ } else {
731
+ // We are not inside a local 'with' statement.
732
+
733
+ if (var == NULL) {
734
+ // We did not find the variable. We have a global variable
735
+ // if we are in the global scope (we know already that we
736
+ // are outside a 'with' statement) or if there is no way
737
+ // that the variable might be introduced dynamically (through
738
+ // a local or outer eval() call, or an outer 'with' statement),
739
+ // or we don't know about the outer scope (because we are
740
+ // in an eval scope).
741
+ if (is_global_scope() ||
742
+ !(scope_inside_with_ || outer_scope_is_eval_scope_ ||
743
+ scope_calls_eval_ || outer_scope_calls_eval_)) {
744
+ // We must have a global variable.
745
+ ASSERT(global_scope != NULL);
746
+ var = global_scope->DeclareGlobal(proxy->name());
747
+
748
+ } else if (scope_inside_with_) {
749
+ // If we are inside a with statement we give up and look up
750
+ // the variable at runtime.
751
+ var = NonLocal(proxy->name(), Variable::DYNAMIC);
752
+
753
+ } else if (invalidated_local != NULL) {
754
+ // No with statements are involved and we found a local
755
+ // variable that might be shadowed by eval introduced
756
+ // variables.
757
+ var = NonLocal(proxy->name(), Variable::DYNAMIC_LOCAL);
758
+ var->set_local_if_not_shadowed(invalidated_local);
759
+
760
+ } else if (outer_scope_is_eval_scope_) {
761
+ // No with statements and we did not find a local and the code
762
+ // is executed with a call to eval. The context contains
763
+ // scope information that we can use to determine if the
764
+ // variable is global if it is not shadowed by eval-introduced
765
+ // variables.
766
+ if (context->GlobalIfNotShadowedByEval(proxy->name())) {
767
+ var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
768
+
769
+ } else {
770
+ var = NonLocal(proxy->name(), Variable::DYNAMIC);
771
+ }
772
+
773
+ } else {
774
+ // No with statements and we did not find a local and the code
775
+ // is not executed with a call to eval. We know that this
776
+ // variable is global unless it is shadowed by eval-introduced
777
+ // variables.
778
+ var = NonLocal(proxy->name(), Variable::DYNAMIC_GLOBAL);
779
+ }
780
+ }
781
+ }
782
+
783
+ proxy->BindTo(var);
784
+ }
785
+
786
+
787
+ void Scope::ResolveVariablesRecursively(Scope* global_scope,
788
+ Handle<Context> context) {
789
+ ASSERT(global_scope == NULL || global_scope->is_global_scope());
790
+
791
+ // Resolve unresolved variables for this scope.
792
+ for (int i = 0; i < unresolved_.length(); i++) {
793
+ ResolveVariable(global_scope, context, unresolved_[i]);
794
+ }
795
+
796
+ // Resolve unresolved variables for inner scopes.
797
+ for (int i = 0; i < inner_scopes_.length(); i++) {
798
+ inner_scopes_[i]->ResolveVariablesRecursively(global_scope, context);
799
+ }
800
+ }
801
+
802
+
803
+ bool Scope::PropagateScopeInfo(bool outer_scope_calls_eval,
804
+ bool outer_scope_is_eval_scope) {
805
+ if (outer_scope_calls_eval) {
806
+ outer_scope_calls_eval_ = true;
807
+ }
808
+
809
+ if (outer_scope_is_eval_scope) {
810
+ outer_scope_is_eval_scope_ = true;
811
+ }
812
+
813
+ bool calls_eval = scope_calls_eval_ || outer_scope_calls_eval_;
814
+ bool is_eval = is_eval_scope() || outer_scope_is_eval_scope_;
815
+ for (int i = 0; i < inner_scopes_.length(); i++) {
816
+ Scope* inner_scope = inner_scopes_[i];
817
+ if (inner_scope->PropagateScopeInfo(calls_eval, is_eval)) {
818
+ inner_scope_calls_eval_ = true;
819
+ }
820
+ if (inner_scope->force_eager_compilation_) {
821
+ force_eager_compilation_ = true;
822
+ }
823
+ }
824
+
825
+ return scope_calls_eval_ || inner_scope_calls_eval_;
826
+ }
827
+
828
+
829
+ bool Scope::MustAllocate(Variable* var) {
830
+ // Give var a read/write use if there is a chance it might be accessed
831
+ // via an eval() call. This is only possible if the variable has a
832
+ // visible name.
833
+ if ((var->is_this() || var->name()->length() > 0) &&
834
+ (var->is_accessed_from_inner_scope() ||
835
+ scope_calls_eval_ || inner_scope_calls_eval_ ||
836
+ scope_contains_with_)) {
837
+ var->set_is_used(true);
838
+ }
839
+ // Global variables do not need to be allocated.
840
+ return !var->is_global() && var->is_used();
841
+ }
842
+
843
+
844
+ bool Scope::MustAllocateInContext(Variable* var) {
845
+ // If var is accessed from an inner scope, or if there is a
846
+ // possibility that it might be accessed from the current or an inner
847
+ // scope (through an eval() call), it must be allocated in the
848
+ // context. Exception: temporary variables are not allocated in the
849
+ // context.
850
+ return
851
+ var->mode() != Variable::TEMPORARY &&
852
+ (var->is_accessed_from_inner_scope() ||
853
+ scope_calls_eval_ || inner_scope_calls_eval_ ||
854
+ scope_contains_with_ || var->is_global());
855
+ }
856
+
857
+
858
+ bool Scope::HasArgumentsParameter() {
859
+ for (int i = 0; i < params_.length(); i++) {
860
+ if (params_[i]->name().is_identical_to(Factory::arguments_symbol()))
861
+ return true;
862
+ }
863
+ return false;
864
+ }
865
+
866
+
867
+ void Scope::AllocateStackSlot(Variable* var) {
868
+ var->set_rewrite(new Slot(var, Slot::LOCAL, num_stack_slots_++));
869
+ }
870
+
871
+
872
+ void Scope::AllocateHeapSlot(Variable* var) {
873
+ var->set_rewrite(new Slot(var, Slot::CONTEXT, num_heap_slots_++));
874
+ }
875
+
876
+
877
+ void Scope::AllocateParameterLocals() {
878
+ ASSERT(is_function_scope());
879
+ Variable* arguments = LocalLookup(Factory::arguments_symbol());
880
+ ASSERT(arguments != NULL); // functions have 'arguments' declared implicitly
881
+ if (MustAllocate(arguments) && !HasArgumentsParameter()) {
882
+ // 'arguments' is used. Unless there is also a parameter called
883
+ // 'arguments', we must be conservative and access all parameters via
884
+ // the arguments object: The i'th parameter is rewritten into
885
+ // '.arguments[i]' (*). If we have a parameter named 'arguments', a
886
+ // (new) value is always assigned to it via the function
887
+ // invocation. Then 'arguments' denotes that specific parameter value
888
+ // and cannot be used to access the parameters, which is why we don't
889
+ // need to rewrite in that case.
890
+ //
891
+ // (*) Instead of having a parameter called 'arguments', we may have an
892
+ // assignment to 'arguments' in the function body, at some arbitrary
893
+ // point in time (possibly through an 'eval()' call!). After that
894
+ // assignment any re-write of parameters would be invalid (was bug
895
+ // 881452). Thus, we introduce a shadow '.arguments'
896
+ // variable which also points to the arguments object. For rewrites we
897
+ // use '.arguments' which remains valid even if we assign to
898
+ // 'arguments'. To summarize: If we need to rewrite, we allocate an
899
+ // 'arguments' object dynamically upon function invocation. The compiler
900
+ // introduces 2 local variables 'arguments' and '.arguments', both of
901
+ // which originally point to the arguments object that was
902
+ // allocated. All parameters are rewritten into property accesses via
903
+ // the '.arguments' variable. Thus, any changes to properties of
904
+ // 'arguments' are reflected in the variables and vice versa. If the
905
+ // 'arguments' variable is changed, '.arguments' still points to the
906
+ // correct arguments object and the rewrites still work.
907
+
908
+ // We are using 'arguments'. Tell the code generator that is needs to
909
+ // allocate the arguments object by setting 'arguments_'.
910
+ arguments_ = arguments;
911
+
912
+ // We also need the '.arguments' shadow variable. Declare it and create
913
+ // and bind the corresponding proxy. It's ok to declare it only now
914
+ // because it's a local variable that is allocated after the parameters
915
+ // have been allocated.
916
+ //
917
+ // Note: This is "almost" at temporary variable but we cannot use
918
+ // NewTemporary() because the mode needs to be INTERNAL since this
919
+ // variable may be allocated in the heap-allocated context (temporaries
920
+ // are never allocated in the context).
921
+ arguments_shadow_ = new Variable(this,
922
+ Factory::arguments_shadow_symbol(),
923
+ Variable::INTERNAL,
924
+ true,
925
+ Variable::ARGUMENTS);
926
+ arguments_shadow_->set_is_used(true);
927
+ temps_.Add(arguments_shadow_);
928
+
929
+ // Allocate the parameters by rewriting them into '.arguments[i]' accesses.
930
+ for (int i = 0; i < params_.length(); i++) {
931
+ Variable* var = params_[i];
932
+ ASSERT(var->scope() == this);
933
+ if (MustAllocate(var)) {
934
+ if (MustAllocateInContext(var)) {
935
+ // It is ok to set this only now, because arguments is a local
936
+ // variable that is allocated after the parameters have been
937
+ // allocated.
938
+ arguments_shadow_->MarkAsAccessedFromInnerScope();
939
+ }
940
+ Property* rewrite =
941
+ new Property(new VariableProxy(arguments_shadow_),
942
+ new Literal(Handle<Object>(Smi::FromInt(i))),
943
+ RelocInfo::kNoPosition,
944
+ Property::SYNTHETIC);
945
+ rewrite->set_is_arguments_access(true);
946
+ var->set_rewrite(rewrite);
947
+ }
948
+ }
949
+
950
+ } else {
951
+ // The arguments object is not used, so we can access parameters directly.
952
+ // The same parameter may occur multiple times in the parameters_ list.
953
+ // If it does, and if it is not copied into the context object, it must
954
+ // receive the highest parameter index for that parameter; thus iteration
955
+ // order is relevant!
956
+ for (int i = 0; i < params_.length(); i++) {
957
+ Variable* var = params_[i];
958
+ ASSERT(var->scope() == this);
959
+ if (MustAllocate(var)) {
960
+ if (MustAllocateInContext(var)) {
961
+ ASSERT(var->rewrite() == NULL ||
962
+ (var->AsSlot() != NULL &&
963
+ var->AsSlot()->type() == Slot::CONTEXT));
964
+ if (var->rewrite() == NULL) {
965
+ // Only set the heap allocation if the parameter has not
966
+ // been allocated yet.
967
+ AllocateHeapSlot(var);
968
+ }
969
+ } else {
970
+ ASSERT(var->rewrite() == NULL ||
971
+ (var->AsSlot() != NULL &&
972
+ var->AsSlot()->type() == Slot::PARAMETER));
973
+ // Set the parameter index always, even if the parameter
974
+ // was seen before! (We need to access the actual parameter
975
+ // supplied for the last occurrence of a multiply declared
976
+ // parameter.)
977
+ var->set_rewrite(new Slot(var, Slot::PARAMETER, i));
978
+ }
979
+ }
980
+ }
981
+ }
982
+ }
983
+
984
+
985
+ void Scope::AllocateNonParameterLocal(Variable* var) {
986
+ ASSERT(var->scope() == this);
987
+ ASSERT(var->rewrite() == NULL ||
988
+ (!var->IsVariable(Factory::result_symbol())) ||
989
+ (var->AsSlot() == NULL || var->AsSlot()->type() != Slot::LOCAL));
990
+ if (var->rewrite() == NULL && MustAllocate(var)) {
991
+ if (MustAllocateInContext(var)) {
992
+ AllocateHeapSlot(var);
993
+ } else {
994
+ AllocateStackSlot(var);
995
+ }
996
+ }
997
+ }
998
+
999
+
1000
+ void Scope::AllocateNonParameterLocals() {
1001
+ // All variables that have no rewrite yet are non-parameter locals.
1002
+ for (int i = 0; i < temps_.length(); i++) {
1003
+ AllocateNonParameterLocal(temps_[i]);
1004
+ }
1005
+
1006
+ for (VariableMap::Entry* p = variables_.Start();
1007
+ p != NULL;
1008
+ p = variables_.Next(p)) {
1009
+ Variable* var = reinterpret_cast<Variable*>(p->value);
1010
+ AllocateNonParameterLocal(var);
1011
+ }
1012
+
1013
+ // For now, function_ must be allocated at the very end. If it gets
1014
+ // allocated in the context, it must be the last slot in the context,
1015
+ // because of the current ScopeInfo implementation (see
1016
+ // ScopeInfo::ScopeInfo(FunctionScope* scope) constructor).
1017
+ if (function_ != NULL) {
1018
+ AllocateNonParameterLocal(function_);
1019
+ }
1020
+ }
1021
+
1022
+
1023
+ void Scope::AllocateVariablesRecursively() {
1024
+ // Allocate variables for inner scopes.
1025
+ for (int i = 0; i < inner_scopes_.length(); i++) {
1026
+ inner_scopes_[i]->AllocateVariablesRecursively();
1027
+ }
1028
+
1029
+ // If scope is already resolved, we still need to allocate
1030
+ // variables in inner scopes which might not had been resolved yet.
1031
+ if (resolved()) return;
1032
+ // The number of slots required for variables.
1033
+ num_stack_slots_ = 0;
1034
+ num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
1035
+
1036
+ // Allocate variables for this scope.
1037
+ // Parameters must be allocated first, if any.
1038
+ if (is_function_scope()) AllocateParameterLocals();
1039
+ AllocateNonParameterLocals();
1040
+
1041
+ // Allocate context if necessary.
1042
+ bool must_have_local_context = false;
1043
+ if (scope_calls_eval_ || scope_contains_with_) {
1044
+ // The context for the eval() call or 'with' statement in this scope.
1045
+ // Unless we are in the global or an eval scope, we need a local
1046
+ // context even if we didn't statically allocate any locals in it,
1047
+ // and the compiler will access the context variable. If we are
1048
+ // not in an inner scope, the scope is provided from the outside.
1049
+ must_have_local_context = is_function_scope();
1050
+ }
1051
+
1052
+ // If we didn't allocate any locals in the local context, then we only
1053
+ // need the minimal number of slots if we must have a local context.
1054
+ if (num_heap_slots_ == Context::MIN_CONTEXT_SLOTS &&
1055
+ !must_have_local_context) {
1056
+ num_heap_slots_ = 0;
1057
+ }
1058
+
1059
+ // Allocation done.
1060
+ ASSERT(num_heap_slots_ == 0 || num_heap_slots_ >= Context::MIN_CONTEXT_SLOTS);
1061
+ }
1062
+
1063
+ } } // namespace v8::internal