therubyracer 0.8.1.pre2 → 0.8.1

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

Potentially problematic release.


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

Files changed (877) hide show
  1. data/Changelog.md +2 -1
  2. data/README.md +6 -3
  3. data/ext/v8/upstream/3.1.8/.gitignore +31 -0
  4. data/ext/v8/upstream/3.1.8/AUTHORS +40 -0
  5. data/ext/v8/upstream/3.1.8/ChangeLog +2566 -0
  6. data/ext/v8/upstream/3.1.8/LICENSE +52 -0
  7. data/ext/v8/upstream/3.1.8/LICENSE.strongtalk +29 -0
  8. data/ext/v8/upstream/3.1.8/LICENSE.v8 +26 -0
  9. data/ext/v8/upstream/3.1.8/LICENSE.valgrind +45 -0
  10. data/ext/v8/upstream/3.1.8/SConstruct +1192 -0
  11. data/ext/v8/upstream/3.1.8/build/README.txt +25 -0
  12. data/ext/v8/upstream/3.1.8/build/all.gyp +18 -0
  13. data/ext/v8/upstream/3.1.8/build/armu.gypi +32 -0
  14. data/ext/v8/upstream/3.1.8/build/common.gypi +82 -0
  15. data/ext/v8/upstream/3.1.8/build/gyp_v8 +145 -0
  16. data/ext/v8/upstream/3.1.8/include/v8-debug.h +384 -0
  17. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +426 -0
  19. data/ext/v8/upstream/3.1.8/include/v8-testing.h +99 -0
  20. data/ext/v8/upstream/3.1.8/include/v8.h +3846 -0
  21. data/ext/v8/upstream/3.1.8/include/v8stdint.h +53 -0
  22. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +206 -0
  23. data/ext/v8/upstream/3.1.8/src/SConscript +356 -0
  24. data/ext/v8/upstream/3.1.8/src/accessors.cc +907 -0
  25. data/ext/v8/upstream/3.1.8/src/accessors.h +121 -0
  26. data/ext/v8/upstream/3.1.8/src/allocation.cc +204 -0
  27. data/ext/v8/upstream/3.1.8/src/allocation.h +176 -0
  28. data/ext/v8/upstream/3.1.8/src/api.cc +5191 -0
  29. data/ext/v8/upstream/3.1.8/src/api.h +508 -0
  30. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/apinatives.js +0 -0
  31. data/ext/v8/upstream/3.1.8/src/apiutils.h +80 -0
  32. data/ext/v8/upstream/3.1.8/src/arguments.h +105 -0
  33. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +352 -0
  34. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +2756 -0
  35. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +1294 -0
  36. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +1628 -0
  37. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +6783 -0
  38. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +657 -0
  39. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm-inl.h +48 -0
  40. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +7403 -0
  41. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +595 -0
  42. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.cc +152 -0
  43. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +769 -0
  44. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +147 -0
  45. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +315 -0
  46. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +700 -0
  47. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +1439 -0
  48. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.cc +45 -0
  49. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +168 -0
  50. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +4230 -0
  51. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +1799 -0
  52. data/ext/v8/upstream/3.1.8/src/arm/jump-target-arm.cc +174 -0
  53. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +2041 -0
  54. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +2046 -0
  55. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +3822 -0
  56. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +312 -0
  57. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +303 -0
  58. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.h +84 -0
  59. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +2701 -0
  60. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +1015 -0
  61. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +1280 -0
  62. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +252 -0
  63. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm-inl.h +0 -0
  64. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.cc +0 -0
  65. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.h +0 -0
  66. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +3165 -0
  67. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +402 -0
  68. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +4077 -0
  69. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/virtual-frame-arm-inl.h +0 -0
  70. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +843 -0
  71. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +520 -0
  72. data/ext/v8/upstream/3.1.8/src/array.js +1231 -0
  73. data/ext/v8/upstream/3.1.8/src/assembler.cc +973 -0
  74. data/ext/v8/upstream/3.1.8/src/assembler.h +787 -0
  75. data/ext/v8/upstream/3.1.8/src/ast-inl.h +107 -0
  76. data/ext/v8/upstream/3.1.8/src/ast.cc +1067 -0
  77. data/ext/v8/upstream/3.1.8/src/ast.h +2177 -0
  78. data/ext/v8/upstream/3.1.8/src/atomicops.h +165 -0
  79. data/ext/v8/upstream/3.1.8/src/atomicops_internals_arm_gcc.h +145 -0
  80. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.cc +126 -0
  81. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.h +287 -0
  82. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_macosx.h +301 -0
  83. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_msvc.h +203 -0
  84. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.cc +655 -0
  85. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.h +81 -0
  86. data/ext/v8/upstream/3.1.8/src/bignum.cc +768 -0
  87. data/ext/v8/upstream/3.1.8/src/bignum.h +140 -0
  88. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +1888 -0
  89. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/bootstrapper.h +0 -0
  90. data/ext/v8/upstream/3.1.8/src/builtins.cc +1586 -0
  91. data/ext/v8/upstream/3.1.8/src/builtins.h +339 -0
  92. data/ext/v8/upstream/3.1.8/src/bytecodes-irregexp.h +105 -0
  93. data/ext/v8/upstream/3.1.8/src/cached-powers.cc +177 -0
  94. data/ext/v8/upstream/3.1.8/src/cached-powers.h +65 -0
  95. data/ext/v8/upstream/3.1.8/src/char-predicates-inl.h +94 -0
  96. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/char-predicates.h +0 -0
  97. data/ext/v8/upstream/3.1.8/src/checks.cc +110 -0
  98. data/ext/v8/upstream/3.1.8/src/checks.h +292 -0
  99. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue-inl.h +0 -0
  100. data/ext/v8/upstream/3.1.8/src/circular-queue.cc +122 -0
  101. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue.h +0 -0
  102. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +230 -0
  103. data/ext/v8/upstream/3.1.8/src/code-stubs.h +950 -0
  104. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/code.h +0 -0
  105. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +64 -0
  106. data/ext/v8/upstream/3.1.8/src/codegen.cc +495 -0
  107. data/ext/v8/upstream/3.1.8/src/codegen.h +245 -0
  108. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +654 -0
  109. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +112 -0
  110. data/ext/v8/upstream/3.1.8/src/compiler.cc +806 -0
  111. data/ext/v8/upstream/3.1.8/src/compiler.h +290 -0
  112. data/ext/v8/upstream/3.1.8/src/contexts.cc +320 -0
  113. data/ext/v8/upstream/3.1.8/src/contexts.h +376 -0
  114. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/conversions-inl.h +0 -0
  115. data/ext/v8/upstream/3.1.8/src/conversions.cc +1069 -0
  116. data/ext/v8/upstream/3.1.8/src/conversions.h +122 -0
  117. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/counters.cc +0 -0
  118. data/ext/v8/upstream/3.1.8/src/counters.h +242 -0
  119. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +100 -0
  120. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +554 -0
  121. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +291 -0
  122. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/cpu.h +0 -0
  123. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +367 -0
  124. data/ext/v8/upstream/3.1.8/src/d8-debug.h +157 -0
  125. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-posix.cc +0 -0
  126. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-readline.cc +0 -0
  127. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-windows.cc +0 -0
  128. data/ext/v8/upstream/3.1.8/src/d8.cc +792 -0
  129. data/ext/v8/upstream/3.1.8/src/d8.gyp +85 -0
  130. data/ext/v8/upstream/3.1.8/src/d8.h +231 -0
  131. data/ext/v8/upstream/3.1.8/src/d8.js +2798 -0
  132. data/ext/v8/upstream/3.1.8/src/data-flow.cc +545 -0
  133. data/ext/v8/upstream/3.1.8/src/data-flow.h +379 -0
  134. data/ext/v8/upstream/3.1.8/src/date.js +1103 -0
  135. data/ext/v8/upstream/3.1.8/src/dateparser-inl.h +125 -0
  136. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/dateparser.cc +0 -0
  137. data/ext/v8/upstream/3.1.8/src/dateparser.h +263 -0
  138. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +446 -0
  139. data/ext/v8/upstream/3.1.8/src/debug-agent.h +131 -0
  140. data/ext/v8/upstream/3.1.8/src/debug-debugger.js +2569 -0
  141. data/ext/v8/upstream/3.1.8/src/debug.cc +3085 -0
  142. data/ext/v8/upstream/3.1.8/src/debug.h +1025 -0
  143. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +1185 -0
  144. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +529 -0
  145. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disasm.h +0 -0
  146. data/ext/v8/upstream/3.1.8/src/disassembler.cc +338 -0
  147. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disassembler.h +0 -0
  148. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.cc +0 -0
  149. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.h +0 -0
  150. data/ext/v8/upstream/3.1.8/src/double.h +238 -0
  151. data/ext/v8/upstream/3.1.8/src/dtoa.cc +103 -0
  152. data/ext/v8/upstream/3.1.8/src/dtoa.h +85 -0
  153. data/ext/v8/upstream/3.1.8/src/execution.cc +735 -0
  154. data/ext/v8/upstream/3.1.8/src/execution.h +322 -0
  155. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +53 -0
  156. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +264 -0
  157. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.h +64 -0
  158. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +141 -0
  159. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.h +50 -0
  160. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +58 -0
  161. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.h +49 -0
  162. data/ext/v8/upstream/3.1.8/src/factory.cc +1087 -0
  163. data/ext/v8/upstream/3.1.8/src/factory.h +432 -0
  164. data/ext/v8/upstream/3.1.8/src/fast-dtoa.cc +736 -0
  165. data/ext/v8/upstream/3.1.8/src/fast-dtoa.h +83 -0
  166. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.cc +0 -0
  167. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.h +0 -0
  168. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +552 -0
  169. data/ext/v8/upstream/3.1.8/src/flags.cc +551 -0
  170. data/ext/v8/upstream/3.1.8/src/flags.h +79 -0
  171. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/frame-element.cc +0 -0
  172. data/ext/v8/upstream/3.1.8/src/frame-element.h +277 -0
  173. data/ext/v8/upstream/3.1.8/src/frames-inl.h +210 -0
  174. data/ext/v8/upstream/3.1.8/src/frames.cc +1232 -0
  175. data/ext/v8/upstream/3.1.8/src/frames.h +826 -0
  176. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +1382 -0
  177. data/ext/v8/upstream/3.1.8/src/full-codegen.h +751 -0
  178. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +90 -0
  179. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +111 -0
  180. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +1547 -0
  181. data/ext/v8/upstream/3.1.8/src/gdb-jit.h +138 -0
  182. data/ext/v8/upstream/3.1.8/src/global-handles.cc +534 -0
  183. data/ext/v8/upstream/3.1.8/src/global-handles.h +181 -0
  184. data/ext/v8/upstream/3.1.8/src/globals.h +325 -0
  185. data/ext/v8/upstream/3.1.8/src/handles-inl.h +80 -0
  186. data/ext/v8/upstream/3.1.8/src/handles.cc +910 -0
  187. data/ext/v8/upstream/3.1.8/src/handles.h +424 -0
  188. data/ext/v8/upstream/3.1.8/src/hashmap.cc +230 -0
  189. data/ext/v8/upstream/3.1.8/src/hashmap.h +121 -0
  190. data/ext/v8/upstream/3.1.8/src/heap-inl.h +587 -0
  191. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +1128 -0
  192. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +381 -0
  193. data/ext/v8/upstream/3.1.8/src/heap.cc +5610 -0
  194. data/ext/v8/upstream/3.1.8/src/heap.h +2218 -0
  195. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +1490 -0
  196. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +3493 -0
  197. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +6056 -0
  198. data/ext/v8/upstream/3.1.8/src/hydrogen.h +1091 -0
  199. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +429 -0
  200. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +2800 -0
  201. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +1093 -0
  202. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +1590 -0
  203. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +6624 -0
  204. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +536 -0
  205. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/codegen-ia32-inl.h +0 -0
  206. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +10354 -0
  207. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +798 -0
  208. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +87 -0
  209. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +309 -0
  210. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +664 -0
  211. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +1597 -0
  212. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.cc +45 -0
  213. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +140 -0
  214. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +4278 -0
  215. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +1786 -0
  216. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/jump-target-ia32.cc +0 -0
  217. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +3880 -0
  218. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +309 -0
  219. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +460 -0
  220. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
  221. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +2095 -0
  222. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +2127 -0
  223. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +2031 -0
  224. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +798 -0
  225. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +1253 -0
  226. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +215 -0
  227. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  228. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.cc +0 -0
  229. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.h +0 -0
  230. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/simulator-ia32.cc +0 -0
  231. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +72 -0
  232. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +3732 -0
  233. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +1360 -0
  234. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +646 -0
  235. data/ext/v8/upstream/3.1.8/src/ic-inl.h +129 -0
  236. data/ext/v8/upstream/3.1.8/src/ic.cc +2333 -0
  237. data/ext/v8/upstream/3.1.8/src/ic.h +639 -0
  238. data/ext/v8/upstream/3.1.8/src/inspector.cc +63 -0
  239. data/ext/v8/upstream/3.1.8/src/inspector.h +62 -0
  240. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +655 -0
  241. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/interpreter-irregexp.h +0 -0
  242. data/ext/v8/upstream/3.1.8/src/json.js +342 -0
  243. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +5340 -0
  244. data/ext/v8/upstream/3.1.8/src/jsregexp.h +1484 -0
  245. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-heavy-inl.h +0 -0
  246. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +430 -0
  247. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +244 -0
  248. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-inl.h +0 -0
  249. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-light-inl.h +0 -0
  250. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +111 -0
  251. data/ext/v8/upstream/3.1.8/src/jump-target-light.h +193 -0
  252. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.cc +0 -0
  253. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.h +0 -0
  254. data/ext/v8/upstream/3.1.8/src/list-inl.h +206 -0
  255. data/ext/v8/upstream/3.1.8/src/list.h +164 -0
  256. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +140 -0
  257. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +2093 -0
  258. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +644 -0
  259. data/ext/v8/upstream/3.1.8/src/lithium.cc +168 -0
  260. data/ext/v8/upstream/3.1.8/src/lithium.h +592 -0
  261. data/ext/v8/upstream/3.1.8/src/liveedit-debugger.js +1082 -0
  262. data/ext/v8/upstream/3.1.8/src/liveedit.cc +1650 -0
  263. data/ext/v8/upstream/3.1.8/src/liveedit.h +174 -0
  264. data/ext/v8/upstream/3.1.8/src/liveobjectlist-inl.h +126 -0
  265. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +2527 -0
  266. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +322 -0
  267. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/log-inl.h +0 -0
  268. data/ext/v8/upstream/3.1.8/src/log-utils.cc +336 -0
  269. data/ext/v8/upstream/3.1.8/src/log-utils.h +232 -0
  270. data/ext/v8/upstream/3.1.8/src/log.cc +1608 -0
  271. data/ext/v8/upstream/3.1.8/src/log.h +379 -0
  272. data/ext/v8/upstream/3.1.8/src/macro-assembler.h +120 -0
  273. data/ext/v8/upstream/3.1.8/src/macros.py +178 -0
  274. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +2957 -0
  275. data/ext/v8/upstream/3.1.8/src/mark-compact.h +433 -0
  276. data/ext/v8/upstream/3.1.8/src/math.js +264 -0
  277. data/ext/v8/upstream/3.1.8/src/memory.h +82 -0
  278. data/ext/v8/upstream/3.1.8/src/messages.cc +164 -0
  279. data/ext/v8/upstream/3.1.8/src/messages.h +114 -0
  280. data/ext/v8/upstream/3.1.8/src/messages.js +1071 -0
  281. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips-inl.h +0 -0
  282. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips.cc +0 -0
  283. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +667 -0
  284. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +205 -0
  285. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips-inl.h +0 -0
  286. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips.cc +0 -0
  287. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +431 -0
  288. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.cc +0 -0
  289. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.h +0 -0
  290. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/cpu-mips.cc +0 -0
  291. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +127 -0
  292. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/disasm-mips.cc +0 -0
  293. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/fast-codegen-mips.cc +0 -0
  294. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +96 -0
  295. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/frames-mips.h +0 -0
  296. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/full-codegen-mips.cc +0 -0
  297. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +208 -0
  298. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/jump-target-mips.cc +0 -0
  299. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.cc +0 -0
  300. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.h +0 -0
  301. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips-inl.h +0 -0
  302. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.cc +0 -0
  303. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.h +0 -0
  304. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +1650 -0
  305. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +311 -0
  306. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +418 -0
  307. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.cc +0 -0
  308. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.h +0 -0
  309. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +2380 -0
  310. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mksnapshot.cc +0 -0
  311. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/natives.h +0 -0
  312. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +722 -0
  313. data/ext/v8/upstream/3.1.8/src/objects-inl.h +3946 -0
  314. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +801 -0
  315. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +142 -0
  316. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +401 -0
  317. data/ext/v8/upstream/3.1.8/src/objects.cc +10044 -0
  318. data/ext/v8/upstream/3.1.8/src/objects.h +6571 -0
  319. data/ext/v8/upstream/3.1.8/src/parser.cc +5165 -0
  320. data/ext/v8/upstream/3.1.8/src/parser.h +802 -0
  321. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +745 -0
  322. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +702 -0
  323. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +981 -0
  324. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +732 -0
  325. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +498 -0
  326. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +657 -0
  327. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +399 -0
  328. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +714 -0
  329. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +1974 -0
  330. data/ext/v8/upstream/3.1.8/src/platform.h +636 -0
  331. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +183 -0
  332. data/ext/v8/upstream/3.1.8/src/preparse-data.h +249 -0
  333. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +213 -0
  334. data/ext/v8/upstream/3.1.8/src/preparser.cc +1205 -0
  335. data/ext/v8/upstream/3.1.8/src/preparser.h +278 -0
  336. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +1539 -0
  337. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +223 -0
  338. data/ext/v8/upstream/3.1.8/src/profile-generator-inl.h +128 -0
  339. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +2899 -0
  340. data/ext/v8/upstream/3.1.8/src/profile-generator.h +1151 -0
  341. data/ext/v8/upstream/3.1.8/src/property.cc +96 -0
  342. data/ext/v8/upstream/3.1.8/src/property.h +337 -0
  343. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  344. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +470 -0
  345. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.h +142 -0
  346. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.cc +373 -0
  347. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.h +104 -0
  348. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +257 -0
  349. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +231 -0
  350. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.cc +0 -0
  351. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.h +0 -0
  352. data/ext/v8/upstream/3.1.8/src/regexp.js +483 -0
  353. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator-inl.h +0 -0
  354. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.cc +0 -0
  355. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.h +0 -0
  356. data/ext/v8/upstream/3.1.8/src/rewriter.cc +1023 -0
  357. data/ext/v8/upstream/3.1.8/src/rewriter.h +59 -0
  358. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +443 -0
  359. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +77 -0
  360. data/ext/v8/upstream/3.1.8/src/runtime.cc +11592 -0
  361. data/ext/v8/upstream/3.1.8/src/runtime.h +582 -0
  362. data/ext/v8/upstream/3.1.8/src/runtime.js +643 -0
  363. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +253 -0
  364. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +263 -0
  365. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +971 -0
  366. data/ext/v8/upstream/3.1.8/src/scanner-base.h +653 -0
  367. data/ext/v8/upstream/3.1.8/src/scanner.cc +586 -0
  368. data/ext/v8/upstream/3.1.8/src/scanner.h +194 -0
  369. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +636 -0
  370. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +238 -0
  371. data/ext/v8/upstream/3.1.8/src/scopes.cc +1063 -0
  372. data/ext/v8/upstream/3.1.8/src/scopes.h +494 -0
  373. data/ext/v8/upstream/3.1.8/src/serialize.cc +1535 -0
  374. data/ext/v8/upstream/3.1.8/src/serialize.h +584 -0
  375. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/shell.h +0 -0
  376. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/simulator.h +0 -0
  377. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/smart-pointer.h +0 -0
  378. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-common.cc +0 -0
  379. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-empty.cc +0 -0
  380. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot.h +0 -0
  381. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +524 -0
  382. data/ext/v8/upstream/3.1.8/src/spaces.cc +3254 -0
  383. data/ext/v8/upstream/3.1.8/src/spaces.h +2362 -0
  384. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree-inl.h +0 -0
  385. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree.h +0 -0
  386. data/ext/v8/upstream/3.1.8/src/string-search.cc +40 -0
  387. data/ext/v8/upstream/3.1.8/src/string-search.h +567 -0
  388. data/ext/v8/upstream/3.1.8/src/string-stream.cc +584 -0
  389. data/ext/v8/upstream/3.1.8/src/string-stream.h +191 -0
  390. data/ext/v8/upstream/3.1.8/src/string.js +915 -0
  391. data/ext/v8/upstream/3.1.8/src/strtod.cc +440 -0
  392. data/ext/v8/upstream/3.1.8/src/strtod.h +40 -0
  393. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +1878 -0
  394. data/ext/v8/upstream/3.1.8/src/stub-cache.h +849 -0
  395. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/third_party/valgrind/valgrind.h +0 -0
  396. data/ext/v8/upstream/3.1.8/src/token.cc +63 -0
  397. data/ext/v8/upstream/3.1.8/src/token.h +288 -0
  398. data/ext/v8/upstream/3.1.8/src/top.cc +1152 -0
  399. data/ext/v8/upstream/3.1.8/src/top.h +608 -0
  400. data/ext/v8/upstream/3.1.8/src/type-info.cc +406 -0
  401. data/ext/v8/upstream/3.1.8/src/type-info.h +283 -0
  402. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue-inl.h +0 -0
  403. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue.h +0 -0
  404. data/ext/v8/upstream/3.1.8/src/unicode-inl.h +238 -0
  405. data/ext/v8/upstream/3.1.8/src/unicode.cc +1624 -0
  406. data/ext/v8/upstream/3.1.8/src/unicode.h +280 -0
  407. data/ext/v8/upstream/3.1.8/src/uri.js +402 -0
  408. data/ext/v8/upstream/3.1.8/src/utils.cc +371 -0
  409. data/ext/v8/upstream/3.1.8/src/utils.h +793 -0
  410. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8-counters.cc +0 -0
  411. data/ext/v8/upstream/3.1.8/src/v8-counters.h +290 -0
  412. data/ext/v8/upstream/3.1.8/src/v8.cc +270 -0
  413. data/ext/v8/upstream/3.1.8/src/v8.h +127 -0
  414. data/ext/v8/upstream/3.1.8/src/v8checks.h +64 -0
  415. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8dll-main.cc +0 -0
  416. data/ext/v8/upstream/3.1.8/src/v8globals.h +480 -0
  417. data/ext/v8/upstream/3.1.8/src/v8natives.js +1252 -0
  418. data/ext/v8/upstream/3.1.8/src/v8preparserdll-main.cc +39 -0
  419. data/ext/v8/upstream/3.1.8/src/v8threads.cc +440 -0
  420. data/ext/v8/upstream/3.1.8/src/v8threads.h +157 -0
  421. data/ext/v8/upstream/3.1.8/src/v8utils.h +354 -0
  422. data/ext/v8/upstream/3.1.8/src/variables.cc +132 -0
  423. data/ext/v8/upstream/3.1.8/src/variables.h +212 -0
  424. data/ext/v8/upstream/3.1.8/src/version.cc +95 -0
  425. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/version.h +0 -0
  426. data/ext/v8/upstream/3.1.8/src/virtual-frame-heavy-inl.h +190 -0
  427. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-heavy.cc +0 -0
  428. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-inl.h +0 -0
  429. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light-inl.h +0 -0
  430. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light.cc +0 -0
  431. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame.cc +0 -0
  432. data/ext/v8/upstream/3.1.8/src/virtual-frame.h +59 -0
  433. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +134 -0
  434. data/ext/v8/upstream/3.1.8/src/vm-state.h +68 -0
  435. data/ext/v8/upstream/3.1.8/src/win32-headers.h +95 -0
  436. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +455 -0
  437. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +3162 -0
  438. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +1584 -0
  439. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +1492 -0
  440. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +5150 -0
  441. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +519 -0
  442. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64-inl.h +46 -0
  443. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +8835 -0
  444. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +750 -0
  445. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +86 -0
  446. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +316 -0
  447. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +781 -0
  448. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +1737 -0
  449. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.cc +45 -0
  450. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +130 -0
  451. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +3984 -0
  452. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +1761 -0
  453. data/ext/v8/upstream/3.1.8/src/x64/jump-target-x64.cc +437 -0
  454. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +3639 -0
  455. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +305 -0
  456. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.cc +320 -0
  457. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.h +74 -0
  458. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +2044 -0
  459. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +2052 -0
  460. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +2660 -0
  461. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +1852 -0
  462. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +1382 -0
  463. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +278 -0
  464. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64-inl.h +0 -0
  465. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.cc +0 -0
  466. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.h +0 -0
  467. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/simulator-x64.cc +0 -0
  468. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +71 -0
  469. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +3509 -0
  470. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +1292 -0
  471. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +593 -0
  472. data/ext/v8/upstream/3.1.8/src/zone-inl.h +83 -0
  473. data/ext/v8/upstream/3.1.8/src/zone.cc +195 -0
  474. data/ext/v8/upstream/3.1.8/src/zone.h +233 -0
  475. data/ext/v8/upstream/3.1.8/tools/codemap.js +265 -0
  476. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/consarray.js +0 -0
  477. data/ext/v8/upstream/3.1.8/tools/csvparser.js +78 -0
  478. data/ext/v8/upstream/3.1.8/tools/disasm.py +92 -0
  479. data/ext/v8/upstream/3.1.8/tools/gc-nvp-trace-processor.py +328 -0
  480. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/generate-ten-powers.scm +0 -0
  481. data/ext/v8/upstream/3.1.8/tools/grokdump.py +840 -0
  482. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +869 -0
  483. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/js2c.py +0 -0
  484. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/jsmin.py +0 -0
  485. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/linux-tick-processor +0 -0
  486. data/ext/v8/upstream/3.1.8/tools/ll_prof.py +919 -0
  487. data/ext/v8/upstream/3.1.8/tools/logreader.js +185 -0
  488. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-nm +0 -0
  489. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-tick-processor +0 -0
  490. data/ext/v8/upstream/3.1.8/tools/oom_dump/README +31 -0
  491. data/ext/v8/upstream/3.1.8/tools/oom_dump/SConstruct +42 -0
  492. data/ext/v8/upstream/3.1.8/tools/oom_dump/oom_dump.cc +288 -0
  493. data/ext/v8/upstream/3.1.8/tools/presubmit.py +305 -0
  494. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/process-heap-prof.py +0 -0
  495. data/ext/v8/upstream/3.1.8/tools/profile.js +751 -0
  496. data/ext/v8/upstream/3.1.8/tools/profile_view.js +219 -0
  497. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/run-valgrind.py +0 -0
  498. data/ext/v8/upstream/3.1.8/tools/splaytree.js +316 -0
  499. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/stats-viewer.py +0 -0
  500. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/tickprocessor-driver.js +0 -0
  501. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +863 -0
  502. data/ext/v8/upstream/3.1.8/tools/utils.py +96 -0
  503. data/ext/v8/upstream/3.1.8/tools/visual_studio/README.txt +70 -0
  504. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/arm.vsprops +0 -0
  505. data/ext/v8/upstream/3.1.8/tools/visual_studio/common.vsprops +34 -0
  506. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8.vcproj +0 -0
  507. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_arm.vcproj +0 -0
  508. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_x64.vcproj +0 -0
  509. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8js2c.cmd +0 -0
  510. data/ext/v8/upstream/3.1.8/tools/visual_studio/debug.vsprops +17 -0
  511. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/ia32.vsprops +0 -0
  512. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/js2c.cmd +0 -0
  513. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/release.vsprops +0 -0
  514. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.sln +0 -0
  515. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.vcproj +0 -0
  516. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.sln +0 -0
  517. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.vcproj +0 -0
  518. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +1296 -0
  519. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +1234 -0
  520. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +1296 -0
  521. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  522. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  523. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  524. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  525. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  526. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  527. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  528. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  529. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample.vcproj +147 -0
  530. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_arm.vcproj +147 -0
  531. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_x64.vcproj +163 -0
  532. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  533. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  534. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  535. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  536. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.sln +0 -0
  537. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.vcproj +0 -0
  538. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/x64.vsprops +0 -0
  539. data/ext/v8/upstream/3.1.8/tools/windows-tick-processor.bat +30 -0
  540. data/ext/v8/upstream/Makefile +2 -1
  541. data/ext/v8/v8_template.cpp +2 -2
  542. data/lib/v8/version.rb +1 -1
  543. data/spec/redjs/jsapi_spec.rb +2 -2
  544. metadata +552 -490
  545. data/ext/v8/upstream/2.3.3/.gitignore +0 -26
  546. data/ext/v8/upstream/2.3.3/AUTHORS +0 -31
  547. data/ext/v8/upstream/2.3.3/ChangeLog +0 -1916
  548. data/ext/v8/upstream/2.3.3/LICENSE +0 -55
  549. data/ext/v8/upstream/2.3.3/SConstruct +0 -1154
  550. data/ext/v8/upstream/2.3.3/include/v8-debug.h +0 -381
  551. data/ext/v8/upstream/2.3.3/include/v8-profiler.h +0 -353
  552. data/ext/v8/upstream/2.3.3/include/v8.h +0 -3616
  553. data/ext/v8/upstream/2.3.3/src/SConscript +0 -330
  554. data/ext/v8/upstream/2.3.3/src/accessors.cc +0 -661
  555. data/ext/v8/upstream/2.3.3/src/accessors.h +0 -114
  556. data/ext/v8/upstream/2.3.3/src/allocation.cc +0 -198
  557. data/ext/v8/upstream/2.3.3/src/allocation.h +0 -169
  558. data/ext/v8/upstream/2.3.3/src/api.cc +0 -4795
  559. data/ext/v8/upstream/2.3.3/src/api.h +0 -485
  560. data/ext/v8/upstream/2.3.3/src/apiutils.h +0 -69
  561. data/ext/v8/upstream/2.3.3/src/arguments.h +0 -96
  562. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm-inl.h +0 -305
  563. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.cc +0 -2580
  564. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.h +0 -1275
  565. data/ext/v8/upstream/2.3.3/src/arm/builtins-arm.cc +0 -1320
  566. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm-inl.h +0 -48
  567. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.cc +0 -11398
  568. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.h +0 -1102
  569. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.cc +0 -154
  570. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.h +0 -388
  571. data/ext/v8/upstream/2.3.3/src/arm/cpu-arm.cc +0 -142
  572. data/ext/v8/upstream/2.3.3/src/arm/debug-arm.cc +0 -309
  573. data/ext/v8/upstream/2.3.3/src/arm/disasm-arm.cc +0 -1459
  574. data/ext/v8/upstream/2.3.3/src/arm/fast-codegen-arm.cc +0 -241
  575. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.cc +0 -123
  576. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.h +0 -162
  577. data/ext/v8/upstream/2.3.3/src/arm/full-codegen-arm.cc +0 -3178
  578. data/ext/v8/upstream/2.3.3/src/arm/ic-arm.cc +0 -2258
  579. data/ext/v8/upstream/2.3.3/src/arm/jump-target-arm.cc +0 -164
  580. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.cc +0 -1892
  581. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.h +0 -727
  582. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.cc +0 -1261
  583. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.h +0 -266
  584. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.cc +0 -2822
  585. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.h +0 -361
  586. data/ext/v8/upstream/2.3.3/src/arm/stub-cache-arm.cc +0 -2387
  587. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.cc +0 -834
  588. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.h +0 -519
  589. data/ext/v8/upstream/2.3.3/src/array.js +0 -1127
  590. data/ext/v8/upstream/2.3.3/src/assembler.cc +0 -801
  591. data/ext/v8/upstream/2.3.3/src/assembler.h +0 -573
  592. data/ext/v8/upstream/2.3.3/src/ast-inl.h +0 -81
  593. data/ext/v8/upstream/2.3.3/src/ast.cc +0 -1152
  594. data/ext/v8/upstream/2.3.3/src/ast.h +0 -2106
  595. data/ext/v8/upstream/2.3.3/src/bootstrapper.cc +0 -1819
  596. data/ext/v8/upstream/2.3.3/src/builtins.cc +0 -1529
  597. data/ext/v8/upstream/2.3.3/src/builtins.h +0 -263
  598. data/ext/v8/upstream/2.3.3/src/bytecodes-irregexp.h +0 -104
  599. data/ext/v8/upstream/2.3.3/src/cached-powers.h +0 -119
  600. data/ext/v8/upstream/2.3.3/src/char-predicates-inl.h +0 -86
  601. data/ext/v8/upstream/2.3.3/src/checks.cc +0 -100
  602. data/ext/v8/upstream/2.3.3/src/checks.h +0 -310
  603. data/ext/v8/upstream/2.3.3/src/circular-queue.cc +0 -121
  604. data/ext/v8/upstream/2.3.3/src/code-stubs.cc +0 -177
  605. data/ext/v8/upstream/2.3.3/src/code-stubs.h +0 -177
  606. data/ext/v8/upstream/2.3.3/src/codegen-inl.h +0 -60
  607. data/ext/v8/upstream/2.3.3/src/codegen.cc +0 -516
  608. data/ext/v8/upstream/2.3.3/src/codegen.h +0 -897
  609. data/ext/v8/upstream/2.3.3/src/compilation-cache.cc +0 -562
  610. data/ext/v8/upstream/2.3.3/src/compilation-cache.h +0 -102
  611. data/ext/v8/upstream/2.3.3/src/compiler.cc +0 -654
  612. data/ext/v8/upstream/2.3.3/src/compiler.h +0 -299
  613. data/ext/v8/upstream/2.3.3/src/contexts.cc +0 -256
  614. data/ext/v8/upstream/2.3.3/src/contexts.h +0 -342
  615. data/ext/v8/upstream/2.3.3/src/conversions.cc +0 -1119
  616. data/ext/v8/upstream/2.3.3/src/conversions.h +0 -123
  617. data/ext/v8/upstream/2.3.3/src/counters.h +0 -239
  618. data/ext/v8/upstream/2.3.3/src/cpu-profiler-inl.h +0 -100
  619. data/ext/v8/upstream/2.3.3/src/cpu-profiler.cc +0 -538
  620. data/ext/v8/upstream/2.3.3/src/cpu-profiler.h +0 -285
  621. data/ext/v8/upstream/2.3.3/src/d8-debug.cc +0 -356
  622. data/ext/v8/upstream/2.3.3/src/d8-debug.h +0 -155
  623. data/ext/v8/upstream/2.3.3/src/d8.cc +0 -783
  624. data/ext/v8/upstream/2.3.3/src/d8.h +0 -227
  625. data/ext/v8/upstream/2.3.3/src/d8.js +0 -1683
  626. data/ext/v8/upstream/2.3.3/src/data-flow.cc +0 -758
  627. data/ext/v8/upstream/2.3.3/src/data-flow.h +0 -278
  628. data/ext/v8/upstream/2.3.3/src/date.js +0 -1059
  629. data/ext/v8/upstream/2.3.3/src/dateparser-inl.h +0 -123
  630. data/ext/v8/upstream/2.3.3/src/dateparser.h +0 -244
  631. data/ext/v8/upstream/2.3.3/src/debug-agent.cc +0 -427
  632. data/ext/v8/upstream/2.3.3/src/debug-agent.h +0 -129
  633. data/ext/v8/upstream/2.3.3/src/debug-debugger.js +0 -2227
  634. data/ext/v8/upstream/2.3.3/src/debug.cc +0 -3005
  635. data/ext/v8/upstream/2.3.3/src/debug.h +0 -993
  636. data/ext/v8/upstream/2.3.3/src/disassembler.cc +0 -312
  637. data/ext/v8/upstream/2.3.3/src/double.h +0 -169
  638. data/ext/v8/upstream/2.3.3/src/dtoa-config.c +0 -92
  639. data/ext/v8/upstream/2.3.3/src/dtoa.cc +0 -77
  640. data/ext/v8/upstream/2.3.3/src/dtoa.h +0 -81
  641. data/ext/v8/upstream/2.3.3/src/execution.cc +0 -809
  642. data/ext/v8/upstream/2.3.3/src/execution.h +0 -336
  643. data/ext/v8/upstream/2.3.3/src/factory.cc +0 -1003
  644. data/ext/v8/upstream/2.3.3/src/factory.h +0 -410
  645. data/ext/v8/upstream/2.3.3/src/fast-codegen.cc +0 -746
  646. data/ext/v8/upstream/2.3.3/src/fast-codegen.h +0 -161
  647. data/ext/v8/upstream/2.3.3/src/fast-dtoa.cc +0 -505
  648. data/ext/v8/upstream/2.3.3/src/fast-dtoa.h +0 -58
  649. data/ext/v8/upstream/2.3.3/src/flag-definitions.h +0 -455
  650. data/ext/v8/upstream/2.3.3/src/flags.cc +0 -551
  651. data/ext/v8/upstream/2.3.3/src/flags.h +0 -81
  652. data/ext/v8/upstream/2.3.3/src/flow-graph.cc +0 -763
  653. data/ext/v8/upstream/2.3.3/src/flow-graph.h +0 -180
  654. data/ext/v8/upstream/2.3.3/src/frame-element.h +0 -273
  655. data/ext/v8/upstream/2.3.3/src/frames-inl.h +0 -217
  656. data/ext/v8/upstream/2.3.3/src/frames.cc +0 -826
  657. data/ext/v8/upstream/2.3.3/src/frames.h +0 -682
  658. data/ext/v8/upstream/2.3.3/src/full-codegen.cc +0 -1443
  659. data/ext/v8/upstream/2.3.3/src/full-codegen.h +0 -548
  660. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.cc +0 -76
  661. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.h +0 -135
  662. data/ext/v8/upstream/2.3.3/src/global-handles.cc +0 -520
  663. data/ext/v8/upstream/2.3.3/src/global-handles.h +0 -180
  664. data/ext/v8/upstream/2.3.3/src/globals.h +0 -669
  665. data/ext/v8/upstream/2.3.3/src/handles-inl.h +0 -76
  666. data/ext/v8/upstream/2.3.3/src/handles.cc +0 -825
  667. data/ext/v8/upstream/2.3.3/src/handles.h +0 -393
  668. data/ext/v8/upstream/2.3.3/src/hashmap.cc +0 -226
  669. data/ext/v8/upstream/2.3.3/src/hashmap.h +0 -120
  670. data/ext/v8/upstream/2.3.3/src/heap-inl.h +0 -493
  671. data/ext/v8/upstream/2.3.3/src/heap-profiler.cc +0 -779
  672. data/ext/v8/upstream/2.3.3/src/heap-profiler.h +0 -323
  673. data/ext/v8/upstream/2.3.3/src/heap.cc +0 -4994
  674. data/ext/v8/upstream/2.3.3/src/heap.h +0 -1984
  675. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32-inl.h +0 -360
  676. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.cc +0 -2600
  677. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.h +0 -969
  678. data/ext/v8/upstream/2.3.3/src/ia32/builtins-ia32.cc +0 -1261
  679. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.cc +0 -13968
  680. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.h +0 -1097
  681. data/ext/v8/upstream/2.3.3/src/ia32/cpu-ia32.cc +0 -83
  682. data/ext/v8/upstream/2.3.3/src/ia32/debug-ia32.cc +0 -309
  683. data/ext/v8/upstream/2.3.3/src/ia32/disasm-ia32.cc +0 -1471
  684. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.cc +0 -954
  685. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.h +0 -155
  686. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.cc +0 -115
  687. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.h +0 -135
  688. data/ext/v8/upstream/2.3.3/src/ia32/full-codegen-ia32.cc +0 -3281
  689. data/ext/v8/upstream/2.3.3/src/ia32/ic-ia32.cc +0 -1966
  690. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.cc +0 -1610
  691. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.h +0 -610
  692. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.cc +0 -1247
  693. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.h +0 -214
  694. data/ext/v8/upstream/2.3.3/src/ia32/simulator-ia32.h +0 -62
  695. data/ext/v8/upstream/2.3.3/src/ia32/stub-cache-ia32.cc +0 -2750
  696. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.cc +0 -1334
  697. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.h +0 -627
  698. data/ext/v8/upstream/2.3.3/src/ic-inl.h +0 -120
  699. data/ext/v8/upstream/2.3.3/src/ic.cc +0 -1827
  700. data/ext/v8/upstream/2.3.3/src/ic.h +0 -515
  701. data/ext/v8/upstream/2.3.3/src/interpreter-irregexp.cc +0 -646
  702. data/ext/v8/upstream/2.3.3/src/json.js +0 -268
  703. data/ext/v8/upstream/2.3.3/src/jsregexp.cc +0 -5283
  704. data/ext/v8/upstream/2.3.3/src/jsregexp.h +0 -1463
  705. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.cc +0 -429
  706. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.h +0 -244
  707. data/ext/v8/upstream/2.3.3/src/jump-target-light.cc +0 -110
  708. data/ext/v8/upstream/2.3.3/src/jump-target-light.h +0 -192
  709. data/ext/v8/upstream/2.3.3/src/list-inl.h +0 -166
  710. data/ext/v8/upstream/2.3.3/src/list.h +0 -159
  711. data/ext/v8/upstream/2.3.3/src/liveedit-debugger.js +0 -1057
  712. data/ext/v8/upstream/2.3.3/src/liveedit.cc +0 -1480
  713. data/ext/v8/upstream/2.3.3/src/liveedit.h +0 -170
  714. data/ext/v8/upstream/2.3.3/src/log-utils.cc +0 -497
  715. data/ext/v8/upstream/2.3.3/src/log-utils.h +0 -289
  716. data/ext/v8/upstream/2.3.3/src/log.cc +0 -1561
  717. data/ext/v8/upstream/2.3.3/src/log.h +0 -384
  718. data/ext/v8/upstream/2.3.3/src/macro-assembler.h +0 -86
  719. data/ext/v8/upstream/2.3.3/src/macros.py +0 -177
  720. data/ext/v8/upstream/2.3.3/src/mark-compact.cc +0 -2330
  721. data/ext/v8/upstream/2.3.3/src/mark-compact.h +0 -451
  722. data/ext/v8/upstream/2.3.3/src/math.js +0 -264
  723. data/ext/v8/upstream/2.3.3/src/memory.h +0 -74
  724. data/ext/v8/upstream/2.3.3/src/messages.cc +0 -183
  725. data/ext/v8/upstream/2.3.3/src/messages.h +0 -113
  726. data/ext/v8/upstream/2.3.3/src/messages.js +0 -982
  727. data/ext/v8/upstream/2.3.3/src/mips/assembler-mips.h +0 -668
  728. data/ext/v8/upstream/2.3.3/src/mips/builtins-mips.cc +0 -205
  729. data/ext/v8/upstream/2.3.3/src/mips/codegen-mips.h +0 -434
  730. data/ext/v8/upstream/2.3.3/src/mips/debug-mips.cc +0 -131
  731. data/ext/v8/upstream/2.3.3/src/mips/frames-mips.cc +0 -102
  732. data/ext/v8/upstream/2.3.3/src/mips/ic-mips.cc +0 -220
  733. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.cc +0 -1651
  734. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.h +0 -311
  735. data/ext/v8/upstream/2.3.3/src/mips/stub-cache-mips.cc +0 -403
  736. data/ext/v8/upstream/2.3.3/src/mirror-debugger.js +0 -2380
  737. data/ext/v8/upstream/2.3.3/src/objects-debug.cc +0 -1366
  738. data/ext/v8/upstream/2.3.3/src/objects-inl.h +0 -3333
  739. data/ext/v8/upstream/2.3.3/src/objects.cc +0 -8820
  740. data/ext/v8/upstream/2.3.3/src/objects.h +0 -5373
  741. data/ext/v8/upstream/2.3.3/src/oprofile-agent.cc +0 -108
  742. data/ext/v8/upstream/2.3.3/src/oprofile-agent.h +0 -77
  743. data/ext/v8/upstream/2.3.3/src/parser.cc +0 -5207
  744. data/ext/v8/upstream/2.3.3/src/parser.h +0 -197
  745. data/ext/v8/upstream/2.3.3/src/platform-freebsd.cc +0 -667
  746. data/ext/v8/upstream/2.3.3/src/platform-linux.cc +0 -862
  747. data/ext/v8/upstream/2.3.3/src/platform-macos.cc +0 -665
  748. data/ext/v8/upstream/2.3.3/src/platform-nullos.cc +0 -454
  749. data/ext/v8/upstream/2.3.3/src/platform-openbsd.cc +0 -622
  750. data/ext/v8/upstream/2.3.3/src/platform-posix.cc +0 -362
  751. data/ext/v8/upstream/2.3.3/src/platform-solaris.cc +0 -653
  752. data/ext/v8/upstream/2.3.3/src/platform-win32.cc +0 -1911
  753. data/ext/v8/upstream/2.3.3/src/platform.h +0 -577
  754. data/ext/v8/upstream/2.3.3/src/powers-ten.h +0 -2461
  755. data/ext/v8/upstream/2.3.3/src/prettyprinter.cc +0 -1531
  756. data/ext/v8/upstream/2.3.3/src/prettyprinter.h +0 -221
  757. data/ext/v8/upstream/2.3.3/src/profile-generator-inl.h +0 -148
  758. data/ext/v8/upstream/2.3.3/src/profile-generator.cc +0 -1830
  759. data/ext/v8/upstream/2.3.3/src/profile-generator.h +0 -853
  760. data/ext/v8/upstream/2.3.3/src/property.cc +0 -96
  761. data/ext/v8/upstream/2.3.3/src/property.h +0 -315
  762. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.cc +0 -464
  763. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.h +0 -141
  764. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.cc +0 -356
  765. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.h +0 -103
  766. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.cc +0 -261
  767. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.h +0 -228
  768. data/ext/v8/upstream/2.3.3/src/regexp.js +0 -549
  769. data/ext/v8/upstream/2.3.3/src/rewriter.cc +0 -1038
  770. data/ext/v8/upstream/2.3.3/src/rewriter.h +0 -54
  771. data/ext/v8/upstream/2.3.3/src/runtime.cc +0 -10599
  772. data/ext/v8/upstream/2.3.3/src/runtime.h +0 -459
  773. data/ext/v8/upstream/2.3.3/src/runtime.js +0 -629
  774. data/ext/v8/upstream/2.3.3/src/scanner.cc +0 -1346
  775. data/ext/v8/upstream/2.3.3/src/scanner.h +0 -503
  776. data/ext/v8/upstream/2.3.3/src/scopeinfo.cc +0 -637
  777. data/ext/v8/upstream/2.3.3/src/scopeinfo.h +0 -233
  778. data/ext/v8/upstream/2.3.3/src/scopes.cc +0 -962
  779. data/ext/v8/upstream/2.3.3/src/scopes.h +0 -400
  780. data/ext/v8/upstream/2.3.3/src/serialize.cc +0 -1461
  781. data/ext/v8/upstream/2.3.3/src/serialize.h +0 -581
  782. data/ext/v8/upstream/2.3.3/src/spaces-inl.h +0 -483
  783. data/ext/v8/upstream/2.3.3/src/spaces.cc +0 -2901
  784. data/ext/v8/upstream/2.3.3/src/spaces.h +0 -2197
  785. data/ext/v8/upstream/2.3.3/src/string-stream.cc +0 -584
  786. data/ext/v8/upstream/2.3.3/src/string-stream.h +0 -189
  787. data/ext/v8/upstream/2.3.3/src/string.js +0 -1006
  788. data/ext/v8/upstream/2.3.3/src/stub-cache.cc +0 -1379
  789. data/ext/v8/upstream/2.3.3/src/stub-cache.h +0 -756
  790. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/COPYING +0 -15
  791. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/dtoa.c +0 -3334
  792. data/ext/v8/upstream/2.3.3/src/token.cc +0 -56
  793. data/ext/v8/upstream/2.3.3/src/token.h +0 -270
  794. data/ext/v8/upstream/2.3.3/src/top.cc +0 -1067
  795. data/ext/v8/upstream/2.3.3/src/top.h +0 -463
  796. data/ext/v8/upstream/2.3.3/src/type-info.cc +0 -53
  797. data/ext/v8/upstream/2.3.3/src/type-info.h +0 -244
  798. data/ext/v8/upstream/2.3.3/src/unicode-inl.h +0 -238
  799. data/ext/v8/upstream/2.3.3/src/unicode.cc +0 -749
  800. data/ext/v8/upstream/2.3.3/src/unicode.h +0 -279
  801. data/ext/v8/upstream/2.3.3/src/uri.js +0 -415
  802. data/ext/v8/upstream/2.3.3/src/utils.cc +0 -285
  803. data/ext/v8/upstream/2.3.3/src/utils.h +0 -745
  804. data/ext/v8/upstream/2.3.3/src/v8-counters.h +0 -250
  805. data/ext/v8/upstream/2.3.3/src/v8.cc +0 -228
  806. data/ext/v8/upstream/2.3.3/src/v8.h +0 -121
  807. data/ext/v8/upstream/2.3.3/src/v8natives.js +0 -1188
  808. data/ext/v8/upstream/2.3.3/src/v8threads.cc +0 -461
  809. data/ext/v8/upstream/2.3.3/src/v8threads.h +0 -159
  810. data/ext/v8/upstream/2.3.3/src/variables.cc +0 -119
  811. data/ext/v8/upstream/2.3.3/src/variables.h +0 -205
  812. data/ext/v8/upstream/2.3.3/src/version.cc +0 -88
  813. data/ext/v8/upstream/2.3.3/src/virtual-frame-heavy-inl.h +0 -192
  814. data/ext/v8/upstream/2.3.3/src/virtual-frame.h +0 -46
  815. data/ext/v8/upstream/2.3.3/src/vm-state-inl.h +0 -137
  816. data/ext/v8/upstream/2.3.3/src/vm-state.cc +0 -39
  817. data/ext/v8/upstream/2.3.3/src/vm-state.h +0 -77
  818. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64-inl.h +0 -400
  819. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.cc +0 -2963
  820. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.h +0 -1438
  821. data/ext/v8/upstream/2.3.3/src/x64/builtins-x64.cc +0 -1296
  822. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64-inl.h +0 -46
  823. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.cc +0 -12491
  824. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.h +0 -1090
  825. data/ext/v8/upstream/2.3.3/src/x64/cpu-x64.cc +0 -83
  826. data/ext/v8/upstream/2.3.3/src/x64/debug-x64.cc +0 -267
  827. data/ext/v8/upstream/2.3.3/src/x64/disasm-x64.cc +0 -1696
  828. data/ext/v8/upstream/2.3.3/src/x64/fast-codegen-x64.cc +0 -250
  829. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.cc +0 -113
  830. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.h +0 -125
  831. data/ext/v8/upstream/2.3.3/src/x64/full-codegen-x64.cc +0 -3270
  832. data/ext/v8/upstream/2.3.3/src/x64/ic-x64.cc +0 -1907
  833. data/ext/v8/upstream/2.3.3/src/x64/jump-target-x64.cc +0 -437
  834. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.cc +0 -2793
  835. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.h +0 -916
  836. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.cc +0 -1374
  837. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.h +0 -277
  838. data/ext/v8/upstream/2.3.3/src/x64/simulator-x64.h +0 -63
  839. data/ext/v8/upstream/2.3.3/src/x64/stub-cache-x64.cc +0 -2560
  840. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.cc +0 -1264
  841. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.h +0 -590
  842. data/ext/v8/upstream/2.3.3/src/zone-inl.h +0 -82
  843. data/ext/v8/upstream/2.3.3/src/zone.cc +0 -194
  844. data/ext/v8/upstream/2.3.3/src/zone.h +0 -221
  845. data/ext/v8/upstream/2.3.3/tools/codemap.js +0 -270
  846. data/ext/v8/upstream/2.3.3/tools/csvparser.js +0 -83
  847. data/ext/v8/upstream/2.3.3/tools/gc-nvp-trace-processor.py +0 -317
  848. data/ext/v8/upstream/2.3.3/tools/gyp/v8.gyp +0 -749
  849. data/ext/v8/upstream/2.3.3/tools/linux-tick-processor.py +0 -78
  850. data/ext/v8/upstream/2.3.3/tools/logreader.js +0 -338
  851. data/ext/v8/upstream/2.3.3/tools/oprofile/annotate +0 -7
  852. data/ext/v8/upstream/2.3.3/tools/oprofile/common +0 -19
  853. data/ext/v8/upstream/2.3.3/tools/oprofile/dump +0 -7
  854. data/ext/v8/upstream/2.3.3/tools/oprofile/report +0 -7
  855. data/ext/v8/upstream/2.3.3/tools/oprofile/reset +0 -7
  856. data/ext/v8/upstream/2.3.3/tools/oprofile/run +0 -14
  857. data/ext/v8/upstream/2.3.3/tools/oprofile/shutdown +0 -7
  858. data/ext/v8/upstream/2.3.3/tools/oprofile/start +0 -7
  859. data/ext/v8/upstream/2.3.3/tools/presubmit.py +0 -299
  860. data/ext/v8/upstream/2.3.3/tools/profile.js +0 -691
  861. data/ext/v8/upstream/2.3.3/tools/profile_view.js +0 -224
  862. data/ext/v8/upstream/2.3.3/tools/splaytree.js +0 -322
  863. data/ext/v8/upstream/2.3.3/tools/splaytree.py +0 -226
  864. data/ext/v8/upstream/2.3.3/tools/tickprocessor.js +0 -862
  865. data/ext/v8/upstream/2.3.3/tools/tickprocessor.py +0 -571
  866. data/ext/v8/upstream/2.3.3/tools/utils.py +0 -88
  867. data/ext/v8/upstream/2.3.3/tools/visual_studio/README.txt +0 -71
  868. data/ext/v8/upstream/2.3.3/tools/visual_studio/common.vsprops +0 -34
  869. data/ext/v8/upstream/2.3.3/tools/visual_studio/debug.vsprops +0 -17
  870. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base.vcproj +0 -1143
  871. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_arm.vcproj +0 -1115
  872. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_x64.vcproj +0 -1096
  873. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample.vcproj +0 -145
  874. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -145
  875. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -161
  876. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.bat +0 -29
  877. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.py +0 -137
