therubyracer 0.8.1.pre2 → 0.8.1

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

Potentially problematic release.


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

Files changed (877) hide show
  1. data/Changelog.md +2 -1
  2. data/README.md +6 -3
  3. data/ext/v8/upstream/3.1.8/.gitignore +31 -0
  4. data/ext/v8/upstream/3.1.8/AUTHORS +40 -0
  5. data/ext/v8/upstream/3.1.8/ChangeLog +2566 -0
  6. data/ext/v8/upstream/3.1.8/LICENSE +52 -0
  7. data/ext/v8/upstream/3.1.8/LICENSE.strongtalk +29 -0
  8. data/ext/v8/upstream/3.1.8/LICENSE.v8 +26 -0
  9. data/ext/v8/upstream/3.1.8/LICENSE.valgrind +45 -0
  10. data/ext/v8/upstream/3.1.8/SConstruct +1192 -0
  11. data/ext/v8/upstream/3.1.8/build/README.txt +25 -0
  12. data/ext/v8/upstream/3.1.8/build/all.gyp +18 -0
  13. data/ext/v8/upstream/3.1.8/build/armu.gypi +32 -0
  14. data/ext/v8/upstream/3.1.8/build/common.gypi +82 -0
  15. data/ext/v8/upstream/3.1.8/build/gyp_v8 +145 -0
  16. data/ext/v8/upstream/3.1.8/include/v8-debug.h +384 -0
  17. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +426 -0
  19. data/ext/v8/upstream/3.1.8/include/v8-testing.h +99 -0
  20. data/ext/v8/upstream/3.1.8/include/v8.h +3846 -0
  21. data/ext/v8/upstream/3.1.8/include/v8stdint.h +53 -0
  22. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +206 -0
  23. data/ext/v8/upstream/3.1.8/src/SConscript +356 -0
  24. data/ext/v8/upstream/3.1.8/src/accessors.cc +907 -0
  25. data/ext/v8/upstream/3.1.8/src/accessors.h +121 -0
  26. data/ext/v8/upstream/3.1.8/src/allocation.cc +204 -0
  27. data/ext/v8/upstream/3.1.8/src/allocation.h +176 -0
  28. data/ext/v8/upstream/3.1.8/src/api.cc +5191 -0
  29. data/ext/v8/upstream/3.1.8/src/api.h +508 -0
  30. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/apinatives.js +0 -0
  31. data/ext/v8/upstream/3.1.8/src/apiutils.h +80 -0
  32. data/ext/v8/upstream/3.1.8/src/arguments.h +105 -0
  33. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +352 -0
  34. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +2756 -0
  35. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +1294 -0
  36. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +1628 -0
  37. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +6783 -0
  38. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +657 -0
  39. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm-inl.h +48 -0
  40. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +7403 -0
  41. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +595 -0
  42. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.cc +152 -0
  43. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +769 -0
  44. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +147 -0
  45. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +315 -0
  46. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +700 -0
  47. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +1439 -0
  48. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.cc +45 -0
  49. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +168 -0
  50. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +4230 -0
  51. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +1799 -0
  52. data/ext/v8/upstream/3.1.8/src/arm/jump-target-arm.cc +174 -0
  53. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +2041 -0
  54. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +2046 -0
  55. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +3822 -0
  56. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +312 -0
  57. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +303 -0
  58. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.h +84 -0
  59. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +2701 -0
  60. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +1015 -0
  61. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +1280 -0
  62. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +252 -0
  63. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm-inl.h +0 -0
  64. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.cc +0 -0
  65. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.h +0 -0
  66. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +3165 -0
  67. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +402 -0
  68. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +4077 -0
  69. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/virtual-frame-arm-inl.h +0 -0
  70. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +843 -0
  71. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +520 -0
  72. data/ext/v8/upstream/3.1.8/src/array.js +1231 -0
  73. data/ext/v8/upstream/3.1.8/src/assembler.cc +973 -0
  74. data/ext/v8/upstream/3.1.8/src/assembler.h +787 -0
  75. data/ext/v8/upstream/3.1.8/src/ast-inl.h +107 -0
  76. data/ext/v8/upstream/3.1.8/src/ast.cc +1067 -0
  77. data/ext/v8/upstream/3.1.8/src/ast.h +2177 -0
  78. data/ext/v8/upstream/3.1.8/src/atomicops.h +165 -0
  79. data/ext/v8/upstream/3.1.8/src/atomicops_internals_arm_gcc.h +145 -0
  80. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.cc +126 -0
  81. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.h +287 -0
  82. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_macosx.h +301 -0
  83. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_msvc.h +203 -0
  84. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.cc +655 -0
  85. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.h +81 -0
  86. data/ext/v8/upstream/3.1.8/src/bignum.cc +768 -0
  87. data/ext/v8/upstream/3.1.8/src/bignum.h +140 -0
  88. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +1888 -0
  89. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/bootstrapper.h +0 -0
  90. data/ext/v8/upstream/3.1.8/src/builtins.cc +1586 -0
  91. data/ext/v8/upstream/3.1.8/src/builtins.h +339 -0
  92. data/ext/v8/upstream/3.1.8/src/bytecodes-irregexp.h +105 -0
  93. data/ext/v8/upstream/3.1.8/src/cached-powers.cc +177 -0
  94. data/ext/v8/upstream/3.1.8/src/cached-powers.h +65 -0
  95. data/ext/v8/upstream/3.1.8/src/char-predicates-inl.h +94 -0
  96. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/char-predicates.h +0 -0
  97. data/ext/v8/upstream/3.1.8/src/checks.cc +110 -0
  98. data/ext/v8/upstream/3.1.8/src/checks.h +292 -0
  99. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue-inl.h +0 -0
  100. data/ext/v8/upstream/3.1.8/src/circular-queue.cc +122 -0
  101. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue.h +0 -0
  102. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +230 -0
  103. data/ext/v8/upstream/3.1.8/src/code-stubs.h +950 -0
  104. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/code.h +0 -0
  105. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +64 -0
  106. data/ext/v8/upstream/3.1.8/src/codegen.cc +495 -0
  107. data/ext/v8/upstream/3.1.8/src/codegen.h +245 -0
  108. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +654 -0
  109. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +112 -0
  110. data/ext/v8/upstream/3.1.8/src/compiler.cc +806 -0
  111. data/ext/v8/upstream/3.1.8/src/compiler.h +290 -0
  112. data/ext/v8/upstream/3.1.8/src/contexts.cc +320 -0
  113. data/ext/v8/upstream/3.1.8/src/contexts.h +376 -0
  114. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/conversions-inl.h +0 -0
  115. data/ext/v8/upstream/3.1.8/src/conversions.cc +1069 -0
  116. data/ext/v8/upstream/3.1.8/src/conversions.h +122 -0
  117. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/counters.cc +0 -0
  118. data/ext/v8/upstream/3.1.8/src/counters.h +242 -0
  119. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +100 -0
  120. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +554 -0
  121. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +291 -0
  122. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/cpu.h +0 -0
  123. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +367 -0
  124. data/ext/v8/upstream/3.1.8/src/d8-debug.h +157 -0
  125. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-posix.cc +0 -0
  126. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-readline.cc +0 -0
  127. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-windows.cc +0 -0
  128. data/ext/v8/upstream/3.1.8/src/d8.cc +792 -0
  129. data/ext/v8/upstream/3.1.8/src/d8.gyp +85 -0
  130. data/ext/v8/upstream/3.1.8/src/d8.h +231 -0
  131. data/ext/v8/upstream/3.1.8/src/d8.js +2798 -0
  132. data/ext/v8/upstream/3.1.8/src/data-flow.cc +545 -0
  133. data/ext/v8/upstream/3.1.8/src/data-flow.h +379 -0
  134. data/ext/v8/upstream/3.1.8/src/date.js +1103 -0
  135. data/ext/v8/upstream/3.1.8/src/dateparser-inl.h +125 -0
  136. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/dateparser.cc +0 -0
  137. data/ext/v8/upstream/3.1.8/src/dateparser.h +263 -0
  138. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +446 -0
  139. data/ext/v8/upstream/3.1.8/src/debug-agent.h +131 -0
  140. data/ext/v8/upstream/3.1.8/src/debug-debugger.js +2569 -0
  141. data/ext/v8/upstream/3.1.8/src/debug.cc +3085 -0
  142. data/ext/v8/upstream/3.1.8/src/debug.h +1025 -0
  143. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +1185 -0
  144. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +529 -0
  145. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disasm.h +0 -0
  146. data/ext/v8/upstream/3.1.8/src/disassembler.cc +338 -0
  147. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disassembler.h +0 -0
  148. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.cc +0 -0
  149. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.h +0 -0
  150. data/ext/v8/upstream/3.1.8/src/double.h +238 -0
  151. data/ext/v8/upstream/3.1.8/src/dtoa.cc +103 -0
  152. data/ext/v8/upstream/3.1.8/src/dtoa.h +85 -0
  153. data/ext/v8/upstream/3.1.8/src/execution.cc +735 -0
  154. data/ext/v8/upstream/3.1.8/src/execution.h +322 -0
  155. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +53 -0
  156. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +264 -0
  157. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.h +64 -0
  158. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +141 -0
  159. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.h +50 -0
  160. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +58 -0
  161. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.h +49 -0
  162. data/ext/v8/upstream/3.1.8/src/factory.cc +1087 -0
  163. data/ext/v8/upstream/3.1.8/src/factory.h +432 -0
  164. data/ext/v8/upstream/3.1.8/src/fast-dtoa.cc +736 -0
  165. data/ext/v8/upstream/3.1.8/src/fast-dtoa.h +83 -0
  166. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.cc +0 -0
  167. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.h +0 -0
  168. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +552 -0
  169. data/ext/v8/upstream/3.1.8/src/flags.cc +551 -0
  170. data/ext/v8/upstream/3.1.8/src/flags.h +79 -0
  171. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/frame-element.cc +0 -0
  172. data/ext/v8/upstream/3.1.8/src/frame-element.h +277 -0
  173. data/ext/v8/upstream/3.1.8/src/frames-inl.h +210 -0
  174. data/ext/v8/upstream/3.1.8/src/frames.cc +1232 -0
  175. data/ext/v8/upstream/3.1.8/src/frames.h +826 -0
  176. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +1382 -0
  177. data/ext/v8/upstream/3.1.8/src/full-codegen.h +751 -0
  178. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +90 -0
  179. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +111 -0
  180. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +1547 -0
  181. data/ext/v8/upstream/3.1.8/src/gdb-jit.h +138 -0
  182. data/ext/v8/upstream/3.1.8/src/global-handles.cc +534 -0
  183. data/ext/v8/upstream/3.1.8/src/global-handles.h +181 -0
  184. data/ext/v8/upstream/3.1.8/src/globals.h +325 -0
  185. data/ext/v8/upstream/3.1.8/src/handles-inl.h +80 -0
  186. data/ext/v8/upstream/3.1.8/src/handles.cc +910 -0
  187. data/ext/v8/upstream/3.1.8/src/handles.h +424 -0
  188. data/ext/v8/upstream/3.1.8/src/hashmap.cc +230 -0
  189. data/ext/v8/upstream/3.1.8/src/hashmap.h +121 -0
  190. data/ext/v8/upstream/3.1.8/src/heap-inl.h +587 -0
  191. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +1128 -0
  192. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +381 -0
  193. data/ext/v8/upstream/3.1.8/src/heap.cc +5610 -0
  194. data/ext/v8/upstream/3.1.8/src/heap.h +2218 -0
  195. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +1490 -0
  196. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +3493 -0
  197. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +6056 -0
  198. data/ext/v8/upstream/3.1.8/src/hydrogen.h +1091 -0
  199. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +429 -0
  200. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +2800 -0
  201. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +1093 -0
  202. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +1590 -0
  203. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +6624 -0
  204. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +536 -0
  205. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/codegen-ia32-inl.h +0 -0
  206. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +10354 -0
  207. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +798 -0
  208. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +87 -0
  209. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +309 -0
  210. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +664 -0
  211. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +1597 -0
  212. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.cc +45 -0
  213. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +140 -0
  214. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +4278 -0
  215. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +1786 -0
  216. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/jump-target-ia32.cc +0 -0
  217. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +3880 -0
  218. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +309 -0
  219. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +460 -0
  220. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
  221. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +2095 -0
  222. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +2127 -0
  223. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +2031 -0
  224. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +798 -0
  225. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +1253 -0
  226. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +215 -0
  227. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  228. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.cc +0 -0
  229. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.h +0 -0
  230. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/simulator-ia32.cc +0 -0
  231. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +72 -0
  232. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +3732 -0
  233. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +1360 -0
  234. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +646 -0
  235. data/ext/v8/upstream/3.1.8/src/ic-inl.h +129 -0
  236. data/ext/v8/upstream/3.1.8/src/ic.cc +2333 -0
  237. data/ext/v8/upstream/3.1.8/src/ic.h +639 -0
  238. data/ext/v8/upstream/3.1.8/src/inspector.cc +63 -0
  239. data/ext/v8/upstream/3.1.8/src/inspector.h +62 -0
  240. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +655 -0
  241. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/interpreter-irregexp.h +0 -0
  242. data/ext/v8/upstream/3.1.8/src/json.js +342 -0
  243. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +5340 -0
  244. data/ext/v8/upstream/3.1.8/src/jsregexp.h +1484 -0
  245. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-heavy-inl.h +0 -0
  246. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +430 -0
  247. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +244 -0
  248. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-inl.h +0 -0
  249. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-light-inl.h +0 -0
  250. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +111 -0
  251. data/ext/v8/upstream/3.1.8/src/jump-target-light.h +193 -0
  252. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.cc +0 -0
  253. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.h +0 -0
  254. data/ext/v8/upstream/3.1.8/src/list-inl.h +206 -0
  255. data/ext/v8/upstream/3.1.8/src/list.h +164 -0
  256. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +140 -0
  257. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +2093 -0
  258. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +644 -0
  259. data/ext/v8/upstream/3.1.8/src/lithium.cc +168 -0
  260. data/ext/v8/upstream/3.1.8/src/lithium.h +592 -0
  261. data/ext/v8/upstream/3.1.8/src/liveedit-debugger.js +1082 -0
  262. data/ext/v8/upstream/3.1.8/src/liveedit.cc +1650 -0
  263. data/ext/v8/upstream/3.1.8/src/liveedit.h +174 -0
  264. data/ext/v8/upstream/3.1.8/src/liveobjectlist-inl.h +126 -0
  265. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +2527 -0
  266. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +322 -0
  267. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/log-inl.h +0 -0
  268. data/ext/v8/upstream/3.1.8/src/log-utils.cc +336 -0
  269. data/ext/v8/upstream/3.1.8/src/log-utils.h +232 -0
  270. data/ext/v8/upstream/3.1.8/src/log.cc +1608 -0
  271. data/ext/v8/upstream/3.1.8/src/log.h +379 -0
  272. data/ext/v8/upstream/3.1.8/src/macro-assembler.h +120 -0
  273. data/ext/v8/upstream/3.1.8/src/macros.py +178 -0
  274. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +2957 -0
  275. data/ext/v8/upstream/3.1.8/src/mark-compact.h +433 -0
  276. data/ext/v8/upstream/3.1.8/src/math.js +264 -0
  277. data/ext/v8/upstream/3.1.8/src/memory.h +82 -0
  278. data/ext/v8/upstream/3.1.8/src/messages.cc +164 -0
  279. data/ext/v8/upstream/3.1.8/src/messages.h +114 -0
  280. data/ext/v8/upstream/3.1.8/src/messages.js +1071 -0
  281. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips-inl.h +0 -0
  282. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips.cc +0 -0
  283. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +667 -0
  284. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +205 -0
  285. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips-inl.h +0 -0
  286. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips.cc +0 -0
  287. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +431 -0
  288. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.cc +0 -0
  289. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.h +0 -0
  290. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/cpu-mips.cc +0 -0
  291. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +127 -0
  292. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/disasm-mips.cc +0 -0
  293. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/fast-codegen-mips.cc +0 -0
  294. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +96 -0
  295. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/frames-mips.h +0 -0
  296. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/full-codegen-mips.cc +0 -0
  297. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +208 -0
  298. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/jump-target-mips.cc +0 -0
  299. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.cc +0 -0
  300. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.h +0 -0
  301. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips-inl.h +0 -0
  302. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.cc +0 -0
  303. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.h +0 -0
  304. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +1650 -0
  305. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +311 -0
  306. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +418 -0
  307. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.cc +0 -0
  308. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.h +0 -0
  309. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +2380 -0
  310. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mksnapshot.cc +0 -0
  311. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/natives.h +0 -0
  312. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +722 -0
  313. data/ext/v8/upstream/3.1.8/src/objects-inl.h +3946 -0
  314. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +801 -0
  315. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +142 -0
  316. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +401 -0
  317. data/ext/v8/upstream/3.1.8/src/objects.cc +10044 -0
  318. data/ext/v8/upstream/3.1.8/src/objects.h +6571 -0
  319. data/ext/v8/upstream/3.1.8/src/parser.cc +5165 -0
  320. data/ext/v8/upstream/3.1.8/src/parser.h +802 -0
  321. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +745 -0
  322. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +702 -0
  323. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +981 -0
  324. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +732 -0
  325. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +498 -0
  326. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +657 -0
  327. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +399 -0
  328. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +714 -0
  329. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +1974 -0
  330. data/ext/v8/upstream/3.1.8/src/platform.h +636 -0
  331. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +183 -0
  332. data/ext/v8/upstream/3.1.8/src/preparse-data.h +249 -0
  333. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +213 -0
  334. data/ext/v8/upstream/3.1.8/src/preparser.cc +1205 -0
  335. data/ext/v8/upstream/3.1.8/src/preparser.h +278 -0
  336. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +1539 -0
  337. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +223 -0
  338. data/ext/v8/upstream/3.1.8/src/profile-generator-inl.h +128 -0
  339. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +2899 -0
  340. data/ext/v8/upstream/3.1.8/src/profile-generator.h +1151 -0
  341. data/ext/v8/upstream/3.1.8/src/property.cc +96 -0
  342. data/ext/v8/upstream/3.1.8/src/property.h +337 -0
  343. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  344. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +470 -0
  345. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.h +142 -0
  346. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.cc +373 -0
  347. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.h +104 -0
  348. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +257 -0
  349. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +231 -0
  350. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.cc +0 -0
  351. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.h +0 -0
  352. data/ext/v8/upstream/3.1.8/src/regexp.js +483 -0
  353. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator-inl.h +0 -0
  354. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.cc +0 -0
  355. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.h +0 -0
  356. data/ext/v8/upstream/3.1.8/src/rewriter.cc +1023 -0
  357. data/ext/v8/upstream/3.1.8/src/rewriter.h +59 -0
  358. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +443 -0
  359. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +77 -0
  360. data/ext/v8/upstream/3.1.8/src/runtime.cc +11592 -0
  361. data/ext/v8/upstream/3.1.8/src/runtime.h +582 -0
  362. data/ext/v8/upstream/3.1.8/src/runtime.js +643 -0
  363. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +253 -0
  364. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +263 -0
  365. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +971 -0
  366. data/ext/v8/upstream/3.1.8/src/scanner-base.h +653 -0
  367. data/ext/v8/upstream/3.1.8/src/scanner.cc +586 -0
  368. data/ext/v8/upstream/3.1.8/src/scanner.h +194 -0
  369. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +636 -0
  370. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +238 -0
  371. data/ext/v8/upstream/3.1.8/src/scopes.cc +1063 -0
  372. data/ext/v8/upstream/3.1.8/src/scopes.h +494 -0
  373. data/ext/v8/upstream/3.1.8/src/serialize.cc +1535 -0
  374. data/ext/v8/upstream/3.1.8/src/serialize.h +584 -0
  375. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/shell.h +0 -0
  376. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/simulator.h +0 -0
  377. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/smart-pointer.h +0 -0
  378. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-common.cc +0 -0
  379. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-empty.cc +0 -0
  380. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot.h +0 -0
  381. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +524 -0
  382. data/ext/v8/upstream/3.1.8/src/spaces.cc +3254 -0
  383. data/ext/v8/upstream/3.1.8/src/spaces.h +2362 -0
  384. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree-inl.h +0 -0
  385. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree.h +0 -0
  386. data/ext/v8/upstream/3.1.8/src/string-search.cc +40 -0
  387. data/ext/v8/upstream/3.1.8/src/string-search.h +567 -0
  388. data/ext/v8/upstream/3.1.8/src/string-stream.cc +584 -0
  389. data/ext/v8/upstream/3.1.8/src/string-stream.h +191 -0
  390. data/ext/v8/upstream/3.1.8/src/string.js +915 -0
  391. data/ext/v8/upstream/3.1.8/src/strtod.cc +440 -0
  392. data/ext/v8/upstream/3.1.8/src/strtod.h +40 -0
  393. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +1878 -0
  394. data/ext/v8/upstream/3.1.8/src/stub-cache.h +849 -0
  395. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/third_party/valgrind/valgrind.h +0 -0
  396. data/ext/v8/upstream/3.1.8/src/token.cc +63 -0
  397. data/ext/v8/upstream/3.1.8/src/token.h +288 -0
  398. data/ext/v8/upstream/3.1.8/src/top.cc +1152 -0
  399. data/ext/v8/upstream/3.1.8/src/top.h +608 -0
  400. data/ext/v8/upstream/3.1.8/src/type-info.cc +406 -0
  401. data/ext/v8/upstream/3.1.8/src/type-info.h +283 -0
  402. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue-inl.h +0 -0
  403. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue.h +0 -0
  404. data/ext/v8/upstream/3.1.8/src/unicode-inl.h +238 -0
  405. data/ext/v8/upstream/3.1.8/src/unicode.cc +1624 -0
  406. data/ext/v8/upstream/3.1.8/src/unicode.h +280 -0
  407. data/ext/v8/upstream/3.1.8/src/uri.js +402 -0
  408. data/ext/v8/upstream/3.1.8/src/utils.cc +371 -0
  409. data/ext/v8/upstream/3.1.8/src/utils.h +793 -0
  410. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8-counters.cc +0 -0
  411. data/ext/v8/upstream/3.1.8/src/v8-counters.h +290 -0
  412. data/ext/v8/upstream/3.1.8/src/v8.cc +270 -0
  413. data/ext/v8/upstream/3.1.8/src/v8.h +127 -0
  414. data/ext/v8/upstream/3.1.8/src/v8checks.h +64 -0
  415. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8dll-main.cc +0 -0
  416. data/ext/v8/upstream/3.1.8/src/v8globals.h +480 -0
  417. data/ext/v8/upstream/3.1.8/src/v8natives.js +1252 -0
  418. data/ext/v8/upstream/3.1.8/src/v8preparserdll-main.cc +39 -0
  419. data/ext/v8/upstream/3.1.8/src/v8threads.cc +440 -0
  420. data/ext/v8/upstream/3.1.8/src/v8threads.h +157 -0
  421. data/ext/v8/upstream/3.1.8/src/v8utils.h +354 -0
  422. data/ext/v8/upstream/3.1.8/src/variables.cc +132 -0
  423. data/ext/v8/upstream/3.1.8/src/variables.h +212 -0
  424. data/ext/v8/upstream/3.1.8/src/version.cc +95 -0
  425. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/version.h +0 -0
  426. data/ext/v8/upstream/3.1.8/src/virtual-frame-heavy-inl.h +190 -0
  427. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-heavy.cc +0 -0
  428. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-inl.h +0 -0
  429. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light-inl.h +0 -0
  430. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light.cc +0 -0
  431. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame.cc +0 -0
  432. data/ext/v8/upstream/3.1.8/src/virtual-frame.h +59 -0
  433. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +134 -0
  434. data/ext/v8/upstream/3.1.8/src/vm-state.h +68 -0
  435. data/ext/v8/upstream/3.1.8/src/win32-headers.h +95 -0
  436. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +455 -0
  437. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +3162 -0
  438. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +1584 -0
  439. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +1492 -0
  440. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +5150 -0
  441. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +519 -0
  442. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64-inl.h +46 -0
  443. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +8835 -0
  444. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +750 -0
  445. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +86 -0
  446. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +316 -0
  447. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +781 -0
  448. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +1737 -0
  449. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.cc +45 -0
  450. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +130 -0
  451. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +3984 -0
  452. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +1761 -0
  453. data/ext/v8/upstream/3.1.8/src/x64/jump-target-x64.cc +437 -0
  454. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +3639 -0
  455. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +305 -0
  456. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.cc +320 -0
  457. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.h +74 -0
  458. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +2044 -0
  459. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +2052 -0
  460. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +2660 -0
  461. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +1852 -0
  462. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +1382 -0
  463. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +278 -0
  464. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64-inl.h +0 -0
  465. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.cc +0 -0
  466. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.h +0 -0
  467. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/simulator-x64.cc +0 -0
  468. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +71 -0
  469. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +3509 -0
  470. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +1292 -0
  471. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +593 -0
  472. data/ext/v8/upstream/3.1.8/src/zone-inl.h +83 -0
  473. data/ext/v8/upstream/3.1.8/src/zone.cc +195 -0
  474. data/ext/v8/upstream/3.1.8/src/zone.h +233 -0
  475. data/ext/v8/upstream/3.1.8/tools/codemap.js +265 -0
  476. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/consarray.js +0 -0
  477. data/ext/v8/upstream/3.1.8/tools/csvparser.js +78 -0
  478. data/ext/v8/upstream/3.1.8/tools/disasm.py +92 -0
  479. data/ext/v8/upstream/3.1.8/tools/gc-nvp-trace-processor.py +328 -0
  480. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/generate-ten-powers.scm +0 -0
  481. data/ext/v8/upstream/3.1.8/tools/grokdump.py +840 -0
  482. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +869 -0
  483. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/js2c.py +0 -0
  484. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/jsmin.py +0 -0
  485. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/linux-tick-processor +0 -0
  486. data/ext/v8/upstream/3.1.8/tools/ll_prof.py +919 -0
  487. data/ext/v8/upstream/3.1.8/tools/logreader.js +185 -0
  488. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-nm +0 -0
  489. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-tick-processor +0 -0
  490. data/ext/v8/upstream/3.1.8/tools/oom_dump/README +31 -0
  491. data/ext/v8/upstream/3.1.8/tools/oom_dump/SConstruct +42 -0
  492. data/ext/v8/upstream/3.1.8/tools/oom_dump/oom_dump.cc +288 -0
  493. data/ext/v8/upstream/3.1.8/tools/presubmit.py +305 -0
  494. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/process-heap-prof.py +0 -0
  495. data/ext/v8/upstream/3.1.8/tools/profile.js +751 -0
  496. data/ext/v8/upstream/3.1.8/tools/profile_view.js +219 -0
  497. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/run-valgrind.py +0 -0
  498. data/ext/v8/upstream/3.1.8/tools/splaytree.js +316 -0
  499. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/stats-viewer.py +0 -0
  500. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/tickprocessor-driver.js +0 -0
  501. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +863 -0
  502. data/ext/v8/upstream/3.1.8/tools/utils.py +96 -0
  503. data/ext/v8/upstream/3.1.8/tools/visual_studio/README.txt +70 -0
  504. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/arm.vsprops +0 -0
  505. data/ext/v8/upstream/3.1.8/tools/visual_studio/common.vsprops +34 -0
  506. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8.vcproj +0 -0
  507. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_arm.vcproj +0 -0
  508. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_x64.vcproj +0 -0
  509. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8js2c.cmd +0 -0
  510. data/ext/v8/upstream/3.1.8/tools/visual_studio/debug.vsprops +17 -0
  511. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/ia32.vsprops +0 -0
  512. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/js2c.cmd +0 -0
  513. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/release.vsprops +0 -0
  514. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.sln +0 -0
  515. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.vcproj +0 -0
  516. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.sln +0 -0
  517. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.vcproj +0 -0
  518. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +1296 -0
  519. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +1234 -0
  520. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +1296 -0
  521. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  522. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  523. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  524. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  525. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  526. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  527. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  528. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  529. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample.vcproj +147 -0
  530. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_arm.vcproj +147 -0
  531. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_x64.vcproj +163 -0
  532. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  533. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  534. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  535. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  536. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.sln +0 -0
  537. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.vcproj +0 -0
  538. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/x64.vsprops +0 -0
  539. data/ext/v8/upstream/3.1.8/tools/windows-tick-processor.bat +30 -0
  540. data/ext/v8/upstream/Makefile +2 -1
  541. data/ext/v8/v8_template.cpp +2 -2
  542. data/lib/v8/version.rb +1 -1
  543. data/spec/redjs/jsapi_spec.rb +2 -2
  544. metadata +552 -490
  545. data/ext/v8/upstream/2.3.3/.gitignore +0 -26
  546. data/ext/v8/upstream/2.3.3/AUTHORS +0 -31
  547. data/ext/v8/upstream/2.3.3/ChangeLog +0 -1916
  548. data/ext/v8/upstream/2.3.3/LICENSE +0 -55
  549. data/ext/v8/upstream/2.3.3/SConstruct +0 -1154
  550. data/ext/v8/upstream/2.3.3/include/v8-debug.h +0 -381
  551. data/ext/v8/upstream/2.3.3/include/v8-profiler.h +0 -353
  552. data/ext/v8/upstream/2.3.3/include/v8.h +0 -3616
  553. data/ext/v8/upstream/2.3.3/src/SConscript +0 -330
  554. data/ext/v8/upstream/2.3.3/src/accessors.cc +0 -661
  555. data/ext/v8/upstream/2.3.3/src/accessors.h +0 -114
  556. data/ext/v8/upstream/2.3.3/src/allocation.cc +0 -198
  557. data/ext/v8/upstream/2.3.3/src/allocation.h +0 -169
  558. data/ext/v8/upstream/2.3.3/src/api.cc +0 -4795
  559. data/ext/v8/upstream/2.3.3/src/api.h +0 -485
  560. data/ext/v8/upstream/2.3.3/src/apiutils.h +0 -69
  561. data/ext/v8/upstream/2.3.3/src/arguments.h +0 -96
  562. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm-inl.h +0 -305
  563. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.cc +0 -2580
  564. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.h +0 -1275
  565. data/ext/v8/upstream/2.3.3/src/arm/builtins-arm.cc +0 -1320
  566. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm-inl.h +0 -48
  567. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.cc +0 -11398
  568. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.h +0 -1102
  569. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.cc +0 -154
  570. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.h +0 -388
  571. data/ext/v8/upstream/2.3.3/src/arm/cpu-arm.cc +0 -142
  572. data/ext/v8/upstream/2.3.3/src/arm/debug-arm.cc +0 -309
  573. data/ext/v8/upstream/2.3.3/src/arm/disasm-arm.cc +0 -1459
  574. data/ext/v8/upstream/2.3.3/src/arm/fast-codegen-arm.cc +0 -241
  575. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.cc +0 -123
  576. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.h +0 -162
  577. data/ext/v8/upstream/2.3.3/src/arm/full-codegen-arm.cc +0 -3178
  578. data/ext/v8/upstream/2.3.3/src/arm/ic-arm.cc +0 -2258
  579. data/ext/v8/upstream/2.3.3/src/arm/jump-target-arm.cc +0 -164
  580. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.cc +0 -1892
  581. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.h +0 -727
  582. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.cc +0 -1261
  583. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.h +0 -266
  584. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.cc +0 -2822
  585. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.h +0 -361
  586. data/ext/v8/upstream/2.3.3/src/arm/stub-cache-arm.cc +0 -2387
  587. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.cc +0 -834
  588. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.h +0 -519
  589. data/ext/v8/upstream/2.3.3/src/array.js +0 -1127
  590. data/ext/v8/upstream/2.3.3/src/assembler.cc +0 -801
  591. data/ext/v8/upstream/2.3.3/src/assembler.h +0 -573
  592. data/ext/v8/upstream/2.3.3/src/ast-inl.h +0 -81
  593. data/ext/v8/upstream/2.3.3/src/ast.cc +0 -1152
  594. data/ext/v8/upstream/2.3.3/src/ast.h +0 -2106
  595. data/ext/v8/upstream/2.3.3/src/bootstrapper.cc +0 -1819
  596. data/ext/v8/upstream/2.3.3/src/builtins.cc +0 -1529
  597. data/ext/v8/upstream/2.3.3/src/builtins.h +0 -263
  598. data/ext/v8/upstream/2.3.3/src/bytecodes-irregexp.h +0 -104
  599. data/ext/v8/upstream/2.3.3/src/cached-powers.h +0 -119
  600. data/ext/v8/upstream/2.3.3/src/char-predicates-inl.h +0 -86
  601. data/ext/v8/upstream/2.3.3/src/checks.cc +0 -100
  602. data/ext/v8/upstream/2.3.3/src/checks.h +0 -310
  603. data/ext/v8/upstream/2.3.3/src/circular-queue.cc +0 -121
  604. data/ext/v8/upstream/2.3.3/src/code-stubs.cc +0 -177
  605. data/ext/v8/upstream/2.3.3/src/code-stubs.h +0 -177
  606. data/ext/v8/upstream/2.3.3/src/codegen-inl.h +0 -60
  607. data/ext/v8/upstream/2.3.3/src/codegen.cc +0 -516
  608. data/ext/v8/upstream/2.3.3/src/codegen.h +0 -897
  609. data/ext/v8/upstream/2.3.3/src/compilation-cache.cc +0 -562
  610. data/ext/v8/upstream/2.3.3/src/compilation-cache.h +0 -102
  611. data/ext/v8/upstream/2.3.3/src/compiler.cc +0 -654
  612. data/ext/v8/upstream/2.3.3/src/compiler.h +0 -299
  613. data/ext/v8/upstream/2.3.3/src/contexts.cc +0 -256
  614. data/ext/v8/upstream/2.3.3/src/contexts.h +0 -342
  615. data/ext/v8/upstream/2.3.3/src/conversions.cc +0 -1119
  616. data/ext/v8/upstream/2.3.3/src/conversions.h +0 -123
  617. data/ext/v8/upstream/2.3.3/src/counters.h +0 -239
  618. data/ext/v8/upstream/2.3.3/src/cpu-profiler-inl.h +0 -100
  619. data/ext/v8/upstream/2.3.3/src/cpu-profiler.cc +0 -538
  620. data/ext/v8/upstream/2.3.3/src/cpu-profiler.h +0 -285
  621. data/ext/v8/upstream/2.3.3/src/d8-debug.cc +0 -356
  622. data/ext/v8/upstream/2.3.3/src/d8-debug.h +0 -155
  623. data/ext/v8/upstream/2.3.3/src/d8.cc +0 -783
  624. data/ext/v8/upstream/2.3.3/src/d8.h +0 -227
  625. data/ext/v8/upstream/2.3.3/src/d8.js +0 -1683
  626. data/ext/v8/upstream/2.3.3/src/data-flow.cc +0 -758
  627. data/ext/v8/upstream/2.3.3/src/data-flow.h +0 -278
  628. data/ext/v8/upstream/2.3.3/src/date.js +0 -1059
  629. data/ext/v8/upstream/2.3.3/src/dateparser-inl.h +0 -123
  630. data/ext/v8/upstream/2.3.3/src/dateparser.h +0 -244
  631. data/ext/v8/upstream/2.3.3/src/debug-agent.cc +0 -427
  632. data/ext/v8/upstream/2.3.3/src/debug-agent.h +0 -129
  633. data/ext/v8/upstream/2.3.3/src/debug-debugger.js +0 -2227
  634. data/ext/v8/upstream/2.3.3/src/debug.cc +0 -3005
  635. data/ext/v8/upstream/2.3.3/src/debug.h +0 -993
  636. data/ext/v8/upstream/2.3.3/src/disassembler.cc +0 -312
  637. data/ext/v8/upstream/2.3.3/src/double.h +0 -169
  638. data/ext/v8/upstream/2.3.3/src/dtoa-config.c +0 -92
  639. data/ext/v8/upstream/2.3.3/src/dtoa.cc +0 -77
  640. data/ext/v8/upstream/2.3.3/src/dtoa.h +0 -81
  641. data/ext/v8/upstream/2.3.3/src/execution.cc +0 -809
  642. data/ext/v8/upstream/2.3.3/src/execution.h +0 -336
  643. data/ext/v8/upstream/2.3.3/src/factory.cc +0 -1003
  644. data/ext/v8/upstream/2.3.3/src/factory.h +0 -410
  645. data/ext/v8/upstream/2.3.3/src/fast-codegen.cc +0 -746
  646. data/ext/v8/upstream/2.3.3/src/fast-codegen.h +0 -161
  647. data/ext/v8/upstream/2.3.3/src/fast-dtoa.cc +0 -505
  648. data/ext/v8/upstream/2.3.3/src/fast-dtoa.h +0 -58
  649. data/ext/v8/upstream/2.3.3/src/flag-definitions.h +0 -455
  650. data/ext/v8/upstream/2.3.3/src/flags.cc +0 -551
  651. data/ext/v8/upstream/2.3.3/src/flags.h +0 -81
  652. data/ext/v8/upstream/2.3.3/src/flow-graph.cc +0 -763
  653. data/ext/v8/upstream/2.3.3/src/flow-graph.h +0 -180
  654. data/ext/v8/upstream/2.3.3/src/frame-element.h +0 -273
  655. data/ext/v8/upstream/2.3.3/src/frames-inl.h +0 -217
  656. data/ext/v8/upstream/2.3.3/src/frames.cc +0 -826
  657. data/ext/v8/upstream/2.3.3/src/frames.h +0 -682
  658. data/ext/v8/upstream/2.3.3/src/full-codegen.cc +0 -1443
  659. data/ext/v8/upstream/2.3.3/src/full-codegen.h +0 -548
  660. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.cc +0 -76
  661. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.h +0 -135
  662. data/ext/v8/upstream/2.3.3/src/global-handles.cc +0 -520
  663. data/ext/v8/upstream/2.3.3/src/global-handles.h +0 -180
  664. data/ext/v8/upstream/2.3.3/src/globals.h +0 -669
  665. data/ext/v8/upstream/2.3.3/src/handles-inl.h +0 -76
  666. data/ext/v8/upstream/2.3.3/src/handles.cc +0 -825
  667. data/ext/v8/upstream/2.3.3/src/handles.h +0 -393
  668. data/ext/v8/upstream/2.3.3/src/hashmap.cc +0 -226
  669. data/ext/v8/upstream/2.3.3/src/hashmap.h +0 -120
  670. data/ext/v8/upstream/2.3.3/src/heap-inl.h +0 -493
  671. data/ext/v8/upstream/2.3.3/src/heap-profiler.cc +0 -779
  672. data/ext/v8/upstream/2.3.3/src/heap-profiler.h +0 -323
  673. data/ext/v8/upstream/2.3.3/src/heap.cc +0 -4994
  674. data/ext/v8/upstream/2.3.3/src/heap.h +0 -1984
  675. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32-inl.h +0 -360
  676. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.cc +0 -2600
  677. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.h +0 -969
  678. data/ext/v8/upstream/2.3.3/src/ia32/builtins-ia32.cc +0 -1261
  679. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.cc +0 -13968
  680. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.h +0 -1097
  681. data/ext/v8/upstream/2.3.3/src/ia32/cpu-ia32.cc +0 -83
  682. data/ext/v8/upstream/2.3.3/src/ia32/debug-ia32.cc +0 -309
  683. data/ext/v8/upstream/2.3.3/src/ia32/disasm-ia32.cc +0 -1471
  684. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.cc +0 -954
  685. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.h +0 -155
  686. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.cc +0 -115
  687. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.h +0 -135
  688. data/ext/v8/upstream/2.3.3/src/ia32/full-codegen-ia32.cc +0 -3281
  689. data/ext/v8/upstream/2.3.3/src/ia32/ic-ia32.cc +0 -1966
  690. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.cc +0 -1610
  691. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.h +0 -610
  692. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.cc +0 -1247
  693. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.h +0 -214
  694. data/ext/v8/upstream/2.3.3/src/ia32/simulator-ia32.h +0 -62
  695. data/ext/v8/upstream/2.3.3/src/ia32/stub-cache-ia32.cc +0 -2750
  696. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.cc +0 -1334
  697. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.h +0 -627
  698. data/ext/v8/upstream/2.3.3/src/ic-inl.h +0 -120
  699. data/ext/v8/upstream/2.3.3/src/ic.cc +0 -1827
  700. data/ext/v8/upstream/2.3.3/src/ic.h +0 -515
  701. data/ext/v8/upstream/2.3.3/src/interpreter-irregexp.cc +0 -646
  702. data/ext/v8/upstream/2.3.3/src/json.js +0 -268
  703. data/ext/v8/upstream/2.3.3/src/jsregexp.cc +0 -5283
  704. data/ext/v8/upstream/2.3.3/src/jsregexp.h +0 -1463
  705. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.cc +0 -429
  706. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.h +0 -244
  707. data/ext/v8/upstream/2.3.3/src/jump-target-light.cc +0 -110
  708. data/ext/v8/upstream/2.3.3/src/jump-target-light.h +0 -192
  709. data/ext/v8/upstream/2.3.3/src/list-inl.h +0 -166
  710. data/ext/v8/upstream/2.3.3/src/list.h +0 -159
  711. data/ext/v8/upstream/2.3.3/src/liveedit-debugger.js +0 -1057
  712. data/ext/v8/upstream/2.3.3/src/liveedit.cc +0 -1480
  713. data/ext/v8/upstream/2.3.3/src/liveedit.h +0 -170
  714. data/ext/v8/upstream/2.3.3/src/log-utils.cc +0 -497
  715. data/ext/v8/upstream/2.3.3/src/log-utils.h +0 -289
  716. data/ext/v8/upstream/2.3.3/src/log.cc +0 -1561
  717. data/ext/v8/upstream/2.3.3/src/log.h +0 -384
  718. data/ext/v8/upstream/2.3.3/src/macro-assembler.h +0 -86
  719. data/ext/v8/upstream/2.3.3/src/macros.py +0 -177
  720. data/ext/v8/upstream/2.3.3/src/mark-compact.cc +0 -2330
  721. data/ext/v8/upstream/2.3.3/src/mark-compact.h +0 -451
  722. data/ext/v8/upstream/2.3.3/src/math.js +0 -264
  723. data/ext/v8/upstream/2.3.3/src/memory.h +0 -74
  724. data/ext/v8/upstream/2.3.3/src/messages.cc +0 -183
  725. data/ext/v8/upstream/2.3.3/src/messages.h +0 -113
  726. data/ext/v8/upstream/2.3.3/src/messages.js +0 -982
  727. data/ext/v8/upstream/2.3.3/src/mips/assembler-mips.h +0 -668
  728. data/ext/v8/upstream/2.3.3/src/mips/builtins-mips.cc +0 -205
  729. data/ext/v8/upstream/2.3.3/src/mips/codegen-mips.h +0 -434
  730. data/ext/v8/upstream/2.3.3/src/mips/debug-mips.cc +0 -131
  731. data/ext/v8/upstream/2.3.3/src/mips/frames-mips.cc +0 -102
  732. data/ext/v8/upstream/2.3.3/src/mips/ic-mips.cc +0 -220
  733. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.cc +0 -1651
  734. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.h +0 -311
  735. data/ext/v8/upstream/2.3.3/src/mips/stub-cache-mips.cc +0 -403
  736. data/ext/v8/upstream/2.3.3/src/mirror-debugger.js +0 -2380
  737. data/ext/v8/upstream/2.3.3/src/objects-debug.cc +0 -1366
  738. data/ext/v8/upstream/2.3.3/src/objects-inl.h +0 -3333
  739. data/ext/v8/upstream/2.3.3/src/objects.cc +0 -8820
  740. data/ext/v8/upstream/2.3.3/src/objects.h +0 -5373
  741. data/ext/v8/upstream/2.3.3/src/oprofile-agent.cc +0 -108
  742. data/ext/v8/upstream/2.3.3/src/oprofile-agent.h +0 -77
  743. data/ext/v8/upstream/2.3.3/src/parser.cc +0 -5207
  744. data/ext/v8/upstream/2.3.3/src/parser.h +0 -197
  745. data/ext/v8/upstream/2.3.3/src/platform-freebsd.cc +0 -667
  746. data/ext/v8/upstream/2.3.3/src/platform-linux.cc +0 -862
  747. data/ext/v8/upstream/2.3.3/src/platform-macos.cc +0 -665
  748. data/ext/v8/upstream/2.3.3/src/platform-nullos.cc +0 -454
  749. data/ext/v8/upstream/2.3.3/src/platform-openbsd.cc +0 -622
  750. data/ext/v8/upstream/2.3.3/src/platform-posix.cc +0 -362
  751. data/ext/v8/upstream/2.3.3/src/platform-solaris.cc +0 -653
  752. data/ext/v8/upstream/2.3.3/src/platform-win32.cc +0 -1911
  753. data/ext/v8/upstream/2.3.3/src/platform.h +0 -577
  754. data/ext/v8/upstream/2.3.3/src/powers-ten.h +0 -2461
  755. data/ext/v8/upstream/2.3.3/src/prettyprinter.cc +0 -1531
  756. data/ext/v8/upstream/2.3.3/src/prettyprinter.h +0 -221
  757. data/ext/v8/upstream/2.3.3/src/profile-generator-inl.h +0 -148
  758. data/ext/v8/upstream/2.3.3/src/profile-generator.cc +0 -1830
  759. data/ext/v8/upstream/2.3.3/src/profile-generator.h +0 -853
  760. data/ext/v8/upstream/2.3.3/src/property.cc +0 -96
  761. data/ext/v8/upstream/2.3.3/src/property.h +0 -315
  762. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.cc +0 -464
  763. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.h +0 -141
  764. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.cc +0 -356
  765. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.h +0 -103
  766. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.cc +0 -261
  767. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.h +0 -228
  768. data/ext/v8/upstream/2.3.3/src/regexp.js +0 -549
  769. data/ext/v8/upstream/2.3.3/src/rewriter.cc +0 -1038
  770. data/ext/v8/upstream/2.3.3/src/rewriter.h +0 -54
  771. data/ext/v8/upstream/2.3.3/src/runtime.cc +0 -10599
  772. data/ext/v8/upstream/2.3.3/src/runtime.h +0 -459
  773. data/ext/v8/upstream/2.3.3/src/runtime.js +0 -629
  774. data/ext/v8/upstream/2.3.3/src/scanner.cc +0 -1346
  775. data/ext/v8/upstream/2.3.3/src/scanner.h +0 -503
  776. data/ext/v8/upstream/2.3.3/src/scopeinfo.cc +0 -637
  777. data/ext/v8/upstream/2.3.3/src/scopeinfo.h +0 -233
  778. data/ext/v8/upstream/2.3.3/src/scopes.cc +0 -962
  779. data/ext/v8/upstream/2.3.3/src/scopes.h +0 -400
  780. data/ext/v8/upstream/2.3.3/src/serialize.cc +0 -1461
  781. data/ext/v8/upstream/2.3.3/src/serialize.h +0 -581
  782. data/ext/v8/upstream/2.3.3/src/spaces-inl.h +0 -483
  783. data/ext/v8/upstream/2.3.3/src/spaces.cc +0 -2901
  784. data/ext/v8/upstream/2.3.3/src/spaces.h +0 -2197
  785. data/ext/v8/upstream/2.3.3/src/string-stream.cc +0 -584
  786. data/ext/v8/upstream/2.3.3/src/string-stream.h +0 -189
  787. data/ext/v8/upstream/2.3.3/src/string.js +0 -1006
  788. data/ext/v8/upstream/2.3.3/src/stub-cache.cc +0 -1379
  789. data/ext/v8/upstream/2.3.3/src/stub-cache.h +0 -756
  790. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/COPYING +0 -15
  791. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/dtoa.c +0 -3334
  792. data/ext/v8/upstream/2.3.3/src/token.cc +0 -56
  793. data/ext/v8/upstream/2.3.3/src/token.h +0 -270
  794. data/ext/v8/upstream/2.3.3/src/top.cc +0 -1067
  795. data/ext/v8/upstream/2.3.3/src/top.h +0 -463
  796. data/ext/v8/upstream/2.3.3/src/type-info.cc +0 -53
  797. data/ext/v8/upstream/2.3.3/src/type-info.h +0 -244
  798. data/ext/v8/upstream/2.3.3/src/unicode-inl.h +0 -238
  799. data/ext/v8/upstream/2.3.3/src/unicode.cc +0 -749
  800. data/ext/v8/upstream/2.3.3/src/unicode.h +0 -279
  801. data/ext/v8/upstream/2.3.3/src/uri.js +0 -415
  802. data/ext/v8/upstream/2.3.3/src/utils.cc +0 -285
  803. data/ext/v8/upstream/2.3.3/src/utils.h +0 -745
  804. data/ext/v8/upstream/2.3.3/src/v8-counters.h +0 -250
  805. data/ext/v8/upstream/2.3.3/src/v8.cc +0 -228
  806. data/ext/v8/upstream/2.3.3/src/v8.h +0 -121
  807. data/ext/v8/upstream/2.3.3/src/v8natives.js +0 -1188
  808. data/ext/v8/upstream/2.3.3/src/v8threads.cc +0 -461
  809. data/ext/v8/upstream/2.3.3/src/v8threads.h +0 -159
  810. data/ext/v8/upstream/2.3.3/src/variables.cc +0 -119
  811. data/ext/v8/upstream/2.3.3/src/variables.h +0 -205
  812. data/ext/v8/upstream/2.3.3/src/version.cc +0 -88
  813. data/ext/v8/upstream/2.3.3/src/virtual-frame-heavy-inl.h +0 -192
  814. data/ext/v8/upstream/2.3.3/src/virtual-frame.h +0 -46
  815. data/ext/v8/upstream/2.3.3/src/vm-state-inl.h +0 -137
  816. data/ext/v8/upstream/2.3.3/src/vm-state.cc +0 -39
  817. data/ext/v8/upstream/2.3.3/src/vm-state.h +0 -77
  818. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64-inl.h +0 -400
  819. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.cc +0 -2963
  820. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.h +0 -1438
  821. data/ext/v8/upstream/2.3.3/src/x64/builtins-x64.cc +0 -1296
  822. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64-inl.h +0 -46
  823. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.cc +0 -12491
  824. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.h +0 -1090
  825. data/ext/v8/upstream/2.3.3/src/x64/cpu-x64.cc +0 -83
  826. data/ext/v8/upstream/2.3.3/src/x64/debug-x64.cc +0 -267
  827. data/ext/v8/upstream/2.3.3/src/x64/disasm-x64.cc +0 -1696
  828. data/ext/v8/upstream/2.3.3/src/x64/fast-codegen-x64.cc +0 -250
  829. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.cc +0 -113
  830. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.h +0 -125
  831. data/ext/v8/upstream/2.3.3/src/x64/full-codegen-x64.cc +0 -3270
  832. data/ext/v8/upstream/2.3.3/src/x64/ic-x64.cc +0 -1907
  833. data/ext/v8/upstream/2.3.3/src/x64/jump-target-x64.cc +0 -437
  834. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.cc +0 -2793
  835. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.h +0 -916
  836. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.cc +0 -1374
  837. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.h +0 -277
  838. data/ext/v8/upstream/2.3.3/src/x64/simulator-x64.h +0 -63
  839. data/ext/v8/upstream/2.3.3/src/x64/stub-cache-x64.cc +0 -2560
  840. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.cc +0 -1264
  841. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.h +0 -590
  842. data/ext/v8/upstream/2.3.3/src/zone-inl.h +0 -82
  843. data/ext/v8/upstream/2.3.3/src/zone.cc +0 -194
  844. data/ext/v8/upstream/2.3.3/src/zone.h +0 -221
  845. data/ext/v8/upstream/2.3.3/tools/codemap.js +0 -270
  846. data/ext/v8/upstream/2.3.3/tools/csvparser.js +0 -83
  847. data/ext/v8/upstream/2.3.3/tools/gc-nvp-trace-processor.py +0 -317
  848. data/ext/v8/upstream/2.3.3/tools/gyp/v8.gyp +0 -749
  849. data/ext/v8/upstream/2.3.3/tools/linux-tick-processor.py +0 -78
  850. data/ext/v8/upstream/2.3.3/tools/logreader.js +0 -338
  851. data/ext/v8/upstream/2.3.3/tools/oprofile/annotate +0 -7
  852. data/ext/v8/upstream/2.3.3/tools/oprofile/common +0 -19
  853. data/ext/v8/upstream/2.3.3/tools/oprofile/dump +0 -7
  854. data/ext/v8/upstream/2.3.3/tools/oprofile/report +0 -7
  855. data/ext/v8/upstream/2.3.3/tools/oprofile/reset +0 -7
  856. data/ext/v8/upstream/2.3.3/tools/oprofile/run +0 -14
  857. data/ext/v8/upstream/2.3.3/tools/oprofile/shutdown +0 -7
  858. data/ext/v8/upstream/2.3.3/tools/oprofile/start +0 -7
  859. data/ext/v8/upstream/2.3.3/tools/presubmit.py +0 -299
  860. data/ext/v8/upstream/2.3.3/tools/profile.js +0 -691
  861. data/ext/v8/upstream/2.3.3/tools/profile_view.js +0 -224
  862. data/ext/v8/upstream/2.3.3/tools/splaytree.js +0 -322
  863. data/ext/v8/upstream/2.3.3/tools/splaytree.py +0 -226
  864. data/ext/v8/upstream/2.3.3/tools/tickprocessor.js +0 -862
  865. data/ext/v8/upstream/2.3.3/tools/tickprocessor.py +0 -571
  866. data/ext/v8/upstream/2.3.3/tools/utils.py +0 -88
  867. data/ext/v8/upstream/2.3.3/tools/visual_studio/README.txt +0 -71
  868. data/ext/v8/upstream/2.3.3/tools/visual_studio/common.vsprops +0 -34
  869. data/ext/v8/upstream/2.3.3/tools/visual_studio/debug.vsprops +0 -17
  870. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base.vcproj +0 -1143
  871. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_arm.vcproj +0 -1115
  872. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_x64.vcproj +0 -1096
  873. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample.vcproj +0 -145
  874. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -145
  875. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -161
  876. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.bat +0 -29
  877. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.py +0 -137
