therubyracer 0.9.0beta2 → 0.9.0beta3

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 (920) hide show
  1. data/.gitmodules +3 -0
  2. data/ext/v8/upstream/Makefile +1 -2
  3. data/ext/v8/upstream/v8/.gitignore +33 -0
  4. data/ext/v8/upstream/v8/AUTHORS +42 -0
  5. data/ext/v8/upstream/v8/ChangeLog +2663 -0
  6. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE +0 -0
  7. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.strongtalk +0 -0
  8. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.v8 +0 -0
  9. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.valgrind +0 -0
  10. data/ext/v8/upstream/v8/SConstruct +1473 -0
  11. data/ext/v8/upstream/{3.1.8 → v8}/build/README.txt +0 -0
  12. data/ext/v8/upstream/{3.1.8 → v8}/build/all.gyp +0 -0
  13. data/ext/v8/upstream/{3.1.8 → v8}/build/armu.gypi +0 -0
  14. data/ext/v8/upstream/{3.1.8 → v8}/build/common.gypi +0 -0
  15. data/ext/v8/upstream/{3.1.8 → v8}/build/gyp_v8 +0 -0
  16. data/ext/v8/upstream/v8/include/v8-debug.h +394 -0
  17. data/ext/v8/upstream/v8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/v8/include/v8-profiler.h +505 -0
  19. data/ext/v8/upstream/v8/include/v8-testing.h +104 -0
  20. data/ext/v8/upstream/v8/include/v8.h +4000 -0
  21. data/ext/v8/upstream/{3.1.8 → v8}/include/v8stdint.h +0 -0
  22. data/ext/v8/upstream/v8/preparser/SConscript +38 -0
  23. data/ext/v8/upstream/v8/preparser/preparser-process.cc +169 -0
  24. data/ext/v8/upstream/v8/src/SConscript +380 -0
  25. data/ext/v8/upstream/v8/src/accessors.cc +766 -0
  26. data/ext/v8/upstream/{3.1.8 → v8}/src/accessors.h +0 -0
  27. data/ext/v8/upstream/v8/src/allocation-inl.h +49 -0
  28. data/ext/v8/upstream/v8/src/allocation.cc +122 -0
  29. data/ext/v8/upstream/v8/src/allocation.h +143 -0
  30. data/ext/v8/upstream/v8/src/api.cc +5678 -0
  31. data/ext/v8/upstream/v8/src/api.h +572 -0
  32. data/ext/v8/upstream/{3.1.8 → v8}/src/apinatives.js +0 -0
  33. data/ext/v8/upstream/v8/src/apiutils.h +73 -0
  34. data/ext/v8/upstream/v8/src/arguments.h +116 -0
  35. data/ext/v8/upstream/v8/src/arm/assembler-arm-inl.h +353 -0
  36. data/ext/v8/upstream/v8/src/arm/assembler-arm.cc +2877 -0
  37. data/ext/v8/upstream/v8/src/arm/assembler-arm.h +1382 -0
  38. data/ext/v8/upstream/v8/src/arm/builtins-arm.cc +1634 -0
  39. data/ext/v8/upstream/v8/src/arm/code-stubs-arm.cc +6917 -0
  40. data/ext/v8/upstream/v8/src/arm/code-stubs-arm.h +623 -0
  41. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/codegen-arm-inl.h +0 -0
  42. data/ext/v8/upstream/v8/src/arm/codegen-arm.cc +7437 -0
  43. data/ext/v8/upstream/v8/src/arm/codegen-arm.h +595 -0
  44. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/constants-arm.cc +0 -0
  45. data/ext/v8/upstream/v8/src/arm/constants-arm.h +778 -0
  46. data/ext/v8/upstream/v8/src/arm/cpu-arm.cc +149 -0
  47. data/ext/v8/upstream/v8/src/arm/debug-arm.cc +317 -0
  48. data/ext/v8/upstream/v8/src/arm/deoptimizer-arm.cc +737 -0
  49. data/ext/v8/upstream/v8/src/arm/disasm-arm.cc +1503 -0
  50. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/frames-arm.cc +0 -0
  51. data/ext/v8/upstream/v8/src/arm/frames-arm.h +168 -0
  52. data/ext/v8/upstream/v8/src/arm/full-codegen-arm.cc +4374 -0
  53. data/ext/v8/upstream/v8/src/arm/ic-arm.cc +1793 -0
  54. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/jump-target-arm.cc +0 -0
  55. data/ext/v8/upstream/v8/src/arm/lithium-arm.cc +2120 -0
  56. data/ext/v8/upstream/v8/src/arm/lithium-arm.h +2179 -0
  57. data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.cc +4132 -0
  58. data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.h +329 -0
  59. data/ext/v8/upstream/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
  60. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/lithium-gap-resolver-arm.h +0 -0
  61. data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.cc +2939 -0
  62. data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.h +1071 -0
  63. data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
  64. data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
  65. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm-inl.h +0 -0
  66. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.cc +0 -0
  67. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.h +0 -0
  68. data/ext/v8/upstream/v8/src/arm/simulator-arm.cc +3288 -0
  69. data/ext/v8/upstream/v8/src/arm/simulator-arm.h +413 -0
  70. data/ext/v8/upstream/v8/src/arm/stub-cache-arm.cc +4034 -0
  71. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/virtual-frame-arm-inl.h +0 -0
  72. data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.cc +843 -0
  73. data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.h +523 -0
  74. data/ext/v8/upstream/v8/src/array.js +1249 -0
  75. data/ext/v8/upstream/v8/src/assembler.cc +1067 -0
  76. data/ext/v8/upstream/v8/src/assembler.h +823 -0
  77. data/ext/v8/upstream/v8/src/ast-inl.h +112 -0
  78. data/ext/v8/upstream/v8/src/ast.cc +1078 -0
  79. data/ext/v8/upstream/v8/src/ast.h +2234 -0
  80. data/ext/v8/upstream/v8/src/atomicops.h +167 -0
  81. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_arm_gcc.h +0 -0
  82. data/ext/v8/upstream/v8/src/atomicops_internals_mips_gcc.h +169 -0
  83. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.cc +0 -0
  84. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.h +0 -0
  85. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_macosx.h +0 -0
  86. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_msvc.h +0 -0
  87. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.cc +0 -0
  88. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.h +0 -0
  89. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.cc +0 -0
  90. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.h +0 -0
  91. data/ext/v8/upstream/v8/src/bootstrapper.cc +2138 -0
  92. data/ext/v8/upstream/v8/src/bootstrapper.h +185 -0
  93. data/ext/v8/upstream/v8/src/builtins.cc +1708 -0
  94. data/ext/v8/upstream/v8/src/builtins.h +368 -0
  95. data/ext/v8/upstream/{3.1.8 → v8}/src/bytecodes-irregexp.h +0 -0
  96. data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.cc +0 -0
  97. data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.h +0 -0
  98. data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates-inl.h +0 -0
  99. data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates.h +0 -0
  100. data/ext/v8/upstream/v8/src/checks.cc +110 -0
  101. data/ext/v8/upstream/v8/src/checks.h +296 -0
  102. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue-inl.h +0 -0
  103. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.cc +0 -0
  104. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.h +0 -0
  105. data/ext/v8/upstream/v8/src/code-stubs.cc +240 -0
  106. data/ext/v8/upstream/v8/src/code-stubs.h +971 -0
  107. data/ext/v8/upstream/{3.1.8 → v8}/src/code.h +0 -0
  108. data/ext/v8/upstream/v8/src/codegen-inl.h +68 -0
  109. data/ext/v8/upstream/v8/src/codegen.cc +505 -0
  110. data/ext/v8/upstream/v8/src/codegen.h +245 -0
  111. data/ext/v8/upstream/v8/src/compilation-cache.cc +540 -0
  112. data/ext/v8/upstream/v8/src/compilation-cache.h +287 -0
  113. data/ext/v8/upstream/v8/src/compiler.cc +792 -0
  114. data/ext/v8/upstream/v8/src/compiler.h +307 -0
  115. data/ext/v8/upstream/v8/src/contexts.cc +327 -0
  116. data/ext/v8/upstream/v8/src/contexts.h +382 -0
  117. data/ext/v8/upstream/{3.1.8 → v8}/src/conversions-inl.h +0 -0
  118. data/ext/v8/upstream/v8/src/conversions.cc +1125 -0
  119. data/ext/v8/upstream/{3.1.8 → v8}/src/conversions.h +0 -0
  120. data/ext/v8/upstream/v8/src/counters.cc +93 -0
  121. data/ext/v8/upstream/v8/src/counters.h +254 -0
  122. data/ext/v8/upstream/v8/src/cpu-profiler-inl.h +101 -0
  123. data/ext/v8/upstream/v8/src/cpu-profiler.cc +606 -0
  124. data/ext/v8/upstream/v8/src/cpu-profiler.h +305 -0
  125. data/ext/v8/upstream/v8/src/cpu.h +67 -0
  126. data/ext/v8/upstream/v8/src/d8-debug.cc +367 -0
  127. data/ext/v8/upstream/v8/src/d8-debug.h +158 -0
  128. data/ext/v8/upstream/v8/src/d8-posix.cc +695 -0
  129. data/ext/v8/upstream/{3.1.8 → v8}/src/d8-readline.cc +0 -0
  130. data/ext/v8/upstream/{3.1.8 → v8}/src/d8-windows.cc +0 -0
  131. data/ext/v8/upstream/v8/src/d8.cc +796 -0
  132. data/ext/v8/upstream/v8/src/d8.gyp +88 -0
  133. data/ext/v8/upstream/{3.1.8 → v8}/src/d8.h +0 -0
  134. data/ext/v8/upstream/{3.1.8 → v8}/src/d8.js +0 -0
  135. data/ext/v8/upstream/{3.1.8 → v8}/src/data-flow.cc +0 -0
  136. data/ext/v8/upstream/v8/src/data-flow.h +379 -0
  137. data/ext/v8/upstream/{3.1.8 → v8}/src/date.js +0 -0
  138. data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser-inl.h +0 -0
  139. data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser.cc +0 -0
  140. data/ext/v8/upstream/v8/src/dateparser.h +265 -0
  141. data/ext/v8/upstream/v8/src/debug-agent.cc +447 -0
  142. data/ext/v8/upstream/v8/src/debug-agent.h +129 -0
  143. data/ext/v8/upstream/{3.1.8 → v8}/src/debug-debugger.js +0 -0
  144. data/ext/v8/upstream/v8/src/debug.cc +3188 -0
  145. data/ext/v8/upstream/v8/src/debug.h +1055 -0
  146. data/ext/v8/upstream/v8/src/deoptimizer.cc +1296 -0
  147. data/ext/v8/upstream/v8/src/deoptimizer.h +629 -0
  148. data/ext/v8/upstream/v8/src/disasm.h +80 -0
  149. data/ext/v8/upstream/v8/src/disassembler.cc +339 -0
  150. data/ext/v8/upstream/{3.1.8 → v8}/src/disassembler.h +0 -0
  151. data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.cc +0 -0
  152. data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.h +0 -0
  153. data/ext/v8/upstream/{3.1.8 → v8}/src/double.h +0 -0
  154. data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.cc +0 -0
  155. data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.h +0 -0
  156. data/ext/v8/upstream/v8/src/execution.cc +791 -0
  157. data/ext/v8/upstream/v8/src/execution.h +291 -0
  158. data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.cc +250 -0
  159. data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.h +89 -0
  160. data/ext/v8/upstream/v8/src/extensions/experimental/experimental.gyp +55 -0
  161. data/ext/v8/upstream/v8/src/extensions/experimental/i18n-extension.cc +284 -0
  162. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/experimental/i18n-extension.h +0 -0
  163. data/ext/v8/upstream/v8/src/extensions/externalize-string-extension.cc +141 -0
  164. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/externalize-string-extension.h +0 -0
  165. data/ext/v8/upstream/v8/src/extensions/gc-extension.cc +58 -0
  166. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/gc-extension.h +0 -0
  167. data/ext/v8/upstream/v8/src/factory.cc +1194 -0
  168. data/ext/v8/upstream/v8/src/factory.h +436 -0
  169. data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.cc +0 -0
  170. data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.h +0 -0
  171. data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.cc +0 -0
  172. data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.h +0 -0
  173. data/ext/v8/upstream/v8/src/flag-definitions.h +556 -0
  174. data/ext/v8/upstream/{3.1.8 → v8}/src/flags.cc +0 -0
  175. data/ext/v8/upstream/{3.1.8 → v8}/src/flags.h +0 -0
  176. data/ext/v8/upstream/v8/src/frame-element.cc +37 -0
  177. data/ext/v8/upstream/v8/src/frame-element.h +269 -0
  178. data/ext/v8/upstream/v8/src/frames-inl.h +236 -0
  179. data/ext/v8/upstream/v8/src/frames.cc +1273 -0
  180. data/ext/v8/upstream/v8/src/frames.h +854 -0
  181. data/ext/v8/upstream/v8/src/full-codegen.cc +1385 -0
  182. data/ext/v8/upstream/v8/src/full-codegen.h +753 -0
  183. data/ext/v8/upstream/v8/src/func-name-inferrer.cc +91 -0
  184. data/ext/v8/upstream/v8/src/func-name-inferrer.h +111 -0
  185. data/ext/v8/upstream/v8/src/gdb-jit.cc +1548 -0
  186. data/ext/v8/upstream/{3.1.8 → v8}/src/gdb-jit.h +0 -0
  187. data/ext/v8/upstream/v8/src/global-handles.cc +596 -0
  188. data/ext/v8/upstream/v8/src/global-handles.h +239 -0
  189. data/ext/v8/upstream/v8/src/globals.h +325 -0
  190. data/ext/v8/upstream/v8/src/handles-inl.h +177 -0
  191. data/ext/v8/upstream/v8/src/handles.cc +965 -0
  192. data/ext/v8/upstream/v8/src/handles.h +372 -0
  193. data/ext/v8/upstream/{3.1.8 → v8}/src/hashmap.cc +0 -0
  194. data/ext/v8/upstream/v8/src/hashmap.h +121 -0
  195. data/ext/v8/upstream/v8/src/heap-inl.h +703 -0
  196. data/ext/v8/upstream/v8/src/heap-profiler.cc +1173 -0
  197. data/ext/v8/upstream/v8/src/heap-profiler.h +396 -0
  198. data/ext/v8/upstream/v8/src/heap.cc +5856 -0
  199. data/ext/v8/upstream/v8/src/heap.h +2264 -0
  200. data/ext/v8/upstream/v8/src/hydrogen-instructions.cc +1639 -0
  201. data/ext/v8/upstream/v8/src/hydrogen-instructions.h +3657 -0
  202. data/ext/v8/upstream/v8/src/hydrogen.cc +6011 -0
  203. data/ext/v8/upstream/v8/src/hydrogen.h +1137 -0
  204. data/ext/v8/upstream/v8/src/ia32/assembler-ia32-inl.h +430 -0
  205. data/ext/v8/upstream/v8/src/ia32/assembler-ia32.cc +2846 -0
  206. data/ext/v8/upstream/v8/src/ia32/assembler-ia32.h +1159 -0
  207. data/ext/v8/upstream/v8/src/ia32/builtins-ia32.cc +1596 -0
  208. data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.cc +6549 -0
  209. data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.h +495 -0
  210. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/codegen-ia32-inl.h +0 -0
  211. data/ext/v8/upstream/v8/src/ia32/codegen-ia32.cc +10385 -0
  212. data/ext/v8/upstream/v8/src/ia32/codegen-ia32.h +801 -0
  213. data/ext/v8/upstream/v8/src/ia32/cpu-ia32.cc +88 -0
  214. data/ext/v8/upstream/v8/src/ia32/debug-ia32.cc +312 -0
  215. data/ext/v8/upstream/v8/src/ia32/deoptimizer-ia32.cc +774 -0
  216. data/ext/v8/upstream/v8/src/ia32/disasm-ia32.cc +1620 -0
  217. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/frames-ia32.cc +0 -0
  218. data/ext/v8/upstream/v8/src/ia32/frames-ia32.h +140 -0
  219. data/ext/v8/upstream/v8/src/ia32/full-codegen-ia32.cc +4357 -0
  220. data/ext/v8/upstream/v8/src/ia32/ic-ia32.cc +1779 -0
  221. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/jump-target-ia32.cc +0 -0
  222. data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.cc +4158 -0
  223. data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.h +318 -0
  224. data/ext/v8/upstream/v8/src/ia32/lithium-gap-resolver-ia32.cc +466 -0
  225. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/lithium-gap-resolver-ia32.h +0 -0
  226. data/ext/v8/upstream/v8/src/ia32/lithium-ia32.cc +2181 -0
  227. data/ext/v8/upstream/v8/src/ia32/lithium-ia32.h +2235 -0
  228. data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.cc +2056 -0
  229. data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.h +807 -0
  230. data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.cc +1264 -0
  231. data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
  232. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  233. data/ext/v8/upstream/v8/src/ia32/register-allocator-ia32.cc +157 -0
  234. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32.h +0 -0
  235. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/simulator-ia32.cc +0 -0
  236. data/ext/v8/upstream/v8/src/ia32/simulator-ia32.h +72 -0
  237. data/ext/v8/upstream/v8/src/ia32/stub-cache-ia32.cc +3711 -0
  238. data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.cc +1366 -0
  239. data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.h +650 -0
  240. data/ext/v8/upstream/v8/src/ic-inl.h +130 -0
  241. data/ext/v8/upstream/v8/src/ic.cc +2389 -0
  242. data/ext/v8/upstream/v8/src/ic.h +675 -0
  243. data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.cc +0 -0
  244. data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.h +0 -0
  245. data/ext/v8/upstream/v8/src/interpreter-irregexp.cc +659 -0
  246. data/ext/v8/upstream/v8/src/interpreter-irregexp.h +49 -0
  247. data/ext/v8/upstream/v8/src/isolate.cc +883 -0
  248. data/ext/v8/upstream/v8/src/isolate.h +1306 -0
  249. data/ext/v8/upstream/v8/src/json.js +342 -0
  250. data/ext/v8/upstream/v8/src/jsregexp.cc +5371 -0
  251. data/ext/v8/upstream/v8/src/jsregexp.h +1483 -0
  252. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-heavy-inl.h +0 -0
  253. data/ext/v8/upstream/v8/src/jump-target-heavy.cc +427 -0
  254. data/ext/v8/upstream/v8/src/jump-target-heavy.h +238 -0
  255. data/ext/v8/upstream/v8/src/jump-target-inl.h +48 -0
  256. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light-inl.h +0 -0
  257. data/ext/v8/upstream/v8/src/jump-target-light.cc +111 -0
  258. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light.h +0 -0
  259. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.cc +0 -0
  260. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.h +0 -0
  261. data/ext/v8/upstream/{3.1.8 → v8}/src/list-inl.h +0 -0
  262. data/ext/v8/upstream/{3.1.8 → v8}/src/list.h +0 -0
  263. data/ext/v8/upstream/v8/src/lithium-allocator-inl.h +142 -0
  264. data/ext/v8/upstream/v8/src/lithium-allocator.cc +2105 -0
  265. data/ext/v8/upstream/v8/src/lithium-allocator.h +630 -0
  266. data/ext/v8/upstream/v8/src/lithium.cc +169 -0
  267. data/ext/v8/upstream/{3.1.8 → v8}/src/lithium.h +0 -0
  268. data/ext/v8/upstream/{3.1.8 → v8}/src/liveedit-debugger.js +0 -0
  269. data/ext/v8/upstream/v8/src/liveedit.cc +1693 -0
  270. data/ext/v8/upstream/v8/src/liveedit.h +179 -0
  271. data/ext/v8/upstream/{3.1.8 → v8}/src/liveobjectlist-inl.h +0 -0
  272. data/ext/v8/upstream/v8/src/liveobjectlist.cc +2589 -0
  273. data/ext/v8/upstream/v8/src/liveobjectlist.h +322 -0
  274. data/ext/v8/upstream/{3.1.8 → v8}/src/log-inl.h +0 -0
  275. data/ext/v8/upstream/v8/src/log-utils.cc +423 -0
  276. data/ext/v8/upstream/v8/src/log-utils.h +229 -0
  277. data/ext/v8/upstream/v8/src/log.cc +1666 -0
  278. data/ext/v8/upstream/v8/src/log.h +446 -0
  279. data/ext/v8/upstream/{3.1.8 → v8}/src/macro-assembler.h +0 -0
  280. data/ext/v8/upstream/{3.1.8 → v8}/src/macros.py +0 -0
  281. data/ext/v8/upstream/v8/src/mark-compact.cc +3092 -0
  282. data/ext/v8/upstream/v8/src/mark-compact.h +506 -0
  283. data/ext/v8/upstream/{3.1.8 → v8}/src/math.js +0 -0
  284. data/ext/v8/upstream/v8/src/messages.cc +166 -0
  285. data/ext/v8/upstream/{3.1.8 → v8}/src/messages.h +0 -0
  286. data/ext/v8/upstream/v8/src/messages.js +1090 -0
  287. data/ext/v8/upstream/v8/src/mips/assembler-mips-inl.h +335 -0
  288. data/ext/v8/upstream/v8/src/mips/assembler-mips.cc +2093 -0
  289. data/ext/v8/upstream/v8/src/mips/assembler-mips.h +1066 -0
  290. data/ext/v8/upstream/v8/src/mips/builtins-mips.cc +148 -0
  291. data/ext/v8/upstream/v8/src/mips/code-stubs-mips.cc +752 -0
  292. data/ext/v8/upstream/v8/src/mips/code-stubs-mips.h +511 -0
  293. data/ext/v8/upstream/v8/src/mips/codegen-mips-inl.h +64 -0
  294. data/ext/v8/upstream/v8/src/mips/codegen-mips.cc +1213 -0
  295. data/ext/v8/upstream/v8/src/mips/codegen-mips.h +633 -0
  296. data/ext/v8/upstream/v8/src/mips/constants-mips.cc +352 -0
  297. data/ext/v8/upstream/v8/src/mips/constants-mips.h +723 -0
  298. data/ext/v8/upstream/v8/src/mips/cpu-mips.cc +90 -0
  299. data/ext/v8/upstream/v8/src/mips/debug-mips.cc +155 -0
  300. data/ext/v8/upstream/v8/src/mips/deoptimizer-mips.cc +91 -0
  301. data/ext/v8/upstream/v8/src/mips/disasm-mips.cc +1023 -0
  302. data/ext/v8/upstream/v8/src/mips/frames-mips.cc +48 -0
  303. data/ext/v8/upstream/v8/src/mips/frames-mips.h +179 -0
  304. data/ext/v8/upstream/v8/src/mips/full-codegen-mips.cc +727 -0
  305. data/ext/v8/upstream/v8/src/mips/ic-mips.cc +244 -0
  306. data/ext/v8/upstream/v8/src/mips/jump-target-mips.cc +80 -0
  307. data/ext/v8/upstream/v8/src/mips/lithium-codegen-mips.h +65 -0
  308. data/ext/v8/upstream/v8/src/mips/lithium-mips.h +304 -0
  309. data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.cc +3327 -0
  310. data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.h +1058 -0
  311. data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
  312. data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
  313. data/ext/v8/upstream/v8/src/mips/register-allocator-mips-inl.h +134 -0
  314. data/ext/v8/upstream/{3.1.8 → v8}/src/mips/register-allocator-mips.cc +0 -0
  315. data/ext/v8/upstream/v8/src/mips/register-allocator-mips.h +47 -0
  316. data/ext/v8/upstream/v8/src/mips/simulator-mips.cc +2438 -0
  317. data/ext/v8/upstream/v8/src/mips/simulator-mips.h +394 -0
  318. data/ext/v8/upstream/v8/src/mips/stub-cache-mips.cc +601 -0
  319. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips-inl.h +58 -0
  320. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.cc +307 -0
  321. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.h +530 -0
  322. data/ext/v8/upstream/v8/src/mirror-debugger.js +2381 -0
  323. data/ext/v8/upstream/v8/src/mksnapshot.cc +256 -0
  324. data/ext/v8/upstream/{3.1.8 → v8}/src/natives.h +0 -0
  325. data/ext/v8/upstream/v8/src/objects-debug.cc +722 -0
  326. data/ext/v8/upstream/v8/src/objects-inl.h +4166 -0
  327. data/ext/v8/upstream/v8/src/objects-printer.cc +801 -0
  328. data/ext/v8/upstream/v8/src/objects-visiting.cc +142 -0
  329. data/ext/v8/upstream/v8/src/objects-visiting.h +422 -0
  330. data/ext/v8/upstream/v8/src/objects.cc +10296 -0
  331. data/ext/v8/upstream/v8/src/objects.h +6662 -0
  332. data/ext/v8/upstream/v8/src/parser.cc +5168 -0
  333. data/ext/v8/upstream/v8/src/parser.h +823 -0
  334. data/ext/v8/upstream/v8/src/platform-cygwin.cc +811 -0
  335. data/ext/v8/upstream/v8/src/platform-freebsd.cc +854 -0
  336. data/ext/v8/upstream/v8/src/platform-linux.cc +1120 -0
  337. data/ext/v8/upstream/v8/src/platform-macos.cc +865 -0
  338. data/ext/v8/upstream/v8/src/platform-nullos.cc +504 -0
  339. data/ext/v8/upstream/v8/src/platform-openbsd.cc +672 -0
  340. data/ext/v8/upstream/v8/src/platform-posix.cc +424 -0
  341. data/ext/v8/upstream/v8/src/platform-solaris.cc +796 -0
  342. data/ext/v8/upstream/v8/src/platform-tls-mac.h +62 -0
  343. data/ext/v8/upstream/v8/src/platform-tls-win32.h +62 -0
  344. data/ext/v8/upstream/v8/src/platform-tls.h +50 -0
  345. data/ext/v8/upstream/v8/src/platform-win32.cc +2072 -0
  346. data/ext/v8/upstream/v8/src/platform.h +693 -0
  347. data/ext/v8/upstream/v8/src/preparse-data.cc +185 -0
  348. data/ext/v8/upstream/{3.1.8 → v8}/src/preparse-data.h +0 -0
  349. data/ext/v8/upstream/v8/src/preparser-api.cc +219 -0
  350. data/ext/v8/upstream/v8/src/preparser.cc +1205 -0
  351. data/ext/v8/upstream/{3.1.8 → v8}/src/preparser.h +0 -0
  352. data/ext/v8/upstream/v8/src/prettyprinter.cc +1530 -0
  353. data/ext/v8/upstream/v8/src/prettyprinter.h +223 -0
  354. data/ext/v8/upstream/{3.1.8 → v8}/src/profile-generator-inl.h +0 -0
  355. data/ext/v8/upstream/v8/src/profile-generator.cc +3095 -0
  356. data/ext/v8/upstream/v8/src/profile-generator.h +1125 -0
  357. data/ext/v8/upstream/v8/src/property.cc +102 -0
  358. data/ext/v8/upstream/v8/src/property.h +348 -0
  359. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  360. data/ext/v8/upstream/v8/src/regexp-macro-assembler-irregexp.cc +470 -0
  361. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp.h +0 -0
  362. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.cc +0 -0
  363. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.h +0 -0
  364. data/ext/v8/upstream/v8/src/regexp-macro-assembler.cc +266 -0
  365. data/ext/v8/upstream/v8/src/regexp-macro-assembler.h +236 -0
  366. data/ext/v8/upstream/v8/src/regexp-stack.cc +111 -0
  367. data/ext/v8/upstream/v8/src/regexp-stack.h +147 -0
  368. data/ext/v8/upstream/v8/src/regexp.js +483 -0
  369. data/ext/v8/upstream/v8/src/register-allocator-inl.h +141 -0
  370. data/ext/v8/upstream/v8/src/register-allocator.cc +98 -0
  371. data/ext/v8/upstream/v8/src/register-allocator.h +310 -0
  372. data/ext/v8/upstream/v8/src/rewriter.cc +1024 -0
  373. data/ext/v8/upstream/{3.1.8 → v8}/src/rewriter.h +0 -0
  374. data/ext/v8/upstream/v8/src/runtime-profiler.cc +478 -0
  375. data/ext/v8/upstream/v8/src/runtime-profiler.h +192 -0
  376. data/ext/v8/upstream/v8/src/runtime.cc +11949 -0
  377. data/ext/v8/upstream/v8/src/runtime.h +643 -0
  378. data/ext/v8/upstream/{3.1.8 → v8}/src/runtime.js +0 -0
  379. data/ext/v8/upstream/v8/src/safepoint-table.cc +256 -0
  380. data/ext/v8/upstream/v8/src/safepoint-table.h +269 -0
  381. data/ext/v8/upstream/v8/src/scanner-base.cc +964 -0
  382. data/ext/v8/upstream/v8/src/scanner-base.h +664 -0
  383. data/ext/v8/upstream/v8/src/scanner.cc +584 -0
  384. data/ext/v8/upstream/v8/src/scanner.h +196 -0
  385. data/ext/v8/upstream/v8/src/scopeinfo.cc +631 -0
  386. data/ext/v8/upstream/v8/src/scopeinfo.h +249 -0
  387. data/ext/v8/upstream/v8/src/scopes.cc +1093 -0
  388. data/ext/v8/upstream/v8/src/scopes.h +508 -0
  389. data/ext/v8/upstream/v8/src/serialize.cc +1574 -0
  390. data/ext/v8/upstream/v8/src/serialize.h +589 -0
  391. data/ext/v8/upstream/{3.1.8 → v8}/src/shell.h +0 -0
  392. data/ext/v8/upstream/{3.1.8 → v8}/src/simulator.h +0 -0
  393. data/ext/v8/upstream/v8/src/small-pointer-list.h +163 -0
  394. data/ext/v8/upstream/{3.1.8 → v8}/src/smart-pointer.h +0 -0
  395. data/ext/v8/upstream/v8/src/snapshot-common.cc +82 -0
  396. data/ext/v8/upstream/{3.1.8 → v8}/src/snapshot-empty.cc +0 -0
  397. data/ext/v8/upstream/v8/src/snapshot.h +73 -0
  398. data/ext/v8/upstream/v8/src/spaces-inl.h +529 -0
  399. data/ext/v8/upstream/v8/src/spaces.cc +3147 -0
  400. data/ext/v8/upstream/v8/src/spaces.h +2368 -0
  401. data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree-inl.h +0 -0
  402. data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree.h +0 -0
  403. data/ext/v8/upstream/v8/src/string-search.cc +41 -0
  404. data/ext/v8/upstream/v8/src/string-search.h +568 -0
  405. data/ext/v8/upstream/v8/src/string-stream.cc +592 -0
  406. data/ext/v8/upstream/{3.1.8 → v8}/src/string-stream.h +0 -0
  407. data/ext/v8/upstream/v8/src/string.js +915 -0
  408. data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.cc +0 -0
  409. data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.h +0 -0
  410. data/ext/v8/upstream/v8/src/stub-cache.cc +1940 -0
  411. data/ext/v8/upstream/v8/src/stub-cache.h +866 -0
  412. data/ext/v8/upstream/{3.1.8 → v8}/src/third_party/valgrind/valgrind.h +0 -0
  413. data/ext/v8/upstream/v8/src/token.cc +63 -0
  414. data/ext/v8/upstream/v8/src/token.h +288 -0
  415. data/ext/v8/upstream/v8/src/top.cc +983 -0
  416. data/ext/v8/upstream/v8/src/type-info.cc +472 -0
  417. data/ext/v8/upstream/v8/src/type-info.h +290 -0
  418. data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue-inl.h +0 -0
  419. data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue.h +0 -0
  420. data/ext/v8/upstream/{3.1.8 → v8}/src/unicode-inl.h +0 -0
  421. data/ext/v8/upstream/v8/src/unicode.cc +1624 -0
  422. data/ext/v8/upstream/v8/src/unicode.h +280 -0
  423. data/ext/v8/upstream/{3.1.8 → v8}/src/uri.js +0 -0
  424. data/ext/v8/upstream/{3.1.8 → v8}/src/utils.cc +0 -0
  425. data/ext/v8/upstream/v8/src/utils.h +796 -0
  426. data/ext/v8/upstream/v8/src/v8-counters.cc +62 -0
  427. data/ext/v8/upstream/v8/src/v8-counters.h +311 -0
  428. data/ext/v8/upstream/v8/src/v8.cc +215 -0
  429. data/ext/v8/upstream/v8/src/v8.h +130 -0
  430. data/ext/v8/upstream/{3.1.8 → v8}/src/v8checks.h +0 -0
  431. data/ext/v8/upstream/{3.1.8 → v8}/src/v8dll-main.cc +0 -0
  432. data/ext/v8/upstream/v8/src/v8globals.h +486 -0
  433. data/ext/v8/upstream/{3.1.8/src/memory.h → v8/src/v8memory.h} +0 -0
  434. data/ext/v8/upstream/v8/src/v8natives.js +1293 -0
  435. data/ext/v8/upstream/{3.1.8 → v8}/src/v8preparserdll-main.cc +0 -0
  436. data/ext/v8/upstream/v8/src/v8threads.cc +453 -0
  437. data/ext/v8/upstream/v8/src/v8threads.h +164 -0
  438. data/ext/v8/upstream/v8/src/v8utils.h +317 -0
  439. data/ext/v8/upstream/{3.1.8 → v8}/src/variables.cc +0 -0
  440. data/ext/v8/upstream/v8/src/variables.h +212 -0
  441. data/ext/v8/upstream/v8/src/version.cc +116 -0
  442. data/ext/v8/upstream/v8/src/version.h +68 -0
  443. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy-inl.h +0 -0
  444. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy.cc +0 -0
  445. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-inl.h +0 -0
  446. data/ext/v8/upstream/v8/src/virtual-frame-light-inl.h +171 -0
  447. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-light.cc +0 -0
  448. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.cc +0 -0
  449. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.h +0 -0
  450. data/ext/v8/upstream/v8/src/vm-state-inl.h +138 -0
  451. data/ext/v8/upstream/v8/src/vm-state.h +70 -0
  452. data/ext/v8/upstream/v8/src/win32-headers.h +96 -0
  453. data/ext/v8/upstream/v8/src/x64/assembler-x64-inl.h +456 -0
  454. data/ext/v8/upstream/v8/src/x64/assembler-x64.cc +2954 -0
  455. data/ext/v8/upstream/v8/src/x64/assembler-x64.h +1630 -0
  456. data/ext/v8/upstream/v8/src/x64/builtins-x64.cc +1493 -0
  457. data/ext/v8/upstream/v8/src/x64/code-stubs-x64.cc +5132 -0
  458. data/ext/v8/upstream/v8/src/x64/code-stubs-x64.h +477 -0
  459. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/codegen-x64-inl.h +0 -0
  460. data/ext/v8/upstream/v8/src/x64/codegen-x64.cc +8843 -0
  461. data/ext/v8/upstream/v8/src/x64/codegen-x64.h +753 -0
  462. data/ext/v8/upstream/v8/src/x64/cpu-x64.cc +88 -0
  463. data/ext/v8/upstream/v8/src/x64/debug-x64.cc +318 -0
  464. data/ext/v8/upstream/v8/src/x64/deoptimizer-x64.cc +815 -0
  465. data/ext/v8/upstream/v8/src/x64/disasm-x64.cc +1752 -0
  466. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/frames-x64.cc +0 -0
  467. data/ext/v8/upstream/v8/src/x64/frames-x64.h +130 -0
  468. data/ext/v8/upstream/v8/src/x64/full-codegen-x64.cc +4339 -0
  469. data/ext/v8/upstream/v8/src/x64/ic-x64.cc +1752 -0
  470. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/jump-target-x64.cc +0 -0
  471. data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.cc +3970 -0
  472. data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.h +318 -0
  473. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.cc +0 -0
  474. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.h +0 -0
  475. data/ext/v8/upstream/v8/src/x64/lithium-x64.cc +2115 -0
  476. data/ext/v8/upstream/v8/src/x64/lithium-x64.h +2161 -0
  477. data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.cc +2911 -0
  478. data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.h +1984 -0
  479. data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
  480. data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
  481. data/ext/v8/upstream/v8/src/x64/register-allocator-x64-inl.h +87 -0
  482. data/ext/v8/upstream/v8/src/x64/register-allocator-x64.cc +95 -0
  483. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/register-allocator-x64.h +0 -0
  484. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/simulator-x64.cc +0 -0
  485. data/ext/v8/upstream/v8/src/x64/simulator-x64.h +71 -0
  486. data/ext/v8/upstream/v8/src/x64/stub-cache-x64.cc +3460 -0
  487. data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.cc +1296 -0
  488. data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.h +597 -0
  489. data/ext/v8/upstream/v8/src/zone-inl.h +129 -0
  490. data/ext/v8/upstream/v8/src/zone.cc +196 -0
  491. data/ext/v8/upstream/v8/src/zone.h +236 -0
  492. data/ext/v8/upstream/{3.1.8 → v8}/tools/codemap.js +0 -0
  493. data/ext/v8/upstream/{3.1.8 → v8}/tools/consarray.js +0 -0
  494. data/ext/v8/upstream/{3.1.8 → v8}/tools/csvparser.js +0 -0
  495. data/ext/v8/upstream/{3.1.8 → v8}/tools/disasm.py +0 -0
  496. data/ext/v8/upstream/v8/tools/freebsd-tick-processor +10 -0
  497. data/ext/v8/upstream/{3.1.8 → v8}/tools/gc-nvp-trace-processor.py +0 -0
  498. data/ext/v8/upstream/{3.1.8 → v8}/tools/generate-ten-powers.scm +0 -0
  499. data/ext/v8/upstream/{3.1.8 → v8}/tools/grokdump.py +0 -0
  500. data/ext/v8/upstream/v8/tools/gyp/v8.gyp +844 -0
  501. data/ext/v8/upstream/{3.1.8 → v8}/tools/js2c.py +0 -0
  502. data/ext/v8/upstream/{3.1.8 → v8}/tools/jsmin.py +0 -0
  503. data/ext/v8/upstream/v8/tools/linux-tick-processor +35 -0
  504. data/ext/v8/upstream/{3.1.8 → v8}/tools/ll_prof.py +0 -0
  505. data/ext/v8/upstream/{3.1.8 → v8}/tools/logreader.js +0 -0
  506. data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-nm +0 -0
  507. data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-tick-processor +0 -0
  508. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/README +0 -0
  509. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/SConstruct +0 -0
  510. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/oom_dump.cc +0 -0
  511. data/ext/v8/upstream/{3.1.8 → v8}/tools/presubmit.py +0 -0
  512. data/ext/v8/upstream/{3.1.8 → v8}/tools/process-heap-prof.py +0 -0
  513. data/ext/v8/upstream/{3.1.8 → v8}/tools/profile.js +0 -0
  514. data/ext/v8/upstream/{3.1.8 → v8}/tools/profile_view.js +0 -0
  515. data/ext/v8/upstream/{3.1.8 → v8}/tools/run-valgrind.py +0 -0
  516. data/ext/v8/upstream/{3.1.8 → v8}/tools/splaytree.js +0 -0
  517. data/ext/v8/upstream/{3.1.8 → v8}/tools/stats-viewer.py +0 -0
  518. data/ext/v8/upstream/v8/tools/test.py +1490 -0
  519. data/ext/v8/upstream/{3.1.8 → v8}/tools/tickprocessor-driver.js +0 -0
  520. data/ext/v8/upstream/v8/tools/tickprocessor.js +877 -0
  521. data/ext/v8/upstream/{3.1.8 → v8}/tools/utils.py +0 -0
  522. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/README.txt +0 -0
  523. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/arm.vsprops +0 -0
  524. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/common.vsprops +0 -0
  525. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8.vcproj +0 -0
  526. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_arm.vcproj +0 -0
  527. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_x64.vcproj +0 -0
  528. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8js2c.cmd +0 -0
  529. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/debug.vsprops +0 -0
  530. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/ia32.vsprops +0 -0
  531. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/js2c.cmd +0 -0
  532. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/release.vsprops +0 -0
  533. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.sln +0 -0
  534. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.vcproj +0 -0
  535. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.sln +0 -0
  536. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.vcproj +0 -0
  537. data/ext/v8/upstream/v8/tools/visual_studio/v8_base.vcproj +1308 -0
  538. data/ext/v8/upstream/v8/tools/visual_studio/v8_base_arm.vcproj +1238 -0
  539. data/ext/v8/upstream/v8/tools/visual_studio/v8_base_x64.vcproj +1300 -0
  540. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  541. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  542. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  543. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  544. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  545. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  546. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  547. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  548. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample.vcproj +0 -0
  549. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -0
  550. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -0
  551. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  552. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  553. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  554. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  555. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.sln +0 -0
  556. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.vcproj +0 -0
  557. data/ext/v8/upstream/v8/tools/visual_studio/x64.vsprops +18 -0
  558. data/ext/v8/upstream/{3.1.8 → v8}/tools/windows-tick-processor.bat +0 -0
  559. data/ext/v8/v8_callbacks.cpp +52 -92
  560. data/ext/v8/v8_date.cpp +2 -3
  561. data/ext/v8/v8_object.cpp +4 -0
  562. data/ext/v8/v8_template.cpp +2 -2
  563. data/ext/v8/v8_try_catch.cpp +8 -38
  564. data/lib/v8/version.rb +1 -1
  565. data/spec/ext/ext_spec_helper.rb +2 -20
  566. data/spec/ext/object_spec.rb +0 -12
  567. data/spec/ext/try_catch_spec.rb +29 -1
  568. data/spec/spec_helper.rb +1 -0
  569. data/spec/v8/portal/proxies_spec.rb +1 -84
  570. data/specmem/handle_memspec.rb +41 -0
  571. data/specmem/object_memspec.rb +16 -0
  572. data/specmem/proxies_memspec.rb +86 -0
  573. data/specmem/spec_helper.rb +24 -0
  574. data/therubyracer.gemspec +7 -2
  575. metadata +564 -541
  576. data/ext/v8/upstream/3.1.8/.gitignore +0 -31
  577. data/ext/v8/upstream/3.1.8/AUTHORS +0 -40
  578. data/ext/v8/upstream/3.1.8/ChangeLog +0 -2566
  579. data/ext/v8/upstream/3.1.8/SConstruct +0 -1192
  580. data/ext/v8/upstream/3.1.8/include/v8-debug.h +0 -384
  581. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +0 -116
  582. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +0 -426
  583. data/ext/v8/upstream/3.1.8/include/v8-testing.h +0 -99
  584. data/ext/v8/upstream/3.1.8/include/v8.h +0 -3846
  585. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +0 -206
  586. data/ext/v8/upstream/3.1.8/src/SConscript +0 -356
  587. data/ext/v8/upstream/3.1.8/src/accessors.cc +0 -907
  588. data/ext/v8/upstream/3.1.8/src/allocation.cc +0 -204
  589. data/ext/v8/upstream/3.1.8/src/allocation.h +0 -176
  590. data/ext/v8/upstream/3.1.8/src/api.cc +0 -5191
  591. data/ext/v8/upstream/3.1.8/src/api.h +0 -508
  592. data/ext/v8/upstream/3.1.8/src/apiutils.h +0 -80
  593. data/ext/v8/upstream/3.1.8/src/arguments.h +0 -105
  594. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +0 -352
  595. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +0 -2756
  596. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +0 -1294
  597. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +0 -1628
  598. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +0 -6783
  599. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +0 -657
  600. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +0 -7403
  601. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +0 -595
  602. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +0 -769
  603. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +0 -147
  604. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +0 -315
  605. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +0 -700
  606. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +0 -1439
  607. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +0 -168
  608. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +0 -4230
  609. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +0 -1799
  610. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +0 -2041
  611. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +0 -2046
  612. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +0 -3822
  613. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +0 -312
  614. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +0 -303
  615. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +0 -2701
  616. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +0 -1015
  617. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +0 -1280
  618. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +0 -252
  619. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +0 -3165
  620. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +0 -402
  621. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +0 -4077
  622. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +0 -843
  623. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +0 -520
  624. data/ext/v8/upstream/3.1.8/src/array.js +0 -1231
  625. data/ext/v8/upstream/3.1.8/src/assembler.cc +0 -973
  626. data/ext/v8/upstream/3.1.8/src/assembler.h +0 -787
  627. data/ext/v8/upstream/3.1.8/src/ast-inl.h +0 -107
  628. data/ext/v8/upstream/3.1.8/src/ast.cc +0 -1067
  629. data/ext/v8/upstream/3.1.8/src/ast.h +0 -2177
  630. data/ext/v8/upstream/3.1.8/src/atomicops.h +0 -165
  631. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +0 -1888
  632. data/ext/v8/upstream/3.1.8/src/bootstrapper.h +0 -118
  633. data/ext/v8/upstream/3.1.8/src/builtins.cc +0 -1586
  634. data/ext/v8/upstream/3.1.8/src/builtins.h +0 -339
  635. data/ext/v8/upstream/3.1.8/src/checks.cc +0 -110
  636. data/ext/v8/upstream/3.1.8/src/checks.h +0 -292
  637. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +0 -230
  638. data/ext/v8/upstream/3.1.8/src/code-stubs.h +0 -950
  639. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +0 -64
  640. data/ext/v8/upstream/3.1.8/src/codegen.cc +0 -495
  641. data/ext/v8/upstream/3.1.8/src/codegen.h +0 -245
  642. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +0 -654
  643. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +0 -112
  644. data/ext/v8/upstream/3.1.8/src/compiler.cc +0 -806
  645. data/ext/v8/upstream/3.1.8/src/compiler.h +0 -290
  646. data/ext/v8/upstream/3.1.8/src/contexts.cc +0 -320
  647. data/ext/v8/upstream/3.1.8/src/contexts.h +0 -376
  648. data/ext/v8/upstream/3.1.8/src/conversions.cc +0 -1069
  649. data/ext/v8/upstream/3.1.8/src/counters.cc +0 -78
  650. data/ext/v8/upstream/3.1.8/src/counters.h +0 -242
  651. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +0 -100
  652. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +0 -554
  653. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +0 -291
  654. data/ext/v8/upstream/3.1.8/src/cpu.h +0 -65
  655. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +0 -367
  656. data/ext/v8/upstream/3.1.8/src/d8-debug.h +0 -157
  657. data/ext/v8/upstream/3.1.8/src/d8-posix.cc +0 -693
  658. data/ext/v8/upstream/3.1.8/src/d8.cc +0 -792
  659. data/ext/v8/upstream/3.1.8/src/d8.gyp +0 -85
  660. data/ext/v8/upstream/3.1.8/src/data-flow.h +0 -379
  661. data/ext/v8/upstream/3.1.8/src/dateparser.h +0 -263
  662. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +0 -446
  663. data/ext/v8/upstream/3.1.8/src/debug-agent.h +0 -131
  664. data/ext/v8/upstream/3.1.8/src/debug.cc +0 -3085
  665. data/ext/v8/upstream/3.1.8/src/debug.h +0 -1025
  666. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +0 -1185
  667. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +0 -529
  668. data/ext/v8/upstream/3.1.8/src/disasm.h +0 -77
  669. data/ext/v8/upstream/3.1.8/src/disassembler.cc +0 -338
  670. data/ext/v8/upstream/3.1.8/src/execution.cc +0 -735
  671. data/ext/v8/upstream/3.1.8/src/execution.h +0 -322
  672. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +0 -53
  673. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +0 -264
  674. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +0 -141
  675. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +0 -58
  676. data/ext/v8/upstream/3.1.8/src/factory.cc +0 -1087
  677. data/ext/v8/upstream/3.1.8/src/factory.h +0 -432
  678. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +0 -552
  679. data/ext/v8/upstream/3.1.8/src/frame-element.cc +0 -42
  680. data/ext/v8/upstream/3.1.8/src/frame-element.h +0 -277
  681. data/ext/v8/upstream/3.1.8/src/frames-inl.h +0 -210
  682. data/ext/v8/upstream/3.1.8/src/frames.cc +0 -1232
  683. data/ext/v8/upstream/3.1.8/src/frames.h +0 -826
  684. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +0 -1382
  685. data/ext/v8/upstream/3.1.8/src/full-codegen.h +0 -751
  686. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +0 -90
  687. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +0 -111
  688. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +0 -1547
  689. data/ext/v8/upstream/3.1.8/src/global-handles.cc +0 -534
  690. data/ext/v8/upstream/3.1.8/src/global-handles.h +0 -181
  691. data/ext/v8/upstream/3.1.8/src/globals.h +0 -325
  692. data/ext/v8/upstream/3.1.8/src/handles-inl.h +0 -80
  693. data/ext/v8/upstream/3.1.8/src/handles.cc +0 -910
  694. data/ext/v8/upstream/3.1.8/src/handles.h +0 -424
  695. data/ext/v8/upstream/3.1.8/src/hashmap.h +0 -121
  696. data/ext/v8/upstream/3.1.8/src/heap-inl.h +0 -587
  697. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +0 -1128
  698. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +0 -381
  699. data/ext/v8/upstream/3.1.8/src/heap.cc +0 -5610
  700. data/ext/v8/upstream/3.1.8/src/heap.h +0 -2218
  701. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +0 -1490
  702. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +0 -3493
  703. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +0 -6056
  704. data/ext/v8/upstream/3.1.8/src/hydrogen.h +0 -1091
  705. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +0 -429
  706. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +0 -2800
  707. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +0 -1093
  708. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +0 -1590
  709. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +0 -6624
  710. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +0 -536
  711. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +0 -10354
  712. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +0 -798
  713. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +0 -87
  714. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +0 -309
  715. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +0 -664
  716. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +0 -1597
  717. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +0 -140
  718. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +0 -4278
  719. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +0 -1786
  720. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +0 -3880
  721. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +0 -309
  722. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +0 -460
  723. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +0 -2095
  724. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +0 -2127
  725. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +0 -2031
  726. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +0 -798
  727. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +0 -1253
  728. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +0 -215
  729. data/ext/v8/upstream/3.1.8/src/ia32/register-allocator-ia32.cc +0 -157
  730. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +0 -72
  731. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +0 -3732
  732. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +0 -1360
  733. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +0 -646
  734. data/ext/v8/upstream/3.1.8/src/ic-inl.h +0 -129
  735. data/ext/v8/upstream/3.1.8/src/ic.cc +0 -2333
  736. data/ext/v8/upstream/3.1.8/src/ic.h +0 -639
  737. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +0 -655
  738. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.h +0 -48
  739. data/ext/v8/upstream/3.1.8/src/json.js +0 -342
  740. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +0 -5340
  741. data/ext/v8/upstream/3.1.8/src/jsregexp.h +0 -1484
  742. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +0 -430
  743. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +0 -244
  744. data/ext/v8/upstream/3.1.8/src/jump-target-inl.h +0 -48
  745. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +0 -111
  746. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +0 -140
  747. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +0 -2093
  748. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +0 -644
  749. data/ext/v8/upstream/3.1.8/src/lithium.cc +0 -168
  750. data/ext/v8/upstream/3.1.8/src/liveedit.cc +0 -1650
  751. data/ext/v8/upstream/3.1.8/src/liveedit.h +0 -174
  752. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +0 -2527
  753. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +0 -322
  754. data/ext/v8/upstream/3.1.8/src/log-utils.cc +0 -336
  755. data/ext/v8/upstream/3.1.8/src/log-utils.h +0 -232
  756. data/ext/v8/upstream/3.1.8/src/log.cc +0 -1608
  757. data/ext/v8/upstream/3.1.8/src/log.h +0 -379
  758. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +0 -2957
  759. data/ext/v8/upstream/3.1.8/src/mark-compact.h +0 -433
  760. data/ext/v8/upstream/3.1.8/src/messages.cc +0 -164
  761. data/ext/v8/upstream/3.1.8/src/messages.js +0 -1071
  762. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips-inl.h +0 -215
  763. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.cc +0 -1219
  764. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +0 -667
  765. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +0 -205
  766. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips-inl.h +0 -70
  767. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.cc +0 -1437
  768. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +0 -431
  769. data/ext/v8/upstream/3.1.8/src/mips/constants-mips.cc +0 -328
  770. data/ext/v8/upstream/3.1.8/src/mips/constants-mips.h +0 -525
  771. data/ext/v8/upstream/3.1.8/src/mips/cpu-mips.cc +0 -73
  772. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +0 -127
  773. data/ext/v8/upstream/3.1.8/src/mips/disasm-mips.cc +0 -787
  774. data/ext/v8/upstream/3.1.8/src/mips/fast-codegen-mips.cc +0 -77
  775. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +0 -96
  776. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.h +0 -164
  777. data/ext/v8/upstream/3.1.8/src/mips/full-codegen-mips.cc +0 -277
  778. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +0 -208
  779. data/ext/v8/upstream/3.1.8/src/mips/jump-target-mips.cc +0 -175
  780. data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.cc +0 -1326
  781. data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.h +0 -461
  782. data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips-inl.h +0 -137
  783. data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips.h +0 -46
  784. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +0 -1650
  785. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +0 -311
  786. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +0 -418
  787. data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.cc +0 -319
  788. data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.h +0 -548
  789. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +0 -2380
  790. data/ext/v8/upstream/3.1.8/src/mksnapshot.cc +0 -256
  791. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +0 -722
  792. data/ext/v8/upstream/3.1.8/src/objects-inl.h +0 -3946
  793. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +0 -801
  794. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +0 -142
  795. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +0 -401
  796. data/ext/v8/upstream/3.1.8/src/objects.cc +0 -10044
  797. data/ext/v8/upstream/3.1.8/src/objects.h +0 -6571
  798. data/ext/v8/upstream/3.1.8/src/parser.cc +0 -5165
  799. data/ext/v8/upstream/3.1.8/src/parser.h +0 -802
  800. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +0 -745
  801. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +0 -702
  802. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +0 -981
  803. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +0 -732
  804. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +0 -498
  805. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +0 -657
  806. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +0 -399
  807. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +0 -714
  808. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +0 -1974
  809. data/ext/v8/upstream/3.1.8/src/platform.h +0 -636
  810. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +0 -183
  811. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +0 -213
  812. data/ext/v8/upstream/3.1.8/src/preparser.cc +0 -1205
  813. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +0 -1539
  814. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +0 -223
  815. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +0 -2899
  816. data/ext/v8/upstream/3.1.8/src/profile-generator.h +0 -1151
  817. data/ext/v8/upstream/3.1.8/src/property.cc +0 -96
  818. data/ext/v8/upstream/3.1.8/src/property.h +0 -337
  819. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +0 -470
  820. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +0 -257
  821. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +0 -231
  822. data/ext/v8/upstream/3.1.8/src/regexp-stack.cc +0 -103
  823. data/ext/v8/upstream/3.1.8/src/regexp-stack.h +0 -123
  824. data/ext/v8/upstream/3.1.8/src/regexp.js +0 -483
  825. data/ext/v8/upstream/3.1.8/src/register-allocator-inl.h +0 -141
  826. data/ext/v8/upstream/3.1.8/src/register-allocator.cc +0 -104
  827. data/ext/v8/upstream/3.1.8/src/register-allocator.h +0 -320
  828. data/ext/v8/upstream/3.1.8/src/rewriter.cc +0 -1023
  829. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +0 -443
  830. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +0 -77
  831. data/ext/v8/upstream/3.1.8/src/runtime.cc +0 -11592
  832. data/ext/v8/upstream/3.1.8/src/runtime.h +0 -582
  833. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +0 -253
  834. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +0 -263
  835. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +0 -971
  836. data/ext/v8/upstream/3.1.8/src/scanner-base.h +0 -653
  837. data/ext/v8/upstream/3.1.8/src/scanner.cc +0 -586
  838. data/ext/v8/upstream/3.1.8/src/scanner.h +0 -194
  839. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +0 -636
  840. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +0 -238
  841. data/ext/v8/upstream/3.1.8/src/scopes.cc +0 -1063
  842. data/ext/v8/upstream/3.1.8/src/scopes.h +0 -494
  843. data/ext/v8/upstream/3.1.8/src/serialize.cc +0 -1535
  844. data/ext/v8/upstream/3.1.8/src/serialize.h +0 -584
  845. data/ext/v8/upstream/3.1.8/src/snapshot-common.cc +0 -82
  846. data/ext/v8/upstream/3.1.8/src/snapshot.h +0 -71
  847. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +0 -524
  848. data/ext/v8/upstream/3.1.8/src/spaces.cc +0 -3254
  849. data/ext/v8/upstream/3.1.8/src/spaces.h +0 -2362
  850. data/ext/v8/upstream/3.1.8/src/string-search.cc +0 -40
  851. data/ext/v8/upstream/3.1.8/src/string-search.h +0 -567
  852. data/ext/v8/upstream/3.1.8/src/string-stream.cc +0 -584
  853. data/ext/v8/upstream/3.1.8/src/string.js +0 -915
  854. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +0 -1878
  855. data/ext/v8/upstream/3.1.8/src/stub-cache.h +0 -849
  856. data/ext/v8/upstream/3.1.8/src/token.cc +0 -63
  857. data/ext/v8/upstream/3.1.8/src/token.h +0 -288
  858. data/ext/v8/upstream/3.1.8/src/top.cc +0 -1152
  859. data/ext/v8/upstream/3.1.8/src/top.h +0 -608
  860. data/ext/v8/upstream/3.1.8/src/type-info.cc +0 -406
  861. data/ext/v8/upstream/3.1.8/src/type-info.h +0 -283
  862. data/ext/v8/upstream/3.1.8/src/unicode.cc +0 -1624
  863. data/ext/v8/upstream/3.1.8/src/unicode.h +0 -280
  864. data/ext/v8/upstream/3.1.8/src/utils.h +0 -793
  865. data/ext/v8/upstream/3.1.8/src/v8-counters.cc +0 -55
  866. data/ext/v8/upstream/3.1.8/src/v8-counters.h +0 -290
  867. data/ext/v8/upstream/3.1.8/src/v8.cc +0 -270
  868. data/ext/v8/upstream/3.1.8/src/v8.h +0 -127
  869. data/ext/v8/upstream/3.1.8/src/v8globals.h +0 -480
  870. data/ext/v8/upstream/3.1.8/src/v8natives.js +0 -1252
  871. data/ext/v8/upstream/3.1.8/src/v8threads.cc +0 -440
  872. data/ext/v8/upstream/3.1.8/src/v8threads.h +0 -157
  873. data/ext/v8/upstream/3.1.8/src/v8utils.h +0 -354
  874. data/ext/v8/upstream/3.1.8/src/variables.h +0 -212
  875. data/ext/v8/upstream/3.1.8/src/version.cc +0 -95
  876. data/ext/v8/upstream/3.1.8/src/version.h +0 -64
  877. data/ext/v8/upstream/3.1.8/src/virtual-frame-light-inl.h +0 -170
  878. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +0 -134
  879. data/ext/v8/upstream/3.1.8/src/vm-state.h +0 -68
  880. data/ext/v8/upstream/3.1.8/src/win32-headers.h +0 -95
  881. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +0 -455
  882. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +0 -3162
  883. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +0 -1584
  884. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +0 -1492
  885. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +0 -5150
  886. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +0 -519
  887. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +0 -8835
  888. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +0 -750
  889. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +0 -86
  890. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +0 -316
  891. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +0 -781
  892. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +0 -1737
  893. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +0 -130
  894. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +0 -3984
  895. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +0 -1761
  896. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +0 -3639
  897. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +0 -305
  898. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +0 -2044
  899. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +0 -2052
  900. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +0 -2660
  901. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +0 -1852
  902. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +0 -1382
  903. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +0 -278
  904. data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64-inl.h +0 -87
  905. data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64.cc +0 -91
  906. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +0 -71
  907. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +0 -3509
  908. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +0 -1292
  909. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +0 -593
  910. data/ext/v8/upstream/3.1.8/src/zone-inl.h +0 -83
  911. data/ext/v8/upstream/3.1.8/src/zone.cc +0 -195
  912. data/ext/v8/upstream/3.1.8/src/zone.h +0 -233
  913. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +0 -869
  914. data/ext/v8/upstream/3.1.8/tools/linux-tick-processor +0 -33
  915. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +0 -863
  916. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +0 -1296
  917. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +0 -1234
  918. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +0 -1296
  919. data/ext/v8/upstream/3.1.8/tools/visual_studio/x64.vsprops +0 -17
  920. data/spec/ext/mem_spec.rb +0 -42
