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
@@ -1,137 +0,0 @@
1
- // Copyright 2010 the V8 project authors. All rights reserved.
2
- // Redistribution and use in source and binary forms, with or without
3
- // modification, are permitted provided that the following conditions are
4
- // met:
5
- //
6
- // * Redistributions of source code must retain the above copyright
7
- // notice, this list of conditions and the following disclaimer.
8
- // * Redistributions in binary form must reproduce the above
9
- // copyright notice, this list of conditions and the following
10
- // disclaimer in the documentation and/or other materials provided
11
- // with the distribution.
12
- // * Neither the name of Google Inc. nor the names of its
13
- // contributors may be used to endorse or promote products derived
14
- // from this software without specific prior written permission.
15
- //
16
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
-
28
- #ifndef V8_IA32_REGISTER_ALLOCATOR_MIPS_INL_H_
29
- #define V8_IA32_REGISTER_ALLOCATOR_MIPS_INL_H_
30
-
31
- #include "v8.h"
32
- #include "mips/assembler-mips.h"
33
-
34
- namespace v8 {
35
- namespace internal {
36
-
37
- // -------------------------------------------------------------------------
38
- // RegisterAllocator implementation.
39
-
40
- bool RegisterAllocator::IsReserved(Register reg) {
41
- // The code for this test relies on the order of register codes.
42
- return reg.is(cp) || reg.is(s8_fp) || reg.is(sp);
43
- }
44
-
45
-
46
- int RegisterAllocator::ToNumber(Register reg) {
47
- ASSERT(reg.is_valid() && !IsReserved(reg));
48
- const int kNumbers[] = {
49
- 0, // zero_reg
50
- 1, // at
51
- 2, // v0
52
- 3, // v1
53
- 4, // a0
54
- 5, // a1
55
- 6, // a2
56
- 7, // a3
57
- 8, // t0
58
- 9, // t1
59
- 10, // t2
60
- 11, // t3
61
- 12, // t4
62
- 13, // t5
63
- 14, // t
64
- 15, // t7
65
- 16, // t8
66
- 17, // t9
67
- 18, // s0
68
- 19, // s1
69
- 20, // s2
70
- 21, // s3
71
- 22, // s4
72
- 23, // s5
73
- 24, // s6
74
- 25, // s7
75
- 26, // k0
76
- 27, // k1
77
- 28, // gp
78
- 29, // sp
79
- 30, // s8_fp
80
- 31, // ra
81
- };
82
- return kNumbers[reg.code()];
83
- }
84
-
85
-
86
- Register RegisterAllocator::ToRegister(int num) {
87
- ASSERT(num >= 0 && num < kNumRegisters);
88
- const Register kRegisters[] = {
89
- zero_reg,
90
- at,
91
- v0,
92
- v1,
93
- a0,
94
- a1,
95
- a2,
96
- a3,
97
- t0,
98
- t1,
99
- t2,
100
- t3,
101
- t4,
102
- t5,
103
- t6,
104
- t7,
105
- s0,
106
- s1,
107
- s2,
108
- s3,
109
- s4,
110
- s5,
111
- s6,
112
- s7,
113
- t8,
114
- t9,
115
- k0,
116
- k1,
117
- gp,
118
- sp,
119
- s8_fp,
120
- ra
121
- };
122
- return kRegisters[num];
123
- }
124
-
125
-
126
- void RegisterAllocator::Initialize() {
127
- Reset();
128
- // The non-reserved a1 and ra registers are live on JS function entry.
129
- Use(a1); // JS function.
130
- Use(ra); // Return address.
131
- }
132
-
133
-
134
- } } // namespace v8::internal
135
-
136
- #endif // V8_IA32_REGISTER_ALLOCATOR_MIPS_INL_H_
137
-
@@ -1,46 +0,0 @@
1
- // Copyright 2010 the V8 project authors. All rights reserved.
2
- // Redistribution and use in source and binary forms, with or without
3
- // modification, are permitted provided that the following conditions are
4
- // met:
5
- //
6
- // * Redistributions of source code must retain the above copyright
7
- // notice, this list of conditions and the following disclaimer.
8
- // * Redistributions in binary form must reproduce the above
9
- // copyright notice, this list of conditions and the following
10
- // disclaimer in the documentation and/or other materials provided
11
- // with the distribution.
12
- // * Neither the name of Google Inc. nor the names of its
13
- // contributors may be used to endorse or promote products derived
14
- // from this software without specific prior written permission.
15
- //
16
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
-
28
- #ifndef V8_MIPS_REGISTER_ALLOCATOR_MIPS_H_
29
- #define V8_MIPS_REGISTER_ALLOCATOR_MIPS_H_
30
-
31
- #include "mips/constants-mips.h"
32
-
33
- namespace v8 {
34
- namespace internal {
35
-
36
- class RegisterAllocatorConstants : public AllStatic {
37
- public:
38
- static const int kNumRegisters = assembler::mips::kNumRegisters;
39
- static const int kInvalidRegister = assembler::mips::kInvalidRegister;
40
- };
41
-
42
-
43
- } } // namespace v8::internal
44
-
45
- #endif // V8_MIPS_REGISTER_ALLOCATOR_MIPS_H_
46
-
@@ -1,1650 +0,0 @@
1
- // Copyright 2010 the V8 project authors. All rights reserved.
2
- // Redistribution and use in source and binary forms, with or without
3
- // modification, are permitted provided that the following conditions are
4
- // met:
5
- //
6
- // * Redistributions of source code must retain the above copyright
7
- // notice, this list of conditions and the following disclaimer.
8
- // * Redistributions in binary form must reproduce the above
9
- // copyright notice, this list of conditions and the following
10
- // disclaimer in the documentation and/or other materials provided
11
- // with the distribution.
12
- // * Neither the name of Google Inc. nor the names of its
13
- // contributors may be used to endorse or promote products derived
14
- // from this software without specific prior written permission.
15
- //
16
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
-
28
- #include <stdlib.h>
29
- #include <cstdarg>
30
- #include "v8.h"
31
-
32
- #if defined(V8_TARGET_ARCH_MIPS)
33
-
34
- #include "disasm.h"
35
- #include "assembler.h"
36
- #include "globals.h" // Need the BitCast
37
- #include "mips/constants-mips.h"
38
- #include "mips/simulator-mips.h"
39
-
40
- namespace v8i = v8::internal;
41
-
42
- #if !defined(__mips) || defined(USE_SIMULATOR)
43
-
44
- // Only build the simulator if not compiling for real MIPS hardware.
45
- namespace assembler {
46
- namespace mips {
47
-
48
- using ::v8::internal::Object;
49
- using ::v8::internal::PrintF;
50
- using ::v8::internal::OS;
51
- using ::v8::internal::ReadLine;
52
- using ::v8::internal::DeleteArray;
53
-
54
- // Utils functions
55
- bool HaveSameSign(int32_t a, int32_t b) {
56
- return ((a ^ b) > 0);
57
- }
58
-
59
-
60
- // This macro provides a platform independent use of sscanf. The reason for
61
- // SScanF not being implemented in a platform independent was through
62
- // ::v8::internal::OS in the same way as SNPrintF is that the Windows C Run-Time
63
- // Library does not provide vsscanf.
64
- #define SScanF sscanf // NOLINT
65
-
66
- // The Debugger class is used by the simulator while debugging simulated MIPS
67
- // code.
68
- class Debugger {
69
- public:
70
- explicit Debugger(Simulator* sim);
71
- ~Debugger();
72
-
73
- void Stop(Instruction* instr);
74
- void Debug();
75
-
76
- private:
77
- // We set the breakpoint code to 0xfffff to easily recognize it.
78
- static const Instr kBreakpointInstr = SPECIAL | BREAK | 0xfffff << 6;
79
- static const Instr kNopInstr = 0x0;
80
-
81
- Simulator* sim_;
82
-
83
- int32_t GetRegisterValue(int regnum);
84
- bool GetValue(const char* desc, int32_t* value);
85
-
86
- // Set or delete a breakpoint. Returns true if successful.
87
- bool SetBreakpoint(Instruction* breakpc);
88
- bool DeleteBreakpoint(Instruction* breakpc);
89
-
90
- // Undo and redo all breakpoints. This is needed to bracket disassembly and
91
- // execution to skip past breakpoints when run from the debugger.
92
- void UndoBreakpoints();
93
- void RedoBreakpoints();
94
-
95
- // Print all registers with a nice formatting.
96
- void PrintAllRegs();
97
- };
98
-
99
- Debugger::Debugger(Simulator* sim) {
100
- sim_ = sim;
101
- }
102
-
103
- Debugger::~Debugger() {
104
- }
105
-
106
- #ifdef GENERATED_CODE_COVERAGE
107
- static FILE* coverage_log = NULL;
108
-
109
-
110
- static void InitializeCoverage() {
111
- char* file_name = getenv("V8_GENERATED_CODE_COVERAGE_LOG");
112
- if (file_name != NULL) {
113
- coverage_log = fopen(file_name, "aw+");
114
- }
115
- }
116
-
117
-
118
- void Debugger::Stop(Instruction* instr) {
119
- UNIMPLEMENTED_MIPS();
120
- char* str = reinterpret_cast<char*>(instr->InstructionBits());
121
- if (strlen(str) > 0) {
122
- if (coverage_log != NULL) {
123
- fprintf(coverage_log, "%s\n", str);
124
- fflush(coverage_log);
125
- }
126
- instr->SetInstructionBits(0x0); // Overwrite with nop.
127
- }
128
- sim_->set_pc(sim_->get_pc() + Instruction::kInstructionSize);
129
- }
130
-
131
- #else // ndef GENERATED_CODE_COVERAGE
132
-
133
- #define UNSUPPORTED() printf("Unsupported instruction.\n");
134
-
135
- static void InitializeCoverage() {}
136
-
137
-
138
- void Debugger::Stop(Instruction* instr) {
139
- const char* str = reinterpret_cast<char*>(instr->InstructionBits());
140
- PrintF("Simulator hit %s\n", str);
141
- sim_->set_pc(sim_->get_pc() + Instruction::kInstructionSize);
142
- Debug();
143
- }
144
- #endif // GENERATED_CODE_COVERAGE
145
-
146
-
147
- int32_t Debugger::GetRegisterValue(int regnum) {
148
- if (regnum == kNumSimuRegisters) {
149
- return sim_->get_pc();
150
- } else {
151
- return sim_->get_register(regnum);
152
- }
153
- }
154
-
155
-
156
- bool Debugger::GetValue(const char* desc, int32_t* value) {
157
- int regnum = Registers::Number(desc);
158
- if (regnum != kInvalidRegister) {
159
- *value = GetRegisterValue(regnum);
160
- return true;
161
- } else {
162
- return SScanF(desc, "%i", value) == 1;
163
- }
164
- return false;
165
- }
166
-
167
-
168
- bool Debugger::SetBreakpoint(Instruction* breakpc) {
169
- // Check if a breakpoint can be set. If not return without any side-effects.
170
- if (sim_->break_pc_ != NULL) {
171
- return false;
172
- }
173
-
174
- // Set the breakpoint.
175
- sim_->break_pc_ = breakpc;
176
- sim_->break_instr_ = breakpc->InstructionBits();
177
- // Not setting the breakpoint instruction in the code itself. It will be set
178
- // when the debugger shell continues.
179
- return true;
180
- }
181
-
182
-
183
- bool Debugger::DeleteBreakpoint(Instruction* breakpc) {
184
- if (sim_->break_pc_ != NULL) {
185
- sim_->break_pc_->SetInstructionBits(sim_->break_instr_);
186
- }
187
-
188
- sim_->break_pc_ = NULL;
189
- sim_->break_instr_ = 0;
190
- return true;
191
- }
192
-
193
-
194
- void Debugger::UndoBreakpoints() {
195
- if (sim_->break_pc_ != NULL) {
196
- sim_->break_pc_->SetInstructionBits(sim_->break_instr_);
197
- }
198
- }
199
-
200
-
201
- void Debugger::RedoBreakpoints() {
202
- if (sim_->break_pc_ != NULL) {
203
- sim_->break_pc_->SetInstructionBits(kBreakpointInstr);
204
- }
205
- }
206
-
207
- void Debugger::PrintAllRegs() {
208
- #define REG_INFO(n) Registers::Name(n), GetRegisterValue(n), GetRegisterValue(n)
209
-
210
- PrintF("\n");
211
- // at, v0, a0
212
- PrintF("%3s: 0x%08x %10d\t%3s: 0x%08x %10d\t%3s: 0x%08x %10d\n",
213
- REG_INFO(1), REG_INFO(2), REG_INFO(4));
214
- // v1, a1
215
- PrintF("%26s\t%3s: 0x%08x %10d\t%3s: 0x%08x %10d\n",
216
- "", REG_INFO(3), REG_INFO(5));
217
- // a2
218
- PrintF("%26s\t%26s\t%3s: 0x%08x %10d\n", "", "", REG_INFO(6));
219
- // a3
220
- PrintF("%26s\t%26s\t%3s: 0x%08x %10d\n", "", "", REG_INFO(7));
221
- PrintF("\n");
222
- // t0-t7, s0-s7
223
- for (int i = 0; i < 8; i++) {
224
- PrintF("%3s: 0x%08x %10d\t%3s: 0x%08x %10d\n",
225
- REG_INFO(8+i), REG_INFO(16+i));
226
- }
227
- PrintF("\n");
228
- // t8, k0, LO
229
- PrintF("%3s: 0x%08x %10d\t%3s: 0x%08x %10d\t%3s: 0x%08x %10d\n",
230
- REG_INFO(24), REG_INFO(26), REG_INFO(32));
231
- // t9, k1, HI
232
- PrintF("%3s: 0x%08x %10d\t%3s: 0x%08x %10d\t%3s: 0x%08x %10d\n",
233
- REG_INFO(25), REG_INFO(27), REG_INFO(33));
234
- // sp, fp, gp
235
- PrintF("%3s: 0x%08x %10d\t%3s: 0x%08x %10d\t%3s: 0x%08x %10d\n",
236
- REG_INFO(29), REG_INFO(30), REG_INFO(28));
237
- // pc
238
- PrintF("%3s: 0x%08x %10d\t%3s: 0x%08x %10d\n",
239
- REG_INFO(31), REG_INFO(34));
240
- #undef REG_INFO
241
- }
242
-
243
- void Debugger::Debug() {
244
- intptr_t last_pc = -1;
245
- bool done = false;
246
-
247
- #define COMMAND_SIZE 63
248
- #define ARG_SIZE 255
249
-
250
- #define STR(a) #a
251
- #define XSTR(a) STR(a)
252
-
253
- char cmd[COMMAND_SIZE + 1];
254
- char arg1[ARG_SIZE + 1];
255
- char arg2[ARG_SIZE + 1];
256
-
257
- // make sure to have a proper terminating character if reaching the limit
258
- cmd[COMMAND_SIZE] = 0;
259
- arg1[ARG_SIZE] = 0;
260
- arg2[ARG_SIZE] = 0;
261
-
262
- // Undo all set breakpoints while running in the debugger shell. This will
263
- // make them invisible to all commands.
264
- UndoBreakpoints();
265
-
266
- while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) {
267
- if (last_pc != sim_->get_pc()) {
268
- disasm::NameConverter converter;
269
- disasm::Disassembler dasm(converter);
270
- // use a reasonably large buffer
271
- v8::internal::EmbeddedVector<char, 256> buffer;
272
- dasm.InstructionDecode(buffer,
273
- reinterpret_cast<byte_*>(sim_->get_pc()));
274
- PrintF(" 0x%08x %s\n", sim_->get_pc(), buffer.start());
275
- last_pc = sim_->get_pc();
276
- }
277
- char* line = ReadLine("sim> ");
278
- if (line == NULL) {
279
- break;
280
- } else {
281
- // Use sscanf to parse the individual parts of the command line. At the
282
- // moment no command expects more than two parameters.
283
- int args = SScanF(line,
284
- "%" XSTR(COMMAND_SIZE) "s "
285
- "%" XSTR(ARG_SIZE) "s "
286
- "%" XSTR(ARG_SIZE) "s",
287
- cmd, arg1, arg2);
288
- if ((strcmp(cmd, "si") == 0) || (strcmp(cmd, "stepi") == 0)) {
289
- if (!(reinterpret_cast<Instruction*>(sim_->get_pc())->IsTrap())) {
290
- sim_->InstructionDecode(
291
- reinterpret_cast<Instruction*>(sim_->get_pc()));
292
- } else {
293
- // Allow si to jump over generated breakpoints.
294
- PrintF("/!\\ Jumping over generated breakpoint.\n");
295
- sim_->set_pc(sim_->get_pc() + Instruction::kInstructionSize);
296
- }
297
- } else if ((strcmp(cmd, "c") == 0) || (strcmp(cmd, "cont") == 0)) {
298
- // Execute the one instruction we broke at with breakpoints disabled.
299
- sim_->InstructionDecode(reinterpret_cast<Instruction*>(sim_->get_pc()));
300
- // Leave the debugger shell.
301
- done = true;
302
- } else if ((strcmp(cmd, "p") == 0) || (strcmp(cmd, "print") == 0)) {
303
- if (args == 2) {
304
- int32_t value;
305
- if (strcmp(arg1, "all") == 0) {
306
- PrintAllRegs();
307
- } else {
308
- if (GetValue(arg1, &value)) {
309
- PrintF("%s: 0x%08x %d \n", arg1, value, value);
310
- } else {
311
- PrintF("%s unrecognized\n", arg1);
312
- }
313
- }
314
- } else {
315
- PrintF("print <register>\n");
316
- }
317
- } else if ((strcmp(cmd, "po") == 0)
318
- || (strcmp(cmd, "printobject") == 0)) {
319
- if (args == 2) {
320
- int32_t value;
321
- if (GetValue(arg1, &value)) {
322
- Object* obj = reinterpret_cast<Object*>(value);
323
- PrintF("%s: \n", arg1);
324
- #ifdef DEBUG
325
- obj->PrintLn();
326
- #else
327
- obj->ShortPrint();
328
- PrintF("\n");
329
- #endif
330
- } else {
331
- PrintF("%s unrecognized\n", arg1);
332
- }
333
- } else {
334
- PrintF("printobject <value>\n");
335
- }
336
- } else if ((strcmp(cmd, "disasm") == 0) || (strcmp(cmd, "dpc") == 0)) {
337
- disasm::NameConverter converter;
338
- disasm::Disassembler dasm(converter);
339
- // use a reasonably large buffer
340
- v8::internal::EmbeddedVector<char, 256> buffer;
341
-
342
- byte_* cur = NULL;
343
- byte_* end = NULL;
344
-
345
- if (args == 1) {
346
- cur = reinterpret_cast<byte_*>(sim_->get_pc());
347
- end = cur + (10 * Instruction::kInstructionSize);
348
- } else if (args == 2) {
349
- int32_t value;
350
- if (GetValue(arg1, &value)) {
351
- cur = reinterpret_cast<byte_*>(value);
352
- // no length parameter passed, assume 10 instructions
353
- end = cur + (10 * Instruction::kInstructionSize);
354
- }
355
- } else {
356
- int32_t value1;
357
- int32_t value2;
358
- if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
359
- cur = reinterpret_cast<byte_*>(value1);
360
- end = cur + (value2 * Instruction::kInstructionSize);
361
- }
362
- }
363
-
364
- while (cur < end) {
365
- dasm.InstructionDecode(buffer, cur);
366
- PrintF(" 0x%08x %s\n", cur, buffer.start());
367
- cur += Instruction::kInstructionSize;
368
- }
369
- } else if (strcmp(cmd, "gdb") == 0) {
370
- PrintF("relinquishing control to gdb\n");
371
- v8::internal::OS::DebugBreak();
372
- PrintF("regaining control from gdb\n");
373
- } else if (strcmp(cmd, "break") == 0) {
374
- if (args == 2) {
375
- int32_t value;
376
- if (GetValue(arg1, &value)) {
377
- if (!SetBreakpoint(reinterpret_cast<Instruction*>(value))) {
378
- PrintF("setting breakpoint failed\n");
379
- }
380
- } else {
381
- PrintF("%s unrecognized\n", arg1);
382
- }
383
- } else {
384
- PrintF("break <address>\n");
385
- }
386
- } else if (strcmp(cmd, "del") == 0) {
387
- if (!DeleteBreakpoint(NULL)) {
388
- PrintF("deleting breakpoint failed\n");
389
- }
390
- } else if (strcmp(cmd, "flags") == 0) {
391
- PrintF("No flags on MIPS !\n");
392
- } else if (strcmp(cmd, "unstop") == 0) {
393
- PrintF("Unstop command not implemented on MIPS.");
394
- } else if ((strcmp(cmd, "stat") == 0) || (strcmp(cmd, "st") == 0)) {
395
- // Print registers and disassemble
396
- PrintAllRegs();
397
- PrintF("\n");
398
-
399
- disasm::NameConverter converter;
400
- disasm::Disassembler dasm(converter);
401
- // use a reasonably large buffer
402
- v8::internal::EmbeddedVector<char, 256> buffer;
403
-
404
- byte_* cur = NULL;
405
- byte_* end = NULL;
406
-
407
- if (args == 1) {
408
- cur = reinterpret_cast<byte_*>(sim_->get_pc());
409
- end = cur + (10 * Instruction::kInstructionSize);
410
- } else if (args == 2) {
411
- int32_t value;
412
- if (GetValue(arg1, &value)) {
413
- cur = reinterpret_cast<byte_*>(value);
414
- // no length parameter passed, assume 10 instructions
415
- end = cur + (10 * Instruction::kInstructionSize);
416
- }
417
- } else {
418
- int32_t value1;
419
- int32_t value2;
420
- if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
421
- cur = reinterpret_cast<byte_*>(value1);
422
- end = cur + (value2 * Instruction::kInstructionSize);
423
- }
424
- }
425
-
426
- while (cur < end) {
427
- dasm.InstructionDecode(buffer, cur);
428
- PrintF(" 0x%08x %s\n", cur, buffer.start());
429
- cur += Instruction::kInstructionSize;
430
- }
431
- } else if ((strcmp(cmd, "h") == 0) || (strcmp(cmd, "help") == 0)) {
432
- PrintF("cont\n");
433
- PrintF(" continue execution (alias 'c')\n");
434
- PrintF("stepi\n");
435
- PrintF(" step one instruction (alias 'si')\n");
436
- PrintF("print <register>\n");
437
- PrintF(" print register content (alias 'p')\n");
438
- PrintF(" use register name 'all' to print all registers\n");
439
- PrintF("printobject <register>\n");
440
- PrintF(" print an object from a register (alias 'po')\n");
441
- PrintF("flags\n");
442
- PrintF(" print flags\n");
443
- PrintF("disasm [<instructions>]\n");
444
- PrintF("disasm [[<address>] <instructions>]\n");
445
- PrintF(" disassemble code, default is 10 instructions from pc\n");
446
- PrintF("gdb\n");
447
- PrintF(" enter gdb\n");
448
- PrintF("break <address>\n");
449
- PrintF(" set a break point on the address\n");
450
- PrintF("del\n");
451
- PrintF(" delete the breakpoint\n");
452
- PrintF("unstop\n");
453
- PrintF(" ignore the stop instruction at the current location");
454
- PrintF(" from now on\n");
455
- } else {
456
- PrintF("Unknown command: %s\n", cmd);
457
- }
458
- }
459
- DeleteArray(line);
460
- }
461
-
462
- // Add all the breakpoints back to stop execution and enter the debugger
463
- // shell when hit.
464
- RedoBreakpoints();
465
-
466
- #undef COMMAND_SIZE
467
- #undef ARG_SIZE
468
-
469
- #undef STR
470
- #undef XSTR
471
- }
472
-
473
-
474
- // Create one simulator per thread and keep it in thread local storage.
475
- static v8::internal::Thread::LocalStorageKey simulator_key;
476
-
477
-
478
- bool Simulator::initialized_ = false;
479
-
480
-
481
- void Simulator::Initialize() {
482
- if (initialized_) return;
483
- simulator_key = v8::internal::Thread::CreateThreadLocalKey();
484
- initialized_ = true;
485
- ::v8::internal::ExternalReference::set_redirector(&RedirectExternalReference);
486
- }
487
-
488
-
489
- Simulator::Simulator() {
490
- Initialize();
491
- // Setup simulator support first. Some of this information is needed to
492
- // setup the architecture state.
493
- size_t stack_size = 1 * 1024*1024; // allocate 1MB for stack
494
- stack_ = reinterpret_cast<char*>(malloc(stack_size));
495
- pc_modified_ = false;
496
- icount_ = 0;
497
- break_pc_ = NULL;
498
- break_instr_ = 0;
499
-
500
- // Setup architecture state.
501
- // All registers are initialized to zero to start with.
502
- for (int i = 0; i < kNumSimuRegisters; i++) {
503
- registers_[i] = 0;
504
- }
505
-
506
- // The sp is initialized to point to the bottom (high address) of the
507
- // allocated stack area. To be safe in potential stack underflows we leave
508
- // some buffer below.
509
- registers_[sp] = reinterpret_cast<int32_t>(stack_) + stack_size - 64;
510
- // The ra and pc are initialized to a known bad value that will cause an
511
- // access violation if the simulator ever tries to execute it.
512
- registers_[pc] = bad_ra;
513
- registers_[ra] = bad_ra;
514
- InitializeCoverage();
515
- }
516
-
517
-
518
- // When the generated code calls an external reference we need to catch that in
519
- // the simulator. The external reference will be a function compiled for the
520
- // host architecture. We need to call that function instead of trying to
521
- // execute it with the simulator. We do that by redirecting the external
522
- // reference to a swi (software-interrupt) instruction that is handled by
523
- // the simulator. We write the original destination of the jump just at a known
524
- // offset from the swi instruction so the simulator knows what to call.
525
- class Redirection {
526
- public:
527
- Redirection(void* external_function, bool fp_return)
528
- : external_function_(external_function),
529
- swi_instruction_(rtCallRedirInstr),
530
- fp_return_(fp_return),
531
- next_(list_) {
532
- list_ = this;
533
- }
534
-
535
- void* address_of_swi_instruction() {
536
- return reinterpret_cast<void*>(&swi_instruction_);
537
- }
538
-
539
- void* external_function() { return external_function_; }
540
- bool fp_return() { return fp_return_; }
541
-
542
- static Redirection* Get(void* external_function, bool fp_return) {
543
- Redirection* current;
544
- for (current = list_; current != NULL; current = current->next_) {
545
- if (current->external_function_ == external_function) return current;
546
- }
547
- return new Redirection(external_function, fp_return);
548
- }
549
-
550
- static Redirection* FromSwiInstruction(Instruction* swi_instruction) {
551
- char* addr_of_swi = reinterpret_cast<char*>(swi_instruction);
552
- char* addr_of_redirection =
553
- addr_of_swi - OFFSET_OF(Redirection, swi_instruction_);
554
- return reinterpret_cast<Redirection*>(addr_of_redirection);
555
- }
556
-
557
- private:
558
- void* external_function_;
559
- uint32_t swi_instruction_;
560
- bool fp_return_;
561
- Redirection* next_;
562
- static Redirection* list_;
563
- };
564
-
565
-
566
- Redirection* Redirection::list_ = NULL;
567
-
568
-
569
- void* Simulator::RedirectExternalReference(void* external_function,
570
- bool fp_return) {
571
- Redirection* redirection = Redirection::Get(external_function, fp_return);
572
- return redirection->address_of_swi_instruction();
573
- }
574
-
575
-
576
- // Get the active Simulator for the current thread.
577
- Simulator* Simulator::current() {
578
- Initialize();
579
- Simulator* sim = reinterpret_cast<Simulator*>(
580
- v8::internal::Thread::GetThreadLocal(simulator_key));
581
- if (sim == NULL) {
582
- // TODO(146): delete the simulator object when a thread goes away.
583
- sim = new Simulator();
584
- v8::internal::Thread::SetThreadLocal(simulator_key, sim);
585
- }
586
- return sim;
587
- }
588
-
589
-
590
- // Sets the register in the architecture state. It will also deal with updating
591
- // Simulator internal state for special registers such as PC.
592
- void Simulator::set_register(int reg, int32_t value) {
593
- ASSERT((reg >= 0) && (reg < kNumSimuRegisters));
594
- if (reg == pc) {
595
- pc_modified_ = true;
596
- }
597
-
598
- // zero register always hold 0.
599
- registers_[reg] = (reg == 0) ? 0 : value;
600
- }
601
-
602
- void Simulator::set_fpu_register(int fpureg, int32_t value) {
603
- ASSERT((fpureg >= 0) && (fpureg < kNumFPURegisters));
604
- FPUregisters_[fpureg] = value;
605
- }
606
-
607
- void Simulator::set_fpu_register_double(int fpureg, double value) {
608
- ASSERT((fpureg >= 0) && (fpureg < kNumFPURegisters) && ((fpureg % 2) == 0));
609
- *v8i::BitCast<double*>(&FPUregisters_[fpureg]) = value;
610
- }
611
-
612
-
613
- // Get the register from the architecture state. This function does handle
614
- // the special case of accessing the PC register.
615
- int32_t Simulator::get_register(int reg) const {
616
- ASSERT((reg >= 0) && (reg < kNumSimuRegisters));
617
- if (reg == 0)
618
- return 0;
619
- else
620
- return registers_[reg] + ((reg == pc) ? Instruction::kPCReadOffset : 0);
621
- }
622
-
623
- int32_t Simulator::get_fpu_register(int fpureg) const {
624
- ASSERT((fpureg >= 0) && (fpureg < kNumFPURegisters));
625
- return FPUregisters_[fpureg];
626
- }
627
-
628
- double Simulator::get_fpu_register_double(int fpureg) const {
629
- ASSERT((fpureg >= 0) && (fpureg < kNumFPURegisters) && ((fpureg % 2) == 0));
630
- return *v8i::BitCast<double*>(const_cast<int32_t*>(&FPUregisters_[fpureg]));
631
- }
632
-
633
- // Raw access to the PC register.
634
- void Simulator::set_pc(int32_t value) {
635
- pc_modified_ = true;
636
- registers_[pc] = value;
637
- }
638
-
639
- // Raw access to the PC register without the special adjustment when reading.
640
- int32_t Simulator::get_pc() const {
641
- return registers_[pc];
642
- }
643
-
644
-
645
- // The MIPS cannot do unaligned reads and writes. On some MIPS platforms an
646
- // interrupt is caused. On others it does a funky rotation thing. For now we
647
- // simply disallow unaligned reads, but at some point we may want to move to
648
- // emulating the rotate behaviour. Note that simulator runs have the runtime
649
- // system running directly on the host system and only generated code is
650
- // executed in the simulator. Since the host is typically IA32 we will not
651
- // get the correct MIPS-like behaviour on unaligned accesses.
652
-
653
- int Simulator::ReadW(int32_t addr, Instruction* instr) {
654
- if ((addr & v8i::kPointerAlignmentMask) == 0) {
655
- intptr_t* ptr = reinterpret_cast<intptr_t*>(addr);
656
- return *ptr;
657
- }
658
- PrintF("Unaligned read at 0x%08x, pc=%p\n", addr, instr);
659
- OS::Abort();
660
- return 0;
661
- }
662
-
663
-
664
- void Simulator::WriteW(int32_t addr, int value, Instruction* instr) {
665
- if ((addr & v8i::kPointerAlignmentMask) == 0) {
666
- intptr_t* ptr = reinterpret_cast<intptr_t*>(addr);
667
- *ptr = value;
668
- return;
669
- }
670
- PrintF("Unaligned write at 0x%08x, pc=%p\n", addr, instr);
671
- OS::Abort();
672
- }
673
-
674
-
675
- double Simulator::ReadD(int32_t addr, Instruction* instr) {
676
- if ((addr & kDoubleAlignmentMask) == 0) {
677
- double* ptr = reinterpret_cast<double*>(addr);
678
- return *ptr;
679
- }
680
- PrintF("Unaligned read at 0x%08x, pc=%p\n", addr, instr);
681
- OS::Abort();
682
- return 0;
683
- }
684
-
685
-
686
- void Simulator::WriteD(int32_t addr, double value, Instruction* instr) {
687
- if ((addr & kDoubleAlignmentMask) == 0) {
688
- double* ptr = reinterpret_cast<double*>(addr);
689
- *ptr = value;
690
- return;
691
- }
692
- PrintF("Unaligned write at 0x%08x, pc=%p\n", addr, instr);
693
- OS::Abort();
694
- }
695
-
696
-
697
- uint16_t Simulator::ReadHU(int32_t addr, Instruction* instr) {
698
- if ((addr & 1) == 0) {
699
- uint16_t* ptr = reinterpret_cast<uint16_t*>(addr);
700
- return *ptr;
701
- }
702
- PrintF("Unaligned unsigned halfword read at 0x%08x, pc=%p\n", addr, instr);
703
- OS::Abort();
704
- return 0;
705
- }
706
-
707
-
708
- int16_t Simulator::ReadH(int32_t addr, Instruction* instr) {
709
- if ((addr & 1) == 0) {
710
- int16_t* ptr = reinterpret_cast<int16_t*>(addr);
711
- return *ptr;
712
- }
713
- PrintF("Unaligned signed halfword read at 0x%08x, pc=%p\n", addr, instr);
714
- OS::Abort();
715
- return 0;
716
- }
717
-
718
-
719
- void Simulator::WriteH(int32_t addr, uint16_t value, Instruction* instr) {
720
- if ((addr & 1) == 0) {
721
- uint16_t* ptr = reinterpret_cast<uint16_t*>(addr);
722
- *ptr = value;
723
- return;
724
- }
725
- PrintF("Unaligned unsigned halfword write at 0x%08x, pc=%p\n", addr, instr);
726
- OS::Abort();
727
- }
728
-
729
-
730
- void Simulator::WriteH(int32_t addr, int16_t value, Instruction* instr) {
731
- if ((addr & 1) == 0) {
732
- int16_t* ptr = reinterpret_cast<int16_t*>(addr);
733
- *ptr = value;
734
- return;
735
- }
736
- PrintF("Unaligned halfword write at 0x%08x, pc=%p\n", addr, instr);
737
- OS::Abort();
738
- }
739
-
740
-
741
- uint32_t Simulator::ReadBU(int32_t addr) {
742
- uint8_t* ptr = reinterpret_cast<uint8_t*>(addr);
743
- return *ptr & 0xff;
744
- }
745
-
746
-
747
- int32_t Simulator::ReadB(int32_t addr) {
748
- int8_t* ptr = reinterpret_cast<int8_t*>(addr);
749
- return ((*ptr << 24) >> 24) & 0xff;
750
- }
751
-
752
-
753
- void Simulator::WriteB(int32_t addr, uint8_t value) {
754
- uint8_t* ptr = reinterpret_cast<uint8_t*>(addr);
755
- *ptr = value;
756
- }
757
-
758
-
759
- void Simulator::WriteB(int32_t addr, int8_t value) {
760
- int8_t* ptr = reinterpret_cast<int8_t*>(addr);
761
- *ptr = value;
762
- }
763
-
764
-
765
- // Returns the limit of the stack area to enable checking for stack overflows.
766
- uintptr_t Simulator::StackLimit() const {
767
- // Leave a safety margin of 256 bytes to prevent overrunning the stack when
768
- // pushing values.
769
- return reinterpret_cast<uintptr_t>(stack_) + 256;
770
- }
771
-
772
-
773
- // Unsupported instructions use Format to print an error and stop execution.
774
- void Simulator::Format(Instruction* instr, const char* format) {
775
- PrintF("Simulator found unsupported instruction:\n 0x%08x: %s\n",
776
- instr, format);
777
- UNIMPLEMENTED_MIPS();
778
- }
779
-
780
-
781
- // Calls into the V8 runtime are based on this very simple interface.
782
- // Note: To be able to return two values from some calls the code in runtime.cc
783
- // uses the ObjectPair which is essentially two 32-bit values stuffed into a
784
- // 64-bit value. With the code below we assume that all runtime calls return
785
- // 64 bits of result. If they don't, the r1 result register contains a bogus
786
- // value, which is fine because it is caller-saved.
787
- typedef int64_t (*SimulatorRuntimeCall)(int32_t arg0,
788
- int32_t arg1,
789
- int32_t arg2,
790
- int32_t arg3);
791
- typedef double (*SimulatorRuntimeFPCall)(double fparg0,
792
- double fparg1);
793
-
794
-
795
- // Software interrupt instructions are used by the simulator to call into the
796
- // C-based V8 runtime.
797
- void Simulator::SoftwareInterrupt(Instruction* instr) {
798
- // We first check if we met a call_rt_redirected.
799
- if (instr->InstructionBits() == rtCallRedirInstr) {
800
- Redirection* redirection = Redirection::FromSwiInstruction(instr);
801
- int32_t arg0 = get_register(a0);
802
- int32_t arg1 = get_register(a1);
803
- int32_t arg2 = get_register(a2);
804
- int32_t arg3 = get_register(a3);
805
- // fp args are (not always) in f12 and f14.
806
- // See MIPS conventions for more details.
807
- double fparg0 = get_fpu_register_double(f12);
808
- double fparg1 = get_fpu_register_double(f14);
809
- // This is dodgy but it works because the C entry stubs are never moved.
810
- // See comment in codegen-arm.cc and bug 1242173.
811
- int32_t saved_ra = get_register(ra);
812
- if (redirection->fp_return()) {
813
- intptr_t external =
814
- reinterpret_cast<intptr_t>(redirection->external_function());
815
- SimulatorRuntimeFPCall target =
816
- reinterpret_cast<SimulatorRuntimeFPCall>(external);
817
- if (::v8::internal::FLAG_trace_sim) {
818
- PrintF("Call to host function at %p with args %f, %f\n",
819
- FUNCTION_ADDR(target), fparg0, fparg1);
820
- }
821
- double result = target(fparg0, fparg1);
822
- set_fpu_register_double(f0, result);
823
- } else {
824
- intptr_t external =
825
- reinterpret_cast<int32_t>(redirection->external_function());
826
- SimulatorRuntimeCall target =
827
- reinterpret_cast<SimulatorRuntimeCall>(external);
828
- if (::v8::internal::FLAG_trace_sim) {
829
- PrintF(
830
- "Call to host function at %p with args %08x, %08x, %08x, %08x\n",
831
- FUNCTION_ADDR(target),
832
- arg0,
833
- arg1,
834
- arg2,
835
- arg3);
836
- }
837
- int64_t result = target(arg0, arg1, arg2, arg3);
838
- int32_t lo_res = static_cast<int32_t>(result);
839
- int32_t hi_res = static_cast<int32_t>(result >> 32);
840
- if (::v8::internal::FLAG_trace_sim) {
841
- PrintF("Returned %08x\n", lo_res);
842
- }
843
- set_register(v0, lo_res);
844
- set_register(v1, hi_res);
845
- }
846
- set_register(ra, saved_ra);
847
- set_pc(get_register(ra));
848
- } else {
849
- Debugger dbg(this);
850
- dbg.Debug();
851
- }
852
- }
853
-
854
- void Simulator::SignalExceptions() {
855
- for (int i = 1; i < kNumExceptions; i++) {
856
- if (exceptions[i] != 0) {
857
- V8_Fatal(__FILE__, __LINE__, "Error: Exception %i raised.", i);
858
- }
859
- }
860
- }
861
-
862
- // Handle execution based on instruction types.
863
- void Simulator::DecodeTypeRegister(Instruction* instr) {
864
- // Instruction fields
865
- Opcode op = instr->OpcodeFieldRaw();
866
- int32_t rs_reg = instr->RsField();
867
- int32_t rs = get_register(rs_reg);
868
- uint32_t rs_u = static_cast<uint32_t>(rs);
869
- int32_t rt_reg = instr->RtField();
870
- int32_t rt = get_register(rt_reg);
871
- uint32_t rt_u = static_cast<uint32_t>(rt);
872
- int32_t rd_reg = instr->RdField();
873
- uint32_t sa = instr->SaField();
874
-
875
- int32_t fs_reg= instr->FsField();
876
-
877
- // ALU output
878
- // It should not be used as is. Instructions using it should always initialize
879
- // it first.
880
- int32_t alu_out = 0x12345678;
881
- // Output or temporary for floating point.
882
- double fp_out = 0.0;
883
-
884
- // For break and trap instructions.
885
- bool do_interrupt = false;
886
-
887
- // For jr and jalr
888
- // Get current pc.
889
- int32_t current_pc = get_pc();
890
- // Next pc
891
- int32_t next_pc = 0;
892
-
893
- // ---------- Configuration
894
- switch (op) {
895
- case COP1: // Coprocessor instructions
896
- switch (instr->RsFieldRaw()) {
897
- case BC1: // branch on coprocessor condition
898
- UNREACHABLE();
899
- break;
900
- case MFC1:
901
- alu_out = get_fpu_register(fs_reg);
902
- break;
903
- case MFHC1:
904
- fp_out = get_fpu_register_double(fs_reg);
905
- alu_out = *v8i::BitCast<int32_t*>(&fp_out);
906
- break;
907
- case MTC1:
908
- case MTHC1:
909
- // Do the store in the execution step.
910
- break;
911
- case S:
912
- case D:
913
- case W:
914
- case L:
915
- case PS:
916
- // Do everything in the execution step.
917
- break;
918
- default:
919
- UNIMPLEMENTED_MIPS();
920
- };
921
- break;
922
- case SPECIAL:
923
- switch (instr->FunctionFieldRaw()) {
924
- case JR:
925
- case JALR:
926
- next_pc = get_register(instr->RsField());
927
- break;
928
- case SLL:
929
- alu_out = rt << sa;
930
- break;
931
- case SRL:
932
- alu_out = rt_u >> sa;
933
- break;
934
- case SRA:
935
- alu_out = rt >> sa;
936
- break;
937
- case SLLV:
938
- alu_out = rt << rs;
939
- break;
940
- case SRLV:
941
- alu_out = rt_u >> rs;
942
- break;
943
- case SRAV:
944
- alu_out = rt >> rs;
945
- break;
946
- case MFHI:
947
- alu_out = get_register(HI);
948
- break;
949
- case MFLO:
950
- alu_out = get_register(LO);
951
- break;
952
- case MULT:
953
- UNIMPLEMENTED_MIPS();
954
- break;
955
- case MULTU:
956
- UNIMPLEMENTED_MIPS();
957
- break;
958
- case DIV:
959
- case DIVU:
960
- exceptions[kDivideByZero] = rt == 0;
961
- break;
962
- case ADD:
963
- if (HaveSameSign(rs, rt)) {
964
- if (rs > 0) {
965
- exceptions[kIntegerOverflow] = rs > (Registers::kMaxValue - rt);
966
- } else if (rs < 0) {
967
- exceptions[kIntegerUnderflow] = rs < (Registers::kMinValue - rt);
968
- }
969
- }
970
- alu_out = rs + rt;
971
- break;
972
- case ADDU:
973
- alu_out = rs + rt;
974
- break;
975
- case SUB:
976
- if (!HaveSameSign(rs, rt)) {
977
- if (rs > 0) {
978
- exceptions[kIntegerOverflow] = rs > (Registers::kMaxValue + rt);
979
- } else if (rs < 0) {
980
- exceptions[kIntegerUnderflow] = rs < (Registers::kMinValue + rt);
981
- }
982
- }
983
- alu_out = rs - rt;
984
- break;
985
- case SUBU:
986
- alu_out = rs - rt;
987
- break;
988
- case AND:
989
- alu_out = rs & rt;
990
- break;
991
- case OR:
992
- alu_out = rs | rt;
993
- break;
994
- case XOR:
995
- alu_out = rs ^ rt;
996
- break;
997
- case NOR:
998
- alu_out = ~(rs | rt);
999
- break;
1000
- case SLT:
1001
- alu_out = rs < rt ? 1 : 0;
1002
- break;
1003
- case SLTU:
1004
- alu_out = rs_u < rt_u ? 1 : 0;
1005
- break;
1006
- // Break and trap instructions
1007
- case BREAK:
1008
- do_interrupt = true;
1009
- break;
1010
- case TGE:
1011
- do_interrupt = rs >= rt;
1012
- break;
1013
- case TGEU:
1014
- do_interrupt = rs_u >= rt_u;
1015
- break;
1016
- case TLT:
1017
- do_interrupt = rs < rt;
1018
- break;
1019
- case TLTU:
1020
- do_interrupt = rs_u < rt_u;
1021
- break;
1022
- case TEQ:
1023
- do_interrupt = rs == rt;
1024
- break;
1025
- case TNE:
1026
- do_interrupt = rs != rt;
1027
- break;
1028
- default:
1029
- UNREACHABLE();
1030
- };
1031
- break;
1032
- case SPECIAL2:
1033
- switch (instr->FunctionFieldRaw()) {
1034
- case MUL:
1035
- alu_out = rs_u * rt_u; // Only the lower 32 bits are kept.
1036
- break;
1037
- default:
1038
- UNREACHABLE();
1039
- }
1040
- break;
1041
- default:
1042
- UNREACHABLE();
1043
- };
1044
-
1045
- // ---------- Raise exceptions triggered.
1046
- SignalExceptions();
1047
-
1048
- // ---------- Execution
1049
- switch (op) {
1050
- case COP1:
1051
- switch (instr->RsFieldRaw()) {
1052
- case BC1: // branch on coprocessor condition
1053
- UNREACHABLE();
1054
- break;
1055
- case MFC1:
1056
- case MFHC1:
1057
- set_register(rt_reg, alu_out);
1058
- break;
1059
- case MTC1:
1060
- // We don't need to set the higher bits to 0, because MIPS ISA says
1061
- // they are in an unpredictable state after executing MTC1.
1062
- FPUregisters_[fs_reg] = registers_[rt_reg];
1063
- FPUregisters_[fs_reg+1] = Unpredictable;
1064
- break;
1065
- case MTHC1:
1066
- // Here we need to keep the lower bits unchanged.
1067
- FPUregisters_[fs_reg+1] = registers_[rt_reg];
1068
- break;
1069
- case S:
1070
- switch (instr->FunctionFieldRaw()) {
1071
- case CVT_D_S:
1072
- case CVT_W_S:
1073
- case CVT_L_S:
1074
- case CVT_PS_S:
1075
- UNIMPLEMENTED_MIPS();
1076
- break;
1077
- default:
1078
- UNREACHABLE();
1079
- }
1080
- break;
1081
- case D:
1082
- switch (instr->FunctionFieldRaw()) {
1083
- case CVT_S_D:
1084
- case CVT_W_D:
1085
- case CVT_L_D:
1086
- UNIMPLEMENTED_MIPS();
1087
- break;
1088
- default:
1089
- UNREACHABLE();
1090
- }
1091
- break;
1092
- case W:
1093
- switch (instr->FunctionFieldRaw()) {
1094
- case CVT_S_W:
1095
- UNIMPLEMENTED_MIPS();
1096
- break;
1097
- case CVT_D_W: // Convert word to double.
1098
- set_fpu_register(rd_reg, static_cast<double>(rs));
1099
- break;
1100
- default:
1101
- UNREACHABLE();
1102
- };
1103
- break;
1104
- case L:
1105
- switch (instr->FunctionFieldRaw()) {
1106
- case CVT_S_L:
1107
- case CVT_D_L:
1108
- UNIMPLEMENTED_MIPS();
1109
- break;
1110
- default:
1111
- UNREACHABLE();
1112
- }
1113
- break;
1114
- case PS:
1115
- break;
1116
- default:
1117
- UNREACHABLE();
1118
- };
1119
- break;
1120
- case SPECIAL:
1121
- switch (instr->FunctionFieldRaw()) {
1122
- case JR: {
1123
- Instruction* branch_delay_instr = reinterpret_cast<Instruction*>(
1124
- current_pc+Instruction::kInstructionSize);
1125
- BranchDelayInstructionDecode(branch_delay_instr);
1126
- set_pc(next_pc);
1127
- pc_modified_ = true;
1128
- break;
1129
- }
1130
- case JALR: {
1131
- Instruction* branch_delay_instr = reinterpret_cast<Instruction*>(
1132
- current_pc+Instruction::kInstructionSize);
1133
- BranchDelayInstructionDecode(branch_delay_instr);
1134
- set_register(31, current_pc + 2* Instruction::kInstructionSize);
1135
- set_pc(next_pc);
1136
- pc_modified_ = true;
1137
- break;
1138
- }
1139
- // Instructions using HI and LO registers.
1140
- case MULT:
1141
- case MULTU:
1142
- break;
1143
- case DIV:
1144
- // Divide by zero was checked in the configuration step.
1145
- set_register(LO, rs / rt);
1146
- set_register(HI, rs % rt);
1147
- break;
1148
- case DIVU:
1149
- set_register(LO, rs_u / rt_u);
1150
- set_register(HI, rs_u % rt_u);
1151
- break;
1152
- // Break and trap instructions
1153
- case BREAK:
1154
- case TGE:
1155
- case TGEU:
1156
- case TLT:
1157
- case TLTU:
1158
- case TEQ:
1159
- case TNE:
1160
- if (do_interrupt) {
1161
- SoftwareInterrupt(instr);
1162
- }
1163
- break;
1164
- default: // For other special opcodes we do the default operation.
1165
- set_register(rd_reg, alu_out);
1166
- };
1167
- break;
1168
- case SPECIAL2:
1169
- switch (instr->FunctionFieldRaw()) {
1170
- case MUL:
1171
- set_register(rd_reg, alu_out);
1172
- // HI and LO are UNPREDICTABLE after the operation.
1173
- set_register(LO, Unpredictable);
1174
- set_register(HI, Unpredictable);
1175
- break;
1176
- default:
1177
- UNREACHABLE();
1178
- }
1179
- break;
1180
- // Unimplemented opcodes raised an error in the configuration step before,
1181
- // so we can use the default here to set the destination register in common
1182
- // cases.
1183
- default:
1184
- set_register(rd_reg, alu_out);
1185
- };
1186
- }
1187
-
1188
- // Type 2: instructions using a 16 bytes immediate. (eg: addi, beq)
1189
- void Simulator::DecodeTypeImmediate(Instruction* instr) {
1190
- // Instruction fields
1191
- Opcode op = instr->OpcodeFieldRaw();
1192
- int32_t rs = get_register(instr->RsField());
1193
- uint32_t rs_u = static_cast<uint32_t>(rs);
1194
- int32_t rt_reg = instr->RtField(); // destination register
1195
- int32_t rt = get_register(rt_reg);
1196
- int16_t imm16 = instr->Imm16Field();
1197
-
1198
- int32_t ft_reg = instr->FtField(); // destination register
1199
- int32_t ft = get_register(ft_reg);
1200
-
1201
- // zero extended immediate
1202
- uint32_t oe_imm16 = 0xffff & imm16;
1203
- // sign extended immediate
1204
- int32_t se_imm16 = imm16;
1205
-
1206
- // Get current pc.
1207
- int32_t current_pc = get_pc();
1208
- // Next pc.
1209
- int32_t next_pc = bad_ra;
1210
-
1211
- // Used for conditional branch instructions
1212
- bool do_branch = false;
1213
- bool execute_branch_delay_instruction = false;
1214
-
1215
- // Used for arithmetic instructions
1216
- int32_t alu_out = 0;
1217
- // Floating point
1218
- double fp_out = 0.0;
1219
-
1220
- // Used for memory instructions
1221
- int32_t addr = 0x0;
1222
-
1223
- // ---------- Configuration (and execution for REGIMM)
1224
- switch (op) {
1225
- // ------------- COP1. Coprocessor instructions
1226
- case COP1:
1227
- switch (instr->RsFieldRaw()) {
1228
- case BC1: // branch on coprocessor condition
1229
- UNIMPLEMENTED_MIPS();
1230
- break;
1231
- default:
1232
- UNREACHABLE();
1233
- };
1234
- break;
1235
- // ------------- REGIMM class
1236
- case REGIMM:
1237
- switch (instr->RtFieldRaw()) {
1238
- case BLTZ:
1239
- do_branch = (rs < 0);
1240
- break;
1241
- case BLTZAL:
1242
- do_branch = rs < 0;
1243
- break;
1244
- case BGEZ:
1245
- do_branch = rs >= 0;
1246
- break;
1247
- case BGEZAL:
1248
- do_branch = rs >= 0;
1249
- break;
1250
- default:
1251
- UNREACHABLE();
1252
- };
1253
- switch (instr->RtFieldRaw()) {
1254
- case BLTZ:
1255
- case BLTZAL:
1256
- case BGEZ:
1257
- case BGEZAL:
1258
- // Branch instructions common part.
1259
- execute_branch_delay_instruction = true;
1260
- // Set next_pc
1261
- if (do_branch) {
1262
- next_pc = current_pc + (imm16 << 2) + Instruction::kInstructionSize;
1263
- if (instr->IsLinkingInstruction()) {
1264
- set_register(31, current_pc + kBranchReturnOffset);
1265
- }
1266
- } else {
1267
- next_pc = current_pc + kBranchReturnOffset;
1268
- }
1269
- default:
1270
- break;
1271
- };
1272
- break; // case REGIMM
1273
- // ------------- Branch instructions
1274
- // When comparing to zero, the encoding of rt field is always 0, so we don't
1275
- // need to replace rt with zero.
1276
- case BEQ:
1277
- do_branch = (rs == rt);
1278
- break;
1279
- case BNE:
1280
- do_branch = rs != rt;
1281
- break;
1282
- case BLEZ:
1283
- do_branch = rs <= 0;
1284
- break;
1285
- case BGTZ:
1286
- do_branch = rs > 0;
1287
- break;
1288
- // ------------- Arithmetic instructions
1289
- case ADDI:
1290
- if (HaveSameSign(rs, se_imm16)) {
1291
- if (rs > 0) {
1292
- exceptions[kIntegerOverflow] = rs > (Registers::kMaxValue - se_imm16);
1293
- } else if (rs < 0) {
1294
- exceptions[kIntegerUnderflow] =
1295
- rs < (Registers::kMinValue - se_imm16);
1296
- }
1297
- }
1298
- alu_out = rs + se_imm16;
1299
- break;
1300
- case ADDIU:
1301
- alu_out = rs + se_imm16;
1302
- break;
1303
- case SLTI:
1304
- alu_out = (rs < se_imm16) ? 1 : 0;
1305
- break;
1306
- case SLTIU:
1307
- alu_out = (rs_u < static_cast<uint32_t>(se_imm16)) ? 1 : 0;
1308
- break;
1309
- case ANDI:
1310
- alu_out = rs & oe_imm16;
1311
- break;
1312
- case ORI:
1313
- alu_out = rs | oe_imm16;
1314
- break;
1315
- case XORI:
1316
- alu_out = rs ^ oe_imm16;
1317
- break;
1318
- case LUI:
1319
- alu_out = (oe_imm16 << 16);
1320
- break;
1321
- // ------------- Memory instructions
1322
- case LB:
1323
- addr = rs + se_imm16;
1324
- alu_out = ReadB(addr);
1325
- break;
1326
- case LW:
1327
- addr = rs + se_imm16;
1328
- alu_out = ReadW(addr, instr);
1329
- break;
1330
- case LBU:
1331
- addr = rs + se_imm16;
1332
- alu_out = ReadBU(addr);
1333
- break;
1334
- case SB:
1335
- addr = rs + se_imm16;
1336
- break;
1337
- case SW:
1338
- addr = rs + se_imm16;
1339
- break;
1340
- case LWC1:
1341
- addr = rs + se_imm16;
1342
- alu_out = ReadW(addr, instr);
1343
- break;
1344
- case LDC1:
1345
- addr = rs + se_imm16;
1346
- fp_out = ReadD(addr, instr);
1347
- break;
1348
- case SWC1:
1349
- case SDC1:
1350
- addr = rs + se_imm16;
1351
- break;
1352
- default:
1353
- UNREACHABLE();
1354
- };
1355
-
1356
- // ---------- Raise exceptions triggered.
1357
- SignalExceptions();
1358
-
1359
- // ---------- Execution
1360
- switch (op) {
1361
- // ------------- Branch instructions
1362
- case BEQ:
1363
- case BNE:
1364
- case BLEZ:
1365
- case BGTZ:
1366
- // Branch instructions common part.
1367
- execute_branch_delay_instruction = true;
1368
- // Set next_pc
1369
- if (do_branch) {
1370
- next_pc = current_pc + (imm16 << 2) + Instruction::kInstructionSize;
1371
- if (instr->IsLinkingInstruction()) {
1372
- set_register(31, current_pc + 2* Instruction::kInstructionSize);
1373
- }
1374
- } else {
1375
- next_pc = current_pc + 2 * Instruction::kInstructionSize;
1376
- }
1377
- break;
1378
- // ------------- Arithmetic instructions
1379
- case ADDI:
1380
- case ADDIU:
1381
- case SLTI:
1382
- case SLTIU:
1383
- case ANDI:
1384
- case ORI:
1385
- case XORI:
1386
- case LUI:
1387
- set_register(rt_reg, alu_out);
1388
- break;
1389
- // ------------- Memory instructions
1390
- case LB:
1391
- case LW:
1392
- case LBU:
1393
- set_register(rt_reg, alu_out);
1394
- break;
1395
- case SB:
1396
- WriteB(addr, static_cast<int8_t>(rt));
1397
- break;
1398
- case SW:
1399
- WriteW(addr, rt, instr);
1400
- break;
1401
- case LWC1:
1402
- set_fpu_register(ft_reg, alu_out);
1403
- break;
1404
- case LDC1:
1405
- set_fpu_register_double(ft_reg, fp_out);
1406
- break;
1407
- case SWC1:
1408
- addr = rs + se_imm16;
1409
- WriteW(addr, get_fpu_register(ft_reg), instr);
1410
- break;
1411
- case SDC1:
1412
- addr = rs + se_imm16;
1413
- WriteD(addr, ft, instr);
1414
- break;
1415
- default:
1416
- break;
1417
- };
1418
-
1419
-
1420
- if (execute_branch_delay_instruction) {
1421
- // Execute branch delay slot
1422
- // We don't check for end_sim_pc. First it should not be met as the current
1423
- // pc is valid. Secondly a jump should always execute its branch delay slot.
1424
- Instruction* branch_delay_instr =
1425
- reinterpret_cast<Instruction*>(current_pc+Instruction::kInstructionSize);
1426
- BranchDelayInstructionDecode(branch_delay_instr);
1427
- }
1428
-
1429
- // If needed update pc after the branch delay execution.
1430
- if (next_pc != bad_ra) {
1431
- set_pc(next_pc);
1432
- }
1433
- }
1434
-
1435
- // Type 3: instructions using a 26 bytes immediate. (eg: j, jal)
1436
- void Simulator::DecodeTypeJump(Instruction* instr) {
1437
- // Get current pc.
1438
- int32_t current_pc = get_pc();
1439
- // Get unchanged bits of pc.
1440
- int32_t pc_high_bits = current_pc & 0xf0000000;
1441
- // Next pc
1442
- int32_t next_pc = pc_high_bits | (instr->Imm26Field() << 2);
1443
-
1444
- // Execute branch delay slot
1445
- // We don't check for end_sim_pc. First it should not be met as the current pc
1446
- // is valid. Secondly a jump should always execute its branch delay slot.
1447
- Instruction* branch_delay_instr =
1448
- reinterpret_cast<Instruction*>(current_pc+Instruction::kInstructionSize);
1449
- BranchDelayInstructionDecode(branch_delay_instr);
1450
-
1451
- // Update pc and ra if necessary.
1452
- // Do this after the branch delay execution.
1453
- if (instr->IsLinkingInstruction()) {
1454
- set_register(31, current_pc + 2* Instruction::kInstructionSize);
1455
- }
1456
- set_pc(next_pc);
1457
- pc_modified_ = true;
1458
- }
1459
-
1460
- // Executes the current instruction.
1461
- void Simulator::InstructionDecode(Instruction* instr) {
1462
- pc_modified_ = false;
1463
- if (::v8::internal::FLAG_trace_sim) {
1464
- disasm::NameConverter converter;
1465
- disasm::Disassembler dasm(converter);
1466
- // use a reasonably large buffer
1467
- v8::internal::EmbeddedVector<char, 256> buffer;
1468
- dasm.InstructionDecode(buffer,
1469
- reinterpret_cast<byte_*>(instr));
1470
- PrintF(" 0x%08x %s\n", instr, buffer.start());
1471
- }
1472
-
1473
- switch (instr->InstructionType()) {
1474
- case Instruction::kRegisterType:
1475
- DecodeTypeRegister(instr);
1476
- break;
1477
- case Instruction::kImmediateType:
1478
- DecodeTypeImmediate(instr);
1479
- break;
1480
- case Instruction::kJumpType:
1481
- DecodeTypeJump(instr);
1482
- break;
1483
- default:
1484
- UNSUPPORTED();
1485
- }
1486
- if (!pc_modified_) {
1487
- set_register(pc, reinterpret_cast<int32_t>(instr) +
1488
- Instruction::kInstructionSize);
1489
- }
1490
- }
1491
-
1492
-
1493
-
1494
- void Simulator::Execute() {
1495
- // Get the PC to simulate. Cannot use the accessor here as we need the
1496
- // raw PC value and not the one used as input to arithmetic instructions.
1497
- int program_counter = get_pc();
1498
- if (::v8::internal::FLAG_stop_sim_at == 0) {
1499
- // Fast version of the dispatch loop without checking whether the simulator
1500
- // should be stopping at a particular executed instruction.
1501
- while (program_counter != end_sim_pc) {
1502
- Instruction* instr = reinterpret_cast<Instruction*>(program_counter);
1503
- icount_++;
1504
- InstructionDecode(instr);
1505
- program_counter = get_pc();
1506
- }
1507
- } else {
1508
- // FLAG_stop_sim_at is at the non-default value. Stop in the debugger when
1509
- // we reach the particular instuction count.
1510
- while (program_counter != end_sim_pc) {
1511
- Instruction* instr = reinterpret_cast<Instruction*>(program_counter);
1512
- icount_++;
1513
- if (icount_ == ::v8::internal::FLAG_stop_sim_at) {
1514
- Debugger dbg(this);
1515
- dbg.Debug();
1516
- } else {
1517
- InstructionDecode(instr);
1518
- }
1519
- program_counter = get_pc();
1520
- }
1521
- }
1522
- }
1523
-
1524
-
1525
- int32_t Simulator::Call(byte_* entry, int argument_count, ...) {
1526
- va_list parameters;
1527
- va_start(parameters, argument_count);
1528
- // Setup arguments
1529
-
1530
- // First four arguments passed in registers.
1531
- ASSERT(argument_count >= 4);
1532
- set_register(a0, va_arg(parameters, int32_t));
1533
- set_register(a1, va_arg(parameters, int32_t));
1534
- set_register(a2, va_arg(parameters, int32_t));
1535
- set_register(a3, va_arg(parameters, int32_t));
1536
-
1537
- // Remaining arguments passed on stack.
1538
- int original_stack = get_register(sp);
1539
- // Compute position of stack on entry to generated code.
1540
- int entry_stack = (original_stack - (argument_count - 4) * sizeof(int32_t)
1541
- - kArgsSlotsSize);
1542
- if (OS::ActivationFrameAlignment() != 0) {
1543
- entry_stack &= -OS::ActivationFrameAlignment();
1544
- }
1545
- // Store remaining arguments on stack, from low to high memory.
1546
- intptr_t* stack_argument = reinterpret_cast<intptr_t*>(entry_stack);
1547
- for (int i = 4; i < argument_count; i++) {
1548
- stack_argument[i - 4 + kArgsSlotsNum] = va_arg(parameters, int32_t);
1549
- }
1550
- va_end(parameters);
1551
- set_register(sp, entry_stack);
1552
-
1553
- // Prepare to execute the code at entry
1554
- set_register(pc, reinterpret_cast<int32_t>(entry));
1555
- // Put down marker for end of simulation. The simulator will stop simulation
1556
- // when the PC reaches this value. By saving the "end simulation" value into
1557
- // the LR the simulation stops when returning to this call point.
1558
- set_register(ra, end_sim_pc);
1559
-
1560
- // Remember the values of callee-saved registers.
1561
- // The code below assumes that r9 is not used as sb (static base) in
1562
- // simulator code and therefore is regarded as a callee-saved register.
1563
- int32_t s0_val = get_register(s0);
1564
- int32_t s1_val = get_register(s1);
1565
- int32_t s2_val = get_register(s2);
1566
- int32_t s3_val = get_register(s3);
1567
- int32_t s4_val = get_register(s4);
1568
- int32_t s5_val = get_register(s5);
1569
- int32_t s6_val = get_register(s6);
1570
- int32_t s7_val = get_register(s7);
1571
- int32_t gp_val = get_register(gp);
1572
- int32_t sp_val = get_register(sp);
1573
- int32_t fp_val = get_register(fp);
1574
-
1575
- // Setup the callee-saved registers with a known value. To be able to check
1576
- // that they are preserved properly across JS execution.
1577
- int32_t callee_saved_value = icount_;
1578
- set_register(s0, callee_saved_value);
1579
- set_register(s1, callee_saved_value);
1580
- set_register(s2, callee_saved_value);
1581
- set_register(s3, callee_saved_value);
1582
- set_register(s4, callee_saved_value);
1583
- set_register(s5, callee_saved_value);
1584
- set_register(s6, callee_saved_value);
1585
- set_register(s7, callee_saved_value);
1586
- set_register(gp, callee_saved_value);
1587
- set_register(fp, callee_saved_value);
1588
-
1589
- // Start the simulation
1590
- Execute();
1591
-
1592
- // Check that the callee-saved registers have been preserved.
1593
- CHECK_EQ(callee_saved_value, get_register(s0));
1594
- CHECK_EQ(callee_saved_value, get_register(s1));
1595
- CHECK_EQ(callee_saved_value, get_register(s2));
1596
- CHECK_EQ(callee_saved_value, get_register(s3));
1597
- CHECK_EQ(callee_saved_value, get_register(s4));
1598
- CHECK_EQ(callee_saved_value, get_register(s5));
1599
- CHECK_EQ(callee_saved_value, get_register(s6));
1600
- CHECK_EQ(callee_saved_value, get_register(s7));
1601
- CHECK_EQ(callee_saved_value, get_register(gp));
1602
- CHECK_EQ(callee_saved_value, get_register(fp));
1603
-
1604
- // Restore callee-saved registers with the original value.
1605
- set_register(s0, s0_val);
1606
- set_register(s1, s1_val);
1607
- set_register(s2, s2_val);
1608
- set_register(s3, s3_val);
1609
- set_register(s4, s4_val);
1610
- set_register(s5, s5_val);
1611
- set_register(s6, s6_val);
1612
- set_register(s7, s7_val);
1613
- set_register(gp, gp_val);
1614
- set_register(sp, sp_val);
1615
- set_register(fp, fp_val);
1616
-
1617
- // Pop stack passed arguments.
1618
- CHECK_EQ(entry_stack, get_register(sp));
1619
- set_register(sp, original_stack);
1620
-
1621
- int32_t result = get_register(v0);
1622
- return result;
1623
- }
1624
-
1625
-
1626
- uintptr_t Simulator::PushAddress(uintptr_t address) {
1627
- int new_sp = get_register(sp) - sizeof(uintptr_t);
1628
- uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp);
1629
- *stack_slot = address;
1630
- set_register(sp, new_sp);
1631
- return new_sp;
1632
- }
1633
-
1634
-
1635
- uintptr_t Simulator::PopAddress() {
1636
- int current_sp = get_register(sp);
1637
- uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp);
1638
- uintptr_t address = *stack_slot;
1639
- set_register(sp, current_sp + sizeof(uintptr_t));
1640
- return address;
1641
- }
1642
-
1643
-
1644
- #undef UNSUPPORTED
1645
-
1646
- } } // namespace assembler::mips
1647
-
1648
- #endif // !__mips || USE_SIMULATOR
1649
-
1650
- #endif // V8_TARGET_ARCH_MIPS