@@ -0,0 +1,1232 @@
1
+ // Copyright 2006-2008 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "v8.h"
29
+
30
+ #include "ast.h"
31
+ #include "deoptimizer.h"
32
+ #include "frames-inl.h"
33
+ #include "full-codegen.h"
34
+ #include "mark-compact.h"
35
+ #include "safepoint-table.h"
36
+ #include "scopeinfo.h"
37
+ #include "string-stream.h"
38
+ #include "top.h"
39
+
40
+ namespace v8 {
41
+ namespace internal {
42
+
43
+ PcToCodeCache::PcToCodeCacheEntry
44
+ PcToCodeCache::cache_[PcToCodeCache::kPcToCodeCacheSize];
45
+
46
+ int SafeStackFrameIterator::active_count_ = 0;
47
+
48
+ // Iterator that supports traversing the stack handlers of a
49
+ // particular frame. Needs to know the top of the handler chain.
50
+ class StackHandlerIterator BASE_EMBEDDED {
51
+ public:
52
+ StackHandlerIterator(const StackFrame* frame, StackHandler* handler)
53
+ : limit_(frame->fp()), handler_(handler) {
54
+ // Make sure the handler has already been unwound to this frame.
55
+ ASSERT(frame->sp() <= handler->address());
56
+ }
57
+
58
+ StackHandler* handler() const { return handler_; }
59
+
60
+ bool done() {
61
+ return handler_ == NULL || handler_->address() > limit_;
62
+ }
63
+ void Advance() {
64
+ ASSERT(!done());
65
+ handler_ = handler_->next();
66
+ }
67
+
68
+ private:
69
+ const Address limit_;
70
+ StackHandler* handler_;
71
+ };
72
+
73
+
74
+ // -------------------------------------------------------------------------
75
+
76
+
77
+ #define INITIALIZE_SINGLETON(type, field) field##_(this),
78
+ StackFrameIterator::StackFrameIterator()
79
+ : STACK_FRAME_TYPE_LIST(INITIALIZE_SINGLETON)
80
+ frame_(NULL), handler_(NULL), thread_(Top::GetCurrentThread()),
81
+ fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) {
82
+ Reset();
83
+ }
84
+ StackFrameIterator::StackFrameIterator(ThreadLocalTop* t)
85
+ : STACK_FRAME_TYPE_LIST(INITIALIZE_SINGLETON)
86
+ frame_(NULL), handler_(NULL), thread_(t),
87
+ fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) {
88
+ Reset();
89
+ }
90
+ StackFrameIterator::StackFrameIterator(bool use_top, Address fp, Address sp)
91
+ : STACK_FRAME_TYPE_LIST(INITIALIZE_SINGLETON)
92
+ frame_(NULL), handler_(NULL),
93
+ thread_(use_top ? Top::GetCurrentThread() : NULL),
94
+ fp_(use_top ? NULL : fp), sp_(sp),
95
+ advance_(use_top ? &StackFrameIterator::AdvanceWithHandler :
96
+ &StackFrameIterator::AdvanceWithoutHandler) {
97
+ if (use_top || fp != NULL) {
98
+ Reset();
99
+ }
100
+ }
101
+
102
+ #undef INITIALIZE_SINGLETON
103
+
104
+
105
+ void StackFrameIterator::AdvanceWithHandler() {
106
+ ASSERT(!done());
107
+ // Compute the state of the calling frame before restoring
108
+ // callee-saved registers and unwinding handlers. This allows the
109
+ // frame code that computes the caller state to access the top
110
+ // handler and the value of any callee-saved register if needed.
111
+ StackFrame::State state;
112
+ StackFrame::Type type = frame_->GetCallerState(&state);
113
+
114
+ // Unwind handlers corresponding to the current frame.
115
+ StackHandlerIterator it(frame_, handler_);
116
+ while (!it.done()) it.Advance();
117
+ handler_ = it.handler();
118
+
119
+ // Advance to the calling frame.
120
+ frame_ = SingletonFor(type, &state);
121
+
122
+ // When we're done iterating over the stack frames, the handler
123
+ // chain must have been completely unwound.
124
+ ASSERT(!done() || handler_ == NULL);
125
+ }
126
+
127
+
128
+ void StackFrameIterator::AdvanceWithoutHandler() {
129
+ // A simpler version of Advance which doesn't care about handler.
130
+ ASSERT(!done());
131
+ StackFrame::State state;
132
+ StackFrame::Type type = frame_->GetCallerState(&state);
133
+ frame_ = SingletonFor(type, &state);
134
+ }
135
+
136
+
137
+ void StackFrameIterator::Reset() {
138
+ StackFrame::State state;
139
+ StackFrame::Type type;
140
+ if (thread_ != NULL) {
141
+ type = ExitFrame::GetStateForFramePointer(Top::c_entry_fp(thread_), &state);
142
+ handler_ = StackHandler::FromAddress(Top::handler(thread_));
143
+ } else {
144
+ ASSERT(fp_ != NULL);
145
+ state.fp = fp_;
146
+ state.sp = sp_;
147
+ state.pc_address =
148
+ reinterpret_cast<Address*>(StandardFrame::ComputePCAddress(fp_));
149
+ type = StackFrame::ComputeType(&state);
150
+ }
151
+ if (SingletonFor(type) == NULL) return;
152
+ frame_ = SingletonFor(type, &state);
153
+ }
154
+
155
+
156
+ StackFrame* StackFrameIterator::SingletonFor(StackFrame::Type type,
157
+ StackFrame::State* state) {
158
+ if (type == StackFrame::NONE) return NULL;
159
+ StackFrame* result = SingletonFor(type);
160
+ ASSERT(result != NULL);
161
+ result->state_ = *state;
162
+ return result;
163
+ }
164
+
165
+
166
+ StackFrame* StackFrameIterator::SingletonFor(StackFrame::Type type) {
167
+ #define FRAME_TYPE_CASE(type, field) \
168
+ case StackFrame::type: result = &field##_; break;
169
+
170
+ StackFrame* result = NULL;
171
+ switch (type) {
172
+ case StackFrame::NONE: return NULL;
173
+ STACK_FRAME_TYPE_LIST(FRAME_TYPE_CASE)
174
+ default: break;
175
+ }
176
+ return result;
177
+
178
+ #undef FRAME_TYPE_CASE
179
+ }
180
+
181
+
182
+ // -------------------------------------------------------------------------
183
+
184
+
185
+ StackTraceFrameIterator::StackTraceFrameIterator() {
186
+ if (!done() && !IsValidFrame()) Advance();
187
+ }
188
+
189
+
190
+ void StackTraceFrameIterator::Advance() {
191
+ while (true) {
192
+ JavaScriptFrameIterator::Advance();
193
+ if (done()) return;
194
+ if (IsValidFrame()) return;
195
+ }
196
+ }
197
+
198
+ bool StackTraceFrameIterator::IsValidFrame() {
199
+ if (!frame()->function()->IsJSFunction()) return false;
200
+ Object* script = JSFunction::cast(frame()->function())->shared()->script();
201
+ // Don't show functions from native scripts to user.
202
+ return (script->IsScript() &&
203
+ Script::TYPE_NATIVE != Script::cast(script)->type()->value());
204
+ }
205
+
206
+
207
+ // -------------------------------------------------------------------------
208
+
209
+
210
+ bool SafeStackFrameIterator::ExitFrameValidator::IsValidFP(Address fp) {
211
+ if (!validator_.IsValid(fp)) return false;
212
+ Address sp = ExitFrame::ComputeStackPointer(fp);
213
+ if (!validator_.IsValid(sp)) return false;
214
+ StackFrame::State state;
215
+ ExitFrame::FillState(fp, sp, &state);
216
+ if (!validator_.IsValid(reinterpret_cast<Address>(state.pc_address))) {
217
+ return false;
218
+ }
219
+ return *state.pc_address != NULL;
220
+ }
221
+
222
+
223
+ SafeStackFrameIterator::SafeStackFrameIterator(
224
+ Address fp, Address sp, Address low_bound, Address high_bound) :
225
+ maintainer_(),
226
+ stack_validator_(low_bound, high_bound),
227
+ is_valid_top_(IsValidTop(low_bound, high_bound)),
228
+ is_valid_fp_(IsWithinBounds(low_bound, high_bound, fp)),
229
+ is_working_iterator_(is_valid_top_ || is_valid_fp_),
230
+ iteration_done_(!is_working_iterator_),
231
+ iterator_(is_valid_top_, is_valid_fp_ ? fp : NULL, sp) {
232
+ }
233
+
234
+
235
+ bool SafeStackFrameIterator::IsValidTop(Address low_bound, Address high_bound) {
236
+ Address fp = Top::c_entry_fp(Top::GetCurrentThread());
237
+ ExitFrameValidator validator(low_bound, high_bound);
238
+ if (!validator.IsValidFP(fp)) return false;
239
+ return Top::handler(Top::GetCurrentThread()) != NULL;
240
+ }
241
+
242
+
243
+ void SafeStackFrameIterator::Advance() {
244
+ ASSERT(is_working_iterator_);
245
+ ASSERT(!done());
246
+ StackFrame* last_frame = iterator_.frame();
247
+ Address last_sp = last_frame->sp(), last_fp = last_frame->fp();
248
+ // Before advancing to the next stack frame, perform pointer validity tests
249
+ iteration_done_ = !IsValidFrame(last_frame) ||
250
+ !CanIterateHandles(last_frame, iterator_.handler()) ||
251
+ !IsValidCaller(last_frame);
252
+ if (iteration_done_) return;
253
+
254
+ iterator_.Advance();
255
+ if (iterator_.done()) return;
256
+ // Check that we have actually moved to the previous frame in the stack
257
+ StackFrame* prev_frame = iterator_.frame();
258
+ iteration_done_ = prev_frame->sp() < last_sp || prev_frame->fp() < last_fp;
259
+ }
260
+
261
+
262
+ bool SafeStackFrameIterator::CanIterateHandles(StackFrame* frame,
263
+ StackHandler* handler) {
264
+ // If StackIterator iterates over StackHandles, verify that
265
+ // StackHandlerIterator can be instantiated (see StackHandlerIterator
266
+ // constructor.)
267
+ return !is_valid_top_ || (frame->sp() <= handler->address());
268
+ }
269
+
270
+
271
+ bool SafeStackFrameIterator::IsValidFrame(StackFrame* frame) const {
272
+ return IsValidStackAddress(frame->sp()) && IsValidStackAddress(frame->fp());
273
+ }
274
+
275
+
276
+ bool SafeStackFrameIterator::IsValidCaller(StackFrame* frame) {
277
+ StackFrame::State state;
278
+ if (frame->is_entry() || frame->is_entry_construct()) {
279
+ // See EntryFrame::GetCallerState. It computes the caller FP address
280
+ // and calls ExitFrame::GetStateForFramePointer on it. We need to be
281
+ // sure that caller FP address is valid.
282
+ Address caller_fp = Memory::Address_at(
283
+ frame->fp() + EntryFrameConstants::kCallerFPOffset);
284
+ ExitFrameValidator validator(stack_validator_);
285
+ if (!validator.IsValidFP(caller_fp)) return false;
286
+ } else if (frame->is_arguments_adaptor()) {
287
+ // See ArgumentsAdaptorFrame::GetCallerStackPointer. It assumes that
288
+ // the number of arguments is stored on stack as Smi. We need to check
289
+ // that it really an Smi.
290
+ Object* number_of_args = reinterpret_cast<ArgumentsAdaptorFrame*>(frame)->
291
+ GetExpression(0);
292
+ if (!number_of_args->IsSmi()) {
293
+ return false;
294
+ }
295
+ }
296
+ frame->ComputeCallerState(&state);
297
+ return IsValidStackAddress(state.sp) && IsValidStackAddress(state.fp) &&
298
+ iterator_.SingletonFor(frame->GetCallerState(&state)) != NULL;
299
+ }
300
+
301
+
302
+ void SafeStackFrameIterator::Reset() {
303
+ if (is_working_iterator_) {
304
+ iterator_.Reset();
305
+ iteration_done_ = false;
306
+ }
307
+ }
308
+
309
+
310
+ // -------------------------------------------------------------------------
311
+
312
+
313
+ #ifdef ENABLE_LOGGING_AND_PROFILING
314
+ SafeStackTraceFrameIterator::SafeStackTraceFrameIterator(
315
+ Address fp, Address sp, Address low_bound, Address high_bound) :
316
+ SafeJavaScriptFrameIterator(fp, sp, low_bound, high_bound) {
317
+ if (!done() && !frame()->is_java_script()) Advance();
318
+ }
319
+
320
+
321
+ void SafeStackTraceFrameIterator::Advance() {
322
+ while (true) {
323
+ SafeJavaScriptFrameIterator::Advance();
324
+ if (done()) return;
325
+ if (frame()->is_java_script()) return;
326
+ }
327
+ }
328
+ #endif
329
+
330
+
331
+ Code* StackFrame::GetSafepointData(Address pc,
332
+ SafepointEntry* safepoint_entry,
333
+ unsigned* stack_slots) {
334
+ PcToCodeCache::PcToCodeCacheEntry* entry = PcToCodeCache::GetCacheEntry(pc);
335
+ SafepointEntry cached_safepoint_entry = entry->safepoint_entry;
336
+ if (!entry->safepoint_entry.is_valid()) {
337
+ entry->safepoint_entry = entry->code->GetSafepointEntry(pc);
338
+ ASSERT(entry->safepoint_entry.is_valid());
339
+ } else {
340
+ ASSERT(entry->safepoint_entry.Equals(entry->code->GetSafepointEntry(pc)));
341
+ }
342
+
343
+ // Fill in the results and return the code.
344
+ Code* code = entry->code;
345
+ *safepoint_entry = entry->safepoint_entry;
346
+ *stack_slots = code->stack_slots();
347
+ return code;
348
+ }
349
+
350
+
351
+ bool StackFrame::HasHandler() const {
352
+ StackHandlerIterator it(this, top_handler());
353
+ return !it.done();
354
+ }
355
+
356
+
357
+ void StackFrame::IteratePc(ObjectVisitor* v,
358
+ Address* pc_address,
359
+ Code* holder) {
360
+ Address pc = *pc_address;
361
+ ASSERT(holder->contains(pc));
362
+ unsigned pc_offset = static_cast<unsigned>(pc - holder->instruction_start());
363
+ Object* code = holder;
364
+ v->VisitPointer(&code);
365
+ if (code != holder) {
366
+ holder = reinterpret_cast<Code*>(code);
367
+ pc = holder->instruction_start() + pc_offset;
368
+ *pc_address = pc;
369
+ }
370
+ }
371
+
372
+
373
+ StackFrame::Type StackFrame::ComputeType(State* state) {
374
+ ASSERT(state->fp != NULL);
375
+ if (StandardFrame::IsArgumentsAdaptorFrame(state->fp)) {
376
+ return ARGUMENTS_ADAPTOR;
377
+ }
378
+ // The marker and function offsets overlap. If the marker isn't a
379
+ // smi then the frame is a JavaScript frame -- and the marker is
380
+ // really the function.
381
+ const int offset = StandardFrameConstants::kMarkerOffset;
382
+ Object* marker = Memory::Object_at(state->fp + offset);
383
+ if (!marker->IsSmi()) {
384
+ // If we're using a "safe" stack iterator, we treat optimized
385
+ // frames as normal JavaScript frames to avoid having to look
386
+ // into the heap to determine the state. This is safe as long
387
+ // as nobody tries to GC...
388
+ if (SafeStackFrameIterator::is_active()) return JAVA_SCRIPT;
389
+ Code::Kind kind = GetContainingCode(*(state->pc_address))->kind();
390
+ ASSERT(kind == Code::FUNCTION || kind == Code::OPTIMIZED_FUNCTION);
391
+ return (kind == Code::OPTIMIZED_FUNCTION) ? OPTIMIZED : JAVA_SCRIPT;
392
+ }
393
+ return static_cast<StackFrame::Type>(Smi::cast(marker)->value());
394
+ }
395
+
396
+
397
+
398
+ StackFrame::Type StackFrame::GetCallerState(State* state) const {
399
+ ComputeCallerState(state);
400
+ return ComputeType(state);
401
+ }
402
+
403
+
404
+ Code* EntryFrame::unchecked_code() const {
405
+ return Heap::raw_unchecked_js_entry_code();
406
+ }
407
+
408
+
409
+ void EntryFrame::ComputeCallerState(State* state) const {
410
+ GetCallerState(state);
411
+ }
412
+
413
+
414
+ void EntryFrame::SetCallerFp(Address caller_fp) {
415
+ const int offset = EntryFrameConstants::kCallerFPOffset;
416
+ Memory::Address_at(this->fp() + offset) = caller_fp;
417
+ }
418
+
419
+
420
+ StackFrame::Type EntryFrame::GetCallerState(State* state) const {
421
+ const int offset = EntryFrameConstants::kCallerFPOffset;
422
+ Address fp = Memory::Address_at(this->fp() + offset);
423
+ return ExitFrame::GetStateForFramePointer(fp, state);
424
+ }
425
+
426
+
427
+ Code* EntryConstructFrame::unchecked_code() const {
428
+ return Heap::raw_unchecked_js_construct_entry_code();
429
+ }
430
+
431
+
432
+ Object*& ExitFrame::code_slot() const {
433
+ const int offset = ExitFrameConstants::kCodeOffset;
434
+ return Memory::Object_at(fp() + offset);
435
+ }
436
+
437
+
438
+ Code* ExitFrame::unchecked_code() const {
439
+ return reinterpret_cast<Code*>(code_slot());
440
+ }
441
+
442
+
443
+ void ExitFrame::ComputeCallerState(State* state) const {
444
+ // Setup the caller state.
445
+ state->sp = caller_sp();
446
+ state->fp = Memory::Address_at(fp() + ExitFrameConstants::kCallerFPOffset);
447
+ state->pc_address
448
+ = reinterpret_cast<Address*>(fp() + ExitFrameConstants::kCallerPCOffset);
449
+ }
450
+
451
+
452
+ void ExitFrame::SetCallerFp(Address caller_fp) {
453
+ Memory::Address_at(fp() + ExitFrameConstants::kCallerFPOffset) = caller_fp;
454
+ }
455
+
456
+
457
+ void ExitFrame::Iterate(ObjectVisitor* v) const {
458
+ // The arguments are traversed as part of the expression stack of
459
+ // the calling frame.
460
+ IteratePc(v, pc_address(), code());
461
+ v->VisitPointer(&code_slot());
462
+ }
463
+
464
+
465
+ Address ExitFrame::GetCallerStackPointer() const {
466
+ return fp() + ExitFrameConstants::kCallerSPDisplacement;
467
+ }
468
+
469
+
470
+ StackFrame::Type ExitFrame::GetStateForFramePointer(Address fp, State* state) {
471
+ if (fp == 0) return NONE;
472
+ Address sp = ComputeStackPointer(fp);
473
+ FillState(fp, sp, state);
474
+ ASSERT(*state->pc_address != NULL);
475
+ return EXIT;
476
+ }
477
+
478
+
479
+ void ExitFrame::FillState(Address fp, Address sp, State* state) {
480
+ state->sp = sp;
481
+ state->fp = fp;
482
+ state->pc_address = reinterpret_cast<Address*>(sp - 1 * kPointerSize);
483
+ }
484
+
485
+
486
+ Address StandardFrame::GetExpressionAddress(int n) const {
487
+ const int offset = StandardFrameConstants::kExpressionsOffset;
488
+ return fp() + offset - n * kPointerSize;
489
+ }
490
+
491
+
492
+ int StandardFrame::ComputeExpressionsCount() const {
493
+ const int offset =
494
+ StandardFrameConstants::kExpressionsOffset + kPointerSize;
495
+ Address base = fp() + offset;
496
+ Address limit = sp();
497
+ ASSERT(base >= limit); // stack grows downwards
498
+ // Include register-allocated locals in number of expressions.
499
+ return static_cast<int>((base - limit) / kPointerSize);
500
+ }
501
+
502
+
503
+ void StandardFrame::ComputeCallerState(State* state) const {
504
+ state->sp = caller_sp();
505
+ state->fp = caller_fp();
506
+ state->pc_address = reinterpret_cast<Address*>(ComputePCAddress(fp()));
507
+ }
508
+
509
+
510
+ void StandardFrame::SetCallerFp(Address caller_fp) {
511
+ Memory::Address_at(fp() + StandardFrameConstants::kCallerFPOffset) =
512
+ caller_fp;
513
+ }
514
+
515
+
516
+ bool StandardFrame::IsExpressionInsideHandler(int n) const {
517
+ Address address = GetExpressionAddress(n);
518
+ for (StackHandlerIterator it(this, top_handler()); !it.done(); it.Advance()) {
519
+ if (it.handler()->includes(address)) return true;
520
+ }
521
+ return false;
522
+ }
523
+
524
+
525
+ void OptimizedFrame::Iterate(ObjectVisitor* v) const {
526
+ #ifdef DEBUG
527
+ // Make sure that optimized frames do not contain any stack handlers.
528
+ StackHandlerIterator it(this, top_handler());
529
+ ASSERT(it.done());
530
+ #endif
531
+
532
+ // Make sure that we're not doing "safe" stack frame iteration. We cannot
533
+ // possibly find pointers in optimized frames in that state.
534
+ ASSERT(!SafeStackFrameIterator::is_active());
535
+
536
+ // Compute the safepoint information.
537
+ unsigned stack_slots = 0;
538
+ SafepointEntry safepoint_entry;
539
+ Code* code = StackFrame::GetSafepointData(
540
+ pc(), &safepoint_entry, &stack_slots);
541
+ unsigned slot_space = stack_slots * kPointerSize;
542
+
543
+ // Visit the outgoing parameters. This is usually dealt with by the
544
+ // callee, but while GC'ing we artificially lower the number of
545
+ // arguments to zero and let the caller deal with it.
546
+ Object** parameters_base = &Memory::Object_at(sp());
547
+ Object** parameters_limit = &Memory::Object_at(
548
+ fp() + JavaScriptFrameConstants::kFunctionOffset - slot_space);
549
+
550
+ // Visit the parameters that may be on top of the saved registers.
551
+ if (safepoint_entry.argument_count() > 0) {
552
+ v->VisitPointers(parameters_base,
553
+ parameters_base + safepoint_entry.argument_count());
554
+ parameters_base += safepoint_entry.argument_count();
555
+ }
556
+
557
+ // Skip saved double registers.
558
+ if (safepoint_entry.has_doubles()) {
559
+ parameters_base += DoubleRegister::kNumAllocatableRegisters *
560
+ kDoubleSize / kPointerSize;
561
+ }
562
+
563
+ // Visit the registers that contain pointers if any.
564
+ if (safepoint_entry.HasRegisters()) {
565
+ for (int i = kNumSafepointRegisters - 1; i >=0; i--) {
566
+ if (safepoint_entry.HasRegisterAt(i)) {
567
+ int reg_stack_index = MacroAssembler::SafepointRegisterStackIndex(i);
568
+ v->VisitPointer(parameters_base + reg_stack_index);
569
+ }
570
+ }
571
+ // Skip the words containing the register values.
572
+ parameters_base += kNumSafepointRegisters;
573
+ }
574
+
575
+ // We're done dealing with the register bits.
576
+ uint8_t* safepoint_bits = safepoint_entry.bits();
577
+ safepoint_bits += kNumSafepointRegisters >> kBitsPerByteLog2;
578
+
579
+ // Visit the rest of the parameters.
580
+ v->VisitPointers(parameters_base, parameters_limit);
581
+
582
+ // Visit pointer spill slots and locals.
583
+ for (unsigned index = 0; index < stack_slots; index++) {
584
+ int byte_index = index >> kBitsPerByteLog2;
585
+ int bit_index = index & (kBitsPerByte - 1);
586
+ if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
587
+ v->VisitPointer(parameters_limit + index);
588
+ }
589
+ }
590
+
591
+ // Visit the context and the function.
592
+ Object** fixed_base = &Memory::Object_at(
593
+ fp() + JavaScriptFrameConstants::kFunctionOffset);
594
+ Object** fixed_limit = &Memory::Object_at(fp());
595
+ v->VisitPointers(fixed_base, fixed_limit);
596
+
597
+ // Visit the return address in the callee and incoming arguments.
598
+ IteratePc(v, pc_address(), code);
599
+ IterateArguments(v);
600
+ }
601
+
602
+
603
+ Object* JavaScriptFrame::GetParameter(int index) const {
604
+ ASSERT(index >= 0 && index < ComputeParametersCount());
605
+ const int offset = JavaScriptFrameConstants::kParam0Offset;
606
+ return Memory::Object_at(caller_sp() + offset - (index * kPointerSize));
607
+ }
608
+
609
+
610
+ int JavaScriptFrame::ComputeParametersCount() const {
611
+ Address base = caller_sp() + JavaScriptFrameConstants::kReceiverOffset;
612
+ Address limit = fp() + JavaScriptFrameConstants::kSavedRegistersOffset;
613
+ return static_cast<int>((base - limit) / kPointerSize);
614
+ }
615
+
616
+
617
+ bool JavaScriptFrame::IsConstructor() const {
618
+ Address fp = caller_fp();
619
+ if (has_adapted_arguments()) {
620
+ // Skip the arguments adaptor frame and look at the real caller.
621
+ fp = Memory::Address_at(fp + StandardFrameConstants::kCallerFPOffset);
622
+ }
623
+ return IsConstructFrame(fp);
624
+ }
625
+
626
+
627
+ Code* JavaScriptFrame::unchecked_code() const {
628
+ JSFunction* function = JSFunction::cast(this->function());
629
+ return function->unchecked_code();
630
+ }
631
+
632
+
633
+ int JavaScriptFrame::GetProvidedParametersCount() const {
634
+ return ComputeParametersCount();
635
+ }
636
+
637
+
638
+ Address JavaScriptFrame::GetCallerStackPointer() const {
639
+ int arguments;
640
+ if (Heap::gc_state() != Heap::NOT_IN_GC ||
641
+ SafeStackFrameIterator::is_active()) {
642
+ // If the we are currently iterating the safe stack the
643
+ // arguments for frames are traversed as if they were
644
+ // expression stack elements of the calling frame. The reason for
645
+ // this rather strange decision is that we cannot access the
646
+ // function during mark-compact GCs when objects may have been marked.
647
+ // In fact accessing heap objects (like function->shared() below)
648
+ // at all during GC is problematic.
649
+ arguments = 0;
650
+ } else {
651
+ // Compute the number of arguments by getting the number of formal
652
+ // parameters of the function. We must remember to take the
653
+ // receiver into account (+1).
654
+ JSFunction* function = JSFunction::cast(this->function());
655
+ arguments = function->shared()->formal_parameter_count() + 1;
656
+ }
657
+ const int offset = StandardFrameConstants::kCallerSPOffset;
658
+ return fp() + offset + (arguments * kPointerSize);
659
+ }
660
+
661
+
662
+ void JavaScriptFrame::GetFunctions(List<JSFunction*>* functions) {
663
+ ASSERT(functions->length() == 0);
664
+ functions->Add(JSFunction::cast(function()));
665
+ }
666
+
667
+
668
+ void JavaScriptFrame::Summarize(List<FrameSummary>* functions) {
669
+ ASSERT(functions->length() == 0);
670
+ Code* code_pointer = code();
671
+ int offset = static_cast<int>(pc() - code_pointer->address());
672
+ FrameSummary summary(receiver(),
673
+ JSFunction::cast(function()),
674
+ code_pointer,
675
+ offset,
676
+ IsConstructor());
677
+ functions->Add(summary);
678
+ }
679
+
680
+
681
+ void FrameSummary::Print() {
682
+ PrintF("receiver: ");
683
+ receiver_->ShortPrint();
684
+ PrintF("\nfunction: ");
685
+ function_->shared()->DebugName()->ShortPrint();
686
+ PrintF("\ncode: ");
687
+ code_->ShortPrint();
688
+ if (code_->kind() == Code::FUNCTION) PrintF(" NON-OPT");
689
+ if (code_->kind() == Code::OPTIMIZED_FUNCTION) PrintF(" OPT");
690
+ PrintF("\npc: %d\n", offset_);
691
+ }
692
+
693
+
694
+ void OptimizedFrame::Summarize(List<FrameSummary>* frames) {
695
+ ASSERT(frames->length() == 0);
696
+ ASSERT(is_optimized());
697
+
698
+ int deopt_index = Safepoint::kNoDeoptimizationIndex;
699
+ DeoptimizationInputData* data = GetDeoptimizationData(&deopt_index);
700
+
701
+ // BUG(3243555): Since we don't have a lazy-deopt registered at
702
+ // throw-statements, we can't use the translation at the call-site of
703
+ // throw. An entry with no deoptimization index indicates a call-site
704
+ // without a lazy-deopt. As a consequence we are not allowed to inline
705
+ // functions containing throw.
706
+ if (deopt_index == Safepoint::kNoDeoptimizationIndex) {
707
+ JavaScriptFrame::Summarize(frames);
708
+ return;
709
+ }
710
+
711
+ TranslationIterator it(data->TranslationByteArray(),
712
+ data->TranslationIndex(deopt_index)->value());
713
+ Translation::Opcode opcode = static_cast<Translation::Opcode>(it.Next());
714
+ ASSERT(opcode == Translation::BEGIN);
715
+ int frame_count = it.Next();
716
+
717
+ // We create the summary in reverse order because the frames
718
+ // in the deoptimization translation are ordered bottom-to-top.
719
+ int i = frame_count;
720
+ while (i > 0) {
721
+ opcode = static_cast<Translation::Opcode>(it.Next());
722
+ if (opcode == Translation::FRAME) {
723
+ // We don't inline constructor calls, so only the first, outermost
724
+ // frame can be a constructor frame in case of inlining.
725
+ bool is_constructor = (i == frame_count) && IsConstructor();
726
+
727
+ i--;
728
+ int ast_id = it.Next();
729
+ int function_id = it.Next();
730
+ it.Next(); // Skip height.
731
+ JSFunction* function =
732
+ JSFunction::cast(data->LiteralArray()->get(function_id));
733
+
734
+ // The translation commands are ordered and the receiver is always
735
+ // at the first position. Since we are always at a call when we need
736
+ // to construct a stack trace, the receiver is always in a stack slot.
737
+ opcode = static_cast<Translation::Opcode>(it.Next());
738
+ ASSERT(opcode == Translation::STACK_SLOT);
739
+ int input_slot_index = it.Next();
740
+
741
+ // Get the correct receiver in the optimized frame.
742
+ Object* receiver = NULL;
743
+ // Positive index means the value is spilled to the locals area. Negative
744
+ // means it is stored in the incoming parameter area.
745
+ if (input_slot_index >= 0) {
746
+ receiver = GetExpression(input_slot_index);
747
+ } else {
748
+ // Index -1 overlaps with last parameter, -n with the first parameter,
749
+ // (-n - 1) with the receiver with n being the number of parameters
750
+ // of the outermost, optimized frame.
751
+ int parameter_count = ComputeParametersCount();
752
+ int parameter_index = input_slot_index + parameter_count;
753
+ receiver = (parameter_index == -1)
754
+ ? this->receiver()
755
+ : this->GetParameter(parameter_index);
756
+ }
757
+
758
+ Code* code = function->shared()->code();
759
+ DeoptimizationOutputData* output_data =
760
+ DeoptimizationOutputData::cast(code->deoptimization_data());
761
+ unsigned entry = Deoptimizer::GetOutputInfo(output_data,
762
+ ast_id,
763
+ function->shared());
764
+ unsigned pc_offset =
765
+ FullCodeGenerator::PcField::decode(entry) + Code::kHeaderSize;
766
+ ASSERT(pc_offset > 0);
767
+
768
+ FrameSummary summary(receiver, function, code, pc_offset, is_constructor);
769
+ frames->Add(summary);
770
+ } else {
771
+ // Skip over operands to advance to the next opcode.
772
+ it.Skip(Translation::NumberOfOperandsFor(opcode));
773
+ }
774
+ }
775
+ }
776
+
777
+
778
+ DeoptimizationInputData* OptimizedFrame::GetDeoptimizationData(
779
+ int* deopt_index) {
780
+ ASSERT(is_optimized());
781
+
782
+ JSFunction* opt_function = JSFunction::cast(function());
783
+ Code* code = opt_function->code();
784
+
785
+ // The code object may have been replaced by lazy deoptimization. Fall
786
+ // back to a slow search in this case to find the original optimized
787
+ // code object.
788
+ if (!code->contains(pc())) {
789
+ code = PcToCodeCache::GcSafeFindCodeForPc(pc());
790
+ }
791
+ ASSERT(code != NULL);
792
+ ASSERT(code->kind() == Code::OPTIMIZED_FUNCTION);
793
+
794
+ SafepointEntry safepoint_entry = code->GetSafepointEntry(pc());
795
+ *deopt_index = safepoint_entry.deoptimization_index();
796
+ ASSERT(*deopt_index != Safepoint::kNoDeoptimizationIndex);
797
+
798
+ return DeoptimizationInputData::cast(code->deoptimization_data());
799
+ }
800
+
801
+
802
+ void OptimizedFrame::GetFunctions(List<JSFunction*>* functions) {
803
+ ASSERT(functions->length() == 0);
804
+ ASSERT(is_optimized());
805
+
806
+ int deopt_index = Safepoint::kNoDeoptimizationIndex;
807
+ DeoptimizationInputData* data = GetDeoptimizationData(&deopt_index);
808
+
809
+ TranslationIterator it(data->TranslationByteArray(),
810
+ data->TranslationIndex(deopt_index)->value());
811
+ Translation::Opcode opcode = static_cast<Translation::Opcode>(it.Next());
812
+ ASSERT(opcode == Translation::BEGIN);
813
+ int frame_count = it.Next();
814
+
815
+ // We insert the frames in reverse order because the frames
816
+ // in the deoptimization translation are ordered bottom-to-top.
817
+ while (frame_count > 0) {
818
+ opcode = static_cast<Translation::Opcode>(it.Next());
819
+ if (opcode == Translation::FRAME) {
820
+ frame_count--;
821
+ it.Next(); // Skip ast id.
822
+ int function_id = it.Next();
823
+ it.Next(); // Skip height.
824
+ JSFunction* function =
825
+ JSFunction::cast(data->LiteralArray()->get(function_id));
826
+ functions->Add(function);
827
+ } else {
828
+ // Skip over operands to advance to the next opcode.
829
+ it.Skip(Translation::NumberOfOperandsFor(opcode));
830
+ }
831
+ }
832
+ }
833
+
834
+
835
+ Address ArgumentsAdaptorFrame::GetCallerStackPointer() const {
836
+ const int arguments = Smi::cast(GetExpression(0))->value();
837
+ const int offset = StandardFrameConstants::kCallerSPOffset;
838
+ return fp() + offset + (arguments + 1) * kPointerSize;
839
+ }
840
+
841
+
842
+ Address InternalFrame::GetCallerStackPointer() const {
843
+ // Internal frames have no arguments. The stack pointer of the
844
+ // caller is at a fixed offset from the frame pointer.
845
+ return fp() + StandardFrameConstants::kCallerSPOffset;
846
+ }
847
+
848
+
849
+ Code* ArgumentsAdaptorFrame::unchecked_code() const {
850
+ return Builtins::builtin(Builtins::ArgumentsAdaptorTrampoline);
851
+ }
852
+
853
+
854
+ Code* InternalFrame::unchecked_code() const {
855
+ const int offset = InternalFrameConstants::kCodeOffset;
856
+ Object* code = Memory::Object_at(fp() + offset);
857
+ ASSERT(code != NULL);
858
+ return reinterpret_cast<Code*>(code);
859
+ }
860
+
861
+
862
+ void StackFrame::PrintIndex(StringStream* accumulator,
863
+ PrintMode mode,
864
+ int index) {
865
+ accumulator->Add((mode == OVERVIEW) ? "%5d: " : "[%d]: ", index);
866
+ }
867
+
868
+
869
+ void JavaScriptFrame::Print(StringStream* accumulator,
870
+ PrintMode mode,
871
+ int index) const {
872
+ HandleScope scope;
873
+ Object* receiver = this->receiver();
874
+ Object* function = this->function();
875
+
876
+ accumulator->PrintSecurityTokenIfChanged(function);
877
+ PrintIndex(accumulator, mode, index);
878
+ Code* code = NULL;
879
+ if (IsConstructor()) accumulator->Add("new ");
880
+ accumulator->PrintFunction(function, receiver, &code);
881
+
882
+ Handle<SerializedScopeInfo> scope_info(SerializedScopeInfo::Empty());
883
+
884
+ if (function->IsJSFunction()) {
885
+ Handle<SharedFunctionInfo> shared(JSFunction::cast(function)->shared());
886
+ scope_info = Handle<SerializedScopeInfo>(shared->scope_info());
887
+ Object* script_obj = shared->script();
888
+ if (script_obj->IsScript()) {
889
+ Handle<Script> script(Script::cast(script_obj));
890
+ accumulator->Add(" [");
891
+ accumulator->PrintName(script->name());
892
+
893
+ Address pc = this->pc();
894
+ if (code != NULL && code->kind() == Code::FUNCTION &&
895
+ pc >= code->instruction_start() && pc < code->instruction_end()) {
896
+ int source_pos = code->SourcePosition(pc);
897
+ int line = GetScriptLineNumberSafe(script, source_pos) + 1;
898
+ accumulator->Add(":%d", line);
899
+ } else {
900
+ int function_start_pos = shared->start_position();
901
+ int line = GetScriptLineNumberSafe(script, function_start_pos) + 1;
902
+ accumulator->Add(":~%d", line);
903
+ }
904
+
905
+ accumulator->Add("] ");
906
+ }
907
+ }
908
+
909
+ accumulator->Add("(this=%o", receiver);
910
+
911
+ // Get scope information for nicer output, if possible. If code is
912
+ // NULL, or doesn't contain scope info, info will return 0 for the
913
+ // number of parameters, stack slots, or context slots.
914
+ ScopeInfo<PreallocatedStorage> info(*scope_info);
915
+
916
+ // Print the parameters.
917
+ int parameters_count = ComputeParametersCount();
918
+ for (int i = 0; i < parameters_count; i++) {
919
+ accumulator->Add(",");
920
+ // If we have a name for the parameter we print it. Nameless
921
+ // parameters are either because we have more actual parameters
922
+ // than formal parameters or because we have no scope information.
923
+ if (i < info.number_of_parameters()) {
924
+ accumulator->PrintName(*info.parameter_name(i));
925
+ accumulator->Add("=");
926
+ }
927
+ accumulator->Add("%o", GetParameter(i));
928
+ }
929
+
930
+ accumulator->Add(")");
931
+ if (mode == OVERVIEW) {
932
+ accumulator->Add("\n");
933
+ return;
934
+ }
935
+ accumulator->Add(" {\n");
936
+
937
+ // Compute the number of locals and expression stack elements.
938
+ int stack_locals_count = info.number_of_stack_slots();
939
+ int heap_locals_count = info.number_of_context_slots();
940
+ int expressions_count = ComputeExpressionsCount();
941
+
942
+ // Print stack-allocated local variables.
943
+ if (stack_locals_count > 0) {
944
+ accumulator->Add(" // stack-allocated locals\n");
945
+ }
946
+ for (int i = 0; i < stack_locals_count; i++) {
947
+ accumulator->Add(" var ");
948
+ accumulator->PrintName(*info.stack_slot_name(i));
949
+ accumulator->Add(" = ");
950
+ if (i < expressions_count) {
951
+ accumulator->Add("%o", GetExpression(i));
952
+ } else {
953
+ accumulator->Add("// no expression found - inconsistent frame?");
954
+ }
955
+ accumulator->Add("\n");
956
+ }
957
+
958
+ // Try to get hold of the context of this frame.
959
+ Context* context = NULL;
960
+ if (this->context() != NULL && this->context()->IsContext()) {
961
+ context = Context::cast(this->context());
962
+ }
963
+
964
+ // Print heap-allocated local variables.
965
+ if (heap_locals_count > Context::MIN_CONTEXT_SLOTS) {
966
+ accumulator->Add(" // heap-allocated locals\n");
967
+ }
968
+ for (int i = Context::MIN_CONTEXT_SLOTS; i < heap_locals_count; i++) {
969
+ accumulator->Add(" var ");
970
+ accumulator->PrintName(*info.context_slot_name(i));
971
+ accumulator->Add(" = ");
972
+ if (context != NULL) {
973
+ if (i < context->length()) {
974
+ accumulator->Add("%o", context->get(i));
975
+ } else {
976
+ accumulator->Add(
977
+ "// warning: missing context slot - inconsistent frame?");
978
+ }
979
+ } else {
980
+ accumulator->Add("// warning: no context found - inconsistent frame?");
981
+ }
982
+ accumulator->Add("\n");
983
+ }
984
+
985
+ // Print the expression stack.
986
+ int expressions_start = stack_locals_count;
987
+ if (expressions_start < expressions_count) {
988
+ accumulator->Add(" // expression stack (top to bottom)\n");
989
+ }
990
+ for (int i = expressions_count - 1; i >= expressions_start; i--) {
991
+ if (IsExpressionInsideHandler(i)) continue;
992
+ accumulator->Add(" [%02d] : %o\n", i, GetExpression(i));
993
+ }
994
+
995
+ // Print details about the function.
996
+ if (FLAG_max_stack_trace_source_length != 0 && code != NULL) {
997
+ SharedFunctionInfo* shared = JSFunction::cast(function)->shared();
998
+ accumulator->Add("--------- s o u r c e c o d e ---------\n");
999
+ shared->SourceCodePrint(accumulator, FLAG_max_stack_trace_source_length);
1000
+ accumulator->Add("\n-----------------------------------------\n");
1001
+ }
1002
+
1003
+ accumulator->Add("}\n\n");
1004
+ }
1005
+
1006
+
1007
+ void ArgumentsAdaptorFrame::Print(StringStream* accumulator,
1008
+ PrintMode mode,
1009
+ int index) const {
1010
+ int actual = ComputeParametersCount();
1011
+ int expected = -1;
1012
+ Object* function = this->function();
1013
+ if (function->IsJSFunction()) {
1014
+ expected = JSFunction::cast(function)->shared()->formal_parameter_count();
1015
+ }
1016
+
1017
+ PrintIndex(accumulator, mode, index);
1018
+ accumulator->Add("arguments adaptor frame: %d->%d", actual, expected);
1019
+ if (mode == OVERVIEW) {
1020
+ accumulator->Add("\n");
1021
+ return;
1022
+ }
1023
+ accumulator->Add(" {\n");
1024
+
1025
+ // Print actual arguments.
1026
+ if (actual > 0) accumulator->Add(" // actual arguments\n");
1027
+ for (int i = 0; i < actual; i++) {
1028
+ accumulator->Add(" [%02d] : %o", i, GetParameter(i));
1029
+ if (expected != -1 && i >= expected) {
1030
+ accumulator->Add(" // not passed to callee");
1031
+ }
1032
+ accumulator->Add("\n");
1033
+ }
1034
+
1035
+ accumulator->Add("}\n\n");
1036
+ }
1037
+
1038
+
1039
+ void EntryFrame::Iterate(ObjectVisitor* v) const {
1040
+ StackHandlerIterator it(this, top_handler());
1041
+ ASSERT(!it.done());
1042
+ StackHandler* handler = it.handler();
1043
+ ASSERT(handler->is_entry());
1044
+ handler->Iterate(v, code());
1045
+ #ifdef DEBUG
1046
+ // Make sure that the entry frame does not contain more than one
1047
+ // stack handler.
1048
+ it.Advance();
1049
+ ASSERT(it.done());
1050
+ #endif
1051
+ IteratePc(v, pc_address(), code());
1052
+ }
1053
+
1054
+
1055
+ void StandardFrame::IterateExpressions(ObjectVisitor* v) const {
1056
+ const int offset = StandardFrameConstants::kContextOffset;
1057
+ Object** base = &Memory::Object_at(sp());
1058
+ Object** limit = &Memory::Object_at(fp() + offset) + 1;
1059
+ for (StackHandlerIterator it(this, top_handler()); !it.done(); it.Advance()) {
1060
+ StackHandler* handler = it.handler();
1061
+ // Traverse pointers down to - but not including - the next
1062
+ // handler in the handler chain. Update the base to skip the
1063
+ // handler and allow the handler to traverse its own pointers.
1064
+ const Address address = handler->address();
1065
+ v->VisitPointers(base, reinterpret_cast<Object**>(address));
1066
+ base = reinterpret_cast<Object**>(address + StackHandlerConstants::kSize);
1067
+ // Traverse the pointers in the handler itself.
1068
+ handler->Iterate(v, code());
1069
+ }
1070
+ v->VisitPointers(base, limit);
1071
+ }
1072
+
1073
+
1074
+ void JavaScriptFrame::Iterate(ObjectVisitor* v) const {
1075
+ IterateExpressions(v);
1076
+ IteratePc(v, pc_address(), code());
1077
+ IterateArguments(v);
1078
+ }
1079
+
1080
+
1081
+ void JavaScriptFrame::IterateArguments(ObjectVisitor* v) const {
1082
+ // Traverse callee-saved registers, receiver, and parameters.
1083
+ const int kBaseOffset = JavaScriptFrameConstants::kSavedRegistersOffset;
1084
+ const int kLimitOffset = JavaScriptFrameConstants::kReceiverOffset;
1085
+ Object** base = &Memory::Object_at(fp() + kBaseOffset);
1086
+ Object** limit = &Memory::Object_at(caller_sp() + kLimitOffset) + 1;
1087
+ v->VisitPointers(base, limit);
1088
+ }
1089
+
1090
+
1091
+ void InternalFrame::Iterate(ObjectVisitor* v) const {
1092
+ // Internal frames only have object pointers on the expression stack
1093
+ // as they never have any arguments.
1094
+ IterateExpressions(v);
1095
+ IteratePc(v, pc_address(), code());
1096
+ }
1097
+
1098
+
1099
+ // -------------------------------------------------------------------------
1100
+
1101
+
1102
+ JavaScriptFrame* StackFrameLocator::FindJavaScriptFrame(int n) {
1103
+ ASSERT(n >= 0);
1104
+ for (int i = 0; i <= n; i++) {
1105
+ while (!iterator_.frame()->is_java_script()) iterator_.Advance();
1106
+ if (i == n) return JavaScriptFrame::cast(iterator_.frame());
1107
+ iterator_.Advance();
1108
+ }
1109
+ UNREACHABLE();
1110
+ return NULL;
1111
+ }
1112
+
1113
+
1114
+ // -------------------------------------------------------------------------
1115
+
1116
+
1117
+ Code* PcToCodeCache::GcSafeCastToCode(HeapObject* object, Address pc) {
1118
+ Code* code = reinterpret_cast<Code*>(object);
1119
+ ASSERT(code != NULL && code->contains(pc));
1120
+ return code;
1121
+ }
1122
+
1123
+
1124
+ Code* PcToCodeCache::GcSafeFindCodeForPc(Address pc) {
1125
+ // Check if the pc points into a large object chunk.
1126
+ LargeObjectChunk* chunk = Heap::lo_space()->FindChunkContainingPc(pc);
1127
+ if (chunk != NULL) return GcSafeCastToCode(chunk->GetObject(), pc);
1128
+
1129
+ // Iterate through the 8K page until we reach the end or find an
1130
+ // object starting after the pc.
1131
+ Page* page = Page::FromAddress(pc);
1132
+ HeapObjectIterator iterator(page, Heap::GcSafeSizeOfOldObjectFunction());
1133
+ HeapObject* previous = NULL;
1134
+ while (true) {
1135
+ HeapObject* next = iterator.next();
1136
+ if (next == NULL || next->address() >= pc) {
1137
+ return GcSafeCastToCode(previous, pc);
1138
+ }
1139
+ previous = next;
1140
+ }
1141
+ }
1142
+
1143
+
1144
+ PcToCodeCache::PcToCodeCacheEntry* PcToCodeCache::GetCacheEntry(Address pc) {
1145
+ Counters::pc_to_code.Increment();
1146
+ ASSERT(IsPowerOf2(kPcToCodeCacheSize));
1147
+ uint32_t hash = ComputeIntegerHash(
1148
+ static_cast<uint32_t>(reinterpret_cast<uintptr_t>(pc)));
1149
+ uint32_t index = hash & (kPcToCodeCacheSize - 1);
1150
+ PcToCodeCacheEntry* entry = cache(index);
1151
+ if (entry->pc == pc) {
1152
+ Counters::pc_to_code_cached.Increment();
1153
+ ASSERT(entry->code == GcSafeFindCodeForPc(pc));
1154
+ } else {
1155
+ // Because this code may be interrupted by a profiling signal that
1156
+ // also queries the cache, we cannot update pc before the code has
1157
+ // been set. Otherwise, we risk trying to use a cache entry before
1158
+ // the code has been computed.
1159
+ entry->code = GcSafeFindCodeForPc(pc);
1160
+ entry->safepoint_entry.Reset();
1161
+ entry->pc = pc;
1162
+ }
1163
+ return entry;
1164
+ }
1165
+
1166
+
1167
+ // -------------------------------------------------------------------------
1168
+
1169
+ int NumRegs(RegList reglist) {
1170
+ int n = 0;
1171
+ while (reglist != 0) {
1172
+ n++;
1173
+ reglist &= reglist - 1; // clear one bit
1174
+ }
1175
+ return n;
1176
+ }
1177
+
1178
+
1179
+ int JSCallerSavedCode(int n) {
1180
+ static int reg_code[kNumJSCallerSaved];
1181
+ static bool initialized = false;
1182
+ if (!initialized) {
1183
+ initialized = true;
1184
+ int i = 0;
1185
+ for (int r = 0; r < kNumRegs; r++)
1186
+ if ((kJSCallerSaved & (1 << r)) != 0)
1187
+ reg_code[i++] = r;
1188
+
1189
+ ASSERT(i == kNumJSCallerSaved);
1190
+ }
1191
+ ASSERT(0 <= n && n < kNumJSCallerSaved);
1192
+ return reg_code[n];
1193
+ }
1194
+
1195
+
1196
+ #define DEFINE_WRAPPER(type, field) \
1197
+ class field##_Wrapper : public ZoneObject { \
1198
+ public: /* NOLINT */ \
1199
+ field##_Wrapper(const field& original) : frame_(original) { \
1200
+ } \
1201
+ field frame_; \
1202
+ };
1203
+ STACK_FRAME_TYPE_LIST(DEFINE_WRAPPER)
1204
+ #undef DEFINE_WRAPPER
1205
+
1206
+ static StackFrame* AllocateFrameCopy(StackFrame* frame) {
1207
+ #define FRAME_TYPE_CASE(type, field) \
1208
+ case StackFrame::type: { \
1209
+ field##_Wrapper* wrapper = \
1210
+ new field##_Wrapper(*(reinterpret_cast<field*>(frame))); \
1211
+ return &wrapper->frame_; \
1212
+ }
1213
+
1214
+ switch (frame->type()) {
1215
+ STACK_FRAME_TYPE_LIST(FRAME_TYPE_CASE)
1216
+ default: UNREACHABLE();
1217
+ }
1218
+ #undef FRAME_TYPE_CASE
1219
+ return NULL;
1220
+ }
1221
+
1222
+ Vector<StackFrame*> CreateStackMap() {
1223
+ ZoneList<StackFrame*> list(10);
1224
+ for (StackFrameIterator it; !it.done(); it.Advance()) {
1225
+ StackFrame* frame = AllocateFrameCopy(it.frame());
1226
+ list.Add(frame);
1227
+ }
1228
+ return list.ToVector();
1229
+ }
1230
+
1231
+
1232
+ } } // namespace v8::internal