@@ -0,0 +1,229 @@
1
+ // Copyright 2006-2009 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_LOG_UTILS_H_
29
+ #define V8_LOG_UTILS_H_
30
+
31
+ namespace v8 {
32
+ namespace internal {
33
+
34
+ #ifdef ENABLE_LOGGING_AND_PROFILING
35
+
36
+ class Logger;
37
+
38
+ // A memory buffer that increments its size as you write in it. Size
39
+ // is incremented with 'block_size' steps, never exceeding 'max_size'.
40
+ // During growth, memory contents are never copied. At the end of the
41
+ // buffer an amount of memory specified in 'seal_size' is reserved.
42
+ // When writing position reaches max_size - seal_size, buffer auto-seals
43
+ // itself with 'seal' and allows no further writes. Data pointed by
44
+ // 'seal' must be available during entire LogDynamicBuffer lifetime.
45
+ //
46
+ // An instance of this class is created dynamically by Log.
47
+ class LogDynamicBuffer {
48
+ public:
49
+ LogDynamicBuffer(
50
+ int block_size, int max_size, const char* seal, int seal_size);
51
+
52
+ ~LogDynamicBuffer();
53
+
54
+ // Reads contents of the buffer starting from 'from_pos'. Upon
55
+ // return, 'dest_buf' is filled with the data. Actual amount of data
56
+ // filled is returned, it is <= 'buf_size'.
57
+ int Read(int from_pos, char* dest_buf, int buf_size);
58
+
59
+ // Writes 'data' to the buffer, making it larger if necessary. If
60
+ // data is too big to fit in the buffer, it doesn't get written at
61
+ // all. In that case, buffer auto-seals itself and stops to accept
62
+ // any incoming writes. Returns amount of data written (it is either
63
+ // 'data_size', or 0, if 'data' is too big).
64
+ int Write(const char* data, int data_size);
65
+
66
+ private:
67
+ void AllocateBlock(int index) {
68
+ blocks_[index] = NewArray<char>(block_size_);
69
+ }
70
+
71
+ int BlockIndex(int pos) const { return pos / block_size_; }
72
+
73
+ int BlocksCount() const { return BlockIndex(max_size_) + 1; }
74
+
75
+ int PosInBlock(int pos) const { return pos % block_size_; }
76
+
77
+ int Seal();
78
+
79
+ int WriteInternal(const char* data, int data_size);
80
+
81
+ const int block_size_;
82
+ const int max_size_;
83
+ const char* seal_;
84
+ const int seal_size_;
85
+ ScopedVector<char*> blocks_;
86
+ int write_pos_;
87
+ int block_index_;
88
+ int block_write_pos_;
89
+ bool is_sealed_;
90
+ };
91
+
92
+
93
+ // Functions and data for performing output of log messages.
94
+ class Log {
95
+ public:
96
+
97
+ // Performs process-wide initialization.
98
+ void Initialize();
99
+
100
+ // Disables logging, but preserves acquired resources.
101
+ void stop() { is_stopped_ = true; }
102
+
103
+ // Frees all resources acquired in Initialize and Open... functions.
104
+ void Close();
105
+
106
+ // See description in include/v8.h.
107
+ int GetLogLines(int from_pos, char* dest_buf, int max_size);
108
+
109
+ // Returns whether logging is enabled.
110
+ bool IsEnabled() {
111
+ return !is_stopped_ && (output_handle_ != NULL || output_buffer_ != NULL);
112
+ }
113
+
114
+ // Size of buffer used for formatting log messages.
115
+ static const int kMessageBufferSize = v8::V8::kMinimumSizeForLogLinesBuffer;
116
+
117
+ private:
118
+ explicit Log(Logger* logger);
119
+
120
+ // Opens stdout for logging.
121
+ void OpenStdout();
122
+
123
+ // Opens file for logging.
124
+ void OpenFile(const char* name);
125
+
126
+ // Opens memory buffer for logging.
127
+ void OpenMemoryBuffer();
128
+
129
+ // Implementation of writing to a log file.
130
+ int WriteToFile(const char* msg, int length) {
131
+ ASSERT(output_handle_ != NULL);
132
+ size_t rv = fwrite(msg, 1, length, output_handle_);
133
+ ASSERT(static_cast<size_t>(length) == rv);
134
+ USE(rv);
135
+ fflush(output_handle_);
136
+ return length;
137
+ }
138
+
139
+ // Implementation of writing to a memory buffer.
140
+ int WriteToMemory(const char* msg, int length) {
141
+ ASSERT(output_buffer_ != NULL);
142
+ return output_buffer_->Write(msg, length);
143
+ }
144
+
145
+ bool write_to_file_;
146
+
147
+ // Whether logging is stopped (e.g. due to insufficient resources).
148
+ bool is_stopped_;
149
+
150
+ // When logging is active, either output_handle_ or output_buffer_ is used
151
+ // to store a pointer to log destination. If logging was opened via OpenStdout
152
+ // or OpenFile, then output_handle_ is used. If logging was opened
153
+ // via OpenMemoryBuffer, then output_buffer_ is used.
154
+ // mutex_ should be acquired before using output_handle_ or output_buffer_.
155
+ FILE* output_handle_;
156
+
157
+ // Used when low-level profiling is active to save code object contents.
158
+ FILE* output_code_handle_;
159
+
160
+ LogDynamicBuffer* output_buffer_;
161
+
162
+ // Size of dynamic buffer block (and dynamic buffer initial size).
163
+ static const int kDynamicBufferBlockSize = 65536;
164
+
165
+ // Maximum size of dynamic buffer.
166
+ static const int kMaxDynamicBufferSize = 50 * 1024 * 1024;
167
+
168
+ // Message to "seal" dynamic buffer with.
169
+ static const char* const kDynamicBufferSeal;
170
+
171
+ // mutex_ is a Mutex used for enforcing exclusive
172
+ // access to the formatting buffer and the log file or log memory buffer.
173
+ Mutex* mutex_;
174
+
175
+ // Buffer used for formatting log messages. This is a singleton buffer and
176
+ // mutex_ should be acquired before using it.
177
+ char* message_buffer_;
178
+
179
+ Logger* logger_;
180
+
181
+ friend class Logger;
182
+ friend class LogMessageBuilder;
183
+ };
184
+
185
+
186
+ // Utility class for formatting log messages. It fills the message into the
187
+ // static buffer in Log.
188
+ class LogMessageBuilder BASE_EMBEDDED {
189
+ public:
190
+ // Create a message builder starting from position 0. This acquires the mutex
191
+ // in the log as well.
192
+ explicit LogMessageBuilder(Logger* logger);
193
+ ~LogMessageBuilder() { }
194
+
195
+ // Append string data to the log message.
196
+ void Append(const char* format, ...);
197
+
198
+ // Append string data to the log message.
199
+ void AppendVA(const char* format, va_list args);
200
+
201
+ // Append a character to the log message.
202
+ void Append(const char c);
203
+
204
+ // Append a heap string.
205
+ void Append(String* str);
206
+
207
+ // Appends an address.
208
+ void AppendAddress(Address addr);
209
+
210
+ void AppendDetailed(String* str, bool show_impl_info);
211
+
212
+ // Append a portion of a string.
213
+ void AppendStringPart(const char* str, int len);
214
+
215
+ // Write the log message to the log file currently opened.
216
+ void WriteToLogFile();
217
+
218
+ private:
219
+
220
+ Log* log_;
221
+ ScopedLock sl;
222
+ int pos_;
223
+ };
224
+
225
+ #endif // ENABLE_LOGGING_AND_PROFILING
226
+
227
+ } } // namespace v8::internal
228
+
229
+ #endif // V8_LOG_UTILS_H_
@@ -0,0 +1,1666 @@
1
+ // Copyright 2009 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include <stdarg.h>
29
+
30
+ #include "v8.h"
31
+
32
+ #include "bootstrapper.h"
33
+ #include "code-stubs.h"
34
+ #include "deoptimizer.h"
35
+ #include "global-handles.h"
36
+ #include "log.h"
37
+ #include "macro-assembler.h"
38
+ #include "runtime-profiler.h"
39
+ #include "serialize.h"
40
+ #include "string-stream.h"
41
+ #include "vm-state-inl.h"
42
+
43
+ namespace v8 {
44
+ namespace internal {
45
+
46
+ #ifdef ENABLE_LOGGING_AND_PROFILING
47
+
48
+ //
49
+ // Sliding state window. Updates counters to keep track of the last
50
+ // window of kBufferSize states. This is useful to track where we
51
+ // spent our time.
52
+ //
53
+ class SlidingStateWindow {
54
+ public:
55
+ explicit SlidingStateWindow(Isolate* isolate);
56
+ ~SlidingStateWindow();
57
+ void AddState(StateTag state);
58
+
59
+ private:
60
+ static const int kBufferSize = 256;
61
+ Counters* counters_;
62
+ int current_index_;
63
+ bool is_full_;
64
+ byte buffer_[kBufferSize];
65
+
66
+
67
+ void IncrementStateCounter(StateTag state) {
68
+ counters_->state_counters(state)->Increment();
69
+ }
70
+
71
+
72
+ void DecrementStateCounter(StateTag state) {
73
+ counters_->state_counters(state)->Decrement();
74
+ }
75
+ };
76
+
77
+
78
+ //
79
+ // The Profiler samples pc and sp values for the main thread.
80
+ // Each sample is appended to a circular buffer.
81
+ // An independent thread removes data and writes it to the log.
82
+ // This design minimizes the time spent in the sampler.
83
+ //
84
+ class Profiler: public Thread {
85
+ public:
86
+ explicit Profiler(Isolate* isolate);
87
+ void Engage();
88
+ void Disengage();
89
+
90
+ // Inserts collected profiling data into buffer.
91
+ void Insert(TickSample* sample) {
92
+ if (paused_)
93
+ return;
94
+
95
+ if (Succ(head_) == tail_) {
96
+ overflow_ = true;
97
+ } else {
98
+ buffer_[head_] = *sample;
99
+ head_ = Succ(head_);
100
+ buffer_semaphore_->Signal(); // Tell we have an element.
101
+ }
102
+ }
103
+
104
+ // Waits for a signal and removes profiling data.
105
+ bool Remove(TickSample* sample) {
106
+ buffer_semaphore_->Wait(); // Wait for an element.
107
+ *sample = buffer_[tail_];
108
+ bool result = overflow_;
109
+ tail_ = Succ(tail_);
110
+ overflow_ = false;
111
+ return result;
112
+ }
113
+
114
+ void Run();
115
+
116
+ // Pause and Resume TickSample data collection.
117
+ bool paused() const { return paused_; }
118
+ void pause() { paused_ = true; }
119
+ void resume() { paused_ = false; }
120
+
121
+ private:
122
+ // Returns the next index in the cyclic buffer.
123
+ int Succ(int index) { return (index + 1) % kBufferSize; }
124
+
125
+ // Cyclic buffer for communicating profiling samples
126
+ // between the signal handler and the worker thread.
127
+ static const int kBufferSize = 128;
128
+ TickSample buffer_[kBufferSize]; // Buffer storage.
129
+ int head_; // Index to the buffer head.
130
+ int tail_; // Index to the buffer tail.
131
+ bool overflow_; // Tell whether a buffer overflow has occurred.
132
+ Semaphore* buffer_semaphore_; // Sempahore used for buffer synchronization.
133
+
134
+ // Tells whether profiler is engaged, that is, processing thread is stated.
135
+ bool engaged_;
136
+
137
+ // Tells whether worker thread should continue running.
138
+ bool running_;
139
+
140
+ // Tells whether we are currently recording tick samples.
141
+ bool paused_;
142
+ };
143
+
144
+
145
+ //
146
+ // StackTracer implementation
147
+ //
148
+ void StackTracer::Trace(Isolate* isolate, TickSample* sample) {
149
+ ASSERT(isolate->IsInitialized());
150
+
151
+ sample->tos = NULL;
152
+ sample->frames_count = 0;
153
+ sample->has_external_callback = false;
154
+
155
+ // Avoid collecting traces while doing GC.
156
+ if (sample->state == GC) return;
157
+
158
+ const Address js_entry_sp =
159
+ Isolate::js_entry_sp(isolate->thread_local_top());
160
+ if (js_entry_sp == 0) {
161
+ // Not executing JS now.
162
+ return;
163
+ }
164
+
165
+ const Address callback = isolate->external_callback();
166
+ if (callback != NULL) {
167
+ sample->external_callback = callback;
168
+ sample->has_external_callback = true;
169
+ } else {
170
+ // Sample potential return address value for frameless invocation of
171
+ // stubs (we'll figure out later, if this value makes sense).
172
+ sample->tos = Memory::Address_at(sample->sp);
173
+ sample->has_external_callback = false;
174
+ }
175
+
176
+ SafeStackTraceFrameIterator it(isolate,
177
+ sample->fp, sample->sp,
178
+ sample->sp, js_entry_sp);
179
+ int i = 0;
180
+ while (!it.done() && i < TickSample::kMaxFramesCount) {
181
+ sample->stack[i++] = it.frame()->pc();
182
+ it.Advance();
183
+ }
184
+ sample->frames_count = i;
185
+ }
186
+
187
+
188
+ //
189
+ // Ticker used to provide ticks to the profiler and the sliding state
190
+ // window.
191
+ //
192
+ class Ticker: public Sampler {
193
+ public:
194
+ Ticker(Isolate* isolate, int interval):
195
+ Sampler(isolate, interval),
196
+ window_(NULL),
197
+ profiler_(NULL) {}
198
+
199
+ ~Ticker() { if (IsActive()) Stop(); }
200
+
201
+ virtual void Tick(TickSample* sample) {
202
+ if (profiler_) profiler_->Insert(sample);
203
+ if (window_) window_->AddState(sample->state);
204
+ }
205
+
206
+ void SetWindow(SlidingStateWindow* window) {
207
+ window_ = window;
208
+ if (!IsActive()) Start();
209
+ }
210
+
211
+ void ClearWindow() {
212
+ window_ = NULL;
213
+ if (!profiler_ && IsActive() && !RuntimeProfiler::IsEnabled()) Stop();
214
+ }
215
+
216
+ void SetProfiler(Profiler* profiler) {
217
+ ASSERT(profiler_ == NULL);
218
+ profiler_ = profiler;
219
+ IncreaseProfilingDepth();
220
+ if (!FLAG_prof_lazy && !IsActive()) Start();
221
+ }
222
+
223
+ void ClearProfiler() {
224
+ DecreaseProfilingDepth();
225
+ profiler_ = NULL;
226
+ if (!window_ && IsActive() && !RuntimeProfiler::IsEnabled()) Stop();
227
+ }
228
+
229
+ protected:
230
+ virtual void DoSampleStack(TickSample* sample) {
231
+ StackTracer::Trace(isolate(), sample);
232
+ }
233
+
234
+ private:
235
+ SlidingStateWindow* window_;
236
+ Profiler* profiler_;
237
+ };
238
+
239
+
240
+ //
241
+ // SlidingStateWindow implementation.
242
+ //
243
+ SlidingStateWindow::SlidingStateWindow(Isolate* isolate)
244
+ : counters_(isolate->counters()), current_index_(0), is_full_(false) {
245
+ for (int i = 0; i < kBufferSize; i++) {
246
+ buffer_[i] = static_cast<byte>(OTHER);
247
+ }
248
+ isolate->logger()->ticker_->SetWindow(this);
249
+ }
250
+
251
+
252
+ SlidingStateWindow::~SlidingStateWindow() {
253
+ LOGGER->ticker_->ClearWindow();
254
+ }
255
+
256
+
257
+ void SlidingStateWindow::AddState(StateTag state) {
258
+ if (is_full_) {
259
+ DecrementStateCounter(static_cast<StateTag>(buffer_[current_index_]));
260
+ } else if (current_index_ == kBufferSize - 1) {
261
+ is_full_ = true;
262
+ }
263
+ buffer_[current_index_] = static_cast<byte>(state);
264
+ IncrementStateCounter(state);
265
+ ASSERT(IsPowerOf2(kBufferSize));
266
+ current_index_ = (current_index_ + 1) & (kBufferSize - 1);
267
+ }
268
+
269
+
270
+ //
271
+ // Profiler implementation.
272
+ //
273
+ Profiler::Profiler(Isolate* isolate)
274
+ : Thread(isolate, "v8:Profiler"),
275
+ head_(0),
276
+ tail_(0),
277
+ overflow_(false),
278
+ buffer_semaphore_(OS::CreateSemaphore(0)),
279
+ engaged_(false),
280
+ running_(false),
281
+ paused_(false) {
282
+ }
283
+
284
+
285
+ void Profiler::Engage() {
286
+ if (engaged_) return;
287
+ engaged_ = true;
288
+
289
+ // TODO(mnaganov): This is actually "Chromium" mode. Flags need to be revised.
290
+ // http://code.google.com/p/v8/issues/detail?id=487
291
+ if (!FLAG_prof_lazy) {
292
+ OS::LogSharedLibraryAddresses();
293
+ }
294
+
295
+ // Start thread processing the profiler buffer.
296
+ running_ = true;
297
+ Start();
298
+
299
+ // Register to get ticks.
300
+ LOGGER->ticker_->SetProfiler(this);
301
+
302
+ LOGGER->ProfilerBeginEvent();
303
+ }
304
+
305
+
306
+ void Profiler::Disengage() {
307
+ if (!engaged_) return;
308
+
309
+ // Stop receiving ticks.
310
+ LOGGER->ticker_->ClearProfiler();
311
+
312
+ // Terminate the worker thread by setting running_ to false,
313
+ // inserting a fake element in the queue and then wait for
314
+ // the thread to terminate.
315
+ running_ = false;
316
+ TickSample sample;
317
+ // Reset 'paused_' flag, otherwise semaphore may not be signalled.
318
+ resume();
319
+ Insert(&sample);
320
+ Join();
321
+
322
+ LOG(ISOLATE, UncheckedStringEvent("profiler", "end"));
323
+ }
324
+
325
+
326
+ void Profiler::Run() {
327
+ TickSample sample;
328
+ bool overflow = Remove(&sample);
329
+ i::Isolate* isolate = ISOLATE;
330
+ while (running_) {
331
+ LOG(isolate, TickEvent(&sample, overflow));
332
+ overflow = Remove(&sample);
333
+ }
334
+ }
335
+
336
+
337
+ //
338
+ // Logger class implementation.
339
+ //
340
+
341
+ Logger::Logger()
342
+ : ticker_(NULL),
343
+ profiler_(NULL),
344
+ sliding_state_window_(NULL),
345
+ log_events_(NULL),
346
+ logging_nesting_(0),
347
+ cpu_profiler_nesting_(0),
348
+ heap_profiler_nesting_(0),
349
+ log_(new Log(this)),
350
+ is_initialized_(false),
351
+ last_address_(NULL),
352
+ prev_sp_(NULL),
353
+ prev_function_(NULL),
354
+ prev_to_(NULL),
355
+ prev_code_(NULL) {
356
+ }
357
+
358
+ Logger::~Logger() {
359
+ delete log_;
360
+ }
361
+
362
+ #define DECLARE_EVENT(ignore1, name) name,
363
+ static const char* const kLogEventsNames[Logger::NUMBER_OF_LOG_EVENTS] = {
364
+ LOG_EVENTS_AND_TAGS_LIST(DECLARE_EVENT)
365
+ };
366
+ #undef DECLARE_EVENT
367
+
368
+
369
+ void Logger::ProfilerBeginEvent() {
370
+ if (!log_->IsEnabled()) return;
371
+ LogMessageBuilder msg(this);
372
+ msg.Append("profiler,\"begin\",%d\n", kSamplingIntervalMs);
373
+ msg.WriteToLogFile();
374
+ }
375
+
376
+ #endif // ENABLE_LOGGING_AND_PROFILING
377
+
378
+
379
+ void Logger::StringEvent(const char* name, const char* value) {
380
+ #ifdef ENABLE_LOGGING_AND_PROFILING
381
+ if (FLAG_log) UncheckedStringEvent(name, value);
382
+ #endif
383
+ }
384
+
385
+
386
+ #ifdef ENABLE_LOGGING_AND_PROFILING
387
+ void Logger::UncheckedStringEvent(const char* name, const char* value) {
388
+ if (!log_->IsEnabled()) return;
389
+ LogMessageBuilder msg(this);
390
+ msg.Append("%s,\"%s\"\n", name, value);
391
+ msg.WriteToLogFile();
392
+ }
393
+ #endif
394
+
395
+
396
+ void Logger::IntEvent(const char* name, int value) {
397
+ #ifdef ENABLE_LOGGING_AND_PROFILING
398
+ if (FLAG_log) UncheckedIntEvent(name, value);
399
+ #endif
400
+ }
401
+
402
+
403
+ void Logger::IntPtrTEvent(const char* name, intptr_t value) {
404
+ #ifdef ENABLE_LOGGING_AND_PROFILING
405
+ if (FLAG_log) UncheckedIntPtrTEvent(name, value);
406
+ #endif
407
+ }
408
+
409
+
410
+ #ifdef ENABLE_LOGGING_AND_PROFILING
411
+ void Logger::UncheckedIntEvent(const char* name, int value) {
412
+ if (!log_->IsEnabled()) return;
413
+ LogMessageBuilder msg(this);
414
+ msg.Append("%s,%d\n", name, value);
415
+ msg.WriteToLogFile();
416
+ }
417
+ #endif
418
+
419
+
420
+ #ifdef ENABLE_LOGGING_AND_PROFILING
421
+ void Logger::UncheckedIntPtrTEvent(const char* name, intptr_t value) {
422
+ if (!log_->IsEnabled()) return;
423
+ LogMessageBuilder msg(this);
424
+ msg.Append("%s,%" V8_PTR_PREFIX "d\n", name, value);
425
+ msg.WriteToLogFile();
426
+ }
427
+ #endif
428
+
429
+
430
+ void Logger::HandleEvent(const char* name, Object** location) {
431
+ #ifdef ENABLE_LOGGING_AND_PROFILING
432
+ if (!log_->IsEnabled() || !FLAG_log_handles) return;
433
+ LogMessageBuilder msg(this);
434
+ msg.Append("%s,0x%" V8PRIxPTR "\n", name, location);
435
+ msg.WriteToLogFile();
436
+ #endif
437
+ }
438
+
439
+
440
+ #ifdef ENABLE_LOGGING_AND_PROFILING
441
+ // ApiEvent is private so all the calls come from the Logger class. It is the
442
+ // caller's responsibility to ensure that log is enabled and that
443
+ // FLAG_log_api is true.
444
+ void Logger::ApiEvent(const char* format, ...) {
445
+ ASSERT(log_->IsEnabled() && FLAG_log_api);
446
+ LogMessageBuilder msg(this);
447
+ va_list ap;
448
+ va_start(ap, format);
449
+ msg.AppendVA(format, ap);
450
+ va_end(ap);
451
+ msg.WriteToLogFile();
452
+ }
453
+ #endif
454
+
455
+
456
+ void Logger::ApiNamedSecurityCheck(Object* key) {
457
+ #ifdef ENABLE_LOGGING_AND_PROFILING
458
+ if (!log_->IsEnabled() || !FLAG_log_api) return;
459
+ if (key->IsString()) {
460
+ SmartPointer<char> str =
461
+ String::cast(key)->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
462
+ ApiEvent("api,check-security,\"%s\"\n", *str);
463
+ } else if (key->IsUndefined()) {
464
+ ApiEvent("api,check-security,undefined\n");
465
+ } else {
466
+ ApiEvent("api,check-security,['no-name']\n");
467
+ }
468
+ #endif
469
+ }
470
+
471
+
472
+ void Logger::SharedLibraryEvent(const char* library_path,
473
+ uintptr_t start,
474
+ uintptr_t end) {
475
+ #ifdef ENABLE_LOGGING_AND_PROFILING
476
+ if (!log_->IsEnabled() || !FLAG_prof) return;
477
+ LogMessageBuilder msg(this);
478
+ msg.Append("shared-library,\"%s\",0x%08" V8PRIxPTR ",0x%08" V8PRIxPTR "\n",
479
+ library_path,
480
+ start,
481
+ end);
482
+ msg.WriteToLogFile();
483
+ #endif
484
+ }
485
+
486
+
487
+ void Logger::SharedLibraryEvent(const wchar_t* library_path,
488
+ uintptr_t start,
489
+ uintptr_t end) {
490
+ #ifdef ENABLE_LOGGING_AND_PROFILING
491
+ if (!log_->IsEnabled() || !FLAG_prof) return;
492
+ LogMessageBuilder msg(this);
493
+ msg.Append("shared-library,\"%ls\",0x%08" V8PRIxPTR ",0x%08" V8PRIxPTR "\n",
494
+ library_path,
495
+ start,
496
+ end);
497
+ msg.WriteToLogFile();
498
+ #endif
499
+ }
500
+
501
+
502
+ #ifdef ENABLE_LOGGING_AND_PROFILING
503
+ void Logger::LogRegExpSource(Handle<JSRegExp> regexp) {
504
+ // Prints "/" + re.source + "/" +
505
+ // (re.global?"g":"") + (re.ignorecase?"i":"") + (re.multiline?"m":"")
506
+ LogMessageBuilder msg(this);
507
+
508
+ Handle<Object> source = GetProperty(regexp, "source");
509
+ if (!source->IsString()) {
510
+ msg.Append("no source");
511
+ return;
512
+ }
513
+
514
+ switch (regexp->TypeTag()) {
515
+ case JSRegExp::ATOM:
516
+ msg.Append('a');
517
+ break;
518
+ default:
519
+ break;
520
+ }
521
+ msg.Append('/');
522
+ msg.AppendDetailed(*Handle<String>::cast(source), false);
523
+ msg.Append('/');
524
+
525
+ // global flag
526
+ Handle<Object> global = GetProperty(regexp, "global");
527
+ if (global->IsTrue()) {
528
+ msg.Append('g');
529
+ }
530
+ // ignorecase flag
531
+ Handle<Object> ignorecase = GetProperty(regexp, "ignoreCase");
532
+ if (ignorecase->IsTrue()) {
533
+ msg.Append('i');
534
+ }
535
+ // multiline flag
536
+ Handle<Object> multiline = GetProperty(regexp, "multiline");
537
+ if (multiline->IsTrue()) {
538
+ msg.Append('m');
539
+ }
540
+
541
+ msg.WriteToLogFile();
542
+ }
543
+ #endif // ENABLE_LOGGING_AND_PROFILING
544
+
545
+
546
+ void Logger::RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache) {
547
+ #ifdef ENABLE_LOGGING_AND_PROFILING
548
+ if (!log_->IsEnabled() || !FLAG_log_regexp) return;
549
+ LogMessageBuilder msg(this);
550
+ msg.Append("regexp-compile,");
551
+ LogRegExpSource(regexp);
552
+ msg.Append(in_cache ? ",hit\n" : ",miss\n");
553
+ msg.WriteToLogFile();
554
+ #endif
555
+ }
556
+
557
+
558
+ void Logger::LogRuntime(Vector<const char> format, JSArray* args) {
559
+ #ifdef ENABLE_LOGGING_AND_PROFILING
560
+ if (!log_->IsEnabled() || !FLAG_log_runtime) return;
561
+ HandleScope scope;
562
+ LogMessageBuilder msg(this);
563
+ for (int i = 0; i < format.length(); i++) {
564
+ char c = format[i];
565
+ if (c == '%' && i <= format.length() - 2) {
566
+ i++;
567
+ ASSERT('0' <= format[i] && format[i] <= '9');
568
+ MaybeObject* maybe = args->GetElement(format[i] - '0');
569
+ Object* obj;
570
+ if (!maybe->ToObject(&obj)) {
571
+ msg.Append("<exception>");
572
+ continue;
573
+ }
574
+ i++;
575
+ switch (format[i]) {
576
+ case 's':
577
+ msg.AppendDetailed(String::cast(obj), false);
578
+ break;
579
+ case 'S':
580
+ msg.AppendDetailed(String::cast(obj), true);
581
+ break;
582
+ case 'r':
583
+ Logger::LogRegExpSource(Handle<JSRegExp>(JSRegExp::cast(obj)));
584
+ break;
585
+ case 'x':
586
+ msg.Append("0x%x", Smi::cast(obj)->value());
587
+ break;
588
+ case 'i':
589
+ msg.Append("%i", Smi::cast(obj)->value());
590
+ break;
591
+ default:
592
+ UNREACHABLE();
593
+ }
594
+ } else {
595
+ msg.Append(c);
596
+ }
597
+ }
598
+ msg.Append('\n');
599
+ msg.WriteToLogFile();
600
+ #endif
601
+ }
602
+
603
+
604
+ void Logger::ApiIndexedSecurityCheck(uint32_t index) {
605
+ #ifdef ENABLE_LOGGING_AND_PROFILING
606
+ if (!log_->IsEnabled() || !FLAG_log_api) return;
607
+ ApiEvent("api,check-security,%u\n", index);
608
+ #endif
609
+ }
610
+
611
+
612
+ void Logger::ApiNamedPropertyAccess(const char* tag,
613
+ JSObject* holder,
614
+ Object* name) {
615
+ #ifdef ENABLE_LOGGING_AND_PROFILING
616
+ ASSERT(name->IsString());
617
+ if (!log_->IsEnabled() || !FLAG_log_api) return;
618
+ String* class_name_obj = holder->class_name();
619
+ SmartPointer<char> class_name =
620
+ class_name_obj->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
621
+ SmartPointer<char> property_name =
622
+ String::cast(name)->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
623
+ ApiEvent("api,%s,\"%s\",\"%s\"\n", tag, *class_name, *property_name);
624
+ #endif
625
+ }
626
+
627
+ void Logger::ApiIndexedPropertyAccess(const char* tag,
628
+ JSObject* holder,
629
+ uint32_t index) {
630
+ #ifdef ENABLE_LOGGING_AND_PROFILING
631
+ if (!log_->IsEnabled() || !FLAG_log_api) return;
632
+ String* class_name_obj = holder->class_name();
633
+ SmartPointer<char> class_name =
634
+ class_name_obj->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
635
+ ApiEvent("api,%s,\"%s\",%u\n", tag, *class_name, index);
636
+ #endif
637
+ }
638
+
639
+ void Logger::ApiObjectAccess(const char* tag, JSObject* object) {
640
+ #ifdef ENABLE_LOGGING_AND_PROFILING
641
+ if (!log_->IsEnabled() || !FLAG_log_api) return;
642
+ String* class_name_obj = object->class_name();
643
+ SmartPointer<char> class_name =
644
+ class_name_obj->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
645
+ ApiEvent("api,%s,\"%s\"\n", tag, *class_name);
646
+ #endif
647
+ }
648
+
649
+
650
+ void Logger::ApiEntryCall(const char* name) {
651
+ #ifdef ENABLE_LOGGING_AND_PROFILING
652
+ if (!log_->IsEnabled() || !FLAG_log_api) return;
653
+ ApiEvent("api,%s\n", name);
654
+ #endif
655
+ }
656
+
657
+
658
+ void Logger::NewEvent(const char* name, void* object, size_t size) {
659
+ #ifdef ENABLE_LOGGING_AND_PROFILING
660
+ if (!log_->IsEnabled() || !FLAG_log) return;
661
+ LogMessageBuilder msg(this);
662
+ msg.Append("new,%s,0x%" V8PRIxPTR ",%u\n", name, object,
663
+ static_cast<unsigned int>(size));
664
+ msg.WriteToLogFile();
665
+ #endif
666
+ }
667
+
668
+
669
+ void Logger::DeleteEvent(const char* name, void* object) {
670
+ #ifdef ENABLE_LOGGING_AND_PROFILING
671
+ if (!log_->IsEnabled() || !FLAG_log) return;
672
+ LogMessageBuilder msg(this);
673
+ msg.Append("delete,%s,0x%" V8PRIxPTR "\n", name, object);
674
+ msg.WriteToLogFile();
675
+ #endif
676
+ }
677
+
678
+
679
+ void Logger::NewEventStatic(const char* name, void* object, size_t size) {
680
+ LOGGER->NewEvent(name, object, size);
681
+ }
682
+
683
+
684
+ void Logger::DeleteEventStatic(const char* name, void* object) {
685
+ LOGGER->DeleteEvent(name, object);
686
+ }
687
+
688
+ #ifdef ENABLE_LOGGING_AND_PROFILING
689
+ void Logger::CallbackEventInternal(const char* prefix, const char* name,
690
+ Address entry_point) {
691
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
692
+ LogMessageBuilder msg(this);
693
+ msg.Append("%s,%s,",
694
+ kLogEventsNames[CODE_CREATION_EVENT],
695
+ kLogEventsNames[CALLBACK_TAG]);
696
+ msg.AppendAddress(entry_point);
697
+ msg.Append(",1,\"%s%s\"", prefix, name);
698
+ msg.Append('\n');
699
+ msg.WriteToLogFile();
700
+ }
701
+ #endif
702
+
703
+
704
+ void Logger::CallbackEvent(String* name, Address entry_point) {
705
+ #ifdef ENABLE_LOGGING_AND_PROFILING
706
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
707
+ SmartPointer<char> str =
708
+ name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
709
+ CallbackEventInternal("", *str, entry_point);
710
+ #endif
711
+ }
712
+
713
+
714
+ void Logger::GetterCallbackEvent(String* name, Address entry_point) {
715
+ #ifdef ENABLE_LOGGING_AND_PROFILING
716
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
717
+ SmartPointer<char> str =
718
+ name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
719
+ CallbackEventInternal("get ", *str, entry_point);
720
+ #endif
721
+ }
722
+
723
+
724
+ void Logger::SetterCallbackEvent(String* name, Address entry_point) {
725
+ #ifdef ENABLE_LOGGING_AND_PROFILING
726
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
727
+ SmartPointer<char> str =
728
+ name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
729
+ CallbackEventInternal("set ", *str, entry_point);
730
+ #endif
731
+ }
732
+
733
+
734
+ void Logger::CodeCreateEvent(LogEventsAndTags tag,
735
+ Code* code,
736
+ const char* comment) {
737
+ #ifdef ENABLE_LOGGING_AND_PROFILING
738
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
739
+ LogMessageBuilder msg(this);
740
+ msg.Append("%s,%s,",
741
+ kLogEventsNames[CODE_CREATION_EVENT],
742
+ kLogEventsNames[tag]);
743
+ msg.AppendAddress(code->address());
744
+ msg.Append(",%d,\"", code->ExecutableSize());
745
+ for (const char* p = comment; *p != '\0'; p++) {
746
+ if (*p == '"') {
747
+ msg.Append('\\');
748
+ }
749
+ msg.Append(*p);
750
+ }
751
+ msg.Append('"');
752
+ LowLevelCodeCreateEvent(code, &msg);
753
+ msg.Append('\n');
754
+ msg.WriteToLogFile();
755
+ #endif
756
+ }
757
+
758
+
759
+ void Logger::CodeCreateEvent(LogEventsAndTags tag,
760
+ Code* code,
761
+ String* name) {
762
+ #ifdef ENABLE_LOGGING_AND_PROFILING
763
+ if (name != NULL) {
764
+ SmartPointer<char> str =
765
+ name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
766
+ CodeCreateEvent(tag, code, *str);
767
+ } else {
768
+ CodeCreateEvent(tag, code, "");
769
+ }
770
+ #endif
771
+ }
772
+
773
+
774
+ #ifdef ENABLE_LOGGING_AND_PROFILING
775
+ // ComputeMarker must only be used when SharedFunctionInfo is known.
776
+ static const char* ComputeMarker(Code* code) {
777
+ switch (code->kind()) {
778
+ case Code::FUNCTION: return code->optimizable() ? "~" : "";
779
+ case Code::OPTIMIZED_FUNCTION: return "*";
780
+ default: return "";
781
+ }
782
+ }
783
+ #endif
784
+
785
+
786
+ void Logger::CodeCreateEvent(LogEventsAndTags tag,
787
+ Code* code,
788
+ SharedFunctionInfo* shared,
789
+ String* name) {
790
+ #ifdef ENABLE_LOGGING_AND_PROFILING
791
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
792
+ if (code == Isolate::Current()->builtins()->builtin(
793
+ Builtins::kLazyCompile))
794
+ return;
795
+
796
+ LogMessageBuilder msg(this);
797
+ SmartPointer<char> str =
798
+ name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
799
+ msg.Append("%s,%s,",
800
+ kLogEventsNames[CODE_CREATION_EVENT],
801
+ kLogEventsNames[tag]);
802
+ msg.AppendAddress(code->address());
803
+ msg.Append(",%d,\"%s\",", code->ExecutableSize(), *str);
804
+ msg.AppendAddress(shared->address());
805
+ msg.Append(",%s", ComputeMarker(code));
806
+ LowLevelCodeCreateEvent(code, &msg);
807
+ msg.Append('\n');
808
+ msg.WriteToLogFile();
809
+ #endif
810
+ }
811
+
812
+
813
+ // Although, it is possible to extract source and line from
814
+ // the SharedFunctionInfo object, we left it to caller
815
+ // to leave logging functions free from heap allocations.
816
+ void Logger::CodeCreateEvent(LogEventsAndTags tag,
817
+ Code* code,
818
+ SharedFunctionInfo* shared,
819
+ String* source, int line) {
820
+ #ifdef ENABLE_LOGGING_AND_PROFILING
821
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
822
+ LogMessageBuilder msg(this);
823
+ SmartPointer<char> name =
824
+ shared->DebugName()->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
825
+ SmartPointer<char> sourcestr =
826
+ source->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
827
+ msg.Append("%s,%s,",
828
+ kLogEventsNames[CODE_CREATION_EVENT],
829
+ kLogEventsNames[tag]);
830
+ msg.AppendAddress(code->address());
831
+ msg.Append(",%d,\"%s %s:%d\",",
832
+ code->ExecutableSize(),
833
+ *name,
834
+ *sourcestr,
835
+ line);
836
+ msg.AppendAddress(shared->address());
837
+ msg.Append(",%s", ComputeMarker(code));
838
+ LowLevelCodeCreateEvent(code, &msg);
839
+ msg.Append('\n');
840
+ msg.WriteToLogFile();
841
+ #endif
842
+ }
843
+
844
+
845
+ void Logger::CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count) {
846
+ #ifdef ENABLE_LOGGING_AND_PROFILING
847
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
848
+ LogMessageBuilder msg(this);
849
+ msg.Append("%s,%s,",
850
+ kLogEventsNames[CODE_CREATION_EVENT],
851
+ kLogEventsNames[tag]);
852
+ msg.AppendAddress(code->address());
853
+ msg.Append(",%d,\"args_count: %d\"", code->ExecutableSize(), args_count);
854
+ LowLevelCodeCreateEvent(code, &msg);
855
+ msg.Append('\n');
856
+ msg.WriteToLogFile();
857
+ #endif
858
+ }
859
+
860
+
861
+ void Logger::CodeMovingGCEvent() {
862
+ #ifdef ENABLE_LOGGING_AND_PROFILING
863
+ if (!log_->IsEnabled() || !FLAG_log_code || !FLAG_ll_prof) return;
864
+ LogMessageBuilder msg(this);
865
+ msg.Append("%s\n", kLogEventsNames[CODE_MOVING_GC]);
866
+ msg.WriteToLogFile();
867
+ OS::SignalCodeMovingGC();
868
+ #endif
869
+ }
870
+
871
+
872
+ void Logger::RegExpCodeCreateEvent(Code* code, String* source) {
873
+ #ifdef ENABLE_LOGGING_AND_PROFILING
874
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
875
+ LogMessageBuilder msg(this);
876
+ msg.Append("%s,%s,",
877
+ kLogEventsNames[CODE_CREATION_EVENT],
878
+ kLogEventsNames[REG_EXP_TAG]);
879
+ msg.AppendAddress(code->address());
880
+ msg.Append(",%d,\"", code->ExecutableSize());
881
+ msg.AppendDetailed(source, false);
882
+ msg.Append('\"');
883
+ LowLevelCodeCreateEvent(code, &msg);
884
+ msg.Append('\n');
885
+ msg.WriteToLogFile();
886
+ #endif
887
+ }
888
+
889
+
890
+ void Logger::CodeMoveEvent(Address from, Address to) {
891
+ #ifdef ENABLE_LOGGING_AND_PROFILING
892
+ MoveEventInternal(CODE_MOVE_EVENT, from, to);
893
+ #endif
894
+ }
895
+
896
+
897
+ void Logger::CodeDeleteEvent(Address from) {
898
+ #ifdef ENABLE_LOGGING_AND_PROFILING
899
+ DeleteEventInternal(CODE_DELETE_EVENT, from);
900
+ #endif
901
+ }
902
+
903
+
904
+ void Logger::SnapshotPositionEvent(Address addr, int pos) {
905
+ #ifdef ENABLE_LOGGING_AND_PROFILING
906
+ if (!log_->IsEnabled() || !FLAG_log_snapshot_positions) return;
907
+ LogMessageBuilder msg(this);
908
+ msg.Append("%s,", kLogEventsNames[SNAPSHOT_POSITION_EVENT]);
909
+ msg.AppendAddress(addr);
910
+ msg.Append(",%d", pos);
911
+ msg.Append('\n');
912
+ msg.WriteToLogFile();
913
+ #endif
914
+ }
915
+
916
+
917
+ void Logger::SharedFunctionInfoMoveEvent(Address from, Address to) {
918
+ #ifdef ENABLE_LOGGING_AND_PROFILING
919
+ MoveEventInternal(SHARED_FUNC_MOVE_EVENT, from, to);
920
+ #endif
921
+ }
922
+
923
+
924
+ #ifdef ENABLE_LOGGING_AND_PROFILING
925
+ void Logger::MoveEventInternal(LogEventsAndTags event,
926
+ Address from,
927
+ Address to) {
928
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
929
+ LogMessageBuilder msg(this);
930
+ msg.Append("%s,", kLogEventsNames[event]);
931
+ msg.AppendAddress(from);
932
+ msg.Append(',');
933
+ msg.AppendAddress(to);
934
+ msg.Append('\n');
935
+ msg.WriteToLogFile();
936
+ }
937
+ #endif
938
+
939
+
940
+ #ifdef ENABLE_LOGGING_AND_PROFILING
941
+ void Logger::DeleteEventInternal(LogEventsAndTags event, Address from) {
942
+ if (!log_->IsEnabled() || !FLAG_log_code) return;
943
+ LogMessageBuilder msg(this);
944
+ msg.Append("%s,", kLogEventsNames[event]);
945
+ msg.AppendAddress(from);
946
+ msg.Append('\n');
947
+ msg.WriteToLogFile();
948
+ }
949
+ #endif
950
+
951
+
952
+ void Logger::ResourceEvent(const char* name, const char* tag) {
953
+ #ifdef ENABLE_LOGGING_AND_PROFILING
954
+ if (!log_->IsEnabled() || !FLAG_log) return;
955
+ LogMessageBuilder msg(this);
956
+ msg.Append("%s,%s,", name, tag);
957
+
958
+ uint32_t sec, usec;
959
+ if (OS::GetUserTime(&sec, &usec) != -1) {
960
+ msg.Append("%d,%d,", sec, usec);
961
+ }
962
+ msg.Append("%.0f", OS::TimeCurrentMillis());
963
+
964
+ msg.Append('\n');
965
+ msg.WriteToLogFile();
966
+ #endif
967
+ }
968
+
969
+
970
+ void Logger::SuspectReadEvent(String* name, Object* obj) {
971
+ #ifdef ENABLE_LOGGING_AND_PROFILING
972
+ if (!log_->IsEnabled() || !FLAG_log_suspect) return;
973
+ LogMessageBuilder msg(this);
974
+ String* class_name = obj->IsJSObject()
975
+ ? JSObject::cast(obj)->class_name()
976
+ : HEAP->empty_string();
977
+ msg.Append("suspect-read,");
978
+ msg.Append(class_name);
979
+ msg.Append(',');
980
+ msg.Append('"');
981
+ msg.Append(name);
982
+ msg.Append('"');
983
+ msg.Append('\n');
984
+ msg.WriteToLogFile();
985
+ #endif
986
+ }
987
+
988
+
989
+ void Logger::HeapSampleBeginEvent(const char* space, const char* kind) {
990
+ #ifdef ENABLE_LOGGING_AND_PROFILING
991
+ if (!log_->IsEnabled() || !FLAG_log_gc) return;
992
+ LogMessageBuilder msg(this);
993
+ // Using non-relative system time in order to be able to synchronize with
994
+ // external memory profiling events (e.g. DOM memory size).
995
+ msg.Append("heap-sample-begin,\"%s\",\"%s\",%.0f\n",
996
+ space, kind, OS::TimeCurrentMillis());
997
+ msg.WriteToLogFile();
998
+ #endif
999
+ }
1000
+
1001
+
1002
+ void Logger::HeapSampleStats(const char* space, const char* kind,
1003
+ intptr_t capacity, intptr_t used) {
1004
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1005
+ if (!log_->IsEnabled() || !FLAG_log_gc) return;
1006
+ LogMessageBuilder msg(this);
1007
+ msg.Append("heap-sample-stats,\"%s\",\"%s\","
1008
+ "%" V8_PTR_PREFIX "d,%" V8_PTR_PREFIX "d\n",
1009
+ space, kind, capacity, used);
1010
+ msg.WriteToLogFile();
1011
+ #endif
1012
+ }
1013
+
1014
+
1015
+ void Logger::HeapSampleEndEvent(const char* space, const char* kind) {
1016
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1017
+ if (!log_->IsEnabled() || !FLAG_log_gc) return;
1018
+ LogMessageBuilder msg(this);
1019
+ msg.Append("heap-sample-end,\"%s\",\"%s\"\n", space, kind);
1020
+ msg.WriteToLogFile();
1021
+ #endif
1022
+ }
1023
+
1024
+
1025
+ void Logger::HeapSampleItemEvent(const char* type, int number, int bytes) {
1026
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1027
+ if (!log_->IsEnabled() || !FLAG_log_gc) return;
1028
+ LogMessageBuilder msg(this);
1029
+ msg.Append("heap-sample-item,%s,%d,%d\n", type, number, bytes);
1030
+ msg.WriteToLogFile();
1031
+ #endif
1032
+ }
1033
+
1034
+
1035
+ void Logger::HeapSampleJSConstructorEvent(const char* constructor,
1036
+ int number, int bytes) {
1037
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1038
+ if (!log_->IsEnabled() || !FLAG_log_gc) return;
1039
+ LogMessageBuilder msg(this);
1040
+ msg.Append("heap-js-cons-item,%s,%d,%d\n", constructor, number, bytes);
1041
+ msg.WriteToLogFile();
1042
+ #endif
1043
+ }
1044
+
1045
+ // Event starts with comma, so we don't have it in the format string.
1046
+ static const char kEventText[] = "heap-js-ret-item,%s";
1047
+ // We take placeholder strings into account, but it's OK to be conservative.
1048
+ static const int kEventTextLen = sizeof(kEventText)/sizeof(kEventText[0]);
1049
+
1050
+ void Logger::HeapSampleJSRetainersEvent(
1051
+ const char* constructor, const char* event) {
1052
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1053
+ if (!log_->IsEnabled() || !FLAG_log_gc) return;
1054
+ const int cons_len = StrLength(constructor);
1055
+ const int event_len = StrLength(event);
1056
+ int pos = 0;
1057
+ // Retainer lists can be long. We may need to split them into multiple events.
1058
+ do {
1059
+ LogMessageBuilder msg(this);
1060
+ msg.Append(kEventText, constructor);
1061
+ int to_write = event_len - pos;
1062
+ if (to_write > Log::kMessageBufferSize - (cons_len + kEventTextLen)) {
1063
+ int cut_pos = pos + Log::kMessageBufferSize - (cons_len + kEventTextLen);
1064
+ ASSERT(cut_pos < event_len);
1065
+ while (cut_pos > pos && event[cut_pos] != ',') --cut_pos;
1066
+ if (event[cut_pos] != ',') {
1067
+ // Crash in debug mode, skip in release mode.
1068
+ ASSERT(false);
1069
+ return;
1070
+ }
1071
+ // Append a piece of event that fits, without trailing comma.
1072
+ msg.AppendStringPart(event + pos, cut_pos - pos);
1073
+ // Start next piece with comma.
1074
+ pos = cut_pos;
1075
+ } else {
1076
+ msg.Append("%s", event + pos);
1077
+ pos += event_len;
1078
+ }
1079
+ msg.Append('\n');
1080
+ msg.WriteToLogFile();
1081
+ } while (pos < event_len);
1082
+ #endif
1083
+ }
1084
+
1085
+
1086
+ void Logger::HeapSampleJSProducerEvent(const char* constructor,
1087
+ Address* stack) {
1088
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1089
+ if (!log_->IsEnabled() || !FLAG_log_gc) return;
1090
+ LogMessageBuilder msg(this);
1091
+ msg.Append("heap-js-prod-item,%s", constructor);
1092
+ while (*stack != NULL) {
1093
+ msg.Append(",0x%" V8PRIxPTR, *stack++);
1094
+ }
1095
+ msg.Append("\n");
1096
+ msg.WriteToLogFile();
1097
+ #endif
1098
+ }
1099
+
1100
+
1101
+ void Logger::DebugTag(const char* call_site_tag) {
1102
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1103
+ if (!log_->IsEnabled() || !FLAG_log) return;
1104
+ LogMessageBuilder msg(this);
1105
+ msg.Append("debug-tag,%s\n", call_site_tag);
1106
+ msg.WriteToLogFile();
1107
+ #endif
1108
+ }
1109
+
1110
+
1111
+ void Logger::DebugEvent(const char* event_type, Vector<uint16_t> parameter) {
1112
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1113
+ if (!log_->IsEnabled() || !FLAG_log) return;
1114
+ StringBuilder s(parameter.length() + 1);
1115
+ for (int i = 0; i < parameter.length(); ++i) {
1116
+ s.AddCharacter(static_cast<char>(parameter[i]));
1117
+ }
1118
+ char* parameter_string = s.Finalize();
1119
+ LogMessageBuilder msg(this);
1120
+ msg.Append("debug-queue-event,%s,%15.3f,%s\n",
1121
+ event_type,
1122
+ OS::TimeCurrentMillis(),
1123
+ parameter_string);
1124
+ DeleteArray(parameter_string);
1125
+ msg.WriteToLogFile();
1126
+ #endif
1127
+ }
1128
+
1129
+
1130
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1131
+ void Logger::TickEvent(TickSample* sample, bool overflow) {
1132
+ if (!log_->IsEnabled() || !FLAG_prof) return;
1133
+ LogMessageBuilder msg(this);
1134
+ msg.Append("%s,", kLogEventsNames[TICK_EVENT]);
1135
+ msg.AppendAddress(sample->pc);
1136
+ msg.Append(',');
1137
+ msg.AppendAddress(sample->sp);
1138
+ if (sample->has_external_callback) {
1139
+ msg.Append(",1,");
1140
+ msg.AppendAddress(sample->external_callback);
1141
+ } else {
1142
+ msg.Append(",0,");
1143
+ msg.AppendAddress(sample->tos);
1144
+ }
1145
+ msg.Append(",%d", static_cast<int>(sample->state));
1146
+ if (overflow) {
1147
+ msg.Append(",overflow");
1148
+ }
1149
+ for (int i = 0; i < sample->frames_count; ++i) {
1150
+ msg.Append(',');
1151
+ msg.AppendAddress(sample->stack[i]);
1152
+ }
1153
+ msg.Append('\n');
1154
+ msg.WriteToLogFile();
1155
+ }
1156
+
1157
+
1158
+ int Logger::GetActiveProfilerModules() {
1159
+ int result = PROFILER_MODULE_NONE;
1160
+ if (profiler_ != NULL && !profiler_->paused()) {
1161
+ result |= PROFILER_MODULE_CPU;
1162
+ }
1163
+ if (FLAG_log_gc) {
1164
+ result |= PROFILER_MODULE_HEAP_STATS | PROFILER_MODULE_JS_CONSTRUCTORS;
1165
+ }
1166
+ return result;
1167
+ }
1168
+
1169
+
1170
+ void Logger::PauseProfiler(int flags, int tag) {
1171
+ if (!log_->IsEnabled()) return;
1172
+ if (profiler_ != NULL && (flags & PROFILER_MODULE_CPU)) {
1173
+ // It is OK to have negative nesting.
1174
+ if (--cpu_profiler_nesting_ == 0) {
1175
+ profiler_->pause();
1176
+ if (FLAG_prof_lazy) {
1177
+ if (!FLAG_sliding_state_window && !RuntimeProfiler::IsEnabled()) {
1178
+ ticker_->Stop();
1179
+ }
1180
+ FLAG_log_code = false;
1181
+ // Must be the same message as Log::kDynamicBufferSeal.
1182
+ LOG(ISOLATE, UncheckedStringEvent("profiler", "pause"));
1183
+ }
1184
+ --logging_nesting_;
1185
+ }
1186
+ }
1187
+ if (flags &
1188
+ (PROFILER_MODULE_HEAP_STATS | PROFILER_MODULE_JS_CONSTRUCTORS)) {
1189
+ if (--heap_profiler_nesting_ == 0) {
1190
+ FLAG_log_gc = false;
1191
+ --logging_nesting_;
1192
+ }
1193
+ }
1194
+ if (tag != 0) {
1195
+ UncheckedIntEvent("close-tag", tag);
1196
+ }
1197
+ }
1198
+
1199
+
1200
+ void Logger::ResumeProfiler(int flags, int tag) {
1201
+ if (!log_->IsEnabled()) return;
1202
+ if (tag != 0) {
1203
+ UncheckedIntEvent("open-tag", tag);
1204
+ }
1205
+ if (profiler_ != NULL && (flags & PROFILER_MODULE_CPU)) {
1206
+ if (cpu_profiler_nesting_++ == 0) {
1207
+ ++logging_nesting_;
1208
+ if (FLAG_prof_lazy) {
1209
+ profiler_->Engage();
1210
+ LOG(ISOLATE, UncheckedStringEvent("profiler", "resume"));
1211
+ FLAG_log_code = true;
1212
+ LogCompiledFunctions();
1213
+ LogAccessorCallbacks();
1214
+ if (!FLAG_sliding_state_window && !ticker_->IsActive()) {
1215
+ ticker_->Start();
1216
+ }
1217
+ }
1218
+ profiler_->resume();
1219
+ }
1220
+ }
1221
+ if (flags &
1222
+ (PROFILER_MODULE_HEAP_STATS | PROFILER_MODULE_JS_CONSTRUCTORS)) {
1223
+ if (heap_profiler_nesting_++ == 0) {
1224
+ ++logging_nesting_;
1225
+ FLAG_log_gc = true;
1226
+ }
1227
+ }
1228
+ }
1229
+
1230
+
1231
+ // This function can be called when Log's mutex is acquired,
1232
+ // either from main or Profiler's thread.
1233
+ void Logger::LogFailure() {
1234
+ PauseProfiler(PROFILER_MODULE_CPU, 0);
1235
+ }
1236
+
1237
+
1238
+ bool Logger::IsProfilerSamplerActive() {
1239
+ return ticker_->IsActive();
1240
+ }
1241
+
1242
+
1243
+ int Logger::GetLogLines(int from_pos, char* dest_buf, int max_size) {
1244
+ return log_->GetLogLines(from_pos, dest_buf, max_size);
1245
+ }
1246
+
1247
+
1248
+ class EnumerateOptimizedFunctionsVisitor: public OptimizedFunctionVisitor {
1249
+ public:
1250
+ EnumerateOptimizedFunctionsVisitor(Handle<SharedFunctionInfo>* sfis,
1251
+ Handle<Code>* code_objects,
1252
+ int* count)
1253
+ : sfis_(sfis), code_objects_(code_objects), count_(count) { }
1254
+
1255
+ virtual void EnterContext(Context* context) {}
1256
+ virtual void LeaveContext(Context* context) {}
1257
+
1258
+ virtual void VisitFunction(JSFunction* function) {
1259
+ if (sfis_ != NULL) {
1260
+ sfis_[*count_] = Handle<SharedFunctionInfo>(function->shared());
1261
+ }
1262
+ if (code_objects_ != NULL) {
1263
+ ASSERT(function->code()->kind() == Code::OPTIMIZED_FUNCTION);
1264
+ code_objects_[*count_] = Handle<Code>(function->code());
1265
+ }
1266
+ *count_ = *count_ + 1;
1267
+ }
1268
+
1269
+ private:
1270
+ Handle<SharedFunctionInfo>* sfis_;
1271
+ Handle<Code>* code_objects_;
1272
+ int* count_;
1273
+ };
1274
+
1275
+
1276
+ static int EnumerateCompiledFunctions(Handle<SharedFunctionInfo>* sfis,
1277
+ Handle<Code>* code_objects) {
1278
+ AssertNoAllocation no_alloc;
1279
+ int compiled_funcs_count = 0;
1280
+
1281
+ // Iterate the heap to find shared function info objects and record
1282
+ // the unoptimized code for them.
1283
+ HeapIterator iterator;
1284
+ for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
1285
+ if (!obj->IsSharedFunctionInfo()) continue;
1286
+ SharedFunctionInfo* sfi = SharedFunctionInfo::cast(obj);
1287
+ if (sfi->is_compiled()
1288
+ && (!sfi->script()->IsScript()
1289
+ || Script::cast(sfi->script())->HasValidSource())) {
1290
+ if (sfis != NULL) {
1291
+ sfis[compiled_funcs_count] = Handle<SharedFunctionInfo>(sfi);
1292
+ }
1293
+ if (code_objects != NULL) {
1294
+ code_objects[compiled_funcs_count] = Handle<Code>(sfi->code());
1295
+ }
1296
+ ++compiled_funcs_count;
1297
+ }
1298
+ }
1299
+
1300
+ // Iterate all optimized functions in all contexts.
1301
+ EnumerateOptimizedFunctionsVisitor visitor(sfis,
1302
+ code_objects,
1303
+ &compiled_funcs_count);
1304
+ Deoptimizer::VisitAllOptimizedFunctions(&visitor);
1305
+
1306
+ return compiled_funcs_count;
1307
+ }
1308
+
1309
+
1310
+ void Logger::LogCodeObject(Object* object) {
1311
+ if (FLAG_log_code) {
1312
+ Code* code_object = Code::cast(object);
1313
+ LogEventsAndTags tag = Logger::STUB_TAG;
1314
+ const char* description = "Unknown code from the snapshot";
1315
+ switch (code_object->kind()) {
1316
+ case Code::FUNCTION:
1317
+ case Code::OPTIMIZED_FUNCTION:
1318
+ return; // We log this later using LogCompiledFunctions.
1319
+ case Code::BINARY_OP_IC: // fall through
1320
+ case Code::TYPE_RECORDING_BINARY_OP_IC: // fall through
1321
+ case Code::COMPARE_IC: // fall through
1322
+ case Code::STUB:
1323
+ description =
1324
+ CodeStub::MajorName(CodeStub::GetMajorKey(code_object), true);
1325
+ if (description == NULL)
1326
+ description = "A stub from the snapshot";
1327
+ tag = Logger::STUB_TAG;
1328
+ break;
1329
+ case Code::BUILTIN:
1330
+ description = "A builtin from the snapshot";
1331
+ tag = Logger::BUILTIN_TAG;
1332
+ break;
1333
+ case Code::KEYED_LOAD_IC:
1334
+ description = "A keyed load IC from the snapshot";
1335
+ tag = Logger::KEYED_LOAD_IC_TAG;
1336
+ break;
1337
+ case Code::KEYED_EXTERNAL_ARRAY_LOAD_IC:
1338
+ description = "A keyed external array load IC from the snapshot";
1339
+ tag = Logger::KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG;
1340
+ break;
1341
+ case Code::LOAD_IC:
1342
+ description = "A load IC from the snapshot";
1343
+ tag = Logger::LOAD_IC_TAG;
1344
+ break;
1345
+ case Code::STORE_IC:
1346
+ description = "A store IC from the snapshot";
1347
+ tag = Logger::STORE_IC_TAG;
1348
+ break;
1349
+ case Code::KEYED_STORE_IC:
1350
+ description = "A keyed store IC from the snapshot";
1351
+ tag = Logger::KEYED_STORE_IC_TAG;
1352
+ break;
1353
+ case Code::KEYED_EXTERNAL_ARRAY_STORE_IC:
1354
+ description = "A keyed external array store IC from the snapshot";
1355
+ tag = Logger::KEYED_EXTERNAL_ARRAY_STORE_IC_TAG;
1356
+ break;
1357
+ case Code::CALL_IC:
1358
+ description = "A call IC from the snapshot";
1359
+ tag = Logger::CALL_IC_TAG;
1360
+ break;
1361
+ case Code::KEYED_CALL_IC:
1362
+ description = "A keyed call IC from the snapshot";
1363
+ tag = Logger::KEYED_CALL_IC_TAG;
1364
+ break;
1365
+ }
1366
+ PROFILE(ISOLATE, CodeCreateEvent(tag, code_object, description));
1367
+ }
1368
+ }
1369
+
1370
+
1371
+ void Logger::LogCodeInfo() {
1372
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1373
+ if (!log_->IsEnabled() || !FLAG_log_code || !FLAG_ll_prof) return;
1374
+ #if V8_TARGET_ARCH_IA32
1375
+ const char arch[] = "ia32";
1376
+ #elif V8_TARGET_ARCH_X64
1377
+ const char arch[] = "x64";
1378
+ #elif V8_TARGET_ARCH_ARM
1379
+ const char arch[] = "arm";
1380
+ #else
1381
+ const char arch[] = "unknown";
1382
+ #endif
1383
+ LogMessageBuilder msg(this);
1384
+ msg.Append("code-info,%s,%d\n", arch, Code::kHeaderSize);
1385
+ msg.WriteToLogFile();
1386
+ #endif // ENABLE_LOGGING_AND_PROFILING
1387
+ }
1388
+
1389
+
1390
+ void Logger::LowLevelCodeCreateEvent(Code* code, LogMessageBuilder* msg) {
1391
+ if (!FLAG_ll_prof || log_->output_code_handle_ == NULL) return;
1392
+ int pos = static_cast<int>(ftell(log_->output_code_handle_));
1393
+ size_t rv = fwrite(code->instruction_start(), 1, code->instruction_size(),
1394
+ log_->output_code_handle_);
1395
+ ASSERT(static_cast<size_t>(code->instruction_size()) == rv);
1396
+ USE(rv);
1397
+ msg->Append(",%d", pos);
1398
+ }
1399
+
1400
+
1401
+ void Logger::LogCodeObjects() {
1402
+ AssertNoAllocation no_alloc;
1403
+ HeapIterator iterator;
1404
+ for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
1405
+ if (obj->IsCode()) LogCodeObject(obj);
1406
+ }
1407
+ }
1408
+
1409
+
1410
+ void Logger::LogCompiledFunctions() {
1411
+ HandleScope scope;
1412
+ const int compiled_funcs_count = EnumerateCompiledFunctions(NULL, NULL);
1413
+ ScopedVector< Handle<SharedFunctionInfo> > sfis(compiled_funcs_count);
1414
+ ScopedVector< Handle<Code> > code_objects(compiled_funcs_count);
1415
+ EnumerateCompiledFunctions(sfis.start(), code_objects.start());
1416
+
1417
+ // During iteration, there can be heap allocation due to
1418
+ // GetScriptLineNumber call.
1419
+ for (int i = 0; i < compiled_funcs_count; ++i) {
1420
+ if (*code_objects[i] == Isolate::Current()->builtins()->builtin(
1421
+ Builtins::kLazyCompile))
1422
+ continue;
1423
+ Handle<SharedFunctionInfo> shared = sfis[i];
1424
+ Handle<String> func_name(shared->DebugName());
1425
+ if (shared->script()->IsScript()) {
1426
+ Handle<Script> script(Script::cast(shared->script()));
1427
+ if (script->name()->IsString()) {
1428
+ Handle<String> script_name(String::cast(script->name()));
1429
+ int line_num = GetScriptLineNumber(script, shared->start_position());
1430
+ if (line_num > 0) {
1431
+ PROFILE(ISOLATE,
1432
+ CodeCreateEvent(
1433
+ Logger::ToNativeByScript(Logger::LAZY_COMPILE_TAG, *script),
1434
+ *code_objects[i], *shared,
1435
+ *script_name, line_num + 1));
1436
+ } else {
1437
+ // Can't distinguish eval and script here, so always use Script.
1438
+ PROFILE(ISOLATE,
1439
+ CodeCreateEvent(
1440
+ Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
1441
+ *code_objects[i], *shared, *script_name));
1442
+ }
1443
+ } else {
1444
+ PROFILE(ISOLATE,
1445
+ CodeCreateEvent(
1446
+ Logger::ToNativeByScript(Logger::LAZY_COMPILE_TAG, *script),
1447
+ *code_objects[i], *shared, *func_name));
1448
+ }
1449
+ } else if (shared->IsApiFunction()) {
1450
+ // API function.
1451
+ FunctionTemplateInfo* fun_data = shared->get_api_func_data();
1452
+ Object* raw_call_data = fun_data->call_code();
1453
+ if (!raw_call_data->IsUndefined()) {
1454
+ CallHandlerInfo* call_data = CallHandlerInfo::cast(raw_call_data);
1455
+ Object* callback_obj = call_data->callback();
1456
+ Address entry_point = v8::ToCData<Address>(callback_obj);
1457
+ PROFILE(ISOLATE, CallbackEvent(*func_name, entry_point));
1458
+ }
1459
+ } else {
1460
+ PROFILE(ISOLATE,
1461
+ CodeCreateEvent(
1462
+ Logger::LAZY_COMPILE_TAG, *code_objects[i],
1463
+ *shared, *func_name));
1464
+ }
1465
+ }
1466
+ }
1467
+
1468
+
1469
+ void Logger::LogAccessorCallbacks() {
1470
+ AssertNoAllocation no_alloc;
1471
+ HeapIterator iterator;
1472
+ i::Isolate* isolate = ISOLATE;
1473
+ for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
1474
+ if (!obj->IsAccessorInfo()) continue;
1475
+ AccessorInfo* ai = AccessorInfo::cast(obj);
1476
+ if (!ai->name()->IsString()) continue;
1477
+ String* name = String::cast(ai->name());
1478
+ Address getter_entry = v8::ToCData<Address>(ai->getter());
1479
+ if (getter_entry != 0) {
1480
+ PROFILE(isolate, GetterCallbackEvent(name, getter_entry));
1481
+ }
1482
+ Address setter_entry = v8::ToCData<Address>(ai->setter());
1483
+ if (setter_entry != 0) {
1484
+ PROFILE(isolate, SetterCallbackEvent(name, setter_entry));
1485
+ }
1486
+ }
1487
+ }
1488
+
1489
+ #endif
1490
+
1491
+
1492
+ bool Logger::Setup() {
1493
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1494
+ // Tests and EnsureInitialize() can call this twice in a row. It's harmless.
1495
+ if (is_initialized_) return true;
1496
+ is_initialized_ = true;
1497
+
1498
+ // --ll-prof implies --log-code and --log-snapshot-positions.
1499
+ if (FLAG_ll_prof) {
1500
+ FLAG_log_code = true;
1501
+ FLAG_log_snapshot_positions = true;
1502
+ }
1503
+
1504
+ // --prof_lazy controls --log-code, implies --noprof_auto.
1505
+ if (FLAG_prof_lazy) {
1506
+ FLAG_log_code = false;
1507
+ FLAG_prof_auto = false;
1508
+ }
1509
+
1510
+ // TODO(isolates): this assert introduces cyclic dependency (logger
1511
+ // -> thread local top -> heap -> logger).
1512
+ // ASSERT(VMState::is_outermost_external());
1513
+
1514
+ log_->Initialize();
1515
+
1516
+ if (FLAG_ll_prof) LogCodeInfo();
1517
+
1518
+ ticker_ = new Ticker(Isolate::Current(), kSamplingIntervalMs);
1519
+
1520
+ Isolate* isolate = Isolate::Current();
1521
+ if (FLAG_sliding_state_window && sliding_state_window_ == NULL) {
1522
+ sliding_state_window_ = new SlidingStateWindow(isolate);
1523
+ }
1524
+
1525
+ bool start_logging = FLAG_log || FLAG_log_runtime || FLAG_log_api
1526
+ || FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect
1527
+ || FLAG_log_regexp || FLAG_log_state_changes;
1528
+
1529
+ if (start_logging) {
1530
+ logging_nesting_ = 1;
1531
+ }
1532
+
1533
+ if (FLAG_prof) {
1534
+ profiler_ = new Profiler(isolate);
1535
+ if (!FLAG_prof_auto) {
1536
+ profiler_->pause();
1537
+ } else {
1538
+ logging_nesting_ = 1;
1539
+ }
1540
+ if (!FLAG_prof_lazy) {
1541
+ profiler_->Engage();
1542
+ }
1543
+ }
1544
+
1545
+ return true;
1546
+
1547
+ #else
1548
+ return false;
1549
+ #endif
1550
+ }
1551
+
1552
+
1553
+ Sampler* Logger::sampler() {
1554
+ return ticker_;
1555
+ }
1556
+
1557
+
1558
+ void Logger::EnsureTickerStarted() {
1559
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1560
+ ASSERT(ticker_ != NULL);
1561
+ if (!ticker_->IsActive()) ticker_->Start();
1562
+ #endif
1563
+ }
1564
+
1565
+
1566
+ void Logger::EnsureTickerStopped() {
1567
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1568
+ if (ticker_ != NULL && ticker_->IsActive()) ticker_->Stop();
1569
+ #endif
1570
+ }
1571
+
1572
+
1573
+ void Logger::TearDown() {
1574
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1575
+ if (!is_initialized_) return;
1576
+ is_initialized_ = false;
1577
+
1578
+ // Stop the profiler before closing the file.
1579
+ if (profiler_ != NULL) {
1580
+ profiler_->Disengage();
1581
+ delete profiler_;
1582
+ profiler_ = NULL;
1583
+ }
1584
+
1585
+ delete sliding_state_window_;
1586
+ sliding_state_window_ = NULL;
1587
+
1588
+ delete ticker_;
1589
+ ticker_ = NULL;
1590
+
1591
+ log_->Close();
1592
+ #endif
1593
+ }
1594
+
1595
+
1596
+ void Logger::EnableSlidingStateWindow() {
1597
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1598
+ // If the ticker is NULL, Logger::Setup has not been called yet. In
1599
+ // that case, we set the sliding_state_window flag so that the
1600
+ // sliding window computation will be started when Logger::Setup is
1601
+ // called.
1602
+ if (ticker_ == NULL) {
1603
+ FLAG_sliding_state_window = true;
1604
+ return;
1605
+ }
1606
+ // Otherwise, if the sliding state window computation has not been
1607
+ // started we do it now.
1608
+ if (sliding_state_window_ == NULL) {
1609
+ sliding_state_window_ = new SlidingStateWindow(Isolate::Current());
1610
+ }
1611
+ #endif
1612
+ }
1613
+
1614
+
1615
+ Mutex* SamplerRegistry::mutex_ = OS::CreateMutex();
1616
+ List<Sampler*>* SamplerRegistry::active_samplers_ = NULL;
1617
+
1618
+
1619
+ bool SamplerRegistry::IterateActiveSamplers(VisitSampler func, void* param) {
1620
+ ScopedLock lock(mutex_);
1621
+ for (int i = 0;
1622
+ ActiveSamplersExist() && i < active_samplers_->length();
1623
+ ++i) {
1624
+ func(active_samplers_->at(i), param);
1625
+ }
1626
+ return ActiveSamplersExist();
1627
+ }
1628
+
1629
+
1630
+ static void ComputeCpuProfiling(Sampler* sampler, void* flag_ptr) {
1631
+ bool* flag = reinterpret_cast<bool*>(flag_ptr);
1632
+ *flag |= sampler->IsProfiling();
1633
+ }
1634
+
1635
+
1636
+ SamplerRegistry::State SamplerRegistry::GetState() {
1637
+ bool flag = false;
1638
+ if (!IterateActiveSamplers(&ComputeCpuProfiling, &flag)) {
1639
+ return HAS_NO_SAMPLERS;
1640
+ }
1641
+ return flag ? HAS_CPU_PROFILING_SAMPLERS : HAS_SAMPLERS;
1642
+ }
1643
+
1644
+
1645
+ void SamplerRegistry::AddActiveSampler(Sampler* sampler) {
1646
+ ASSERT(sampler->IsActive());
1647
+ ScopedLock lock(mutex_);
1648
+ if (active_samplers_ == NULL) {
1649
+ active_samplers_ = new List<Sampler*>;
1650
+ } else {
1651
+ ASSERT(!active_samplers_->Contains(sampler));
1652
+ }
1653
+ active_samplers_->Add(sampler);
1654
+ }
1655
+
1656
+
1657
+ void SamplerRegistry::RemoveActiveSampler(Sampler* sampler) {
1658
+ ASSERT(sampler->IsActive());
1659
+ ScopedLock lock(mutex_);
1660
+ ASSERT(active_samplers_ != NULL);
1661
+ bool removed = active_samplers_->RemoveElement(sampler);
1662
+ ASSERT(removed);
1663
+ USE(removed);
1664
+ }
1665
+
1666
+ } } // namespace v8::internal