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,63 @@
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 "../include/v8stdint.h"
29
+ #include "token.h"
30
+
31
+ namespace v8 {
32
+ namespace internal {
33
+
34
+ #define T(name, string, precedence) #name,
35
+ const char* Token::name_[NUM_TOKENS] = {
36
+ TOKEN_LIST(T, T, IGNORE_TOKEN)
37
+ };
38
+ #undef T
39
+
40
+
41
+ #define T(name, string, precedence) string,
42
+ const char* Token::string_[NUM_TOKENS] = {
43
+ TOKEN_LIST(T, T, IGNORE_TOKEN)
44
+ };
45
+ #undef T
46
+
47
+
48
+ #define T(name, string, precedence) precedence,
49
+ int8_t Token::precedence_[NUM_TOKENS] = {
50
+ TOKEN_LIST(T, T, IGNORE_TOKEN)
51
+ };
52
+ #undef T
53
+
54
+
55
+ #define KT(a, b, c) 'T',
56
+ #define KK(a, b, c) 'K',
57
+ const char Token::token_type[] = {
58
+ TOKEN_LIST(KT, KK, IGNORE_TOKEN)
59
+ };
60
+ #undef KT
61
+ #undef KK
62
+
63
+ } } // namespace v8::internal
@@ -0,0 +1,288 @@
1
+ // Copyright 2006-2008 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_TOKEN_H_
29
+ #define V8_TOKEN_H_
30
+
31
+ #include "checks.h"
32
+
33
+ namespace v8 {
34
+ namespace internal {
35
+
36
+ // TOKEN_LIST takes a list of 3 macros M, all of which satisfy the
37
+ // same signature M(name, string, precedence), where name is the
38
+ // symbolic token name, string is the corresponding syntactic symbol
39
+ // (or NULL, for literals), and precedence is the precedence (or 0).
40
+ // The parameters are invoked for token categories as follows:
41
+ //
42
+ // T: Non-keyword tokens
43
+ // K: Keyword tokens
44
+ // F: Future (reserved) keyword tokens
45
+
46
+ // IGNORE_TOKEN is a convenience macro that can be supplied as
47
+ // an argument (at any position) for a TOKEN_LIST call. It does
48
+ // nothing with tokens belonging to the respective category.
49
+
50
+ #define IGNORE_TOKEN(name, string, precedence)
51
+
52
+ #define TOKEN_LIST(T, K, F) \
53
+ /* End of source indicator. */ \
54
+ T(EOS, "EOS", 0) \
55
+ \
56
+ /* Punctuators (ECMA-262, section 7.7, page 15). */ \
57
+ T(LPAREN, "(", 0) \
58
+ T(RPAREN, ")", 0) \
59
+ T(LBRACK, "[", 0) \
60
+ T(RBRACK, "]", 0) \
61
+ T(LBRACE, "{", 0) \
62
+ T(RBRACE, "}", 0) \
63
+ T(COLON, ":", 0) \
64
+ T(SEMICOLON, ";", 0) \
65
+ T(PERIOD, ".", 0) \
66
+ T(CONDITIONAL, "?", 3) \
67
+ T(INC, "++", 0) \
68
+ T(DEC, "--", 0) \
69
+ \
70
+ /* Assignment operators. */ \
71
+ /* IsAssignmentOp() and Assignment::is_compound() relies on */ \
72
+ /* this block of enum values being contiguous and sorted in the */ \
73
+ /* same order! */ \
74
+ T(INIT_VAR, "=init_var", 2) /* AST-use only. */ \
75
+ T(INIT_CONST, "=init_const", 2) /* AST-use only. */ \
76
+ T(ASSIGN, "=", 2) \
77
+ T(ASSIGN_BIT_OR, "|=", 2) \
78
+ T(ASSIGN_BIT_XOR, "^=", 2) \
79
+ T(ASSIGN_BIT_AND, "&=", 2) \
80
+ T(ASSIGN_SHL, "<<=", 2) \
81
+ T(ASSIGN_SAR, ">>=", 2) \
82
+ T(ASSIGN_SHR, ">>>=", 2) \
83
+ T(ASSIGN_ADD, "+=", 2) \
84
+ T(ASSIGN_SUB, "-=", 2) \
85
+ T(ASSIGN_MUL, "*=", 2) \
86
+ T(ASSIGN_DIV, "/=", 2) \
87
+ T(ASSIGN_MOD, "%=", 2) \
88
+ \
89
+ /* Binary operators sorted by precedence. */ \
90
+ /* IsBinaryOp() relies on this block of enum values */ \
91
+ /* being contiguous and sorted in the same order! */ \
92
+ T(COMMA, ",", 1) \
93
+ T(OR, "||", 4) \
94
+ T(AND, "&&", 5) \
95
+ T(BIT_OR, "|", 6) \
96
+ T(BIT_XOR, "^", 7) \
97
+ T(BIT_AND, "&", 8) \
98
+ T(SHL, "<<", 11) \
99
+ T(SAR, ">>", 11) \
100
+ T(SHR, ">>>", 11) \
101
+ T(ADD, "+", 12) \
102
+ T(SUB, "-", 12) \
103
+ T(MUL, "*", 13) \
104
+ T(DIV, "/", 13) \
105
+ T(MOD, "%", 13) \
106
+ \
107
+ /* Compare operators sorted by precedence. */ \
108
+ /* IsCompareOp() relies on this block of enum values */ \
109
+ /* being contiguous and sorted in the same order! */ \
110
+ T(EQ, "==", 9) \
111
+ T(NE, "!=", 9) \
112
+ T(EQ_STRICT, "===", 9) \
113
+ T(NE_STRICT, "!==", 9) \
114
+ T(LT, "<", 10) \
115
+ T(GT, ">", 10) \
116
+ T(LTE, "<=", 10) \
117
+ T(GTE, ">=", 10) \
118
+ K(INSTANCEOF, "instanceof", 10) \
119
+ K(IN, "in", 10) \
120
+ \
121
+ /* Unary operators. */ \
122
+ /* IsUnaryOp() relies on this block of enum values */ \
123
+ /* being contiguous and sorted in the same order! */ \
124
+ T(NOT, "!", 0) \
125
+ T(BIT_NOT, "~", 0) \
126
+ K(DELETE, "delete", 0) \
127
+ K(TYPEOF, "typeof", 0) \
128
+ K(VOID, "void", 0) \
129
+ \
130
+ /* Keywords (ECMA-262, section 7.5.2, page 13). */ \
131
+ K(BREAK, "break", 0) \
132
+ K(CASE, "case", 0) \
133
+ K(CATCH, "catch", 0) \
134
+ K(CONTINUE, "continue", 0) \
135
+ K(DEBUGGER, "debugger", 0) \
136
+ K(DEFAULT, "default", 0) \
137
+ /* DELETE */ \
138
+ K(DO, "do", 0) \
139
+ K(ELSE, "else", 0) \
140
+ K(FINALLY, "finally", 0) \
141
+ K(FOR, "for", 0) \
142
+ K(FUNCTION, "function", 0) \
143
+ K(IF, "if", 0) \
144
+ /* IN */ \
145
+ /* INSTANCEOF */ \
146
+ K(NEW, "new", 0) \
147
+ K(RETURN, "return", 0) \
148
+ K(SWITCH, "switch", 0) \
149
+ K(THIS, "this", 0) \
150
+ K(THROW, "throw", 0) \
151
+ K(TRY, "try", 0) \
152
+ /* TYPEOF */ \
153
+ K(VAR, "var", 0) \
154
+ /* VOID */ \
155
+ K(WHILE, "while", 0) \
156
+ K(WITH, "with", 0) \
157
+ \
158
+ /* Literals (ECMA-262, section 7.8, page 16). */ \
159
+ K(NULL_LITERAL, "null", 0) \
160
+ K(TRUE_LITERAL, "true", 0) \
161
+ K(FALSE_LITERAL, "false", 0) \
162
+ T(NUMBER, NULL, 0) \
163
+ T(STRING, NULL, 0) \
164
+ \
165
+ /* Identifiers (not keywords or future reserved words). */ \
166
+ T(IDENTIFIER, NULL, 0) \
167
+ \
168
+ /* Future reserved words (ECMA-262, section 7.6.1.2). */ \
169
+ T(FUTURE_RESERVED_WORD, NULL, 0) \
170
+ K(CONST, "const", 0) \
171
+ K(NATIVE, "native", 0) \
172
+ \
173
+ /* Illegal token - not able to scan. */ \
174
+ T(ILLEGAL, "ILLEGAL", 0) \
175
+ \
176
+ /* Scanner-internal use only. */ \
177
+ T(WHITESPACE, NULL, 0)
178
+
179
+
180
+ class Token {
181
+ public:
182
+ // All token values.
183
+ #define T(name, string, precedence) name,
184
+ enum Value {
185
+ TOKEN_LIST(T, T, IGNORE_TOKEN)
186
+ NUM_TOKENS
187
+ };
188
+ #undef T
189
+
190
+ // Returns a string corresponding to the C++ token name
191
+ // (e.g. "LT" for the token LT).
192
+ static const char* Name(Value tok) {
193
+ ASSERT(tok < NUM_TOKENS); // tok is unsigned
194
+ return name_[tok];
195
+ }
196
+
197
+ // Predicates
198
+ static bool IsKeyword(Value tok) {
199
+ return token_type[tok] == 'K';
200
+ }
201
+
202
+ static bool IsAssignmentOp(Value tok) {
203
+ return INIT_VAR <= tok && tok <= ASSIGN_MOD;
204
+ }
205
+
206
+ static bool IsBinaryOp(Value op) {
207
+ return COMMA <= op && op <= MOD;
208
+ }
209
+
210
+ static bool IsCompareOp(Value op) {
211
+ return EQ <= op && op <= IN;
212
+ }
213
+
214
+ static bool IsOrderedCompareOp(Value op) {
215
+ return op == LT || op == LTE || op == GT || op == GTE;
216
+ }
217
+
218
+ static Value NegateCompareOp(Value op) {
219
+ ASSERT(IsCompareOp(op));
220
+ switch (op) {
221
+ case EQ: return NE;
222
+ case NE: return EQ;
223
+ case EQ_STRICT: return NE_STRICT;
224
+ case LT: return GTE;
225
+ case GT: return LTE;
226
+ case LTE: return GT;
227
+ case GTE: return LT;
228
+ default:
229
+ return op;
230
+ }
231
+ }
232
+
233
+ static Value InvertCompareOp(Value op) {
234
+ ASSERT(IsCompareOp(op));
235
+ switch (op) {
236
+ case EQ: return NE;
237
+ case NE: return EQ;
238
+ case EQ_STRICT: return NE_STRICT;
239
+ case LT: return GT;
240
+ case GT: return LT;
241
+ case LTE: return GTE;
242
+ case GTE: return LTE;
243
+ default:
244
+ return op;
245
+ }
246
+ }
247
+
248
+ static bool IsBitOp(Value op) {
249
+ return (BIT_OR <= op && op <= SHR) || op == BIT_NOT;
250
+ }
251
+
252
+ static bool IsUnaryOp(Value op) {
253
+ return (NOT <= op && op <= VOID) || op == ADD || op == SUB;
254
+ }
255
+
256
+ static bool IsCountOp(Value op) {
257
+ return op == INC || op == DEC;
258
+ }
259
+
260
+ static bool IsShiftOp(Value op) {
261
+ return (SHL <= op) && (op <= SHR);
262
+ }
263
+
264
+ // Returns a string corresponding to the JS token string
265
+ // (.e., "<" for the token LT) or NULL if the token doesn't
266
+ // have a (unique) string (e.g. an IDENTIFIER).
267
+ static const char* String(Value tok) {
268
+ ASSERT(tok < NUM_TOKENS); // tok is unsigned.
269
+ return string_[tok];
270
+ }
271
+
272
+ // Returns the precedence > 0 for binary and compare
273
+ // operators; returns 0 otherwise.
274
+ static int Precedence(Value tok) {
275
+ ASSERT(tok < NUM_TOKENS); // tok is unsigned.
276
+ return precedence_[tok];
277
+ }
278
+
279
+ private:
280
+ static const char* name_[NUM_TOKENS];
281
+ static const char* string_[NUM_TOKENS];
282
+ static int8_t precedence_[NUM_TOKENS];
283
+ static const char token_type[NUM_TOKENS];
284
+ };
285
+
286
+ } } // namespace v8::internal
287
+
288
+ #endif // V8_TOKEN_H_
@@ -0,0 +1,1152 @@
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 "api.h"
31
+ #include "bootstrapper.h"
32
+ #include "debug.h"
33
+ #include "execution.h"
34
+ #include "messages.h"
35
+ #include "platform.h"
36
+ #include "simulator.h"
37
+ #include "string-stream.h"
38
+ #include "vm-state-inl.h"
39
+
40
+ namespace v8 {
41
+ namespace internal {
42
+
43
+ #ifdef ENABLE_LOGGING_AND_PROFILING
44
+ Semaphore* Top::runtime_profiler_semaphore_ = NULL;
45
+ #endif
46
+ ThreadLocalTop Top::thread_local_;
47
+ Mutex* Top::break_access_ = OS::CreateMutex();
48
+
49
+ NoAllocationStringAllocator* preallocated_message_space = NULL;
50
+
51
+ bool capture_stack_trace_for_uncaught_exceptions = false;
52
+ int stack_trace_for_uncaught_exceptions_frame_limit = 0;
53
+ StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options =
54
+ StackTrace::kOverview;
55
+
56
+ Address top_addresses[] = {
57
+ #define C(name) reinterpret_cast<Address>(Top::name()),
58
+ TOP_ADDRESS_LIST(C)
59
+ TOP_ADDRESS_LIST_PROF(C)
60
+ #undef C
61
+ NULL
62
+ };
63
+
64
+
65
+ v8::TryCatch* ThreadLocalTop::TryCatchHandler() {
66
+ return TRY_CATCH_FROM_ADDRESS(try_catch_handler_address());
67
+ }
68
+
69
+
70
+ void ThreadLocalTop::Initialize() {
71
+ c_entry_fp_ = 0;
72
+ handler_ = 0;
73
+ #ifdef USE_SIMULATOR
74
+ #ifdef V8_TARGET_ARCH_ARM
75
+ simulator_ = Simulator::current();
76
+ #elif V8_TARGET_ARCH_MIPS
77
+ simulator_ = assembler::mips::Simulator::current();
78
+ #endif
79
+ #endif
80
+ #ifdef ENABLE_LOGGING_AND_PROFILING
81
+ js_entry_sp_ = NULL;
82
+ external_callback_ = NULL;
83
+ #endif
84
+ #ifdef ENABLE_VMSTATE_TRACKING
85
+ current_vm_state_ = EXTERNAL;
86
+ runtime_profiler_state_ = Top::PROF_NOT_IN_JS;
87
+ #endif
88
+ try_catch_handler_address_ = NULL;
89
+ context_ = NULL;
90
+ int id = ThreadManager::CurrentId();
91
+ thread_id_ = (id == 0) ? ThreadManager::kInvalidId : id;
92
+ external_caught_exception_ = false;
93
+ failed_access_check_callback_ = NULL;
94
+ save_context_ = NULL;
95
+ catcher_ = NULL;
96
+ }
97
+
98
+
99
+ Address Top::get_address_from_id(Top::AddressId id) {
100
+ return top_addresses[id];
101
+ }
102
+
103
+
104
+ char* Top::Iterate(ObjectVisitor* v, char* thread_storage) {
105
+ ThreadLocalTop* thread = reinterpret_cast<ThreadLocalTop*>(thread_storage);
106
+ Iterate(v, thread);
107
+ return thread_storage + sizeof(ThreadLocalTop);
108
+ }
109
+
110
+
111
+ void Top::IterateThread(ThreadVisitor* v) {
112
+ v->VisitThread(&thread_local_);
113
+ }
114
+
115
+
116
+ void Top::IterateThread(ThreadVisitor* v, char* t) {
117
+ ThreadLocalTop* thread = reinterpret_cast<ThreadLocalTop*>(t);
118
+ v->VisitThread(thread);
119
+ }
120
+
121
+
122
+ void Top::Iterate(ObjectVisitor* v, ThreadLocalTop* thread) {
123
+ // Visit the roots from the top for a given thread.
124
+ Object *pending;
125
+ // The pending exception can sometimes be a failure. We can't show
126
+ // that to the GC, which only understands objects.
127
+ if (thread->pending_exception_->ToObject(&pending)) {
128
+ v->VisitPointer(&pending);
129
+ thread->pending_exception_ = pending; // In case GC updated it.
130
+ }
131
+ v->VisitPointer(&(thread->pending_message_obj_));
132
+ v->VisitPointer(BitCast<Object**>(&(thread->pending_message_script_)));
133
+ v->VisitPointer(BitCast<Object**>(&(thread->context_)));
134
+ Object* scheduled;
135
+ if (thread->scheduled_exception_->ToObject(&scheduled)) {
136
+ v->VisitPointer(&scheduled);
137
+ thread->scheduled_exception_ = scheduled;
138
+ }
139
+
140
+ for (v8::TryCatch* block = thread->TryCatchHandler();
141
+ block != NULL;
142
+ block = TRY_CATCH_FROM_ADDRESS(block->next_)) {
143
+ v->VisitPointer(BitCast<Object**>(&(block->exception_)));
144
+ v->VisitPointer(BitCast<Object**>(&(block->message_)));
145
+ }
146
+
147
+ // Iterate over pointers on native execution stack.
148
+ for (StackFrameIterator it(thread); !it.done(); it.Advance()) {
149
+ it.frame()->Iterate(v);
150
+ }
151
+ }
152
+
153
+
154
+ void Top::Iterate(ObjectVisitor* v) {
155
+ ThreadLocalTop* current_t = &thread_local_;
156
+ Iterate(v, current_t);
157
+ }
158
+
159
+
160
+ void Top::InitializeThreadLocal() {
161
+ thread_local_.Initialize();
162
+ clear_pending_exception();
163
+ clear_pending_message();
164
+ clear_scheduled_exception();
165
+ }
166
+
167
+
168
+ // Create a dummy thread that will wait forever on a semaphore. The only
169
+ // purpose for this thread is to have some stack area to save essential data
170
+ // into for use by a stacks only core dump (aka minidump).
171
+ class PreallocatedMemoryThread: public Thread {
172
+ public:
173
+ PreallocatedMemoryThread()
174
+ : Thread("v8:PreallocMem"),
175
+ keep_running_(true) {
176
+ wait_for_ever_semaphore_ = OS::CreateSemaphore(0);
177
+ data_ready_semaphore_ = OS::CreateSemaphore(0);
178
+ }
179
+
180
+ // When the thread starts running it will allocate a fixed number of bytes
181
+ // on the stack and publish the location of this memory for others to use.
182
+ void Run() {
183
+ EmbeddedVector<char, 15 * 1024> local_buffer;
184
+
185
+ // Initialize the buffer with a known good value.
186
+ OS::StrNCpy(local_buffer, "Trace data was not generated.\n",
187
+ local_buffer.length());
188
+
189
+ // Publish the local buffer and signal its availability.
190
+ data_ = local_buffer.start();
191
+ length_ = local_buffer.length();
192
+ data_ready_semaphore_->Signal();
193
+
194
+ while (keep_running_) {
195
+ // This thread will wait here until the end of time.
196
+ wait_for_ever_semaphore_->Wait();
197
+ }
198
+
199
+ // Make sure we access the buffer after the wait to remove all possibility
200
+ // of it being optimized away.
201
+ OS::StrNCpy(local_buffer, "PreallocatedMemoryThread shutting down.\n",
202
+ local_buffer.length());
203
+ }
204
+
205
+ static char* data() {
206
+ if (data_ready_semaphore_ != NULL) {
207
+ // Initial access is guarded until the data has been published.
208
+ data_ready_semaphore_->Wait();
209
+ delete data_ready_semaphore_;
210
+ data_ready_semaphore_ = NULL;
211
+ }
212
+ return data_;
213
+ }
214
+
215
+ static unsigned length() {
216
+ if (data_ready_semaphore_ != NULL) {
217
+ // Initial access is guarded until the data has been published.
218
+ data_ready_semaphore_->Wait();
219
+ delete data_ready_semaphore_;
220
+ data_ready_semaphore_ = NULL;
221
+ }
222
+ return length_;
223
+ }
224
+
225
+ static void StartThread() {
226
+ if (the_thread_ != NULL) return;
227
+
228
+ the_thread_ = new PreallocatedMemoryThread();
229
+ the_thread_->Start();
230
+ }
231
+
232
+ // Stop the PreallocatedMemoryThread and release its resources.
233
+ static void StopThread() {
234
+ if (the_thread_ == NULL) return;
235
+
236
+ the_thread_->keep_running_ = false;
237
+ wait_for_ever_semaphore_->Signal();
238
+
239
+ // Wait for the thread to terminate.
240
+ the_thread_->Join();
241
+
242
+ if (data_ready_semaphore_ != NULL) {
243
+ delete data_ready_semaphore_;
244
+ data_ready_semaphore_ = NULL;
245
+ }
246
+
247
+ delete wait_for_ever_semaphore_;
248
+ wait_for_ever_semaphore_ = NULL;
249
+
250
+ // Done with the thread entirely.
251
+ delete the_thread_;
252
+ the_thread_ = NULL;
253
+ }
254
+
255
+ private:
256
+ // Used to make sure that the thread keeps looping even for spurious wakeups.
257
+ bool keep_running_;
258
+
259
+ // The preallocated memory thread singleton.
260
+ static PreallocatedMemoryThread* the_thread_;
261
+ // This semaphore is used by the PreallocatedMemoryThread to wait for ever.
262
+ static Semaphore* wait_for_ever_semaphore_;
263
+ // Semaphore to signal that the data has been initialized.
264
+ static Semaphore* data_ready_semaphore_;
265
+
266
+ // Location and size of the preallocated memory block.
267
+ static char* data_;
268
+ static unsigned length_;
269
+
270
+ DISALLOW_COPY_AND_ASSIGN(PreallocatedMemoryThread);
271
+ };
272
+
273
+ PreallocatedMemoryThread* PreallocatedMemoryThread::the_thread_ = NULL;
274
+ Semaphore* PreallocatedMemoryThread::wait_for_ever_semaphore_ = NULL;
275
+ Semaphore* PreallocatedMemoryThread::data_ready_semaphore_ = NULL;
276
+ char* PreallocatedMemoryThread::data_ = NULL;
277
+ unsigned PreallocatedMemoryThread::length_ = 0;
278
+
279
+ static bool initialized = false;
280
+
281
+ void Top::Initialize() {
282
+ CHECK(!initialized);
283
+
284
+ #ifdef ENABLE_LOGGING_AND_PROFILING
285
+ ASSERT(runtime_profiler_semaphore_ == NULL);
286
+ runtime_profiler_semaphore_ = OS::CreateSemaphore(0);
287
+ #endif
288
+
289
+ InitializeThreadLocal();
290
+
291
+ // Only preallocate on the first initialization.
292
+ if (FLAG_preallocate_message_memory && (preallocated_message_space == NULL)) {
293
+ // Start the thread which will set aside some memory.
294
+ PreallocatedMemoryThread::StartThread();
295
+ preallocated_message_space =
296
+ new NoAllocationStringAllocator(PreallocatedMemoryThread::data(),
297
+ PreallocatedMemoryThread::length());
298
+ PreallocatedStorage::Init(PreallocatedMemoryThread::length() / 4);
299
+ }
300
+ initialized = true;
301
+ }
302
+
303
+
304
+ void Top::TearDown() {
305
+ if (initialized) {
306
+ #ifdef ENABLE_LOGGING_AND_PROFILING
307
+ delete runtime_profiler_semaphore_;
308
+ runtime_profiler_semaphore_ = NULL;
309
+ #endif
310
+
311
+ // Remove the external reference to the preallocated stack memory.
312
+ if (preallocated_message_space != NULL) {
313
+ delete preallocated_message_space;
314
+ preallocated_message_space = NULL;
315
+ }
316
+
317
+ PreallocatedMemoryThread::StopThread();
318
+ initialized = false;
319
+ }
320
+ }
321
+
322
+
323
+ void Top::RegisterTryCatchHandler(v8::TryCatch* that) {
324
+ // The ARM simulator has a separate JS stack. We therefore register
325
+ // the C++ try catch handler with the simulator and get back an
326
+ // address that can be used for comparisons with addresses into the
327
+ // JS stack. When running without the simulator, the address
328
+ // returned will be the address of the C++ try catch handler itself.
329
+ Address address = reinterpret_cast<Address>(
330
+ SimulatorStack::RegisterCTryCatch(reinterpret_cast<uintptr_t>(that)));
331
+ thread_local_.set_try_catch_handler_address(address);
332
+ }
333
+
334
+
335
+ void Top::UnregisterTryCatchHandler(v8::TryCatch* that) {
336
+ ASSERT(try_catch_handler() == that);
337
+ thread_local_.set_try_catch_handler_address(
338
+ reinterpret_cast<Address>(that->next_));
339
+ thread_local_.catcher_ = NULL;
340
+ SimulatorStack::UnregisterCTryCatch();
341
+ }
342
+
343
+
344
+
345
+ static int stack_trace_nesting_level = 0;
346
+ static StringStream* incomplete_message = NULL;
347
+
348
+
349
+ Handle<String> Top::StackTraceString() {
350
+ if (stack_trace_nesting_level == 0) {
351
+ stack_trace_nesting_level++;
352
+ HeapStringAllocator allocator;
353
+ StringStream::ClearMentionedObjectCache();
354
+ StringStream accumulator(&allocator);
355
+ incomplete_message = &accumulator;
356
+ PrintStack(&accumulator);
357
+ Handle<String> stack_trace = accumulator.ToString();
358
+ incomplete_message = NULL;
359
+ stack_trace_nesting_level = 0;
360
+ return stack_trace;
361
+ } else if (stack_trace_nesting_level == 1) {
362
+ stack_trace_nesting_level++;
363
+ OS::PrintError(
364
+ "\n\nAttempt to print stack while printing stack (double fault)\n");
365
+ OS::PrintError(
366
+ "If you are lucky you may find a partial stack dump on stdout.\n\n");
367
+ incomplete_message->OutputToStdOut();
368
+ return Factory::empty_symbol();
369
+ } else {
370
+ OS::Abort();
371
+ // Unreachable
372
+ return Factory::empty_symbol();
373
+ }
374
+ }
375
+
376
+
377
+ Handle<JSArray> Top::CaptureCurrentStackTrace(
378
+ int frame_limit, StackTrace::StackTraceOptions options) {
379
+ // Ensure no negative values.
380
+ int limit = Max(frame_limit, 0);
381
+ Handle<JSArray> stack_trace = Factory::NewJSArray(frame_limit);
382
+
383
+ Handle<String> column_key = Factory::LookupAsciiSymbol("column");
384
+ Handle<String> line_key = Factory::LookupAsciiSymbol("lineNumber");
385
+ Handle<String> script_key = Factory::LookupAsciiSymbol("scriptName");
386
+ Handle<String> name_or_source_url_key =
387
+ Factory::LookupAsciiSymbol("nameOrSourceURL");
388
+ Handle<String> script_name_or_source_url_key =
389
+ Factory::LookupAsciiSymbol("scriptNameOrSourceURL");
390
+ Handle<String> function_key = Factory::LookupAsciiSymbol("functionName");
391
+ Handle<String> eval_key = Factory::LookupAsciiSymbol("isEval");
392
+ Handle<String> constructor_key = Factory::LookupAsciiSymbol("isConstructor");
393
+
394
+ StackTraceFrameIterator it;
395
+ int frames_seen = 0;
396
+ while (!it.done() && (frames_seen < limit)) {
397
+ JavaScriptFrame* frame = it.frame();
398
+
399
+ List<FrameSummary> frames(3); // Max 2 levels of inlining.
400
+ frame->Summarize(&frames);
401
+ for (int i = frames.length() - 1; i >= 0 && frames_seen < limit; i--) {
402
+ // Create a JSObject to hold the information for the StackFrame.
403
+ Handle<JSObject> stackFrame = Factory::NewJSObject(object_function());
404
+
405
+ Handle<JSFunction> fun = frames[i].function();
406
+ Handle<Script> script(Script::cast(fun->shared()->script()));
407
+
408
+ if (options & StackTrace::kLineNumber) {
409
+ int script_line_offset = script->line_offset()->value();
410
+ int position = frames[i].code()->SourcePosition(frames[i].pc());
411
+ int line_number = GetScriptLineNumber(script, position);
412
+ // line_number is already shifted by the script_line_offset.
413
+ int relative_line_number = line_number - script_line_offset;
414
+ if (options & StackTrace::kColumnOffset && relative_line_number >= 0) {
415
+ Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
416
+ int start = (relative_line_number == 0) ? 0 :
417
+ Smi::cast(line_ends->get(relative_line_number - 1))->value() + 1;
418
+ int column_offset = position - start;
419
+ if (relative_line_number == 0) {
420
+ // For the case where the code is on the same line as the script
421
+ // tag.
422
+ column_offset += script->column_offset()->value();
423
+ }
424
+ SetLocalPropertyNoThrow(stackFrame, column_key,
425
+ Handle<Smi>(Smi::FromInt(column_offset + 1)));
426
+ }
427
+ SetLocalPropertyNoThrow(stackFrame, line_key,
428
+ Handle<Smi>(Smi::FromInt(line_number + 1)));
429
+ }
430
+
431
+ if (options & StackTrace::kScriptName) {
432
+ Handle<Object> script_name(script->name());
433
+ SetLocalPropertyNoThrow(stackFrame, script_key, script_name);
434
+ }
435
+
436
+ if (options & StackTrace::kScriptNameOrSourceURL) {
437
+ Handle<Object> script_name(script->name());
438
+ Handle<JSValue> script_wrapper = GetScriptWrapper(script);
439
+ Handle<Object> property = GetProperty(script_wrapper,
440
+ name_or_source_url_key);
441
+ ASSERT(property->IsJSFunction());
442
+ Handle<JSFunction> method = Handle<JSFunction>::cast(property);
443
+ bool caught_exception;
444
+ Handle<Object> result = Execution::TryCall(method, script_wrapper, 0,
445
+ NULL, &caught_exception);
446
+ if (caught_exception) {
447
+ result = Factory::undefined_value();
448
+ }
449
+ SetLocalPropertyNoThrow(stackFrame, script_name_or_source_url_key,
450
+ result);
451
+ }
452
+
453
+ if (options & StackTrace::kFunctionName) {
454
+ Handle<Object> fun_name(fun->shared()->name());
455
+ if (fun_name->ToBoolean()->IsFalse()) {
456
+ fun_name = Handle<Object>(fun->shared()->inferred_name());
457
+ }
458
+ SetLocalPropertyNoThrow(stackFrame, function_key, fun_name);
459
+ }
460
+
461
+ if (options & StackTrace::kIsEval) {
462
+ int type = Smi::cast(script->compilation_type())->value();
463
+ Handle<Object> is_eval = (type == Script::COMPILATION_TYPE_EVAL) ?
464
+ Factory::true_value() : Factory::false_value();
465
+ SetLocalPropertyNoThrow(stackFrame, eval_key, is_eval);
466
+ }
467
+
468
+ if (options & StackTrace::kIsConstructor) {
469
+ Handle<Object> is_constructor = (frames[i].is_constructor()) ?
470
+ Factory::true_value() : Factory::false_value();
471
+ SetLocalPropertyNoThrow(stackFrame, constructor_key, is_constructor);
472
+ }
473
+
474
+ FixedArray::cast(stack_trace->elements())->set(frames_seen, *stackFrame);
475
+ frames_seen++;
476
+ }
477
+ it.Advance();
478
+ }
479
+
480
+ stack_trace->set_length(Smi::FromInt(frames_seen));
481
+ return stack_trace;
482
+ }
483
+
484
+
485
+ void Top::PrintStack() {
486
+ if (stack_trace_nesting_level == 0) {
487
+ stack_trace_nesting_level++;
488
+
489
+ StringAllocator* allocator;
490
+ if (preallocated_message_space == NULL) {
491
+ allocator = new HeapStringAllocator();
492
+ } else {
493
+ allocator = preallocated_message_space;
494
+ }
495
+
496
+ NativeAllocationChecker allocation_checker(
497
+ !FLAG_preallocate_message_memory ?
498
+ NativeAllocationChecker::ALLOW :
499
+ NativeAllocationChecker::DISALLOW);
500
+
501
+ StringStream::ClearMentionedObjectCache();
502
+ StringStream accumulator(allocator);
503
+ incomplete_message = &accumulator;
504
+ PrintStack(&accumulator);
505
+ accumulator.OutputToStdOut();
506
+ accumulator.Log();
507
+ incomplete_message = NULL;
508
+ stack_trace_nesting_level = 0;
509
+ if (preallocated_message_space == NULL) {
510
+ // Remove the HeapStringAllocator created above.
511
+ delete allocator;
512
+ }
513
+ } else if (stack_trace_nesting_level == 1) {
514
+ stack_trace_nesting_level++;
515
+ OS::PrintError(
516
+ "\n\nAttempt to print stack while printing stack (double fault)\n");
517
+ OS::PrintError(
518
+ "If you are lucky you may find a partial stack dump on stdout.\n\n");
519
+ incomplete_message->OutputToStdOut();
520
+ }
521
+ }
522
+
523
+
524
+ static void PrintFrames(StringStream* accumulator,
525
+ StackFrame::PrintMode mode) {
526
+ StackFrameIterator it;
527
+ for (int i = 0; !it.done(); it.Advance()) {
528
+ it.frame()->Print(accumulator, mode, i++);
529
+ }
530
+ }
531
+
532
+
533
+ void Top::PrintStack(StringStream* accumulator) {
534
+ // The MentionedObjectCache is not GC-proof at the moment.
535
+ AssertNoAllocation nogc;
536
+ ASSERT(StringStream::IsMentionedObjectCacheClear());
537
+
538
+ // Avoid printing anything if there are no frames.
539
+ if (c_entry_fp(GetCurrentThread()) == 0) return;
540
+
541
+ accumulator->Add(
542
+ "\n==== Stack trace ============================================\n\n");
543
+ PrintFrames(accumulator, StackFrame::OVERVIEW);
544
+
545
+ accumulator->Add(
546
+ "\n==== Details ================================================\n\n");
547
+ PrintFrames(accumulator, StackFrame::DETAILS);
548
+
549
+ accumulator->PrintMentionedObjectCache();
550
+ accumulator->Add("=====================\n\n");
551
+ }
552
+
553
+
554
+ void Top::SetFailedAccessCheckCallback(v8::FailedAccessCheckCallback callback) {
555
+ thread_local_.failed_access_check_callback_ = callback;
556
+ }
557
+
558
+
559
+ void Top::ReportFailedAccessCheck(JSObject* receiver, v8::AccessType type) {
560
+ if (!thread_local_.failed_access_check_callback_) return;
561
+
562
+ ASSERT(receiver->IsAccessCheckNeeded());
563
+ ASSERT(Top::context());
564
+
565
+ // Get the data object from access check info.
566
+ JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
567
+ if (!constructor->shared()->IsApiFunction()) return;
568
+ Object* data_obj =
569
+ constructor->shared()->get_api_func_data()->access_check_info();
570
+ if (data_obj == Heap::undefined_value()) return;
571
+
572
+ HandleScope scope;
573
+ Handle<JSObject> receiver_handle(receiver);
574
+ Handle<Object> data(AccessCheckInfo::cast(data_obj)->data());
575
+ thread_local_.failed_access_check_callback_(
576
+ v8::Utils::ToLocal(receiver_handle),
577
+ type,
578
+ v8::Utils::ToLocal(data));
579
+ }
580
+
581
+
582
+ enum MayAccessDecision {
583
+ YES, NO, UNKNOWN
584
+ };
585
+
586
+
587
+ static MayAccessDecision MayAccessPreCheck(JSObject* receiver,
588
+ v8::AccessType type) {
589
+ // During bootstrapping, callback functions are not enabled yet.
590
+ if (Bootstrapper::IsActive()) return YES;
591
+
592
+ if (receiver->IsJSGlobalProxy()) {
593
+ Object* receiver_context = JSGlobalProxy::cast(receiver)->context();
594
+ if (!receiver_context->IsContext()) return NO;
595
+
596
+ // Get the global context of current top context.
597
+ // avoid using Top::global_context() because it uses Handle.
598
+ Context* global_context = Top::context()->global()->global_context();
599
+ if (receiver_context == global_context) return YES;
600
+
601
+ if (Context::cast(receiver_context)->security_token() ==
602
+ global_context->security_token())
603
+ return YES;
604
+ }
605
+
606
+ return UNKNOWN;
607
+ }
608
+
609
+
610
+ bool Top::MayNamedAccess(JSObject* receiver, Object* key, v8::AccessType type) {
611
+ ASSERT(receiver->IsAccessCheckNeeded());
612
+
613
+ // The callers of this method are not expecting a GC.
614
+ AssertNoAllocation no_gc;
615
+
616
+ // Skip checks for hidden properties access. Note, we do not
617
+ // require existence of a context in this case.
618
+ if (key == Heap::hidden_symbol()) return true;
619
+
620
+ // Check for compatibility between the security tokens in the
621
+ // current lexical context and the accessed object.
622
+ ASSERT(Top::context());
623
+
624
+ MayAccessDecision decision = MayAccessPreCheck(receiver, type);
625
+ if (decision != UNKNOWN) return decision == YES;
626
+
627
+ // Get named access check callback
628
+ JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
629
+ if (!constructor->shared()->IsApiFunction()) return false;
630
+
631
+ Object* data_obj =
632
+ constructor->shared()->get_api_func_data()->access_check_info();
633
+ if (data_obj == Heap::undefined_value()) return false;
634
+
635
+ Object* fun_obj = AccessCheckInfo::cast(data_obj)->named_callback();
636
+ v8::NamedSecurityCallback callback =
637
+ v8::ToCData<v8::NamedSecurityCallback>(fun_obj);
638
+
639
+ if (!callback) return false;
640
+
641
+ HandleScope scope;
642
+ Handle<JSObject> receiver_handle(receiver);
643
+ Handle<Object> key_handle(key);
644
+ Handle<Object> data(AccessCheckInfo::cast(data_obj)->data());
645
+ LOG(ApiNamedSecurityCheck(key));
646
+ bool result = false;
647
+ {
648
+ // Leaving JavaScript.
649
+ VMState state(EXTERNAL);
650
+ result = callback(v8::Utils::ToLocal(receiver_handle),
651
+ v8::Utils::ToLocal(key_handle),
652
+ type,
653
+ v8::Utils::ToLocal(data));
654
+ }
655
+ return result;
656
+ }
657
+
658
+
659
+ bool Top::MayIndexedAccess(JSObject* receiver,
660
+ uint32_t index,
661
+ v8::AccessType type) {
662
+ ASSERT(receiver->IsAccessCheckNeeded());
663
+ // Check for compatibility between the security tokens in the
664
+ // current lexical context and the accessed object.
665
+ ASSERT(Top::context());
666
+ // The callers of this method are not expecting a GC.
667
+ AssertNoAllocation no_gc;
668
+
669
+ MayAccessDecision decision = MayAccessPreCheck(receiver, type);
670
+ if (decision != UNKNOWN) return decision == YES;
671
+
672
+ // Get indexed access check callback
673
+ JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
674
+ if (!constructor->shared()->IsApiFunction()) return false;
675
+
676
+ Object* data_obj =
677
+ constructor->shared()->get_api_func_data()->access_check_info();
678
+ if (data_obj == Heap::undefined_value()) return false;
679
+
680
+ Object* fun_obj = AccessCheckInfo::cast(data_obj)->indexed_callback();
681
+ v8::IndexedSecurityCallback callback =
682
+ v8::ToCData<v8::IndexedSecurityCallback>(fun_obj);
683
+
684
+ if (!callback) return false;
685
+
686
+ HandleScope scope;
687
+ Handle<JSObject> receiver_handle(receiver);
688
+ Handle<Object> data(AccessCheckInfo::cast(data_obj)->data());
689
+ LOG(ApiIndexedSecurityCheck(index));
690
+ bool result = false;
691
+ {
692
+ // Leaving JavaScript.
693
+ VMState state(EXTERNAL);
694
+ result = callback(v8::Utils::ToLocal(receiver_handle),
695
+ index,
696
+ type,
697
+ v8::Utils::ToLocal(data));
698
+ }
699
+ return result;
700
+ }
701
+
702
+
703
+ const char* Top::kStackOverflowMessage =
704
+ "Uncaught RangeError: Maximum call stack size exceeded";
705
+
706
+
707
+ Failure* Top::StackOverflow() {
708
+ HandleScope scope;
709
+ Handle<String> key = Factory::stack_overflow_symbol();
710
+ Handle<JSObject> boilerplate =
711
+ Handle<JSObject>::cast(GetProperty(Top::builtins(), key));
712
+ Handle<Object> exception = Copy(boilerplate);
713
+ // TODO(1240995): To avoid having to call JavaScript code to compute
714
+ // the message for stack overflow exceptions which is very likely to
715
+ // double fault with another stack overflow exception, we use a
716
+ // precomputed message.
717
+ DoThrow(*exception, NULL, kStackOverflowMessage);
718
+ return Failure::Exception();
719
+ }
720
+
721
+
722
+ Failure* Top::TerminateExecution() {
723
+ DoThrow(Heap::termination_exception(), NULL, NULL);
724
+ return Failure::Exception();
725
+ }
726
+
727
+
728
+ Failure* Top::Throw(Object* exception, MessageLocation* location) {
729
+ DoThrow(exception, location, NULL);
730
+ return Failure::Exception();
731
+ }
732
+
733
+
734
+ Failure* Top::ReThrow(MaybeObject* exception, MessageLocation* location) {
735
+ bool can_be_caught_externally = false;
736
+ ShouldReportException(&can_be_caught_externally,
737
+ is_catchable_by_javascript(exception));
738
+ thread_local_.catcher_ = can_be_caught_externally ?
739
+ try_catch_handler() : NULL;
740
+
741
+ // Set the exception being re-thrown.
742
+ set_pending_exception(exception);
743
+ return Failure::Exception();
744
+ }
745
+
746
+
747
+ Failure* Top::ThrowIllegalOperation() {
748
+ return Throw(Heap::illegal_access_symbol());
749
+ }
750
+
751
+
752
+ void Top::ScheduleThrow(Object* exception) {
753
+ // When scheduling a throw we first throw the exception to get the
754
+ // error reporting if it is uncaught before rescheduling it.
755
+ Throw(exception);
756
+ thread_local_.scheduled_exception_ = pending_exception();
757
+ thread_local_.external_caught_exception_ = false;
758
+ clear_pending_exception();
759
+ }
760
+
761
+
762
+ Failure* Top::PromoteScheduledException() {
763
+ MaybeObject* thrown = scheduled_exception();
764
+ clear_scheduled_exception();
765
+ // Re-throw the exception to avoid getting repeated error reporting.
766
+ return ReThrow(thrown);
767
+ }
768
+
769
+
770
+ void Top::PrintCurrentStackTrace(FILE* out) {
771
+ StackTraceFrameIterator it;
772
+ while (!it.done()) {
773
+ HandleScope scope;
774
+ // Find code position if recorded in relocation info.
775
+ JavaScriptFrame* frame = it.frame();
776
+ int pos = frame->code()->SourcePosition(frame->pc());
777
+ Handle<Object> pos_obj(Smi::FromInt(pos));
778
+ // Fetch function and receiver.
779
+ Handle<JSFunction> fun(JSFunction::cast(frame->function()));
780
+ Handle<Object> recv(frame->receiver());
781
+ // Advance to the next JavaScript frame and determine if the
782
+ // current frame is the top-level frame.
783
+ it.Advance();
784
+ Handle<Object> is_top_level = it.done()
785
+ ? Factory::true_value()
786
+ : Factory::false_value();
787
+ // Generate and print stack trace line.
788
+ Handle<String> line =
789
+ Execution::GetStackTraceLine(recv, fun, pos_obj, is_top_level);
790
+ if (line->length() > 0) {
791
+ line->PrintOn(out);
792
+ fprintf(out, "\n");
793
+ }
794
+ }
795
+ }
796
+
797
+
798
+ void Top::ComputeLocation(MessageLocation* target) {
799
+ *target = MessageLocation(Handle<Script>(Heap::empty_script()), -1, -1);
800
+ StackTraceFrameIterator it;
801
+ if (!it.done()) {
802
+ JavaScriptFrame* frame = it.frame();
803
+ JSFunction* fun = JSFunction::cast(frame->function());
804
+ Object* script = fun->shared()->script();
805
+ if (script->IsScript() &&
806
+ !(Script::cast(script)->source()->IsUndefined())) {
807
+ int pos = frame->code()->SourcePosition(frame->pc());
808
+ // Compute the location from the function and the reloc info.
809
+ Handle<Script> casted_script(Script::cast(script));
810
+ *target = MessageLocation(casted_script, pos, pos + 1);
811
+ }
812
+ }
813
+ }
814
+
815
+
816
+ bool Top::ShouldReportException(bool* can_be_caught_externally,
817
+ bool catchable_by_javascript) {
818
+ // Find the top-most try-catch handler.
819
+ StackHandler* handler =
820
+ StackHandler::FromAddress(Top::handler(Top::GetCurrentThread()));
821
+ while (handler != NULL && !handler->is_try_catch()) {
822
+ handler = handler->next();
823
+ }
824
+
825
+ // Get the address of the external handler so we can compare the address to
826
+ // determine which one is closer to the top of the stack.
827
+ Address external_handler_address = thread_local_.try_catch_handler_address();
828
+
829
+ // The exception has been externally caught if and only if there is
830
+ // an external handler which is on top of the top-most try-catch
831
+ // handler.
832
+ *can_be_caught_externally = external_handler_address != NULL &&
833
+ (handler == NULL || handler->address() > external_handler_address ||
834
+ !catchable_by_javascript);
835
+
836
+ if (*can_be_caught_externally) {
837
+ // Only report the exception if the external handler is verbose.
838
+ return try_catch_handler()->is_verbose_;
839
+ } else {
840
+ // Report the exception if it isn't caught by JavaScript code.
841
+ return handler == NULL;
842
+ }
843
+ }
844
+
845
+
846
+ void Top::DoThrow(MaybeObject* exception,
847
+ MessageLocation* location,
848
+ const char* message) {
849
+ ASSERT(!has_pending_exception());
850
+
851
+ HandleScope scope;
852
+ Object* exception_object = Smi::FromInt(0);
853
+ bool is_object = exception->ToObject(&exception_object);
854
+ Handle<Object> exception_handle(exception_object);
855
+
856
+ // Determine reporting and whether the exception is caught externally.
857
+ bool catchable_by_javascript = is_catchable_by_javascript(exception);
858
+ // Only real objects can be caught by JS.
859
+ ASSERT(!catchable_by_javascript || is_object);
860
+ bool can_be_caught_externally = false;
861
+ bool should_report_exception =
862
+ ShouldReportException(&can_be_caught_externally, catchable_by_javascript);
863
+ bool report_exception = catchable_by_javascript && should_report_exception;
864
+
865
+ #ifdef ENABLE_DEBUGGER_SUPPORT
866
+ // Notify debugger of exception.
867
+ if (catchable_by_javascript) {
868
+ Debugger::OnException(exception_handle, report_exception);
869
+ }
870
+ #endif
871
+
872
+ // Generate the message.
873
+ Handle<Object> message_obj;
874
+ MessageLocation potential_computed_location;
875
+ bool try_catch_needs_message =
876
+ can_be_caught_externally &&
877
+ try_catch_handler()->capture_message_;
878
+ if (report_exception || try_catch_needs_message) {
879
+ if (location == NULL) {
880
+ // If no location was specified we use a computed one instead
881
+ ComputeLocation(&potential_computed_location);
882
+ location = &potential_computed_location;
883
+ }
884
+ if (!Bootstrapper::IsActive()) {
885
+ // It's not safe to try to make message objects or collect stack
886
+ // traces while the bootstrapper is active since the infrastructure
887
+ // may not have been properly initialized.
888
+ Handle<String> stack_trace;
889
+ if (FLAG_trace_exception) stack_trace = StackTraceString();
890
+ Handle<JSArray> stack_trace_object;
891
+ if (report_exception && capture_stack_trace_for_uncaught_exceptions) {
892
+ stack_trace_object = Top::CaptureCurrentStackTrace(
893
+ stack_trace_for_uncaught_exceptions_frame_limit,
894
+ stack_trace_for_uncaught_exceptions_options);
895
+ }
896
+ ASSERT(is_object); // Can't use the handle unless there's a real object.
897
+ message_obj = MessageHandler::MakeMessageObject("uncaught_exception",
898
+ location, HandleVector<Object>(&exception_handle, 1), stack_trace,
899
+ stack_trace_object);
900
+ }
901
+ }
902
+
903
+ // Save the message for reporting if the the exception remains uncaught.
904
+ thread_local_.has_pending_message_ = report_exception;
905
+ thread_local_.pending_message_ = message;
906
+ if (!message_obj.is_null()) {
907
+ thread_local_.pending_message_obj_ = *message_obj;
908
+ if (location != NULL) {
909
+ thread_local_.pending_message_script_ = *location->script();
910
+ thread_local_.pending_message_start_pos_ = location->start_pos();
911
+ thread_local_.pending_message_end_pos_ = location->end_pos();
912
+ }
913
+ }
914
+
915
+ // Do not forget to clean catcher_ if currently thrown exception cannot
916
+ // be caught. If necessary, ReThrow will update the catcher.
917
+ thread_local_.catcher_ = can_be_caught_externally ?
918
+ try_catch_handler() : NULL;
919
+
920
+ // NOTE: Notifying the debugger or generating the message
921
+ // may have caused new exceptions. For now, we just ignore
922
+ // that and set the pending exception to the original one.
923
+ if (is_object) {
924
+ set_pending_exception(*exception_handle);
925
+ } else {
926
+ // Failures are not on the heap so they neither need nor work with handles.
927
+ ASSERT(exception_handle->IsFailure());
928
+ set_pending_exception(exception);
929
+ }
930
+ }
931
+
932
+
933
+ bool Top::IsExternallyCaught() {
934
+ ASSERT(has_pending_exception());
935
+
936
+ if ((thread_local_.catcher_ == NULL) ||
937
+ (try_catch_handler() != thread_local_.catcher_)) {
938
+ // When throwing the exception, we found no v8::TryCatch
939
+ // which should care about this exception.
940
+ return false;
941
+ }
942
+
943
+ if (!is_catchable_by_javascript(pending_exception())) {
944
+ return true;
945
+ }
946
+
947
+ // Get the address of the external handler so we can compare the address to
948
+ // determine which one is closer to the top of the stack.
949
+ Address external_handler_address = thread_local_.try_catch_handler_address();
950
+ ASSERT(external_handler_address != NULL);
951
+
952
+ // The exception has been externally caught if and only if there is
953
+ // an external handler which is on top of the top-most try-finally
954
+ // handler.
955
+ // There should be no try-catch blocks as they would prohibit us from
956
+ // finding external catcher in the first place (see catcher_ check above).
957
+ //
958
+ // Note, that finally clause would rethrow an exception unless it's
959
+ // aborted by jumps in control flow like return, break, etc. and we'll
960
+ // have another chances to set proper v8::TryCatch.
961
+ StackHandler* handler =
962
+ StackHandler::FromAddress(Top::handler(Top::GetCurrentThread()));
963
+ while (handler != NULL && handler->address() < external_handler_address) {
964
+ ASSERT(!handler->is_try_catch());
965
+ if (handler->is_try_finally()) return false;
966
+
967
+ handler = handler->next();
968
+ }
969
+
970
+ return true;
971
+ }
972
+
973
+
974
+ void Top::ReportPendingMessages() {
975
+ ASSERT(has_pending_exception());
976
+ // If the pending exception is OutOfMemoryException set out_of_memory in
977
+ // the global context. Note: We have to mark the global context here
978
+ // since the GenerateThrowOutOfMemory stub cannot make a RuntimeCall to
979
+ // set it.
980
+ bool external_caught = IsExternallyCaught();
981
+ thread_local_.external_caught_exception_ = external_caught;
982
+ HandleScope scope;
983
+ if (thread_local_.pending_exception_ == Failure::OutOfMemoryException()) {
984
+ context()->mark_out_of_memory();
985
+ } else if (thread_local_.pending_exception_ ==
986
+ Heap::termination_exception()) {
987
+ if (external_caught) {
988
+ try_catch_handler()->can_continue_ = false;
989
+ try_catch_handler()->exception_ = Heap::null_value();
990
+ }
991
+ } else {
992
+ // At this point all non-object (failure) exceptions have
993
+ // been dealt with so this shouldn't fail.
994
+ Object* pending_exception_object = pending_exception()->ToObjectUnchecked();
995
+ Handle<Object> exception(pending_exception_object);
996
+ thread_local_.external_caught_exception_ = false;
997
+ if (external_caught) {
998
+ try_catch_handler()->can_continue_ = true;
999
+ try_catch_handler()->exception_ = thread_local_.pending_exception_;
1000
+ if (!thread_local_.pending_message_obj_->IsTheHole()) {
1001
+ try_catch_handler()->message_ = thread_local_.pending_message_obj_;
1002
+ }
1003
+ }
1004
+ if (thread_local_.has_pending_message_) {
1005
+ thread_local_.has_pending_message_ = false;
1006
+ if (thread_local_.pending_message_ != NULL) {
1007
+ MessageHandler::ReportMessage(thread_local_.pending_message_);
1008
+ } else if (!thread_local_.pending_message_obj_->IsTheHole()) {
1009
+ Handle<Object> message_obj(thread_local_.pending_message_obj_);
1010
+ if (thread_local_.pending_message_script_ != NULL) {
1011
+ Handle<Script> script(thread_local_.pending_message_script_);
1012
+ int start_pos = thread_local_.pending_message_start_pos_;
1013
+ int end_pos = thread_local_.pending_message_end_pos_;
1014
+ MessageLocation location(script, start_pos, end_pos);
1015
+ MessageHandler::ReportMessage(&location, message_obj);
1016
+ } else {
1017
+ MessageHandler::ReportMessage(NULL, message_obj);
1018
+ }
1019
+ }
1020
+ }
1021
+ thread_local_.external_caught_exception_ = external_caught;
1022
+ set_pending_exception(*exception);
1023
+ }
1024
+ clear_pending_message();
1025
+ }
1026
+
1027
+
1028
+ void Top::TraceException(bool flag) {
1029
+ FLAG_trace_exception = flag;
1030
+ }
1031
+
1032
+
1033
+ bool Top::OptionalRescheduleException(bool is_bottom_call) {
1034
+ // Allways reschedule out of memory exceptions.
1035
+ if (!is_out_of_memory()) {
1036
+ bool is_termination_exception =
1037
+ pending_exception() == Heap::termination_exception();
1038
+
1039
+ // Do not reschedule the exception if this is the bottom call.
1040
+ bool clear_exception = is_bottom_call;
1041
+
1042
+ if (is_termination_exception) {
1043
+ if (is_bottom_call) {
1044
+ thread_local_.external_caught_exception_ = false;
1045
+ clear_pending_exception();
1046
+ return false;
1047
+ }
1048
+ } else if (thread_local_.external_caught_exception_) {
1049
+ // If the exception is externally caught, clear it if there are no
1050
+ // JavaScript frames on the way to the C++ frame that has the
1051
+ // external handler.
1052
+ ASSERT(thread_local_.try_catch_handler_address() != NULL);
1053
+ Address external_handler_address =
1054
+ thread_local_.try_catch_handler_address();
1055
+ JavaScriptFrameIterator it;
1056
+ if (it.done() || (it.frame()->sp() > external_handler_address)) {
1057
+ clear_exception = true;
1058
+ }
1059
+ }
1060
+
1061
+ // Clear the exception if needed.
1062
+ if (clear_exception) {
1063
+ thread_local_.external_caught_exception_ = false;
1064
+ clear_pending_exception();
1065
+ return false;
1066
+ }
1067
+ }
1068
+
1069
+ // Reschedule the exception.
1070
+ thread_local_.scheduled_exception_ = pending_exception();
1071
+ clear_pending_exception();
1072
+ return true;
1073
+ }
1074
+
1075
+
1076
+ void Top::SetCaptureStackTraceForUncaughtExceptions(
1077
+ bool capture,
1078
+ int frame_limit,
1079
+ StackTrace::StackTraceOptions options) {
1080
+ capture_stack_trace_for_uncaught_exceptions = capture;
1081
+ stack_trace_for_uncaught_exceptions_frame_limit = frame_limit;
1082
+ stack_trace_for_uncaught_exceptions_options = options;
1083
+ }
1084
+
1085
+
1086
+ bool Top::is_out_of_memory() {
1087
+ if (has_pending_exception()) {
1088
+ MaybeObject* e = pending_exception();
1089
+ if (e->IsFailure() && Failure::cast(e)->IsOutOfMemoryException()) {
1090
+ return true;
1091
+ }
1092
+ }
1093
+ if (has_scheduled_exception()) {
1094
+ MaybeObject* e = scheduled_exception();
1095
+ if (e->IsFailure() && Failure::cast(e)->IsOutOfMemoryException()) {
1096
+ return true;
1097
+ }
1098
+ }
1099
+ return false;
1100
+ }
1101
+
1102
+
1103
+ Handle<Context> Top::global_context() {
1104
+ GlobalObject* global = thread_local_.context_->global();
1105
+ return Handle<Context>(global->global_context());
1106
+ }
1107
+
1108
+
1109
+ Handle<Context> Top::GetCallingGlobalContext() {
1110
+ JavaScriptFrameIterator it;
1111
+ #ifdef ENABLE_DEBUGGER_SUPPORT
1112
+ if (Debug::InDebugger()) {
1113
+ while (!it.done()) {
1114
+ JavaScriptFrame* frame = it.frame();
1115
+ Context* context = Context::cast(frame->context());
1116
+ if (context->global_context() == *Debug::debug_context()) {
1117
+ it.Advance();
1118
+ } else {
1119
+ break;
1120
+ }
1121
+ }
1122
+ }
1123
+ #endif // ENABLE_DEBUGGER_SUPPORT
1124
+ if (it.done()) return Handle<Context>::null();
1125
+ JavaScriptFrame* frame = it.frame();
1126
+ Context* context = Context::cast(frame->context());
1127
+ return Handle<Context>(context->global_context());
1128
+ }
1129
+
1130
+
1131
+ char* Top::ArchiveThread(char* to) {
1132
+ memcpy(to, reinterpret_cast<char*>(&thread_local_), sizeof(thread_local_));
1133
+ InitializeThreadLocal();
1134
+ return to + sizeof(thread_local_);
1135
+ }
1136
+
1137
+
1138
+ char* Top::RestoreThread(char* from) {
1139
+ memcpy(reinterpret_cast<char*>(&thread_local_), from, sizeof(thread_local_));
1140
+ // This might be just paranoia, but it seems to be needed in case a
1141
+ // thread_local_ is restored on a separate OS thread.
1142
+ #ifdef USE_SIMULATOR
1143
+ #ifdef V8_TARGET_ARCH_ARM
1144
+ thread_local_.simulator_ = Simulator::current();
1145
+ #elif V8_TARGET_ARCH_MIPS
1146
+ thread_local_.simulator_ = assembler::mips::Simulator::current();
1147
+ #endif
1148
+ #endif
1149
+ return from + sizeof(thread_local_);
1150
+ }
1151
+
1152
+ } } // namespace v8::internal