@@ -1,1531 +0,0 @@
1
- // Copyright 2006-2008 the V8 project authors. All rights reserved.
2
- // Redistribution and use in source and binary forms, with or without
3
- // modification, are permitted provided that the following conditions are
4
- // met:
5
- //
6
- // * Redistributions of source code must retain the above copyright
7
- // notice, this list of conditions and the following disclaimer.
8
- // * Redistributions in binary form must reproduce the above
9
- // copyright notice, this list of conditions and the following
10
- // disclaimer in the documentation and/or other materials provided
11
- // with the distribution.
12
- // * Neither the name of Google Inc. nor the names of its
13
- // contributors may be used to endorse or promote products derived
14
- // from this software without specific prior written permission.
15
- //
16
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
-
28
- #include <stdarg.h>
29
-
30
- #include "v8.h"
31
-
32
- #include "prettyprinter.h"
33
- #include "scopes.h"
34
- #include "platform.h"
35
-
36
- namespace v8 {
37
- namespace internal {
38
-
39
- #ifdef DEBUG
40
-
41
- PrettyPrinter::PrettyPrinter() {
42
- output_ = NULL;
43
- size_ = 0;
44
- pos_ = 0;
45
- }
46
-
47
-
48
- PrettyPrinter::~PrettyPrinter() {
49
- DeleteArray(output_);
50
- }
51
-
52
-
53
- void PrettyPrinter::VisitBlock(Block* node) {
54
- if (!node->is_initializer_block()) Print("{ ");
55
- PrintStatements(node->statements());
56
- if (node->statements()->length() > 0) Print(" ");
57
- if (!node->is_initializer_block()) Print("}");
58
- }
59
-
60
-
61
- void PrettyPrinter::VisitDeclaration(Declaration* node) {
62
- Print("var ");
63
- PrintLiteral(node->proxy()->name(), false);
64
- if (node->fun() != NULL) {
65
- Print(" = ");
66
- PrintFunctionLiteral(node->fun());
67
- }
68
- Print(";");
69
- }
70
-
71
-
72
- void PrettyPrinter::VisitExpressionStatement(ExpressionStatement* node) {
73
- Visit(node->expression());
74
- Print(";");
75
- }
76
-
77
-
78
- void PrettyPrinter::VisitEmptyStatement(EmptyStatement* node) {
79
- Print(";");
80
- }
81
-
82
-
83
- void PrettyPrinter::VisitIfStatement(IfStatement* node) {
84
- Print("if (");
85
- Visit(node->condition());
86
- Print(") ");
87
- Visit(node->then_statement());
88
- if (node->HasElseStatement()) {
89
- Print(" else ");
90
- Visit(node->else_statement());
91
- }
92
- }
93
-
94
-
95
- void PrettyPrinter::VisitContinueStatement(ContinueStatement* node) {
96
- Print("continue");
97
- ZoneStringList* labels = node->target()->labels();
98
- if (labels != NULL) {
99
- Print(" ");
100
- ASSERT(labels->length() > 0); // guaranteed to have at least one entry
101
- PrintLiteral(labels->at(0), false); // any label from the list is fine
102
- }
103
- Print(";");
104
- }
105
-
106
-
107
- void PrettyPrinter::VisitBreakStatement(BreakStatement* node) {
108
- Print("break");
109
- ZoneStringList* labels = node->target()->labels();
110
- if (labels != NULL) {
111
- Print(" ");
112
- ASSERT(labels->length() > 0); // guaranteed to have at least one entry
113
- PrintLiteral(labels->at(0), false); // any label from the list is fine
114
- }
115
- Print(";");
116
- }
117
-
118
-
119
- void PrettyPrinter::VisitReturnStatement(ReturnStatement* node) {
120
- Print("return ");
121
- Visit(node->expression());
122
- Print(";");
123
- }
124
-
125
-
126
- void PrettyPrinter::VisitWithEnterStatement(WithEnterStatement* node) {
127
- Print("<enter with> (");
128
- Visit(node->expression());
129
- Print(") ");
130
- }
131
-
132
-
133
- void PrettyPrinter::VisitWithExitStatement(WithExitStatement* node) {
134
- Print("<exit with>");
135
- }
136
-
137
-
138
- void PrettyPrinter::VisitSwitchStatement(SwitchStatement* node) {
139
- PrintLabels(node->labels());
140
- Print("switch (");
141
- Visit(node->tag());
142
- Print(") { ");
143
- ZoneList<CaseClause*>* cases = node->cases();
144
- for (int i = 0; i < cases->length(); i++)
145
- PrintCaseClause(cases->at(i));
146
- Print("}");
147
- }
148
-
149
-
150
- void PrettyPrinter::VisitDoWhileStatement(DoWhileStatement* node) {
151
- PrintLabels(node->labels());
152
- Print("do ");
153
- Visit(node->body());
154
- Print(" while (");
155
- Visit(node->cond());
156
- Print(");");
157
- }
158
-
159
-
160
- void PrettyPrinter::VisitWhileStatement(WhileStatement* node) {
161
- PrintLabels(node->labels());
162
- Print("while (");
163
- Visit(node->cond());
164
- Print(") ");
165
- Visit(node->body());
166
- }
167
-
168
-
169
- void PrettyPrinter::VisitForStatement(ForStatement* node) {
170
- PrintLabels(node->labels());
171
- Print("for (");
172
- if (node->init() != NULL) {
173
- Visit(node->init());
174
- Print(" ");
175
- } else {
176
- Print("; ");
177
- }
178
- if (node->cond() != NULL) Visit(node->cond());
179
- Print("; ");
180
- if (node->next() != NULL) {
181
- Visit(node->next()); // prints extra ';', unfortunately
182
- // to fix: should use Expression for next
183
- }
184
- Print(") ");
185
- Visit(node->body());
186
- }
187
-
188
-
189
- void PrettyPrinter::VisitForInStatement(ForInStatement* node) {
190
- PrintLabels(node->labels());
191
- Print("for (");
192
- Visit(node->each());
193
- Print(" in ");
194
- Visit(node->enumerable());
195
- Print(") ");
196
- Visit(node->body());
197
- }
198
-
199
-
200
- void PrettyPrinter::VisitTryCatchStatement(TryCatchStatement* node) {
201
- Print("try ");
202
- Visit(node->try_block());
203
- Print(" catch (");
204
- Visit(node->catch_var());
205
- Print(") ");
206
- Visit(node->catch_block());
207
- }
208
-
209
-
210
- void PrettyPrinter::VisitTryFinallyStatement(TryFinallyStatement* node) {
211
- Print("try ");
212
- Visit(node->try_block());
213
- Print(" finally ");
214
- Visit(node->finally_block());
215
- }
216
-
217
-
218
- void PrettyPrinter::VisitDebuggerStatement(DebuggerStatement* node) {
219
- Print("debugger ");
220
- }
221
-
222
-
223
- void PrettyPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
224
- Print("(");
225
- PrintFunctionLiteral(node);
226
- Print(")");
227
- }
228
-
229
-
230
- void PrettyPrinter::VisitSharedFunctionInfoLiteral(
231
- SharedFunctionInfoLiteral* node) {
232
- Print("(");
233
- PrintLiteral(node->shared_function_info(), true);
234
- Print(")");
235
- }
236
-
237
-
238
- void PrettyPrinter::VisitConditional(Conditional* node) {
239
- Visit(node->condition());
240
- Print(" ? ");
241
- Visit(node->then_expression());
242
- Print(" : ");
243
- Visit(node->else_expression());
244
- }
245
-
246
-
247
- void PrettyPrinter::VisitLiteral(Literal* node) {
248
- PrintLiteral(node->handle(), true);
249
- }
250
-
251
-
252
- void PrettyPrinter::VisitRegExpLiteral(RegExpLiteral* node) {
253
- Print(" RegExp(");
254
- PrintLiteral(node->pattern(), false);
255
- Print(",");
256
- PrintLiteral(node->flags(), false);
257
- Print(") ");
258
- }
259
-
260
-
261
- void PrettyPrinter::VisitObjectLiteral(ObjectLiteral* node) {
262
- Print("{ ");
263
- for (int i = 0; i < node->properties()->length(); i++) {
264
- if (i != 0) Print(",");
265
- ObjectLiteral::Property* property = node->properties()->at(i);
266
- Print(" ");
267
- Visit(property->key());
268
- Print(": ");
269
- Visit(property->value());
270
- }
271
- Print(" }");
272
- }
273
-
274
-
275
- void PrettyPrinter::VisitArrayLiteral(ArrayLiteral* node) {
276
- Print("[ ");
277
- for (int i = 0; i < node->values()->length(); i++) {
278
- if (i != 0) Print(",");
279
- Visit(node->values()->at(i));
280
- }
281
- Print(" ]");
282
- }
283
-
284
-
285
- void PrettyPrinter::VisitCatchExtensionObject(CatchExtensionObject* node) {
286
- Print("{ ");
287
- Visit(node->key());
288
- Print(": ");
289
- Visit(node->value());
290
- Print(" }");
291
- }
292
-
293
-
294
- void PrettyPrinter::VisitSlot(Slot* node) {
295
- switch (node->type()) {
296
- case Slot::PARAMETER:
297
- Print("parameter[%d]", node->index());
298
- break;
299
- case Slot::LOCAL:
300
- Print("frame[%d]", node->index());
301
- break;
302
- case Slot::CONTEXT:
303
- Print(".context[%d]", node->index());
304
- break;
305
- case Slot::LOOKUP:
306
- Print(".context[");
307
- PrintLiteral(node->var()->name(), false);
308
- Print("]");
309
- break;
310
- default:
311
- UNREACHABLE();
312
- }
313
- }
314
-
315
-
316
- void PrettyPrinter::VisitVariableProxy(VariableProxy* node) {
317
- PrintLiteral(node->name(), false);
318
- }
319
-
320
-
321
- void PrettyPrinter::VisitAssignment(Assignment* node) {
322
- Visit(node->target());
323
- Print(" %s ", Token::String(node->op()));
324
- Visit(node->value());
325
- }
326
-
327
-
328
- void PrettyPrinter::VisitThrow(Throw* node) {
329
- Print("throw ");
330
- Visit(node->exception());
331
- }
332
-
333
-
334
- void PrettyPrinter::VisitProperty(Property* node) {
335
- Expression* key = node->key();
336
- Literal* literal = key->AsLiteral();
337
- if (literal != NULL && literal->handle()->IsSymbol()) {
338
- Print("(");
339
- Visit(node->obj());
340
- Print(").");
341
- PrintLiteral(literal->handle(), false);
342
- } else {
343
- Visit(node->obj());
344
- Print("[");
345
- Visit(key);
346
- Print("]");
347
- }
348
- }
349
-
350
-
351
- void PrettyPrinter::VisitCall(Call* node) {
352
- Visit(node->expression());
353
- PrintArguments(node->arguments());
354
- }
355
-
356
-
357
- void PrettyPrinter::VisitCallNew(CallNew* node) {
358
- Print("new (");
359
- Visit(node->expression());
360
- Print(")");
361
- PrintArguments(node->arguments());
362
- }
363
-
364
-
365
- void PrettyPrinter::VisitCallRuntime(CallRuntime* node) {
366
- Print("%%");
367
- PrintLiteral(node->name(), false);
368
- PrintArguments(node->arguments());
369
- }
370
-
371
-
372
- void PrettyPrinter::VisitUnaryOperation(UnaryOperation* node) {
373
- Print("(%s", Token::String(node->op()));
374
- Visit(node->expression());
375
- Print(")");
376
- }
377
-
378
-
379
- void PrettyPrinter::VisitCountOperation(CountOperation* node) {
380
- Print("(");
381
- if (node->is_prefix()) Print("%s", Token::String(node->op()));
382
- Visit(node->expression());
383
- if (node->is_postfix()) Print("%s", Token::String(node->op()));
384
- Print(")");
385
- }
386
-
387
-
388
- void PrettyPrinter::VisitBinaryOperation(BinaryOperation* node) {
389
- Print("(");
390
- Visit(node->left());
391
- Print("%s", Token::String(node->op()));
392
- Visit(node->right());
393
- Print(")");
394
- }
395
-
396
-
397
- void PrettyPrinter::VisitCompareOperation(CompareOperation* node) {
398
- Print("(");
399
- Visit(node->left());
400
- Print("%s", Token::String(node->op()));
401
- Visit(node->right());
402
- Print(")");
403
- }
404
-
405
-
406
- void PrettyPrinter::VisitThisFunction(ThisFunction* node) {
407
- Print("<this-function>");
408
- }
409
-
410
-
411
- const char* PrettyPrinter::Print(AstNode* node) {
412
- Init();
413
- Visit(node);
414
- return output_;
415
- }
416
-
417
-
418
- const char* PrettyPrinter::PrintExpression(FunctionLiteral* program) {
419
- Init();
420
- ExpressionStatement* statement =
421
- program->body()->at(0)->AsExpressionStatement();
422
- Visit(statement->expression());
423
- return output_;
424
- }
425
-
426
-
427
- const char* PrettyPrinter::PrintProgram(FunctionLiteral* program) {
428
- Init();
429
- PrintStatements(program->body());
430
- Print("\n");
431
- return output_;
432
- }
433
-
434
-
435
- void PrettyPrinter::PrintOut(AstNode* node) {
436
- PrettyPrinter printer;
437
- PrintF("%s", printer.Print(node));
438
- }
439
-
440
-
441
- void PrettyPrinter::Init() {
442
- if (size_ == 0) {
443
- ASSERT(output_ == NULL);
444
- const int initial_size = 256;
445
- output_ = NewArray<char>(initial_size);
446
- size_ = initial_size;
447
- }
448
- output_[0] = '\0';
449
- pos_ = 0;
450
- }
451
-
452
-
453
- void PrettyPrinter::Print(const char* format, ...) {
454
- for (;;) {
455
- va_list arguments;
456
- va_start(arguments, format);
457
- int n = OS::VSNPrintF(Vector<char>(output_, size_) + pos_,
458
- format,
459
- arguments);
460
- va_end(arguments);
461
-
462
- if (n >= 0) {
463
- // there was enough space - we are done
464
- pos_ += n;
465
- return;
466
- } else {
467
- // there was not enough space - allocate more and try again
468
- const int slack = 32;
469
- int new_size = size_ + (size_ >> 1) + slack;
470
- char* new_output = NewArray<char>(new_size);
471
- memcpy(new_output, output_, pos_);
472
- DeleteArray(output_);
473
- output_ = new_output;
474
- size_ = new_size;
475
- }
476
- }
477
- }
478
-
479
-
480
- void PrettyPrinter::PrintStatements(ZoneList<Statement*>* statements) {
481
- for (int i = 0; i < statements->length(); i++) {
482
- if (i != 0) Print(" ");
483
- Visit(statements->at(i));
484
- }
485
- }
486
-
487
-
488
- void PrettyPrinter::PrintLabels(ZoneStringList* labels) {
489
- if (labels != NULL) {
490
- for (int i = 0; i < labels->length(); i++) {
491
- PrintLiteral(labels->at(i), false);
492
- Print(": ");
493
- }
494
- }
495
- }
496
-
497
-
498
- void PrettyPrinter::PrintArguments(ZoneList<Expression*>* arguments) {
499
- Print("(");
500
- for (int i = 0; i < arguments->length(); i++) {
501
- if (i != 0) Print(", ");
502
- Visit(arguments->at(i));
503
- }
504
- Print(")");
505
- }
506
-
507
-
508
- void PrettyPrinter::PrintLiteral(Handle<Object> value, bool quote) {
509
- Object* object = *value;
510
- if (object->IsString()) {
511
- String* string = String::cast(object);
512
- if (quote) Print("\"");
513
- for (int i = 0; i < string->length(); i++) {
514
- Print("%c", string->Get(i));
515
- }
516
- if (quote) Print("\"");
517
- } else if (object == Heap::null_value()) {
518
- Print("null");
519
- } else if (object == Heap::true_value()) {
520
- Print("true");
521
- } else if (object == Heap::false_value()) {
522
- Print("false");
523
- } else if (object == Heap::undefined_value()) {
524
- Print("undefined");
525
- } else if (object->IsNumber()) {
526
- Print("%g", object->Number());
527
- } else if (object->IsJSObject()) {
528
- // regular expression
529
- if (object->IsJSFunction()) {
530
- Print("JS-Function");
531
- } else if (object->IsJSArray()) {
532
- Print("JS-array[%u]", JSArray::cast(object)->length());
533
- } else if (object->IsJSObject()) {
534
- Print("JS-Object");
535
- } else {
536
- Print("?UNKNOWN?");
537
- }
538
- } else if (object->IsFixedArray()) {
539
- Print("FixedArray");
540
- } else {
541
- Print("<unknown literal %p>", object);
542
- }
543
- }
544
-
545
-
546
- void PrettyPrinter::PrintParameters(Scope* scope) {
547
- Print("(");
548
- for (int i = 0; i < scope->num_parameters(); i++) {
549
- if (i > 0) Print(", ");
550
- PrintLiteral(scope->parameter(i)->name(), false);
551
- }
552
- Print(")");
553
- }
554
-
555
-
556
- void PrettyPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
557
- for (int i = 0; i < declarations->length(); i++) {
558
- if (i > 0) Print(" ");
559
- Visit(declarations->at(i));
560
- }
561
- }
562
-
563
-
564
- void PrettyPrinter::PrintFunctionLiteral(FunctionLiteral* function) {
565
- Print("function ");
566
- PrintLiteral(function->name(), false);
567
- PrintParameters(function->scope());
568
- Print(" { ");
569
- PrintDeclarations(function->scope()->declarations());
570
- PrintStatements(function->body());
571
- Print(" }");
572
- }
573
-
574
-
575
- void PrettyPrinter::PrintCaseClause(CaseClause* clause) {
576
- if (clause->is_default()) {
577
- Print("default");
578
- } else {
579
- Print("case ");
580
- Visit(clause->label());
581
- }
582
- Print(": ");
583
- PrintStatements(clause->statements());
584
- if (clause->statements()->length() > 0)
585
- Print(" ");
586
- }
587
-
588
-
589
- //-----------------------------------------------------------------------------
590
-
591
- class IndentedScope BASE_EMBEDDED {
592
- public:
593
- IndentedScope() {
594
- ast_printer_->inc_indent();
595
- }
596
-
597
- explicit IndentedScope(const char* txt, AstNode* node = NULL) {
598
- ast_printer_->PrintIndented(txt);
599
- if (node != NULL && node->AsExpression() != NULL) {
600
- Expression* expr = node->AsExpression();
601
- bool printed_first = false;
602
- if ((expr->type() != NULL) && (expr->type()->IsKnown())) {
603
- ast_printer_->Print(" (type = ");
604
- ast_printer_->Print(StaticType::Type2String(expr->type()));
605
- printed_first = true;
606
- }
607
- if (expr->num() != AstNode::kNoNumber) {
608
- ast_printer_->Print(printed_first ? ", num = " : " (num = ");
609
- ast_printer_->Print("%d", expr->num());
610
- printed_first = true;
611
- }
612
- if (printed_first) ast_printer_->Print(")");
613
- }
614
- ast_printer_->Print("\n");
615
- ast_printer_->inc_indent();
616
- }
617
-
618
- virtual ~IndentedScope() {
619
- ast_printer_->dec_indent();
620
- }
621
-
622
- static void SetAstPrinter(AstPrinter* a) { ast_printer_ = a; }
623
-
624
- private:
625
- static AstPrinter* ast_printer_;
626
- };
627
-
628
-
629
- AstPrinter* IndentedScope::ast_printer_ = NULL;
630
-
631
-
632
- //-----------------------------------------------------------------------------
633
-
634
- int AstPrinter::indent_ = 0;
635
-
636
-
637
- AstPrinter::AstPrinter() {
638
- ASSERT(indent_ == 0);
639
- IndentedScope::SetAstPrinter(this);
640
- }
641
-
642
-
643
- AstPrinter::~AstPrinter() {
644
- ASSERT(indent_ == 0);
645
- IndentedScope::SetAstPrinter(NULL);
646
- }
647
-
648
-
649
- void AstPrinter::PrintIndented(const char* txt) {
650
- for (int i = 0; i < indent_; i++) {
651
- Print(". ");
652
- }
653
- Print(txt);
654
- }
655
-
656
-
657
- void AstPrinter::PrintLiteralIndented(const char* info,
658
- Handle<Object> value,
659
- bool quote) {
660
- PrintIndented(info);
661
- Print(" ");
662
- PrintLiteral(value, quote);
663
- Print("\n");
664
- }
665
-
666
-
667
- void AstPrinter::PrintLiteralWithModeIndented(const char* info,
668
- Variable* var,
669
- Handle<Object> value,
670
- StaticType* type,
671
- int num,
672
- bool is_primitive) {
673
- if (var == NULL) {
674
- PrintLiteralIndented(info, value, true);
675
- } else {
676
- EmbeddedVector<char, 256> buf;
677
- int pos = OS::SNPrintF(buf, "%s (mode = %s", info,
678
- Variable::Mode2String(var->mode()));
679
- if (type->IsKnown()) {
680
- pos += OS::SNPrintF(buf + pos, ", type = %s",
681
- StaticType::Type2String(type));
682
- }
683
- if (num != AstNode::kNoNumber) {
684
- pos += OS::SNPrintF(buf + pos, ", num = %d", num);
685
- }
686
- pos += OS::SNPrintF(buf + pos,
687
- is_primitive ? ", primitive" : ", non-primitive");
688
- OS::SNPrintF(buf + pos, ")");
689
- PrintLiteralIndented(buf.start(), value, true);
690
- }
691
- }
692
-
693
-
694
- void AstPrinter::PrintLabelsIndented(const char* info, ZoneStringList* labels) {
695
- if (labels != NULL && labels->length() > 0) {
696
- if (info == NULL) {
697
- PrintIndented("LABELS ");
698
- } else {
699
- PrintIndented(info);
700
- Print(" ");
701
- }
702
- PrintLabels(labels);
703
- } else if (info != NULL) {
704
- PrintIndented(info);
705
- }
706
- Print("\n");
707
- }
708
-
709
-
710
- void AstPrinter::PrintIndentedVisit(const char* s, AstNode* node) {
711
- IndentedScope indent(s, node);
712
- Visit(node);
713
- }
714
-
715
-
716
- const char* AstPrinter::PrintProgram(FunctionLiteral* program) {
717
- Init();
718
- { IndentedScope indent("FUNC");
719
- PrintLiteralIndented("NAME", program->name(), true);
720
- PrintLiteralIndented("INFERRED NAME", program->inferred_name(), true);
721
- PrintParameters(program->scope());
722
- PrintDeclarations(program->scope()->declarations());
723
- PrintStatements(program->body());
724
- }
725
- return Output();
726
- }
727
-
728
-
729
- void AstPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
730
- if (declarations->length() > 0) {
731
- IndentedScope indent("DECLS");
732
- for (int i = 0; i < declarations->length(); i++) {
733
- Visit(declarations->at(i));
734
- }
735
- }
736
- }
737
-
738
-
739
- void AstPrinter::PrintParameters(Scope* scope) {
740
- if (scope->num_parameters() > 0) {
741
- IndentedScope indent("PARAMS");
742
- for (int i = 0; i < scope->num_parameters(); i++) {
743
- PrintLiteralWithModeIndented("VAR", scope->parameter(i),
744
- scope->parameter(i)->name(),
745
- scope->parameter(i)->type(),
746
- AstNode::kNoNumber,
747
- false);
748
- }
749
- }
750
- }
751
-
752
-
753
- void AstPrinter::PrintStatements(ZoneList<Statement*>* statements) {
754
- for (int i = 0; i < statements->length(); i++) {
755
- Visit(statements->at(i));
756
- }
757
- }
758
-
759
-
760
- void AstPrinter::PrintArguments(ZoneList<Expression*>* arguments) {
761
- for (int i = 0; i < arguments->length(); i++) {
762
- Visit(arguments->at(i));
763
- }
764
- }
765
-
766
-
767
- void AstPrinter::PrintCaseClause(CaseClause* clause) {
768
- if (clause->is_default()) {
769
- IndentedScope indent("DEFAULT");
770
- PrintStatements(clause->statements());
771
- } else {
772
- IndentedScope indent("CASE");
773
- Visit(clause->label());
774
- PrintStatements(clause->statements());
775
- }
776
- }
777
-
778
-
779
- void AstPrinter::VisitBlock(Block* node) {
780
- const char* block_txt = node->is_initializer_block() ? "BLOCK INIT" : "BLOCK";
781
- IndentedScope indent(block_txt);
782
- PrintStatements(node->statements());
783
- }
784
-
785
-
786
- void AstPrinter::VisitDeclaration(Declaration* node) {
787
- if (node->fun() == NULL) {
788
- // var or const declarations
789
- PrintLiteralWithModeIndented(Variable::Mode2String(node->mode()),
790
- node->proxy()->AsVariable(),
791
- node->proxy()->name(),
792
- node->proxy()->AsVariable()->type(),
793
- AstNode::kNoNumber,
794
- node->proxy()->IsPrimitive());
795
- } else {
796
- // function declarations
797
- PrintIndented("FUNCTION ");
798
- PrintLiteral(node->proxy()->name(), true);
799
- Print(" = function ");
800
- PrintLiteral(node->fun()->name(), false);
801
- Print("\n");
802
- }
803
- }
804
-
805
-
806
- void AstPrinter::VisitExpressionStatement(ExpressionStatement* node) {
807
- Visit(node->expression());
808
- }
809
-
810
-
811
- void AstPrinter::VisitEmptyStatement(EmptyStatement* node) {
812
- PrintIndented("EMPTY\n");
813
- }
814
-
815
-
816
- void AstPrinter::VisitIfStatement(IfStatement* node) {
817
- PrintIndentedVisit("IF", node->condition());
818
- PrintIndentedVisit("THEN", node->then_statement());
819
- if (node->HasElseStatement()) {
820
- PrintIndentedVisit("ELSE", node->else_statement());
821
- }
822
- }
823
-
824
-
825
- void AstPrinter::VisitContinueStatement(ContinueStatement* node) {
826
- PrintLabelsIndented("CONTINUE", node->target()->labels());
827
- }
828
-
829
-
830
- void AstPrinter::VisitBreakStatement(BreakStatement* node) {
831
- PrintLabelsIndented("BREAK", node->target()->labels());
832
- }
833
-
834
-
835
- void AstPrinter::VisitReturnStatement(ReturnStatement* node) {
836
- PrintIndentedVisit("RETURN", node->expression());
837
- }
838
-
839
-
840
- void AstPrinter::VisitWithEnterStatement(WithEnterStatement* node) {
841
- PrintIndentedVisit("WITH ENTER", node->expression());
842
- }
843
-
844
-
845
- void AstPrinter::VisitWithExitStatement(WithExitStatement* node) {
846
- PrintIndented("WITH EXIT\n");
847
- }
848
-
849
-
850
- void AstPrinter::VisitSwitchStatement(SwitchStatement* node) {
851
- IndentedScope indent("SWITCH");
852
- PrintLabelsIndented(NULL, node->labels());
853
- PrintIndentedVisit("TAG", node->tag());
854
- for (int i = 0; i < node->cases()->length(); i++) {
855
- PrintCaseClause(node->cases()->at(i));
856
- }
857
- }
858
-
859
-
860
- void AstPrinter::VisitDoWhileStatement(DoWhileStatement* node) {
861
- IndentedScope indent("DO");
862
- PrintLabelsIndented(NULL, node->labels());
863
- PrintIndentedVisit("BODY", node->body());
864
- PrintIndentedVisit("COND", node->cond());
865
- }
866
-
867
-
868
- void AstPrinter::VisitWhileStatement(WhileStatement* node) {
869
- IndentedScope indent("WHILE");
870
- PrintLabelsIndented(NULL, node->labels());
871
- PrintIndentedVisit("COND", node->cond());
872
- PrintIndentedVisit("BODY", node->body());
873
- }
874
-
875
-
876
- void AstPrinter::VisitForStatement(ForStatement* node) {
877
- IndentedScope indent("FOR");
878
- PrintLabelsIndented(NULL, node->labels());
879
- if (node->init()) PrintIndentedVisit("INIT", node->init());
880
- if (node->cond()) PrintIndentedVisit("COND", node->cond());
881
- PrintIndentedVisit("BODY", node->body());
882
- if (node->next()) PrintIndentedVisit("NEXT", node->next());
883
- }
884
-
885
-
886
- void AstPrinter::VisitForInStatement(ForInStatement* node) {
887
- IndentedScope indent("FOR IN");
888
- PrintIndentedVisit("FOR", node->each());
889
- PrintIndentedVisit("IN", node->enumerable());
890
- PrintIndentedVisit("BODY", node->body());
891
- }
892
-
893
-
894
- void AstPrinter::VisitTryCatchStatement(TryCatchStatement* node) {
895
- IndentedScope indent("TRY CATCH");
896
- PrintIndentedVisit("TRY", node->try_block());
897
- PrintIndentedVisit("CATCHVAR", node->catch_var());
898
- PrintIndentedVisit("CATCH", node->catch_block());
899
- }
900
-
901
-
902
- void AstPrinter::VisitTryFinallyStatement(TryFinallyStatement* node) {
903
- IndentedScope indent("TRY FINALLY");
904
- PrintIndentedVisit("TRY", node->try_block());
905
- PrintIndentedVisit("FINALLY", node->finally_block());
906
- }
907
-
908
-
909
- void AstPrinter::VisitDebuggerStatement(DebuggerStatement* node) {
910
- IndentedScope indent("DEBUGGER");
911
- }
912
-
913
-
914
- void AstPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
915
- IndentedScope indent("FUNC LITERAL");
916
- PrintLiteralIndented("NAME", node->name(), false);
917
- PrintLiteralIndented("INFERRED NAME", node->inferred_name(), false);
918
- PrintParameters(node->scope());
919
- // We don't want to see the function literal in this case: it
920
- // will be printed via PrintProgram when the code for it is
921
- // generated.
922
- // PrintStatements(node->body());
923
- }
924
-
925
-
926
- void AstPrinter::VisitSharedFunctionInfoLiteral(
927
- SharedFunctionInfoLiteral* node) {
928
- IndentedScope indent("FUNC LITERAL");
929
- PrintLiteralIndented("SHARED INFO", node->shared_function_info(), true);
930
- }
931
-
932
-
933
- void AstPrinter::VisitConditional(Conditional* node) {
934
- IndentedScope indent("CONDITIONAL");
935
- PrintIndentedVisit("?", node->condition());
936
- PrintIndentedVisit("THEN", node->then_expression());
937
- PrintIndentedVisit("ELSE", node->else_expression());
938
- }
939
-
940
-
941
- void AstPrinter::VisitLiteral(Literal* node) {
942
- PrintLiteralIndented("LITERAL", node->handle(), true);
943
- }
944
-
945
-
946
- void AstPrinter::VisitRegExpLiteral(RegExpLiteral* node) {
947
- IndentedScope indent("REGEXP LITERAL");
948
- PrintLiteralIndented("PATTERN", node->pattern(), false);
949
- PrintLiteralIndented("FLAGS", node->flags(), false);
950
- }
951
-
952
-
953
- void AstPrinter::VisitObjectLiteral(ObjectLiteral* node) {
954
- IndentedScope indent("OBJ LITERAL");
955
- for (int i = 0; i < node->properties()->length(); i++) {
956
- const char* prop_kind = NULL;
957
- switch (node->properties()->at(i)->kind()) {
958
- case ObjectLiteral::Property::CONSTANT:
959
- prop_kind = "PROPERTY - CONSTANT";
960
- break;
961
- case ObjectLiteral::Property::COMPUTED:
962
- prop_kind = "PROPERTY - COMPUTED";
963
- break;
964
- case ObjectLiteral::Property::MATERIALIZED_LITERAL:
965
- prop_kind = "PROPERTY - MATERIALIZED_LITERAL";
966
- break;
967
- case ObjectLiteral::Property::PROTOTYPE:
968
- prop_kind = "PROPERTY - PROTOTYPE";
969
- break;
970
- case ObjectLiteral::Property::GETTER:
971
- prop_kind = "PROPERTY - GETTER";
972
- break;
973
- case ObjectLiteral::Property::SETTER:
974
- prop_kind = "PROPERTY - SETTER";
975
- break;
976
- default:
977
- UNREACHABLE();
978
- }
979
- IndentedScope prop(prop_kind);
980
- PrintIndentedVisit("KEY", node->properties()->at(i)->key());
981
- PrintIndentedVisit("VALUE", node->properties()->at(i)->value());
982
- }
983
- }
984
-
985
-
986
- void AstPrinter::VisitArrayLiteral(ArrayLiteral* node) {
987
- IndentedScope indent("ARRAY LITERAL");
988
- if (node->values()->length() > 0) {
989
- IndentedScope indent("VALUES");
990
- for (int i = 0; i < node->values()->length(); i++) {
991
- Visit(node->values()->at(i));
992
- }
993
- }
994
- }
995
-
996
-
997
- void AstPrinter::VisitCatchExtensionObject(CatchExtensionObject* node) {
998
- IndentedScope indent("CatchExtensionObject");
999
- PrintIndentedVisit("KEY", node->key());
1000
- PrintIndentedVisit("VALUE", node->value());
1001
- }
1002
-
1003
-
1004
- void AstPrinter::VisitSlot(Slot* node) {
1005
- PrintIndented("SLOT ");
1006
- switch (node->type()) {
1007
- case Slot::PARAMETER:
1008
- Print("parameter[%d]", node->index());
1009
- break;
1010
- case Slot::LOCAL:
1011
- Print("frame[%d]", node->index());
1012
- break;
1013
- case Slot::CONTEXT:
1014
- Print(".context[%d]", node->index());
1015
- break;
1016
- case Slot::LOOKUP:
1017
- Print(".context[");
1018
- PrintLiteral(node->var()->name(), false);
1019
- Print("]");
1020
- break;
1021
- default:
1022
- UNREACHABLE();
1023
- }
1024
- Print("\n");
1025
- }
1026
-
1027
-
1028
- void AstPrinter::VisitVariableProxy(VariableProxy* node) {
1029
- PrintLiteralWithModeIndented("VAR PROXY", node->AsVariable(), node->name(),
1030
- node->type(), node->num(), node->IsPrimitive());
1031
- Variable* var = node->var();
1032
- if (var != NULL && var->rewrite() != NULL) {
1033
- IndentedScope indent;
1034
- Visit(var->rewrite());
1035
- }
1036
- }
1037
-
1038
-
1039
- void AstPrinter::VisitAssignment(Assignment* node) {
1040
- IndentedScope indent(Token::Name(node->op()), node);
1041
- Visit(node->target());
1042
- Visit(node->value());
1043
- }
1044
-
1045
-
1046
- void AstPrinter::VisitThrow(Throw* node) {
1047
- PrintIndentedVisit("THROW", node->exception());
1048
- }
1049
-
1050
-
1051
- void AstPrinter::VisitProperty(Property* node) {
1052
- IndentedScope indent("PROPERTY", node);
1053
- Visit(node->obj());
1054
- Literal* literal = node->key()->AsLiteral();
1055
- if (literal != NULL && literal->handle()->IsSymbol()) {
1056
- PrintLiteralIndented("NAME", literal->handle(), false);
1057
- } else {
1058
- PrintIndentedVisit("KEY", node->key());
1059
- }
1060
- }
1061
-
1062
-
1063
- void AstPrinter::VisitCall(Call* node) {
1064
- IndentedScope indent("CALL");
1065
- Visit(node->expression());
1066
- PrintArguments(node->arguments());
1067
- }
1068
-
1069
-
1070
- void AstPrinter::VisitCallNew(CallNew* node) {
1071
- IndentedScope indent("CALL NEW");
1072
- Visit(node->expression());
1073
- PrintArguments(node->arguments());
1074
- }
1075
-
1076
-
1077
- void AstPrinter::VisitCallRuntime(CallRuntime* node) {
1078
- PrintLiteralIndented("CALL RUNTIME ", node->name(), false);
1079
- IndentedScope indent;
1080
- PrintArguments(node->arguments());
1081
- }
1082
-
1083
-
1084
- void AstPrinter::VisitUnaryOperation(UnaryOperation* node) {
1085
- PrintIndentedVisit(Token::Name(node->op()), node->expression());
1086
- }
1087
-
1088
-
1089
- void AstPrinter::VisitCountOperation(CountOperation* node) {
1090
- EmbeddedVector<char, 128> buf;
1091
- if (node->type()->IsKnown()) {
1092
- OS::SNPrintF(buf, "%s %s (type = %s)",
1093
- (node->is_prefix() ? "PRE" : "POST"),
1094
- Token::Name(node->op()),
1095
- StaticType::Type2String(node->type()));
1096
- } else {
1097
- OS::SNPrintF(buf, "%s %s", (node->is_prefix() ? "PRE" : "POST"),
1098
- Token::Name(node->op()));
1099
- }
1100
- PrintIndentedVisit(buf.start(), node->expression());
1101
- }
1102
-
1103
-
1104
- void AstPrinter::VisitBinaryOperation(BinaryOperation* node) {
1105
- IndentedScope indent(Token::Name(node->op()), node);
1106
- Visit(node->left());
1107
- Visit(node->right());
1108
- }
1109
-
1110
-
1111
- void AstPrinter::VisitCompareOperation(CompareOperation* node) {
1112
- IndentedScope indent(Token::Name(node->op()), node);
1113
- Visit(node->left());
1114
- Visit(node->right());
1115
- }
1116
-
1117
-
1118
- void AstPrinter::VisitThisFunction(ThisFunction* node) {
1119
- IndentedScope indent("THIS-FUNCTION");
1120
- }
1121
-
1122
-
1123
- TagScope::TagScope(JsonAstBuilder* builder, const char* name)
1124
- : builder_(builder), next_(builder->tag()), has_body_(false) {
1125
- if (next_ != NULL) {
1126
- next_->use();
1127
- builder->Print(",\n");
1128
- }
1129
- builder->set_tag(this);
1130
- builder->PrintIndented("[");
1131
- builder->Print("\"%s\"", name);
1132
- builder->increase_indent(JsonAstBuilder::kTagIndentSize);
1133
- }
1134
-
1135
-
1136
- TagScope::~TagScope() {
1137
- builder_->decrease_indent(JsonAstBuilder::kTagIndentSize);
1138
- if (has_body_) {
1139
- builder_->Print("\n");
1140
- builder_->PrintIndented("]");
1141
- } else {
1142
- builder_->Print("]");
1143
- }
1144
- builder_->set_tag(next_);
1145
- }
1146
-
1147
-
1148
- AttributesScope::AttributesScope(JsonAstBuilder* builder)
1149
- : builder_(builder), attribute_count_(0) {
1150
- builder->set_attributes(this);
1151
- builder->tag()->use();
1152
- builder->Print(",\n");
1153
- builder->PrintIndented("{");
1154
- builder->increase_indent(JsonAstBuilder::kAttributesIndentSize);
1155
- }
1156
-
1157
-
1158
- AttributesScope::~AttributesScope() {
1159
- builder_->decrease_indent(JsonAstBuilder::kAttributesIndentSize);
1160
- if (attribute_count_ > 1) {
1161
- builder_->Print("\n");
1162
- builder_->PrintIndented("}");
1163
- } else {
1164
- builder_->Print("}");
1165
- }
1166
- builder_->set_attributes(NULL);
1167
- }
1168
-
1169
-
1170
- const char* JsonAstBuilder::BuildProgram(FunctionLiteral* program) {
1171
- Init();
1172
- Visit(program);
1173
- Print("\n");
1174
- return Output();
1175
- }
1176
-
1177
-
1178
- void JsonAstBuilder::AddAttributePrefix(const char* name) {
1179
- if (attributes()->is_used()) {
1180
- Print(",\n");
1181
- PrintIndented("\"");
1182
- } else {
1183
- Print("\"");
1184
- }
1185
- Print("%s\":", name);
1186
- attributes()->use();
1187
- }
1188
-
1189
-
1190
- void JsonAstBuilder::AddAttribute(const char* name, Handle<String> value) {
1191
- SmartPointer<char> value_string = value->ToCString();
1192
- AddAttributePrefix(name);
1193
- Print("\"%s\"", *value_string);
1194
- }
1195
-
1196
-
1197
- void JsonAstBuilder::AddAttribute(const char* name, const char* value) {
1198
- AddAttributePrefix(name);
1199
- Print("\"%s\"", value);
1200
- }
1201
-
1202
-
1203
- void JsonAstBuilder::AddAttribute(const char* name, int value) {
1204
- AddAttributePrefix(name);
1205
- Print("%d", value);
1206
- }
1207
-
1208
-
1209
- void JsonAstBuilder::AddAttribute(const char* name, bool value) {
1210
- AddAttributePrefix(name);
1211
- Print(value ? "true" : "false");
1212
- }
1213
-
1214
-
1215
- void JsonAstBuilder::VisitBlock(Block* stmt) {
1216
- TagScope tag(this, "Block");
1217
- VisitStatements(stmt->statements());
1218
- }
1219
-
1220
-
1221
- void JsonAstBuilder::VisitExpressionStatement(ExpressionStatement* stmt) {
1222
- TagScope tag(this, "ExpressionStatement");
1223
- Visit(stmt->expression());
1224
- }
1225
-
1226
-
1227
- void JsonAstBuilder::VisitEmptyStatement(EmptyStatement* stmt) {
1228
- TagScope tag(this, "EmptyStatement");
1229
- }
1230
-
1231
-
1232
- void JsonAstBuilder::VisitIfStatement(IfStatement* stmt) {
1233
- TagScope tag(this, "IfStatement");
1234
- Visit(stmt->condition());
1235
- Visit(stmt->then_statement());
1236
- Visit(stmt->else_statement());
1237
- }
1238
-
1239
-
1240
- void JsonAstBuilder::VisitContinueStatement(ContinueStatement* stmt) {
1241
- TagScope tag(this, "ContinueStatement");
1242
- }
1243
-
1244
-
1245
- void JsonAstBuilder::VisitBreakStatement(BreakStatement* stmt) {
1246
- TagScope tag(this, "BreakStatement");
1247
- }
1248
-
1249
-
1250
- void JsonAstBuilder::VisitReturnStatement(ReturnStatement* stmt) {
1251
- TagScope tag(this, "ReturnStatement");
1252
- Visit(stmt->expression());
1253
- }
1254
-
1255
-
1256
- void JsonAstBuilder::VisitWithEnterStatement(WithEnterStatement* stmt) {
1257
- TagScope tag(this, "WithEnterStatement");
1258
- Visit(stmt->expression());
1259
- }
1260
-
1261
-
1262
- void JsonAstBuilder::VisitWithExitStatement(WithExitStatement* stmt) {
1263
- TagScope tag(this, "WithExitStatement");
1264
- }
1265
-
1266
-
1267
- void JsonAstBuilder::VisitSwitchStatement(SwitchStatement* stmt) {
1268
- TagScope tag(this, "SwitchStatement");
1269
- }
1270
-
1271
-
1272
- void JsonAstBuilder::VisitDoWhileStatement(DoWhileStatement* stmt) {
1273
- TagScope tag(this, "DoWhileStatement");
1274
- Visit(stmt->body());
1275
- Visit(stmt->cond());
1276
- }
1277
-
1278
-
1279
- void JsonAstBuilder::VisitWhileStatement(WhileStatement* stmt) {
1280
- TagScope tag(this, "WhileStatement");
1281
- Visit(stmt->cond());
1282
- Visit(stmt->body());
1283
- }
1284
-
1285
-
1286
- void JsonAstBuilder::VisitForStatement(ForStatement* stmt) {
1287
- TagScope tag(this, "ForStatement");
1288
- if (stmt->init() != NULL) Visit(stmt->init());
1289
- if (stmt->cond() != NULL) Visit(stmt->cond());
1290
- Visit(stmt->body());
1291
- if (stmt->next() != NULL) Visit(stmt->next());
1292
- }
1293
-
1294
-
1295
- void JsonAstBuilder::VisitForInStatement(ForInStatement* stmt) {
1296
- TagScope tag(this, "ForInStatement");
1297
- Visit(stmt->each());
1298
- Visit(stmt->enumerable());
1299
- Visit(stmt->body());
1300
- }
1301
-
1302
-
1303
- void JsonAstBuilder::VisitTryCatchStatement(TryCatchStatement* stmt) {
1304
- TagScope tag(this, "TryCatchStatement");
1305
- Visit(stmt->try_block());
1306
- Visit(stmt->catch_var());
1307
- Visit(stmt->catch_block());
1308
- }
1309
-
1310
-
1311
- void JsonAstBuilder::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
1312
- TagScope tag(this, "TryFinallyStatement");
1313
- Visit(stmt->try_block());
1314
- Visit(stmt->finally_block());
1315
- }
1316
-
1317
-
1318
- void JsonAstBuilder::VisitDebuggerStatement(DebuggerStatement* stmt) {
1319
- TagScope tag(this, "DebuggerStatement");
1320
- }
1321
-
1322
-
1323
- void JsonAstBuilder::VisitFunctionLiteral(FunctionLiteral* expr) {
1324
- TagScope tag(this, "FunctionLiteral");
1325
- {
1326
- AttributesScope attributes(this);
1327
- AddAttribute("name", expr->name());
1328
- }
1329
- VisitDeclarations(expr->scope()->declarations());
1330
- VisitStatements(expr->body());
1331
- }
1332
-
1333
-
1334
- void JsonAstBuilder::VisitSharedFunctionInfoLiteral(
1335
- SharedFunctionInfoLiteral* expr) {
1336
- TagScope tag(this, "SharedFunctionInfoLiteral");
1337
- }
1338
-
1339
-
1340
- void JsonAstBuilder::VisitConditional(Conditional* expr) {
1341
- TagScope tag(this, "Conditional");
1342
- }
1343
-
1344
-
1345
- void JsonAstBuilder::VisitSlot(Slot* expr) {
1346
- TagScope tag(this, "Slot");
1347
- {
1348
- AttributesScope attributes(this);
1349
- switch (expr->type()) {
1350
- case Slot::PARAMETER:
1351
- AddAttribute("type", "PARAMETER");
1352
- break;
1353
- case Slot::LOCAL:
1354
- AddAttribute("type", "LOCAL");
1355
- break;
1356
- case Slot::CONTEXT:
1357
- AddAttribute("type", "CONTEXT");
1358
- break;
1359
- case Slot::LOOKUP:
1360
- AddAttribute("type", "LOOKUP");
1361
- break;
1362
- }
1363
- AddAttribute("index", expr->index());
1364
- }
1365
- }
1366
-
1367
-
1368
- void JsonAstBuilder::VisitVariableProxy(VariableProxy* expr) {
1369
- if (expr->var()->rewrite() == NULL) {
1370
- TagScope tag(this, "VariableProxy");
1371
- {
1372
- AttributesScope attributes(this);
1373
- AddAttribute("name", expr->name());
1374
- AddAttribute("mode", Variable::Mode2String(expr->var()->mode()));
1375
- }
1376
- } else {
1377
- Visit(expr->var()->rewrite());
1378
- }
1379
- }
1380
-
1381
-
1382
- void JsonAstBuilder::VisitLiteral(Literal* expr) {
1383
- TagScope tag(this, "Literal");
1384
- {
1385
- AttributesScope attributes(this);
1386
- Handle<Object> handle = expr->handle();
1387
- if (handle->IsString()) {
1388
- AddAttribute("handle", Handle<String>(String::cast(*handle)));
1389
- } else if (handle->IsSmi()) {
1390
- AddAttribute("handle", Smi::cast(*handle)->value());
1391
- }
1392
- }
1393
- }
1394
-
1395
-
1396
- void JsonAstBuilder::VisitRegExpLiteral(RegExpLiteral* expr) {
1397
- TagScope tag(this, "RegExpLiteral");
1398
- }
1399
-
1400
-
1401
- void JsonAstBuilder::VisitObjectLiteral(ObjectLiteral* expr) {
1402
- TagScope tag(this, "ObjectLiteral");
1403
- }
1404
-
1405
-
1406
- void JsonAstBuilder::VisitArrayLiteral(ArrayLiteral* expr) {
1407
- TagScope tag(this, "ArrayLiteral");
1408
- }
1409
-
1410
-
1411
- void JsonAstBuilder::VisitCatchExtensionObject(CatchExtensionObject* expr) {
1412
- TagScope tag(this, "CatchExtensionObject");
1413
- Visit(expr->key());
1414
- Visit(expr->value());
1415
- }
1416
-
1417
-
1418
- void JsonAstBuilder::VisitAssignment(Assignment* expr) {
1419
- TagScope tag(this, "Assignment");
1420
- {
1421
- AttributesScope attributes(this);
1422
- AddAttribute("op", Token::Name(expr->op()));
1423
- }
1424
- Visit(expr->target());
1425
- Visit(expr->value());
1426
- }
1427
-
1428
-
1429
- void JsonAstBuilder::VisitThrow(Throw* expr) {
1430
- TagScope tag(this, "Throw");
1431
- Visit(expr->exception());
1432
- }
1433
-
1434
-
1435
- void JsonAstBuilder::VisitProperty(Property* expr) {
1436
- TagScope tag(this, "Property");
1437
- {
1438
- AttributesScope attributes(this);
1439
- AddAttribute("type", expr->is_synthetic() ? "SYNTHETIC" : "NORMAL");
1440
- }
1441
- Visit(expr->obj());
1442
- Visit(expr->key());
1443
- }
1444
-
1445
-
1446
- void JsonAstBuilder::VisitCall(Call* expr) {
1447
- TagScope tag(this, "Call");
1448
- Visit(expr->expression());
1449
- VisitExpressions(expr->arguments());
1450
- }
1451
-
1452
-
1453
- void JsonAstBuilder::VisitCallNew(CallNew* expr) {
1454
- TagScope tag(this, "CallNew");
1455
- Visit(expr->expression());
1456
- VisitExpressions(expr->arguments());
1457
- }
1458
-
1459
-
1460
- void JsonAstBuilder::VisitCallRuntime(CallRuntime* expr) {
1461
- TagScope tag(this, "CallRuntime");
1462
- {
1463
- AttributesScope attributes(this);
1464
- AddAttribute("name", expr->name());
1465
- }
1466
- VisitExpressions(expr->arguments());
1467
- }
1468
-
1469
-
1470
- void JsonAstBuilder::VisitUnaryOperation(UnaryOperation* expr) {
1471
- TagScope tag(this, "UnaryOperation");
1472
- {
1473
- AttributesScope attributes(this);
1474
- AddAttribute("op", Token::Name(expr->op()));
1475
- }
1476
- Visit(expr->expression());
1477
- }
1478
-
1479
-
1480
- void JsonAstBuilder::VisitCountOperation(CountOperation* expr) {
1481
- TagScope tag(this, "CountOperation");
1482
- {
1483
- AttributesScope attributes(this);
1484
- AddAttribute("is_prefix", expr->is_prefix());
1485
- AddAttribute("op", Token::Name(expr->op()));
1486
- }
1487
- Visit(expr->expression());
1488
- }
1489
-
1490
-
1491
- void JsonAstBuilder::VisitBinaryOperation(BinaryOperation* expr) {
1492
- TagScope tag(this, "BinaryOperation");
1493
- {
1494
- AttributesScope attributes(this);
1495
- AddAttribute("op", Token::Name(expr->op()));
1496
- }
1497
- Visit(expr->left());
1498
- Visit(expr->right());
1499
- }
1500
-
1501
-
1502
- void JsonAstBuilder::VisitCompareOperation(CompareOperation* expr) {
1503
- TagScope tag(this, "CompareOperation");
1504
- {
1505
- AttributesScope attributes(this);
1506
- AddAttribute("op", Token::Name(expr->op()));
1507
- }
1508
- Visit(expr->left());
1509
- Visit(expr->right());
1510
- }
1511
-
1512
-
1513
- void JsonAstBuilder::VisitThisFunction(ThisFunction* expr) {
1514
- TagScope tag(this, "ThisFunction");
1515
- }
1516
-
1517
-
1518
- void JsonAstBuilder::VisitDeclaration(Declaration* decl) {
1519
- TagScope tag(this, "Declaration");
1520
- {
1521
- AttributesScope attributes(this);
1522
- AddAttribute("mode", Variable::Mode2String(decl->mode()));
1523
- }
1524
- Visit(decl->proxy());
1525
- if (decl->fun() != NULL) Visit(decl->fun());
1526
- }
1527
-
1528
-
1529
- #endif // DEBUG
1530
-
1531
- } } // namespace v8::internal