therubyracer 0.9.0beta2 → 0.9.0beta3

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

Potentially problematic release.


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

Files changed (920) hide show
  1. data/.gitmodules +3 -0
  2. data/ext/v8/upstream/Makefile +1 -2
  3. data/ext/v8/upstream/v8/.gitignore +33 -0
  4. data/ext/v8/upstream/v8/AUTHORS +42 -0
  5. data/ext/v8/upstream/v8/ChangeLog +2663 -0
  6. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE +0 -0
  7. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.strongtalk +0 -0
  8. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.v8 +0 -0
  9. data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.valgrind +0 -0
  10. data/ext/v8/upstream/v8/SConstruct +1473 -0
  11. data/ext/v8/upstream/{3.1.8 → v8}/build/README.txt +0 -0
  12. data/ext/v8/upstream/{3.1.8 → v8}/build/all.gyp +0 -0
  13. data/ext/v8/upstream/{3.1.8 → v8}/build/armu.gypi +0 -0
  14. data/ext/v8/upstream/{3.1.8 → v8}/build/common.gypi +0 -0
  15. data/ext/v8/upstream/{3.1.8 → v8}/build/gyp_v8 +0 -0
  16. data/ext/v8/upstream/v8/include/v8-debug.h +394 -0
  17. data/ext/v8/upstream/v8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/v8/include/v8-profiler.h +505 -0
  19. data/ext/v8/upstream/v8/include/v8-testing.h +104 -0
  20. data/ext/v8/upstream/v8/include/v8.h +4000 -0
  21. data/ext/v8/upstream/{3.1.8 → v8}/include/v8stdint.h +0 -0
  22. data/ext/v8/upstream/v8/preparser/SConscript +38 -0
  23. data/ext/v8/upstream/v8/preparser/preparser-process.cc +169 -0
  24. data/ext/v8/upstream/v8/src/SConscript +380 -0
  25. data/ext/v8/upstream/v8/src/accessors.cc +766 -0
  26. data/ext/v8/upstream/{3.1.8 → v8}/src/accessors.h +0 -0
  27. data/ext/v8/upstream/v8/src/allocation-inl.h +49 -0
  28. data/ext/v8/upstream/v8/src/allocation.cc +122 -0
  29. data/ext/v8/upstream/v8/src/allocation.h +143 -0
  30. data/ext/v8/upstream/v8/src/api.cc +5678 -0
  31. data/ext/v8/upstream/v8/src/api.h +572 -0
  32. data/ext/v8/upstream/{3.1.8 → v8}/src/apinatives.js +0 -0
  33. data/ext/v8/upstream/v8/src/apiutils.h +73 -0
  34. data/ext/v8/upstream/v8/src/arguments.h +116 -0
  35. data/ext/v8/upstream/v8/src/arm/assembler-arm-inl.h +353 -0
  36. data/ext/v8/upstream/v8/src/arm/assembler-arm.cc +2877 -0
  37. data/ext/v8/upstream/v8/src/arm/assembler-arm.h +1382 -0
  38. data/ext/v8/upstream/v8/src/arm/builtins-arm.cc +1634 -0
  39. data/ext/v8/upstream/v8/src/arm/code-stubs-arm.cc +6917 -0
  40. data/ext/v8/upstream/v8/src/arm/code-stubs-arm.h +623 -0
  41. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/codegen-arm-inl.h +0 -0
  42. data/ext/v8/upstream/v8/src/arm/codegen-arm.cc +7437 -0
  43. data/ext/v8/upstream/v8/src/arm/codegen-arm.h +595 -0
  44. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/constants-arm.cc +0 -0
  45. data/ext/v8/upstream/v8/src/arm/constants-arm.h +778 -0
  46. data/ext/v8/upstream/v8/src/arm/cpu-arm.cc +149 -0
  47. data/ext/v8/upstream/v8/src/arm/debug-arm.cc +317 -0
  48. data/ext/v8/upstream/v8/src/arm/deoptimizer-arm.cc +737 -0
  49. data/ext/v8/upstream/v8/src/arm/disasm-arm.cc +1503 -0
  50. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/frames-arm.cc +0 -0
  51. data/ext/v8/upstream/v8/src/arm/frames-arm.h +168 -0
  52. data/ext/v8/upstream/v8/src/arm/full-codegen-arm.cc +4374 -0
  53. data/ext/v8/upstream/v8/src/arm/ic-arm.cc +1793 -0
  54. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/jump-target-arm.cc +0 -0
  55. data/ext/v8/upstream/v8/src/arm/lithium-arm.cc +2120 -0
  56. data/ext/v8/upstream/v8/src/arm/lithium-arm.h +2179 -0
  57. data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.cc +4132 -0
  58. data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.h +329 -0
  59. data/ext/v8/upstream/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
  60. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/lithium-gap-resolver-arm.h +0 -0
  61. data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.cc +2939 -0
  62. data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.h +1071 -0
  63. data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
  64. data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
  65. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm-inl.h +0 -0
  66. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.cc +0 -0
  67. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.h +0 -0
  68. data/ext/v8/upstream/v8/src/arm/simulator-arm.cc +3288 -0
  69. data/ext/v8/upstream/v8/src/arm/simulator-arm.h +413 -0
  70. data/ext/v8/upstream/v8/src/arm/stub-cache-arm.cc +4034 -0
  71. data/ext/v8/upstream/{3.1.8 → v8}/src/arm/virtual-frame-arm-inl.h +0 -0
  72. data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.cc +843 -0
  73. data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.h +523 -0
  74. data/ext/v8/upstream/v8/src/array.js +1249 -0
  75. data/ext/v8/upstream/v8/src/assembler.cc +1067 -0
  76. data/ext/v8/upstream/v8/src/assembler.h +823 -0
  77. data/ext/v8/upstream/v8/src/ast-inl.h +112 -0
  78. data/ext/v8/upstream/v8/src/ast.cc +1078 -0
  79. data/ext/v8/upstream/v8/src/ast.h +2234 -0
  80. data/ext/v8/upstream/v8/src/atomicops.h +167 -0
  81. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_arm_gcc.h +0 -0
  82. data/ext/v8/upstream/v8/src/atomicops_internals_mips_gcc.h +169 -0
  83. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.cc +0 -0
  84. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.h +0 -0
  85. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_macosx.h +0 -0
  86. data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_msvc.h +0 -0
  87. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.cc +0 -0
  88. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.h +0 -0
  89. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.cc +0 -0
  90. data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.h +0 -0
  91. data/ext/v8/upstream/v8/src/bootstrapper.cc +2138 -0
  92. data/ext/v8/upstream/v8/src/bootstrapper.h +185 -0
  93. data/ext/v8/upstream/v8/src/builtins.cc +1708 -0
  94. data/ext/v8/upstream/v8/src/builtins.h +368 -0
  95. data/ext/v8/upstream/{3.1.8 → v8}/src/bytecodes-irregexp.h +0 -0
  96. data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.cc +0 -0
  97. data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.h +0 -0
  98. data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates-inl.h +0 -0
  99. data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates.h +0 -0
  100. data/ext/v8/upstream/v8/src/checks.cc +110 -0
  101. data/ext/v8/upstream/v8/src/checks.h +296 -0
  102. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue-inl.h +0 -0
  103. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.cc +0 -0
  104. data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.h +0 -0
  105. data/ext/v8/upstream/v8/src/code-stubs.cc +240 -0
  106. data/ext/v8/upstream/v8/src/code-stubs.h +971 -0
  107. data/ext/v8/upstream/{3.1.8 → v8}/src/code.h +0 -0
  108. data/ext/v8/upstream/v8/src/codegen-inl.h +68 -0
  109. data/ext/v8/upstream/v8/src/codegen.cc +505 -0
  110. data/ext/v8/upstream/v8/src/codegen.h +245 -0
  111. data/ext/v8/upstream/v8/src/compilation-cache.cc +540 -0
  112. data/ext/v8/upstream/v8/src/compilation-cache.h +287 -0
  113. data/ext/v8/upstream/v8/src/compiler.cc +792 -0
  114. data/ext/v8/upstream/v8/src/compiler.h +307 -0
  115. data/ext/v8/upstream/v8/src/contexts.cc +327 -0
  116. data/ext/v8/upstream/v8/src/contexts.h +382 -0
  117. data/ext/v8/upstream/{3.1.8 → v8}/src/conversions-inl.h +0 -0
  118. data/ext/v8/upstream/v8/src/conversions.cc +1125 -0
  119. data/ext/v8/upstream/{3.1.8 → v8}/src/conversions.h +0 -0
  120. data/ext/v8/upstream/v8/src/counters.cc +93 -0
  121. data/ext/v8/upstream/v8/src/counters.h +254 -0
  122. data/ext/v8/upstream/v8/src/cpu-profiler-inl.h +101 -0
  123. data/ext/v8/upstream/v8/src/cpu-profiler.cc +606 -0
  124. data/ext/v8/upstream/v8/src/cpu-profiler.h +305 -0
  125. data/ext/v8/upstream/v8/src/cpu.h +67 -0
  126. data/ext/v8/upstream/v8/src/d8-debug.cc +367 -0
  127. data/ext/v8/upstream/v8/src/d8-debug.h +158 -0
  128. data/ext/v8/upstream/v8/src/d8-posix.cc +695 -0
  129. data/ext/v8/upstream/{3.1.8 → v8}/src/d8-readline.cc +0 -0
  130. data/ext/v8/upstream/{3.1.8 → v8}/src/d8-windows.cc +0 -0
  131. data/ext/v8/upstream/v8/src/d8.cc +796 -0
  132. data/ext/v8/upstream/v8/src/d8.gyp +88 -0
  133. data/ext/v8/upstream/{3.1.8 → v8}/src/d8.h +0 -0
  134. data/ext/v8/upstream/{3.1.8 → v8}/src/d8.js +0 -0
  135. data/ext/v8/upstream/{3.1.8 → v8}/src/data-flow.cc +0 -0
  136. data/ext/v8/upstream/v8/src/data-flow.h +379 -0
  137. data/ext/v8/upstream/{3.1.8 → v8}/src/date.js +0 -0
  138. data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser-inl.h +0 -0
  139. data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser.cc +0 -0
  140. data/ext/v8/upstream/v8/src/dateparser.h +265 -0
  141. data/ext/v8/upstream/v8/src/debug-agent.cc +447 -0
  142. data/ext/v8/upstream/v8/src/debug-agent.h +129 -0
  143. data/ext/v8/upstream/{3.1.8 → v8}/src/debug-debugger.js +0 -0
  144. data/ext/v8/upstream/v8/src/debug.cc +3188 -0
  145. data/ext/v8/upstream/v8/src/debug.h +1055 -0
  146. data/ext/v8/upstream/v8/src/deoptimizer.cc +1296 -0
  147. data/ext/v8/upstream/v8/src/deoptimizer.h +629 -0
  148. data/ext/v8/upstream/v8/src/disasm.h +80 -0
  149. data/ext/v8/upstream/v8/src/disassembler.cc +339 -0
  150. data/ext/v8/upstream/{3.1.8 → v8}/src/disassembler.h +0 -0
  151. data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.cc +0 -0
  152. data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.h +0 -0
  153. data/ext/v8/upstream/{3.1.8 → v8}/src/double.h +0 -0
  154. data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.cc +0 -0
  155. data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.h +0 -0
  156. data/ext/v8/upstream/v8/src/execution.cc +791 -0
  157. data/ext/v8/upstream/v8/src/execution.h +291 -0
  158. data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.cc +250 -0
  159. data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.h +89 -0
  160. data/ext/v8/upstream/v8/src/extensions/experimental/experimental.gyp +55 -0
  161. data/ext/v8/upstream/v8/src/extensions/experimental/i18n-extension.cc +284 -0
  162. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/experimental/i18n-extension.h +0 -0
  163. data/ext/v8/upstream/v8/src/extensions/externalize-string-extension.cc +141 -0
  164. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/externalize-string-extension.h +0 -0
  165. data/ext/v8/upstream/v8/src/extensions/gc-extension.cc +58 -0
  166. data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/gc-extension.h +0 -0
  167. data/ext/v8/upstream/v8/src/factory.cc +1194 -0
  168. data/ext/v8/upstream/v8/src/factory.h +436 -0
  169. data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.cc +0 -0
  170. data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.h +0 -0
  171. data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.cc +0 -0
  172. data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.h +0 -0
  173. data/ext/v8/upstream/v8/src/flag-definitions.h +556 -0
  174. data/ext/v8/upstream/{3.1.8 → v8}/src/flags.cc +0 -0
  175. data/ext/v8/upstream/{3.1.8 → v8}/src/flags.h +0 -0
  176. data/ext/v8/upstream/v8/src/frame-element.cc +37 -0
  177. data/ext/v8/upstream/v8/src/frame-element.h +269 -0
  178. data/ext/v8/upstream/v8/src/frames-inl.h +236 -0
  179. data/ext/v8/upstream/v8/src/frames.cc +1273 -0
  180. data/ext/v8/upstream/v8/src/frames.h +854 -0
  181. data/ext/v8/upstream/v8/src/full-codegen.cc +1385 -0
  182. data/ext/v8/upstream/v8/src/full-codegen.h +753 -0
  183. data/ext/v8/upstream/v8/src/func-name-inferrer.cc +91 -0
  184. data/ext/v8/upstream/v8/src/func-name-inferrer.h +111 -0
  185. data/ext/v8/upstream/v8/src/gdb-jit.cc +1548 -0
  186. data/ext/v8/upstream/{3.1.8 → v8}/src/gdb-jit.h +0 -0
  187. data/ext/v8/upstream/v8/src/global-handles.cc +596 -0
  188. data/ext/v8/upstream/v8/src/global-handles.h +239 -0
  189. data/ext/v8/upstream/v8/src/globals.h +325 -0
  190. data/ext/v8/upstream/v8/src/handles-inl.h +177 -0
  191. data/ext/v8/upstream/v8/src/handles.cc +965 -0
  192. data/ext/v8/upstream/v8/src/handles.h +372 -0
  193. data/ext/v8/upstream/{3.1.8 → v8}/src/hashmap.cc +0 -0
  194. data/ext/v8/upstream/v8/src/hashmap.h +121 -0
  195. data/ext/v8/upstream/v8/src/heap-inl.h +703 -0
  196. data/ext/v8/upstream/v8/src/heap-profiler.cc +1173 -0
  197. data/ext/v8/upstream/v8/src/heap-profiler.h +396 -0
  198. data/ext/v8/upstream/v8/src/heap.cc +5856 -0
  199. data/ext/v8/upstream/v8/src/heap.h +2264 -0
  200. data/ext/v8/upstream/v8/src/hydrogen-instructions.cc +1639 -0
  201. data/ext/v8/upstream/v8/src/hydrogen-instructions.h +3657 -0
  202. data/ext/v8/upstream/v8/src/hydrogen.cc +6011 -0
  203. data/ext/v8/upstream/v8/src/hydrogen.h +1137 -0
  204. data/ext/v8/upstream/v8/src/ia32/assembler-ia32-inl.h +430 -0
  205. data/ext/v8/upstream/v8/src/ia32/assembler-ia32.cc +2846 -0
  206. data/ext/v8/upstream/v8/src/ia32/assembler-ia32.h +1159 -0
  207. data/ext/v8/upstream/v8/src/ia32/builtins-ia32.cc +1596 -0
  208. data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.cc +6549 -0
  209. data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.h +495 -0
  210. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/codegen-ia32-inl.h +0 -0
  211. data/ext/v8/upstream/v8/src/ia32/codegen-ia32.cc +10385 -0
  212. data/ext/v8/upstream/v8/src/ia32/codegen-ia32.h +801 -0
  213. data/ext/v8/upstream/v8/src/ia32/cpu-ia32.cc +88 -0
  214. data/ext/v8/upstream/v8/src/ia32/debug-ia32.cc +312 -0
  215. data/ext/v8/upstream/v8/src/ia32/deoptimizer-ia32.cc +774 -0
  216. data/ext/v8/upstream/v8/src/ia32/disasm-ia32.cc +1620 -0
  217. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/frames-ia32.cc +0 -0
  218. data/ext/v8/upstream/v8/src/ia32/frames-ia32.h +140 -0
  219. data/ext/v8/upstream/v8/src/ia32/full-codegen-ia32.cc +4357 -0
  220. data/ext/v8/upstream/v8/src/ia32/ic-ia32.cc +1779 -0
  221. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/jump-target-ia32.cc +0 -0
  222. data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.cc +4158 -0
  223. data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.h +318 -0
  224. data/ext/v8/upstream/v8/src/ia32/lithium-gap-resolver-ia32.cc +466 -0
  225. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/lithium-gap-resolver-ia32.h +0 -0
  226. data/ext/v8/upstream/v8/src/ia32/lithium-ia32.cc +2181 -0
  227. data/ext/v8/upstream/v8/src/ia32/lithium-ia32.h +2235 -0
  228. data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.cc +2056 -0
  229. data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.h +807 -0
  230. data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.cc +1264 -0
  231. data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
  232. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  233. data/ext/v8/upstream/v8/src/ia32/register-allocator-ia32.cc +157 -0
  234. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32.h +0 -0
  235. data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/simulator-ia32.cc +0 -0
  236. data/ext/v8/upstream/v8/src/ia32/simulator-ia32.h +72 -0
  237. data/ext/v8/upstream/v8/src/ia32/stub-cache-ia32.cc +3711 -0
  238. data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.cc +1366 -0
  239. data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.h +650 -0
  240. data/ext/v8/upstream/v8/src/ic-inl.h +130 -0
  241. data/ext/v8/upstream/v8/src/ic.cc +2389 -0
  242. data/ext/v8/upstream/v8/src/ic.h +675 -0
  243. data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.cc +0 -0
  244. data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.h +0 -0
  245. data/ext/v8/upstream/v8/src/interpreter-irregexp.cc +659 -0
  246. data/ext/v8/upstream/v8/src/interpreter-irregexp.h +49 -0
  247. data/ext/v8/upstream/v8/src/isolate.cc +883 -0
  248. data/ext/v8/upstream/v8/src/isolate.h +1306 -0
  249. data/ext/v8/upstream/v8/src/json.js +342 -0
  250. data/ext/v8/upstream/v8/src/jsregexp.cc +5371 -0
  251. data/ext/v8/upstream/v8/src/jsregexp.h +1483 -0
  252. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-heavy-inl.h +0 -0
  253. data/ext/v8/upstream/v8/src/jump-target-heavy.cc +427 -0
  254. data/ext/v8/upstream/v8/src/jump-target-heavy.h +238 -0
  255. data/ext/v8/upstream/v8/src/jump-target-inl.h +48 -0
  256. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light-inl.h +0 -0
  257. data/ext/v8/upstream/v8/src/jump-target-light.cc +111 -0
  258. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light.h +0 -0
  259. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.cc +0 -0
  260. data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.h +0 -0
  261. data/ext/v8/upstream/{3.1.8 → v8}/src/list-inl.h +0 -0
  262. data/ext/v8/upstream/{3.1.8 → v8}/src/list.h +0 -0
  263. data/ext/v8/upstream/v8/src/lithium-allocator-inl.h +142 -0
  264. data/ext/v8/upstream/v8/src/lithium-allocator.cc +2105 -0
  265. data/ext/v8/upstream/v8/src/lithium-allocator.h +630 -0
  266. data/ext/v8/upstream/v8/src/lithium.cc +169 -0
  267. data/ext/v8/upstream/{3.1.8 → v8}/src/lithium.h +0 -0
  268. data/ext/v8/upstream/{3.1.8 → v8}/src/liveedit-debugger.js +0 -0
  269. data/ext/v8/upstream/v8/src/liveedit.cc +1693 -0
  270. data/ext/v8/upstream/v8/src/liveedit.h +179 -0
  271. data/ext/v8/upstream/{3.1.8 → v8}/src/liveobjectlist-inl.h +0 -0
  272. data/ext/v8/upstream/v8/src/liveobjectlist.cc +2589 -0
  273. data/ext/v8/upstream/v8/src/liveobjectlist.h +322 -0
  274. data/ext/v8/upstream/{3.1.8 → v8}/src/log-inl.h +0 -0
  275. data/ext/v8/upstream/v8/src/log-utils.cc +423 -0
  276. data/ext/v8/upstream/v8/src/log-utils.h +229 -0
  277. data/ext/v8/upstream/v8/src/log.cc +1666 -0
  278. data/ext/v8/upstream/v8/src/log.h +446 -0
  279. data/ext/v8/upstream/{3.1.8 → v8}/src/macro-assembler.h +0 -0
  280. data/ext/v8/upstream/{3.1.8 → v8}/src/macros.py +0 -0
  281. data/ext/v8/upstream/v8/src/mark-compact.cc +3092 -0
  282. data/ext/v8/upstream/v8/src/mark-compact.h +506 -0
  283. data/ext/v8/upstream/{3.1.8 → v8}/src/math.js +0 -0
  284. data/ext/v8/upstream/v8/src/messages.cc +166 -0
  285. data/ext/v8/upstream/{3.1.8 → v8}/src/messages.h +0 -0
  286. data/ext/v8/upstream/v8/src/messages.js +1090 -0
  287. data/ext/v8/upstream/v8/src/mips/assembler-mips-inl.h +335 -0
  288. data/ext/v8/upstream/v8/src/mips/assembler-mips.cc +2093 -0
  289. data/ext/v8/upstream/v8/src/mips/assembler-mips.h +1066 -0
  290. data/ext/v8/upstream/v8/src/mips/builtins-mips.cc +148 -0
  291. data/ext/v8/upstream/v8/src/mips/code-stubs-mips.cc +752 -0
  292. data/ext/v8/upstream/v8/src/mips/code-stubs-mips.h +511 -0
  293. data/ext/v8/upstream/v8/src/mips/codegen-mips-inl.h +64 -0
  294. data/ext/v8/upstream/v8/src/mips/codegen-mips.cc +1213 -0
  295. data/ext/v8/upstream/v8/src/mips/codegen-mips.h +633 -0
  296. data/ext/v8/upstream/v8/src/mips/constants-mips.cc +352 -0
  297. data/ext/v8/upstream/v8/src/mips/constants-mips.h +723 -0
  298. data/ext/v8/upstream/v8/src/mips/cpu-mips.cc +90 -0
  299. data/ext/v8/upstream/v8/src/mips/debug-mips.cc +155 -0
  300. data/ext/v8/upstream/v8/src/mips/deoptimizer-mips.cc +91 -0
  301. data/ext/v8/upstream/v8/src/mips/disasm-mips.cc +1023 -0
  302. data/ext/v8/upstream/v8/src/mips/frames-mips.cc +48 -0
  303. data/ext/v8/upstream/v8/src/mips/frames-mips.h +179 -0
  304. data/ext/v8/upstream/v8/src/mips/full-codegen-mips.cc +727 -0
  305. data/ext/v8/upstream/v8/src/mips/ic-mips.cc +244 -0
  306. data/ext/v8/upstream/v8/src/mips/jump-target-mips.cc +80 -0
  307. data/ext/v8/upstream/v8/src/mips/lithium-codegen-mips.h +65 -0
  308. data/ext/v8/upstream/v8/src/mips/lithium-mips.h +304 -0
  309. data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.cc +3327 -0
  310. data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.h +1058 -0
  311. data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
  312. data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
  313. data/ext/v8/upstream/v8/src/mips/register-allocator-mips-inl.h +134 -0
  314. data/ext/v8/upstream/{3.1.8 → v8}/src/mips/register-allocator-mips.cc +0 -0
  315. data/ext/v8/upstream/v8/src/mips/register-allocator-mips.h +47 -0
  316. data/ext/v8/upstream/v8/src/mips/simulator-mips.cc +2438 -0
  317. data/ext/v8/upstream/v8/src/mips/simulator-mips.h +394 -0
  318. data/ext/v8/upstream/v8/src/mips/stub-cache-mips.cc +601 -0
  319. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips-inl.h +58 -0
  320. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.cc +307 -0
  321. data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.h +530 -0
  322. data/ext/v8/upstream/v8/src/mirror-debugger.js +2381 -0
  323. data/ext/v8/upstream/v8/src/mksnapshot.cc +256 -0
  324. data/ext/v8/upstream/{3.1.8 → v8}/src/natives.h +0 -0
  325. data/ext/v8/upstream/v8/src/objects-debug.cc +722 -0
  326. data/ext/v8/upstream/v8/src/objects-inl.h +4166 -0
  327. data/ext/v8/upstream/v8/src/objects-printer.cc +801 -0
  328. data/ext/v8/upstream/v8/src/objects-visiting.cc +142 -0
  329. data/ext/v8/upstream/v8/src/objects-visiting.h +422 -0
  330. data/ext/v8/upstream/v8/src/objects.cc +10296 -0
  331. data/ext/v8/upstream/v8/src/objects.h +6662 -0
  332. data/ext/v8/upstream/v8/src/parser.cc +5168 -0
  333. data/ext/v8/upstream/v8/src/parser.h +823 -0
  334. data/ext/v8/upstream/v8/src/platform-cygwin.cc +811 -0
  335. data/ext/v8/upstream/v8/src/platform-freebsd.cc +854 -0
  336. data/ext/v8/upstream/v8/src/platform-linux.cc +1120 -0
  337. data/ext/v8/upstream/v8/src/platform-macos.cc +865 -0
  338. data/ext/v8/upstream/v8/src/platform-nullos.cc +504 -0
  339. data/ext/v8/upstream/v8/src/platform-openbsd.cc +672 -0
  340. data/ext/v8/upstream/v8/src/platform-posix.cc +424 -0
  341. data/ext/v8/upstream/v8/src/platform-solaris.cc +796 -0
  342. data/ext/v8/upstream/v8/src/platform-tls-mac.h +62 -0
  343. data/ext/v8/upstream/v8/src/platform-tls-win32.h +62 -0
  344. data/ext/v8/upstream/v8/src/platform-tls.h +50 -0
  345. data/ext/v8/upstream/v8/src/platform-win32.cc +2072 -0
  346. data/ext/v8/upstream/v8/src/platform.h +693 -0
  347. data/ext/v8/upstream/v8/src/preparse-data.cc +185 -0
  348. data/ext/v8/upstream/{3.1.8 → v8}/src/preparse-data.h +0 -0
  349. data/ext/v8/upstream/v8/src/preparser-api.cc +219 -0
  350. data/ext/v8/upstream/v8/src/preparser.cc +1205 -0
  351. data/ext/v8/upstream/{3.1.8 → v8}/src/preparser.h +0 -0
  352. data/ext/v8/upstream/v8/src/prettyprinter.cc +1530 -0
  353. data/ext/v8/upstream/v8/src/prettyprinter.h +223 -0
  354. data/ext/v8/upstream/{3.1.8 → v8}/src/profile-generator-inl.h +0 -0
  355. data/ext/v8/upstream/v8/src/profile-generator.cc +3095 -0
  356. data/ext/v8/upstream/v8/src/profile-generator.h +1125 -0
  357. data/ext/v8/upstream/v8/src/property.cc +102 -0
  358. data/ext/v8/upstream/v8/src/property.h +348 -0
  359. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  360. data/ext/v8/upstream/v8/src/regexp-macro-assembler-irregexp.cc +470 -0
  361. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp.h +0 -0
  362. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.cc +0 -0
  363. data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.h +0 -0
  364. data/ext/v8/upstream/v8/src/regexp-macro-assembler.cc +266 -0
  365. data/ext/v8/upstream/v8/src/regexp-macro-assembler.h +236 -0
  366. data/ext/v8/upstream/v8/src/regexp-stack.cc +111 -0
  367. data/ext/v8/upstream/v8/src/regexp-stack.h +147 -0
  368. data/ext/v8/upstream/v8/src/regexp.js +483 -0
  369. data/ext/v8/upstream/v8/src/register-allocator-inl.h +141 -0
  370. data/ext/v8/upstream/v8/src/register-allocator.cc +98 -0
  371. data/ext/v8/upstream/v8/src/register-allocator.h +310 -0
  372. data/ext/v8/upstream/v8/src/rewriter.cc +1024 -0
  373. data/ext/v8/upstream/{3.1.8 → v8}/src/rewriter.h +0 -0
  374. data/ext/v8/upstream/v8/src/runtime-profiler.cc +478 -0
  375. data/ext/v8/upstream/v8/src/runtime-profiler.h +192 -0
  376. data/ext/v8/upstream/v8/src/runtime.cc +11949 -0
  377. data/ext/v8/upstream/v8/src/runtime.h +643 -0
  378. data/ext/v8/upstream/{3.1.8 → v8}/src/runtime.js +0 -0
  379. data/ext/v8/upstream/v8/src/safepoint-table.cc +256 -0
  380. data/ext/v8/upstream/v8/src/safepoint-table.h +269 -0
  381. data/ext/v8/upstream/v8/src/scanner-base.cc +964 -0
  382. data/ext/v8/upstream/v8/src/scanner-base.h +664 -0
  383. data/ext/v8/upstream/v8/src/scanner.cc +584 -0
  384. data/ext/v8/upstream/v8/src/scanner.h +196 -0
  385. data/ext/v8/upstream/v8/src/scopeinfo.cc +631 -0
  386. data/ext/v8/upstream/v8/src/scopeinfo.h +249 -0
  387. data/ext/v8/upstream/v8/src/scopes.cc +1093 -0
  388. data/ext/v8/upstream/v8/src/scopes.h +508 -0
  389. data/ext/v8/upstream/v8/src/serialize.cc +1574 -0
  390. data/ext/v8/upstream/v8/src/serialize.h +589 -0
  391. data/ext/v8/upstream/{3.1.8 → v8}/src/shell.h +0 -0
  392. data/ext/v8/upstream/{3.1.8 → v8}/src/simulator.h +0 -0
  393. data/ext/v8/upstream/v8/src/small-pointer-list.h +163 -0
  394. data/ext/v8/upstream/{3.1.8 → v8}/src/smart-pointer.h +0 -0
  395. data/ext/v8/upstream/v8/src/snapshot-common.cc +82 -0
  396. data/ext/v8/upstream/{3.1.8 → v8}/src/snapshot-empty.cc +0 -0
  397. data/ext/v8/upstream/v8/src/snapshot.h +73 -0
  398. data/ext/v8/upstream/v8/src/spaces-inl.h +529 -0
  399. data/ext/v8/upstream/v8/src/spaces.cc +3147 -0
  400. data/ext/v8/upstream/v8/src/spaces.h +2368 -0
  401. data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree-inl.h +0 -0
  402. data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree.h +0 -0
  403. data/ext/v8/upstream/v8/src/string-search.cc +41 -0
  404. data/ext/v8/upstream/v8/src/string-search.h +568 -0
  405. data/ext/v8/upstream/v8/src/string-stream.cc +592 -0
  406. data/ext/v8/upstream/{3.1.8 → v8}/src/string-stream.h +0 -0
  407. data/ext/v8/upstream/v8/src/string.js +915 -0
  408. data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.cc +0 -0
  409. data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.h +0 -0
  410. data/ext/v8/upstream/v8/src/stub-cache.cc +1940 -0
  411. data/ext/v8/upstream/v8/src/stub-cache.h +866 -0
  412. data/ext/v8/upstream/{3.1.8 → v8}/src/third_party/valgrind/valgrind.h +0 -0
  413. data/ext/v8/upstream/v8/src/token.cc +63 -0
  414. data/ext/v8/upstream/v8/src/token.h +288 -0
  415. data/ext/v8/upstream/v8/src/top.cc +983 -0
  416. data/ext/v8/upstream/v8/src/type-info.cc +472 -0
  417. data/ext/v8/upstream/v8/src/type-info.h +290 -0
  418. data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue-inl.h +0 -0
  419. data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue.h +0 -0
  420. data/ext/v8/upstream/{3.1.8 → v8}/src/unicode-inl.h +0 -0
  421. data/ext/v8/upstream/v8/src/unicode.cc +1624 -0
  422. data/ext/v8/upstream/v8/src/unicode.h +280 -0
  423. data/ext/v8/upstream/{3.1.8 → v8}/src/uri.js +0 -0
  424. data/ext/v8/upstream/{3.1.8 → v8}/src/utils.cc +0 -0
  425. data/ext/v8/upstream/v8/src/utils.h +796 -0
  426. data/ext/v8/upstream/v8/src/v8-counters.cc +62 -0
  427. data/ext/v8/upstream/v8/src/v8-counters.h +311 -0
  428. data/ext/v8/upstream/v8/src/v8.cc +215 -0
  429. data/ext/v8/upstream/v8/src/v8.h +130 -0
  430. data/ext/v8/upstream/{3.1.8 → v8}/src/v8checks.h +0 -0
  431. data/ext/v8/upstream/{3.1.8 → v8}/src/v8dll-main.cc +0 -0
  432. data/ext/v8/upstream/v8/src/v8globals.h +486 -0
  433. data/ext/v8/upstream/{3.1.8/src/memory.h → v8/src/v8memory.h} +0 -0
  434. data/ext/v8/upstream/v8/src/v8natives.js +1293 -0
  435. data/ext/v8/upstream/{3.1.8 → v8}/src/v8preparserdll-main.cc +0 -0
  436. data/ext/v8/upstream/v8/src/v8threads.cc +453 -0
  437. data/ext/v8/upstream/v8/src/v8threads.h +164 -0
  438. data/ext/v8/upstream/v8/src/v8utils.h +317 -0
  439. data/ext/v8/upstream/{3.1.8 → v8}/src/variables.cc +0 -0
  440. data/ext/v8/upstream/v8/src/variables.h +212 -0
  441. data/ext/v8/upstream/v8/src/version.cc +116 -0
  442. data/ext/v8/upstream/v8/src/version.h +68 -0
  443. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy-inl.h +0 -0
  444. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy.cc +0 -0
  445. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-inl.h +0 -0
  446. data/ext/v8/upstream/v8/src/virtual-frame-light-inl.h +171 -0
  447. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-light.cc +0 -0
  448. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.cc +0 -0
  449. data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.h +0 -0
  450. data/ext/v8/upstream/v8/src/vm-state-inl.h +138 -0
  451. data/ext/v8/upstream/v8/src/vm-state.h +70 -0
  452. data/ext/v8/upstream/v8/src/win32-headers.h +96 -0
  453. data/ext/v8/upstream/v8/src/x64/assembler-x64-inl.h +456 -0
  454. data/ext/v8/upstream/v8/src/x64/assembler-x64.cc +2954 -0
  455. data/ext/v8/upstream/v8/src/x64/assembler-x64.h +1630 -0
  456. data/ext/v8/upstream/v8/src/x64/builtins-x64.cc +1493 -0
  457. data/ext/v8/upstream/v8/src/x64/code-stubs-x64.cc +5132 -0
  458. data/ext/v8/upstream/v8/src/x64/code-stubs-x64.h +477 -0
  459. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/codegen-x64-inl.h +0 -0
  460. data/ext/v8/upstream/v8/src/x64/codegen-x64.cc +8843 -0
  461. data/ext/v8/upstream/v8/src/x64/codegen-x64.h +753 -0
  462. data/ext/v8/upstream/v8/src/x64/cpu-x64.cc +88 -0
  463. data/ext/v8/upstream/v8/src/x64/debug-x64.cc +318 -0
  464. data/ext/v8/upstream/v8/src/x64/deoptimizer-x64.cc +815 -0
  465. data/ext/v8/upstream/v8/src/x64/disasm-x64.cc +1752 -0
  466. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/frames-x64.cc +0 -0
  467. data/ext/v8/upstream/v8/src/x64/frames-x64.h +130 -0
  468. data/ext/v8/upstream/v8/src/x64/full-codegen-x64.cc +4339 -0
  469. data/ext/v8/upstream/v8/src/x64/ic-x64.cc +1752 -0
  470. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/jump-target-x64.cc +0 -0
  471. data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.cc +3970 -0
  472. data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.h +318 -0
  473. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.cc +0 -0
  474. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.h +0 -0
  475. data/ext/v8/upstream/v8/src/x64/lithium-x64.cc +2115 -0
  476. data/ext/v8/upstream/v8/src/x64/lithium-x64.h +2161 -0
  477. data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.cc +2911 -0
  478. data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.h +1984 -0
  479. data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
  480. data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
  481. data/ext/v8/upstream/v8/src/x64/register-allocator-x64-inl.h +87 -0
  482. data/ext/v8/upstream/v8/src/x64/register-allocator-x64.cc +95 -0
  483. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/register-allocator-x64.h +0 -0
  484. data/ext/v8/upstream/{3.1.8 → v8}/src/x64/simulator-x64.cc +0 -0
  485. data/ext/v8/upstream/v8/src/x64/simulator-x64.h +71 -0
  486. data/ext/v8/upstream/v8/src/x64/stub-cache-x64.cc +3460 -0
  487. data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.cc +1296 -0
  488. data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.h +597 -0
  489. data/ext/v8/upstream/v8/src/zone-inl.h +129 -0
  490. data/ext/v8/upstream/v8/src/zone.cc +196 -0
  491. data/ext/v8/upstream/v8/src/zone.h +236 -0
  492. data/ext/v8/upstream/{3.1.8 → v8}/tools/codemap.js +0 -0
  493. data/ext/v8/upstream/{3.1.8 → v8}/tools/consarray.js +0 -0
  494. data/ext/v8/upstream/{3.1.8 → v8}/tools/csvparser.js +0 -0
  495. data/ext/v8/upstream/{3.1.8 → v8}/tools/disasm.py +0 -0
  496. data/ext/v8/upstream/v8/tools/freebsd-tick-processor +10 -0
  497. data/ext/v8/upstream/{3.1.8 → v8}/tools/gc-nvp-trace-processor.py +0 -0
  498. data/ext/v8/upstream/{3.1.8 → v8}/tools/generate-ten-powers.scm +0 -0
  499. data/ext/v8/upstream/{3.1.8 → v8}/tools/grokdump.py +0 -0
  500. data/ext/v8/upstream/v8/tools/gyp/v8.gyp +844 -0
  501. data/ext/v8/upstream/{3.1.8 → v8}/tools/js2c.py +0 -0
  502. data/ext/v8/upstream/{3.1.8 → v8}/tools/jsmin.py +0 -0
  503. data/ext/v8/upstream/v8/tools/linux-tick-processor +35 -0
  504. data/ext/v8/upstream/{3.1.8 → v8}/tools/ll_prof.py +0 -0
  505. data/ext/v8/upstream/{3.1.8 → v8}/tools/logreader.js +0 -0
  506. data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-nm +0 -0
  507. data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-tick-processor +0 -0
  508. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/README +0 -0
  509. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/SConstruct +0 -0
  510. data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/oom_dump.cc +0 -0
  511. data/ext/v8/upstream/{3.1.8 → v8}/tools/presubmit.py +0 -0
  512. data/ext/v8/upstream/{3.1.8 → v8}/tools/process-heap-prof.py +0 -0
  513. data/ext/v8/upstream/{3.1.8 → v8}/tools/profile.js +0 -0
  514. data/ext/v8/upstream/{3.1.8 → v8}/tools/profile_view.js +0 -0
  515. data/ext/v8/upstream/{3.1.8 → v8}/tools/run-valgrind.py +0 -0
  516. data/ext/v8/upstream/{3.1.8 → v8}/tools/splaytree.js +0 -0
  517. data/ext/v8/upstream/{3.1.8 → v8}/tools/stats-viewer.py +0 -0
  518. data/ext/v8/upstream/v8/tools/test.py +1490 -0
  519. data/ext/v8/upstream/{3.1.8 → v8}/tools/tickprocessor-driver.js +0 -0
  520. data/ext/v8/upstream/v8/tools/tickprocessor.js +877 -0
  521. data/ext/v8/upstream/{3.1.8 → v8}/tools/utils.py +0 -0
  522. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/README.txt +0 -0
  523. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/arm.vsprops +0 -0
  524. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/common.vsprops +0 -0
  525. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8.vcproj +0 -0
  526. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_arm.vcproj +0 -0
  527. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_x64.vcproj +0 -0
  528. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8js2c.cmd +0 -0
  529. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/debug.vsprops +0 -0
  530. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/ia32.vsprops +0 -0
  531. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/js2c.cmd +0 -0
  532. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/release.vsprops +0 -0
  533. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.sln +0 -0
  534. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.vcproj +0 -0
  535. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.sln +0 -0
  536. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.vcproj +0 -0
  537. data/ext/v8/upstream/v8/tools/visual_studio/v8_base.vcproj +1308 -0
  538. data/ext/v8/upstream/v8/tools/visual_studio/v8_base_arm.vcproj +1238 -0
  539. data/ext/v8/upstream/v8/tools/visual_studio/v8_base_x64.vcproj +1300 -0
  540. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  541. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  542. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  543. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  544. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  545. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  546. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  547. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  548. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample.vcproj +0 -0
  549. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -0
  550. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -0
  551. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  552. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  553. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  554. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  555. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.sln +0 -0
  556. data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.vcproj +0 -0
  557. data/ext/v8/upstream/v8/tools/visual_studio/x64.vsprops +18 -0
  558. data/ext/v8/upstream/{3.1.8 → v8}/tools/windows-tick-processor.bat +0 -0
  559. data/ext/v8/v8_callbacks.cpp +52 -92
  560. data/ext/v8/v8_date.cpp +2 -3
  561. data/ext/v8/v8_object.cpp +4 -0
  562. data/ext/v8/v8_template.cpp +2 -2
  563. data/ext/v8/v8_try_catch.cpp +8 -38
  564. data/lib/v8/version.rb +1 -1
  565. data/spec/ext/ext_spec_helper.rb +2 -20
  566. data/spec/ext/object_spec.rb +0 -12
  567. data/spec/ext/try_catch_spec.rb +29 -1
  568. data/spec/spec_helper.rb +1 -0
  569. data/spec/v8/portal/proxies_spec.rb +1 -84
  570. data/specmem/handle_memspec.rb +41 -0
  571. data/specmem/object_memspec.rb +16 -0
  572. data/specmem/proxies_memspec.rb +86 -0
  573. data/specmem/spec_helper.rb +24 -0
  574. data/therubyracer.gemspec +7 -2
  575. metadata +564 -541
  576. data/ext/v8/upstream/3.1.8/.gitignore +0 -31
  577. data/ext/v8/upstream/3.1.8/AUTHORS +0 -40
  578. data/ext/v8/upstream/3.1.8/ChangeLog +0 -2566
  579. data/ext/v8/upstream/3.1.8/SConstruct +0 -1192
  580. data/ext/v8/upstream/3.1.8/include/v8-debug.h +0 -384
  581. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +0 -116
  582. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +0 -426
  583. data/ext/v8/upstream/3.1.8/include/v8-testing.h +0 -99
  584. data/ext/v8/upstream/3.1.8/include/v8.h +0 -3846
  585. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +0 -206
  586. data/ext/v8/upstream/3.1.8/src/SConscript +0 -356
  587. data/ext/v8/upstream/3.1.8/src/accessors.cc +0 -907
  588. data/ext/v8/upstream/3.1.8/src/allocation.cc +0 -204
  589. data/ext/v8/upstream/3.1.8/src/allocation.h +0 -176
  590. data/ext/v8/upstream/3.1.8/src/api.cc +0 -5191
  591. data/ext/v8/upstream/3.1.8/src/api.h +0 -508
  592. data/ext/v8/upstream/3.1.8/src/apiutils.h +0 -80
  593. data/ext/v8/upstream/3.1.8/src/arguments.h +0 -105
  594. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +0 -352
  595. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +0 -2756
  596. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +0 -1294
  597. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +0 -1628
  598. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +0 -6783
  599. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +0 -657
  600. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +0 -7403
  601. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +0 -595
  602. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +0 -769
  603. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +0 -147
  604. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +0 -315
  605. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +0 -700
  606. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +0 -1439
  607. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +0 -168
  608. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +0 -4230
  609. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +0 -1799
  610. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +0 -2041
  611. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +0 -2046
  612. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +0 -3822
  613. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +0 -312
  614. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +0 -303
  615. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +0 -2701
  616. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +0 -1015
  617. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +0 -1280
  618. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +0 -252
  619. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +0 -3165
  620. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +0 -402
  621. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +0 -4077
  622. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +0 -843
  623. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +0 -520
  624. data/ext/v8/upstream/3.1.8/src/array.js +0 -1231
  625. data/ext/v8/upstream/3.1.8/src/assembler.cc +0 -973
  626. data/ext/v8/upstream/3.1.8/src/assembler.h +0 -787
  627. data/ext/v8/upstream/3.1.8/src/ast-inl.h +0 -107
  628. data/ext/v8/upstream/3.1.8/src/ast.cc +0 -1067
  629. data/ext/v8/upstream/3.1.8/src/ast.h +0 -2177
  630. data/ext/v8/upstream/3.1.8/src/atomicops.h +0 -165
  631. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +0 -1888
  632. data/ext/v8/upstream/3.1.8/src/bootstrapper.h +0 -118
  633. data/ext/v8/upstream/3.1.8/src/builtins.cc +0 -1586
  634. data/ext/v8/upstream/3.1.8/src/builtins.h +0 -339
  635. data/ext/v8/upstream/3.1.8/src/checks.cc +0 -110
  636. data/ext/v8/upstream/3.1.8/src/checks.h +0 -292
  637. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +0 -230
  638. data/ext/v8/upstream/3.1.8/src/code-stubs.h +0 -950
  639. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +0 -64
  640. data/ext/v8/upstream/3.1.8/src/codegen.cc +0 -495
  641. data/ext/v8/upstream/3.1.8/src/codegen.h +0 -245
  642. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +0 -654
  643. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +0 -112
  644. data/ext/v8/upstream/3.1.8/src/compiler.cc +0 -806
  645. data/ext/v8/upstream/3.1.8/src/compiler.h +0 -290
  646. data/ext/v8/upstream/3.1.8/src/contexts.cc +0 -320
  647. data/ext/v8/upstream/3.1.8/src/contexts.h +0 -376
  648. data/ext/v8/upstream/3.1.8/src/conversions.cc +0 -1069
  649. data/ext/v8/upstream/3.1.8/src/counters.cc +0 -78
  650. data/ext/v8/upstream/3.1.8/src/counters.h +0 -242
  651. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +0 -100
  652. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +0 -554
  653. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +0 -291
  654. data/ext/v8/upstream/3.1.8/src/cpu.h +0 -65
  655. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +0 -367
  656. data/ext/v8/upstream/3.1.8/src/d8-debug.h +0 -157
  657. data/ext/v8/upstream/3.1.8/src/d8-posix.cc +0 -693
  658. data/ext/v8/upstream/3.1.8/src/d8.cc +0 -792
  659. data/ext/v8/upstream/3.1.8/src/d8.gyp +0 -85
  660. data/ext/v8/upstream/3.1.8/src/data-flow.h +0 -379
  661. data/ext/v8/upstream/3.1.8/src/dateparser.h +0 -263
  662. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +0 -446
  663. data/ext/v8/upstream/3.1.8/src/debug-agent.h +0 -131
  664. data/ext/v8/upstream/3.1.8/src/debug.cc +0 -3085
  665. data/ext/v8/upstream/3.1.8/src/debug.h +0 -1025
  666. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +0 -1185
  667. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +0 -529
  668. data/ext/v8/upstream/3.1.8/src/disasm.h +0 -77
  669. data/ext/v8/upstream/3.1.8/src/disassembler.cc +0 -338
  670. data/ext/v8/upstream/3.1.8/src/execution.cc +0 -735
  671. data/ext/v8/upstream/3.1.8/src/execution.h +0 -322
  672. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +0 -53
  673. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +0 -264
  674. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +0 -141
  675. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +0 -58
  676. data/ext/v8/upstream/3.1.8/src/factory.cc +0 -1087
  677. data/ext/v8/upstream/3.1.8/src/factory.h +0 -432
  678. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +0 -552
  679. data/ext/v8/upstream/3.1.8/src/frame-element.cc +0 -42
  680. data/ext/v8/upstream/3.1.8/src/frame-element.h +0 -277
  681. data/ext/v8/upstream/3.1.8/src/frames-inl.h +0 -210
  682. data/ext/v8/upstream/3.1.8/src/frames.cc +0 -1232
  683. data/ext/v8/upstream/3.1.8/src/frames.h +0 -826
  684. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +0 -1382
  685. data/ext/v8/upstream/3.1.8/src/full-codegen.h +0 -751
  686. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +0 -90
  687. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +0 -111
  688. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +0 -1547
  689. data/ext/v8/upstream/3.1.8/src/global-handles.cc +0 -534
  690. data/ext/v8/upstream/3.1.8/src/global-handles.h +0 -181
  691. data/ext/v8/upstream/3.1.8/src/globals.h +0 -325
  692. data/ext/v8/upstream/3.1.8/src/handles-inl.h +0 -80
  693. data/ext/v8/upstream/3.1.8/src/handles.cc +0 -910
  694. data/ext/v8/upstream/3.1.8/src/handles.h +0 -424
  695. data/ext/v8/upstream/3.1.8/src/hashmap.h +0 -121
  696. data/ext/v8/upstream/3.1.8/src/heap-inl.h +0 -587
  697. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +0 -1128
  698. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +0 -381
  699. data/ext/v8/upstream/3.1.8/src/heap.cc +0 -5610
  700. data/ext/v8/upstream/3.1.8/src/heap.h +0 -2218
  701. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +0 -1490
  702. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +0 -3493
  703. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +0 -6056
  704. data/ext/v8/upstream/3.1.8/src/hydrogen.h +0 -1091
  705. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +0 -429
  706. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +0 -2800
  707. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +0 -1093
  708. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +0 -1590
  709. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +0 -6624
  710. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +0 -536
  711. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +0 -10354
  712. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +0 -798
  713. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +0 -87
  714. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +0 -309
  715. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +0 -664
  716. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +0 -1597
  717. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +0 -140
  718. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +0 -4278
  719. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +0 -1786
  720. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +0 -3880
  721. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +0 -309
  722. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +0 -460
  723. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +0 -2095
  724. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +0 -2127
  725. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +0 -2031
  726. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +0 -798
  727. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +0 -1253
  728. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +0 -215
  729. data/ext/v8/upstream/3.1.8/src/ia32/register-allocator-ia32.cc +0 -157
  730. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +0 -72
  731. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +0 -3732
  732. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +0 -1360
  733. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +0 -646
  734. data/ext/v8/upstream/3.1.8/src/ic-inl.h +0 -129
  735. data/ext/v8/upstream/3.1.8/src/ic.cc +0 -2333
  736. data/ext/v8/upstream/3.1.8/src/ic.h +0 -639
  737. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +0 -655
  738. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.h +0 -48
  739. data/ext/v8/upstream/3.1.8/src/json.js +0 -342
  740. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +0 -5340
  741. data/ext/v8/upstream/3.1.8/src/jsregexp.h +0 -1484
  742. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +0 -430
  743. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +0 -244
  744. data/ext/v8/upstream/3.1.8/src/jump-target-inl.h +0 -48
  745. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +0 -111
  746. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +0 -140
  747. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +0 -2093
  748. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +0 -644
  749. data/ext/v8/upstream/3.1.8/src/lithium.cc +0 -168
  750. data/ext/v8/upstream/3.1.8/src/liveedit.cc +0 -1650
  751. data/ext/v8/upstream/3.1.8/src/liveedit.h +0 -174
  752. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +0 -2527
  753. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +0 -322
  754. data/ext/v8/upstream/3.1.8/src/log-utils.cc +0 -336
  755. data/ext/v8/upstream/3.1.8/src/log-utils.h +0 -232
  756. data/ext/v8/upstream/3.1.8/src/log.cc +0 -1608
  757. data/ext/v8/upstream/3.1.8/src/log.h +0 -379
  758. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +0 -2957
  759. data/ext/v8/upstream/3.1.8/src/mark-compact.h +0 -433
  760. data/ext/v8/upstream/3.1.8/src/messages.cc +0 -164
  761. data/ext/v8/upstream/3.1.8/src/messages.js +0 -1071
  762. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips-inl.h +0 -215
  763. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.cc +0 -1219
  764. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +0 -667
  765. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +0 -205
  766. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips-inl.h +0 -70
  767. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.cc +0 -1437
  768. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +0 -431
  769. data/ext/v8/upstream/3.1.8/src/mips/constants-mips.cc +0 -328
  770. data/ext/v8/upstream/3.1.8/src/mips/constants-mips.h +0 -525
  771. data/ext/v8/upstream/3.1.8/src/mips/cpu-mips.cc +0 -73
  772. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +0 -127
  773. data/ext/v8/upstream/3.1.8/src/mips/disasm-mips.cc +0 -787
  774. data/ext/v8/upstream/3.1.8/src/mips/fast-codegen-mips.cc +0 -77
  775. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +0 -96
  776. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.h +0 -164
  777. data/ext/v8/upstream/3.1.8/src/mips/full-codegen-mips.cc +0 -277
  778. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +0 -208
  779. data/ext/v8/upstream/3.1.8/src/mips/jump-target-mips.cc +0 -175
  780. data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.cc +0 -1326
  781. data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.h +0 -461
  782. data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips-inl.h +0 -137
  783. data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips.h +0 -46
  784. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +0 -1650
  785. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +0 -311
  786. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +0 -418
  787. data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.cc +0 -319
  788. data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.h +0 -548
  789. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +0 -2380
  790. data/ext/v8/upstream/3.1.8/src/mksnapshot.cc +0 -256
  791. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +0 -722
  792. data/ext/v8/upstream/3.1.8/src/objects-inl.h +0 -3946
  793. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +0 -801
  794. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +0 -142
  795. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +0 -401
  796. data/ext/v8/upstream/3.1.8/src/objects.cc +0 -10044
  797. data/ext/v8/upstream/3.1.8/src/objects.h +0 -6571
  798. data/ext/v8/upstream/3.1.8/src/parser.cc +0 -5165
  799. data/ext/v8/upstream/3.1.8/src/parser.h +0 -802
  800. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +0 -745
  801. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +0 -702
  802. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +0 -981
  803. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +0 -732
  804. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +0 -498
  805. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +0 -657
  806. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +0 -399
  807. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +0 -714
  808. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +0 -1974
  809. data/ext/v8/upstream/3.1.8/src/platform.h +0 -636
  810. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +0 -183
  811. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +0 -213
  812. data/ext/v8/upstream/3.1.8/src/preparser.cc +0 -1205
  813. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +0 -1539
  814. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +0 -223
  815. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +0 -2899
  816. data/ext/v8/upstream/3.1.8/src/profile-generator.h +0 -1151
  817. data/ext/v8/upstream/3.1.8/src/property.cc +0 -96
  818. data/ext/v8/upstream/3.1.8/src/property.h +0 -337
  819. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +0 -470
  820. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +0 -257
  821. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +0 -231
  822. data/ext/v8/upstream/3.1.8/src/regexp-stack.cc +0 -103
  823. data/ext/v8/upstream/3.1.8/src/regexp-stack.h +0 -123
  824. data/ext/v8/upstream/3.1.8/src/regexp.js +0 -483
  825. data/ext/v8/upstream/3.1.8/src/register-allocator-inl.h +0 -141
  826. data/ext/v8/upstream/3.1.8/src/register-allocator.cc +0 -104
  827. data/ext/v8/upstream/3.1.8/src/register-allocator.h +0 -320
  828. data/ext/v8/upstream/3.1.8/src/rewriter.cc +0 -1023
  829. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +0 -443
  830. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +0 -77
  831. data/ext/v8/upstream/3.1.8/src/runtime.cc +0 -11592
  832. data/ext/v8/upstream/3.1.8/src/runtime.h +0 -582
  833. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +0 -253
  834. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +0 -263
  835. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +0 -971
  836. data/ext/v8/upstream/3.1.8/src/scanner-base.h +0 -653
  837. data/ext/v8/upstream/3.1.8/src/scanner.cc +0 -586
  838. data/ext/v8/upstream/3.1.8/src/scanner.h +0 -194
  839. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +0 -636
  840. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +0 -238
  841. data/ext/v8/upstream/3.1.8/src/scopes.cc +0 -1063
  842. data/ext/v8/upstream/3.1.8/src/scopes.h +0 -494
  843. data/ext/v8/upstream/3.1.8/src/serialize.cc +0 -1535
  844. data/ext/v8/upstream/3.1.8/src/serialize.h +0 -584
  845. data/ext/v8/upstream/3.1.8/src/snapshot-common.cc +0 -82
  846. data/ext/v8/upstream/3.1.8/src/snapshot.h +0 -71
  847. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +0 -524
  848. data/ext/v8/upstream/3.1.8/src/spaces.cc +0 -3254
  849. data/ext/v8/upstream/3.1.8/src/spaces.h +0 -2362
  850. data/ext/v8/upstream/3.1.8/src/string-search.cc +0 -40
  851. data/ext/v8/upstream/3.1.8/src/string-search.h +0 -567
  852. data/ext/v8/upstream/3.1.8/src/string-stream.cc +0 -584
  853. data/ext/v8/upstream/3.1.8/src/string.js +0 -915
  854. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +0 -1878
  855. data/ext/v8/upstream/3.1.8/src/stub-cache.h +0 -849
  856. data/ext/v8/upstream/3.1.8/src/token.cc +0 -63
  857. data/ext/v8/upstream/3.1.8/src/token.h +0 -288
  858. data/ext/v8/upstream/3.1.8/src/top.cc +0 -1152
  859. data/ext/v8/upstream/3.1.8/src/top.h +0 -608
  860. data/ext/v8/upstream/3.1.8/src/type-info.cc +0 -406
  861. data/ext/v8/upstream/3.1.8/src/type-info.h +0 -283
  862. data/ext/v8/upstream/3.1.8/src/unicode.cc +0 -1624
  863. data/ext/v8/upstream/3.1.8/src/unicode.h +0 -280
  864. data/ext/v8/upstream/3.1.8/src/utils.h +0 -793
  865. data/ext/v8/upstream/3.1.8/src/v8-counters.cc +0 -55
  866. data/ext/v8/upstream/3.1.8/src/v8-counters.h +0 -290
  867. data/ext/v8/upstream/3.1.8/src/v8.cc +0 -270
  868. data/ext/v8/upstream/3.1.8/src/v8.h +0 -127
  869. data/ext/v8/upstream/3.1.8/src/v8globals.h +0 -480
  870. data/ext/v8/upstream/3.1.8/src/v8natives.js +0 -1252
  871. data/ext/v8/upstream/3.1.8/src/v8threads.cc +0 -440
  872. data/ext/v8/upstream/3.1.8/src/v8threads.h +0 -157
  873. data/ext/v8/upstream/3.1.8/src/v8utils.h +0 -354
  874. data/ext/v8/upstream/3.1.8/src/variables.h +0 -212
  875. data/ext/v8/upstream/3.1.8/src/version.cc +0 -95
  876. data/ext/v8/upstream/3.1.8/src/version.h +0 -64
  877. data/ext/v8/upstream/3.1.8/src/virtual-frame-light-inl.h +0 -170
  878. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +0 -134
  879. data/ext/v8/upstream/3.1.8/src/vm-state.h +0 -68
  880. data/ext/v8/upstream/3.1.8/src/win32-headers.h +0 -95
  881. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +0 -455
  882. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +0 -3162
  883. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +0 -1584
  884. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +0 -1492
  885. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +0 -5150
  886. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +0 -519
  887. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +0 -8835
  888. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +0 -750
  889. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +0 -86
  890. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +0 -316
  891. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +0 -781
  892. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +0 -1737
  893. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +0 -130
  894. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +0 -3984
  895. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +0 -1761
  896. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +0 -3639
  897. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +0 -305
  898. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +0 -2044
  899. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +0 -2052
  900. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +0 -2660
  901. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +0 -1852
  902. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +0 -1382
  903. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +0 -278
  904. data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64-inl.h +0 -87
  905. data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64.cc +0 -91
  906. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +0 -71
  907. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +0 -3509
  908. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +0 -1292
  909. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +0 -593
  910. data/ext/v8/upstream/3.1.8/src/zone-inl.h +0 -83
  911. data/ext/v8/upstream/3.1.8/src/zone.cc +0 -195
  912. data/ext/v8/upstream/3.1.8/src/zone.h +0 -233
  913. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +0 -869
  914. data/ext/v8/upstream/3.1.8/tools/linux-tick-processor +0 -33
  915. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +0 -863
  916. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +0 -1296
  917. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +0 -1234
  918. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +0 -1296
  919. data/ext/v8/upstream/3.1.8/tools/visual_studio/x64.vsprops +0 -17
  920. data/spec/ext/mem_spec.rb +0 -42
@@ -0,0 +1,1382 @@
1
+ // Copyright (c) 1994-2006 Sun Microsystems Inc.
2
+ // All Rights Reserved.
3
+ //
4
+ // Redistribution and use in source and binary forms, with or without
5
+ // modification, are permitted provided that the following conditions
6
+ // are met:
7
+ //
8
+ // - Redistributions of source code must retain the above copyright notice,
9
+ // this list of conditions and the following disclaimer.
10
+ //
11
+ // - Redistribution in binary form must reproduce the above copyright
12
+ // notice, this list of conditions and the following disclaimer in the
13
+ // documentation and/or other materials provided with the
14
+ // distribution.
15
+ //
16
+ // - Neither the name of Sun Microsystems or the names of contributors may
17
+ // be used to endorse or promote products derived from this software without
18
+ // specific prior written permission.
19
+ //
20
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23
+ // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24
+ // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25
+ // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26
+ // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27
+ // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28
+ // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29
+ // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30
+ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31
+ // OF THE POSSIBILITY OF SUCH DAMAGE.
32
+
33
+ // The original source code covered by the above license above has been
34
+ // modified significantly by Google Inc.
35
+ // Copyright 2011 the V8 project authors. All rights reserved.
36
+
37
+ // A light-weight ARM Assembler
38
+ // Generates user mode instructions for the ARM architecture up to version 5
39
+
40
+ #ifndef V8_ARM_ASSEMBLER_ARM_H_
41
+ #define V8_ARM_ASSEMBLER_ARM_H_
42
+ #include <stdio.h>
43
+ #include "assembler.h"
44
+ #include "constants-arm.h"
45
+ #include "serialize.h"
46
+
47
+ namespace v8 {
48
+ namespace internal {
49
+
50
+ // CPU Registers.
51
+ //
52
+ // 1) We would prefer to use an enum, but enum values are assignment-
53
+ // compatible with int, which has caused code-generation bugs.
54
+ //
55
+ // 2) We would prefer to use a class instead of a struct but we don't like
56
+ // the register initialization to depend on the particular initialization
57
+ // order (which appears to be different on OS X, Linux, and Windows for the
58
+ // installed versions of C++ we tried). Using a struct permits C-style
59
+ // "initialization". Also, the Register objects cannot be const as this
60
+ // forces initialization stubs in MSVC, making us dependent on initialization
61
+ // order.
62
+ //
63
+ // 3) By not using an enum, we are possibly preventing the compiler from
64
+ // doing certain constant folds, which may significantly reduce the
65
+ // code generated for some assembly instructions (because they boil down
66
+ // to a few constants). If this is a problem, we could change the code
67
+ // such that we use an enum in optimized mode, and the struct in debug
68
+ // mode. This way we get the compile-time error checking in debug mode
69
+ // and best performance in optimized code.
70
+
71
+ // Core register
72
+ struct Register {
73
+ static const int kNumRegisters = 16;
74
+ static const int kNumAllocatableRegisters = 8;
75
+
76
+ static int ToAllocationIndex(Register reg) {
77
+ ASSERT(reg.code() < kNumAllocatableRegisters);
78
+ return reg.code();
79
+ }
80
+
81
+ static Register FromAllocationIndex(int index) {
82
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
83
+ return from_code(index);
84
+ }
85
+
86
+ static const char* AllocationIndexToString(int index) {
87
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
88
+ const char* const names[] = {
89
+ "r0",
90
+ "r1",
91
+ "r2",
92
+ "r3",
93
+ "r4",
94
+ "r5",
95
+ "r6",
96
+ "r7",
97
+ };
98
+ return names[index];
99
+ }
100
+
101
+ static Register from_code(int code) {
102
+ Register r = { code };
103
+ return r;
104
+ }
105
+
106
+ bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
107
+ bool is(Register reg) const { return code_ == reg.code_; }
108
+ int code() const {
109
+ ASSERT(is_valid());
110
+ return code_;
111
+ }
112
+ int bit() const {
113
+ ASSERT(is_valid());
114
+ return 1 << code_;
115
+ }
116
+
117
+ void set_code(int code) {
118
+ code_ = code;
119
+ ASSERT(is_valid());
120
+ }
121
+
122
+ // Unfortunately we can't make this private in a struct.
123
+ int code_;
124
+ };
125
+
126
+ const Register no_reg = { -1 };
127
+
128
+ const Register r0 = { 0 };
129
+ const Register r1 = { 1 };
130
+ const Register r2 = { 2 };
131
+ const Register r3 = { 3 };
132
+ const Register r4 = { 4 };
133
+ const Register r5 = { 5 };
134
+ const Register r6 = { 6 };
135
+ const Register r7 = { 7 };
136
+ const Register r8 = { 8 }; // Used as context register.
137
+ const Register r9 = { 9 }; // Used as lithium codegen scratch register.
138
+ const Register r10 = { 10 }; // Used as roots register.
139
+ const Register fp = { 11 };
140
+ const Register ip = { 12 };
141
+ const Register sp = { 13 };
142
+ const Register lr = { 14 };
143
+ const Register pc = { 15 };
144
+
145
+ // Single word VFP register.
146
+ struct SwVfpRegister {
147
+ bool is_valid() const { return 0 <= code_ && code_ < 32; }
148
+ bool is(SwVfpRegister reg) const { return code_ == reg.code_; }
149
+ int code() const {
150
+ ASSERT(is_valid());
151
+ return code_;
152
+ }
153
+ int bit() const {
154
+ ASSERT(is_valid());
155
+ return 1 << code_;
156
+ }
157
+ void split_code(int* vm, int* m) const {
158
+ ASSERT(is_valid());
159
+ *m = code_ & 0x1;
160
+ *vm = code_ >> 1;
161
+ }
162
+
163
+ int code_;
164
+ };
165
+
166
+
167
+ // Double word VFP register.
168
+ struct DwVfpRegister {
169
+ // d0 has been excluded from allocation. This is following ia32
170
+ // where xmm0 is excluded. This should be revisited.
171
+ // Currently d0 is used as a scratch register.
172
+ // d1 has also been excluded from allocation to be used as a scratch
173
+ // register as well.
174
+ static const int kNumRegisters = 16;
175
+ static const int kNumAllocatableRegisters = 15;
176
+
177
+ static int ToAllocationIndex(DwVfpRegister reg) {
178
+ ASSERT(reg.code() != 0);
179
+ return reg.code() - 1;
180
+ }
181
+
182
+ static DwVfpRegister FromAllocationIndex(int index) {
183
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
184
+ return from_code(index + 1);
185
+ }
186
+
187
+ static const char* AllocationIndexToString(int index) {
188
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
189
+ const char* const names[] = {
190
+ "d1",
191
+ "d2",
192
+ "d3",
193
+ "d4",
194
+ "d5",
195
+ "d6",
196
+ "d7",
197
+ "d8",
198
+ "d9",
199
+ "d10",
200
+ "d11",
201
+ "d12",
202
+ "d13",
203
+ "d14",
204
+ "d15"
205
+ };
206
+ return names[index];
207
+ }
208
+
209
+ static DwVfpRegister from_code(int code) {
210
+ DwVfpRegister r = { code };
211
+ return r;
212
+ }
213
+
214
+ // Supporting d0 to d15, can be later extended to d31.
215
+ bool is_valid() const { return 0 <= code_ && code_ < 16; }
216
+ bool is(DwVfpRegister reg) const { return code_ == reg.code_; }
217
+ SwVfpRegister low() const {
218
+ SwVfpRegister reg;
219
+ reg.code_ = code_ * 2;
220
+
221
+ ASSERT(reg.is_valid());
222
+ return reg;
223
+ }
224
+ SwVfpRegister high() const {
225
+ SwVfpRegister reg;
226
+ reg.code_ = (code_ * 2) + 1;
227
+
228
+ ASSERT(reg.is_valid());
229
+ return reg;
230
+ }
231
+ int code() const {
232
+ ASSERT(is_valid());
233
+ return code_;
234
+ }
235
+ int bit() const {
236
+ ASSERT(is_valid());
237
+ return 1 << code_;
238
+ }
239
+ void split_code(int* vm, int* m) const {
240
+ ASSERT(is_valid());
241
+ *m = (code_ & 0x10) >> 4;
242
+ *vm = code_ & 0x0F;
243
+ }
244
+
245
+ int code_;
246
+ };
247
+
248
+
249
+ typedef DwVfpRegister DoubleRegister;
250
+
251
+
252
+ // Support for the VFP registers s0 to s31 (d0 to d15).
253
+ // Note that "s(N):s(N+1)" is the same as "d(N/2)".
254
+ const SwVfpRegister s0 = { 0 };
255
+ const SwVfpRegister s1 = { 1 };
256
+ const SwVfpRegister s2 = { 2 };
257
+ const SwVfpRegister s3 = { 3 };
258
+ const SwVfpRegister s4 = { 4 };
259
+ const SwVfpRegister s5 = { 5 };
260
+ const SwVfpRegister s6 = { 6 };
261
+ const SwVfpRegister s7 = { 7 };
262
+ const SwVfpRegister s8 = { 8 };
263
+ const SwVfpRegister s9 = { 9 };
264
+ const SwVfpRegister s10 = { 10 };
265
+ const SwVfpRegister s11 = { 11 };
266
+ const SwVfpRegister s12 = { 12 };
267
+ const SwVfpRegister s13 = { 13 };
268
+ const SwVfpRegister s14 = { 14 };
269
+ const SwVfpRegister s15 = { 15 };
270
+ const SwVfpRegister s16 = { 16 };
271
+ const SwVfpRegister s17 = { 17 };
272
+ const SwVfpRegister s18 = { 18 };
273
+ const SwVfpRegister s19 = { 19 };
274
+ const SwVfpRegister s20 = { 20 };
275
+ const SwVfpRegister s21 = { 21 };
276
+ const SwVfpRegister s22 = { 22 };
277
+ const SwVfpRegister s23 = { 23 };
278
+ const SwVfpRegister s24 = { 24 };
279
+ const SwVfpRegister s25 = { 25 };
280
+ const SwVfpRegister s26 = { 26 };
281
+ const SwVfpRegister s27 = { 27 };
282
+ const SwVfpRegister s28 = { 28 };
283
+ const SwVfpRegister s29 = { 29 };
284
+ const SwVfpRegister s30 = { 30 };
285
+ const SwVfpRegister s31 = { 31 };
286
+
287
+ const DwVfpRegister no_dreg = { -1 };
288
+ const DwVfpRegister d0 = { 0 };
289
+ const DwVfpRegister d1 = { 1 };
290
+ const DwVfpRegister d2 = { 2 };
291
+ const DwVfpRegister d3 = { 3 };
292
+ const DwVfpRegister d4 = { 4 };
293
+ const DwVfpRegister d5 = { 5 };
294
+ const DwVfpRegister d6 = { 6 };
295
+ const DwVfpRegister d7 = { 7 };
296
+ const DwVfpRegister d8 = { 8 };
297
+ const DwVfpRegister d9 = { 9 };
298
+ const DwVfpRegister d10 = { 10 };
299
+ const DwVfpRegister d11 = { 11 };
300
+ const DwVfpRegister d12 = { 12 };
301
+ const DwVfpRegister d13 = { 13 };
302
+ const DwVfpRegister d14 = { 14 };
303
+ const DwVfpRegister d15 = { 15 };
304
+
305
+
306
+ // Coprocessor register
307
+ struct CRegister {
308
+ bool is_valid() const { return 0 <= code_ && code_ < 16; }
309
+ bool is(CRegister creg) const { return code_ == creg.code_; }
310
+ int code() const {
311
+ ASSERT(is_valid());
312
+ return code_;
313
+ }
314
+ int bit() const {
315
+ ASSERT(is_valid());
316
+ return 1 << code_;
317
+ }
318
+
319
+ // Unfortunately we can't make this private in a struct.
320
+ int code_;
321
+ };
322
+
323
+
324
+ const CRegister no_creg = { -1 };
325
+
326
+ const CRegister cr0 = { 0 };
327
+ const CRegister cr1 = { 1 };
328
+ const CRegister cr2 = { 2 };
329
+ const CRegister cr3 = { 3 };
330
+ const CRegister cr4 = { 4 };
331
+ const CRegister cr5 = { 5 };
332
+ const CRegister cr6 = { 6 };
333
+ const CRegister cr7 = { 7 };
334
+ const CRegister cr8 = { 8 };
335
+ const CRegister cr9 = { 9 };
336
+ const CRegister cr10 = { 10 };
337
+ const CRegister cr11 = { 11 };
338
+ const CRegister cr12 = { 12 };
339
+ const CRegister cr13 = { 13 };
340
+ const CRegister cr14 = { 14 };
341
+ const CRegister cr15 = { 15 };
342
+
343
+
344
+ // Coprocessor number
345
+ enum Coprocessor {
346
+ p0 = 0,
347
+ p1 = 1,
348
+ p2 = 2,
349
+ p3 = 3,
350
+ p4 = 4,
351
+ p5 = 5,
352
+ p6 = 6,
353
+ p7 = 7,
354
+ p8 = 8,
355
+ p9 = 9,
356
+ p10 = 10,
357
+ p11 = 11,
358
+ p12 = 12,
359
+ p13 = 13,
360
+ p14 = 14,
361
+ p15 = 15
362
+ };
363
+
364
+
365
+ // -----------------------------------------------------------------------------
366
+ // Machine instruction Operands
367
+
368
+ // Class Operand represents a shifter operand in data processing instructions
369
+ class Operand BASE_EMBEDDED {
370
+ public:
371
+ // immediate
372
+ INLINE(explicit Operand(int32_t immediate,
373
+ RelocInfo::Mode rmode = RelocInfo::NONE));
374
+ INLINE(explicit Operand(const ExternalReference& f));
375
+ INLINE(explicit Operand(const char* s));
376
+ explicit Operand(Handle<Object> handle);
377
+ INLINE(explicit Operand(Smi* value));
378
+
379
+ // rm
380
+ INLINE(explicit Operand(Register rm));
381
+
382
+ // rm <shift_op> shift_imm
383
+ explicit Operand(Register rm, ShiftOp shift_op, int shift_imm);
384
+
385
+ // rm <shift_op> rs
386
+ explicit Operand(Register rm, ShiftOp shift_op, Register rs);
387
+
388
+ // Return true if this is a register operand.
389
+ INLINE(bool is_reg() const);
390
+
391
+ // Return true if this operand fits in one instruction so that no
392
+ // 2-instruction solution with a load into the ip register is necessary. If
393
+ // the instruction this operand is used for is a MOV or MVN instruction the
394
+ // actual instruction to use is required for this calculation. For other
395
+ // instructions instr is ignored.
396
+ bool is_single_instruction(Instr instr = 0) const;
397
+ bool must_use_constant_pool() const;
398
+
399
+ inline int32_t immediate() const {
400
+ ASSERT(!rm_.is_valid());
401
+ return imm32_;
402
+ }
403
+
404
+ Register rm() const { return rm_; }
405
+ Register rs() const { return rs_; }
406
+ ShiftOp shift_op() const { return shift_op_; }
407
+
408
+ private:
409
+ Register rm_;
410
+ Register rs_;
411
+ ShiftOp shift_op_;
412
+ int shift_imm_; // valid if rm_ != no_reg && rs_ == no_reg
413
+ int32_t imm32_; // valid if rm_ == no_reg
414
+ RelocInfo::Mode rmode_;
415
+
416
+ friend class Assembler;
417
+ };
418
+
419
+
420
+ // Class MemOperand represents a memory operand in load and store instructions
421
+ class MemOperand BASE_EMBEDDED {
422
+ public:
423
+ // [rn +/- offset] Offset/NegOffset
424
+ // [rn +/- offset]! PreIndex/NegPreIndex
425
+ // [rn], +/- offset PostIndex/NegPostIndex
426
+ // offset is any signed 32-bit value; offset is first loaded to register ip if
427
+ // it does not fit the addressing mode (12-bit unsigned and sign bit)
428
+ explicit MemOperand(Register rn, int32_t offset = 0, AddrMode am = Offset);
429
+
430
+ // [rn +/- rm] Offset/NegOffset
431
+ // [rn +/- rm]! PreIndex/NegPreIndex
432
+ // [rn], +/- rm PostIndex/NegPostIndex
433
+ explicit MemOperand(Register rn, Register rm, AddrMode am = Offset);
434
+
435
+ // [rn +/- rm <shift_op> shift_imm] Offset/NegOffset
436
+ // [rn +/- rm <shift_op> shift_imm]! PreIndex/NegPreIndex
437
+ // [rn], +/- rm <shift_op> shift_imm PostIndex/NegPostIndex
438
+ explicit MemOperand(Register rn, Register rm,
439
+ ShiftOp shift_op, int shift_imm, AddrMode am = Offset);
440
+
441
+ void set_offset(int32_t offset) {
442
+ ASSERT(rm_.is(no_reg));
443
+ offset_ = offset;
444
+ }
445
+
446
+ uint32_t offset() const {
447
+ ASSERT(rm_.is(no_reg));
448
+ return offset_;
449
+ }
450
+
451
+ Register rn() const { return rn_; }
452
+ Register rm() const { return rm_; }
453
+
454
+ bool OffsetIsUint12Encodable() const {
455
+ return offset_ >= 0 ? is_uint12(offset_) : is_uint12(-offset_);
456
+ }
457
+
458
+ private:
459
+ Register rn_; // base
460
+ Register rm_; // register offset
461
+ int32_t offset_; // valid if rm_ == no_reg
462
+ ShiftOp shift_op_;
463
+ int shift_imm_; // valid if rm_ != no_reg && rs_ == no_reg
464
+ AddrMode am_; // bits P, U, and W
465
+
466
+ friend class Assembler;
467
+ };
468
+
469
+ // CpuFeatures keeps track of which features are supported by the target CPU.
470
+ // Supported features must be enabled by a Scope before use.
471
+ class CpuFeatures : public AllStatic {
472
+ public:
473
+ // Detect features of the target CPU. Set safe defaults if the serializer
474
+ // is enabled (snapshots must be portable).
475
+ static void Probe();
476
+
477
+ // Check whether a feature is supported by the target CPU.
478
+ static bool IsSupported(CpuFeature f) {
479
+ ASSERT(initialized_);
480
+ if (f == VFP3 && !FLAG_enable_vfp3) return false;
481
+ return (supported_ & (1u << f)) != 0;
482
+ }
483
+
484
+ #ifdef DEBUG
485
+ // Check whether a feature is currently enabled.
486
+ static bool IsEnabled(CpuFeature f) {
487
+ ASSERT(initialized_);
488
+ Isolate* isolate = Isolate::UncheckedCurrent();
489
+ if (isolate == NULL) {
490
+ // When no isolate is available, work as if we're running in
491
+ // release mode.
492
+ return IsSupported(f);
493
+ }
494
+ unsigned enabled = static_cast<unsigned>(isolate->enabled_cpu_features());
495
+ return (enabled & (1u << f)) != 0;
496
+ }
497
+ #endif
498
+
499
+ // Enable a specified feature within a scope.
500
+ class Scope BASE_EMBEDDED {
501
+ #ifdef DEBUG
502
+ public:
503
+ explicit Scope(CpuFeature f) {
504
+ unsigned mask = 1u << f;
505
+ ASSERT(CpuFeatures::IsSupported(f));
506
+ ASSERT(!Serializer::enabled() ||
507
+ (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
508
+ isolate_ = Isolate::UncheckedCurrent();
509
+ old_enabled_ = 0;
510
+ if (isolate_ != NULL) {
511
+ old_enabled_ = static_cast<unsigned>(isolate_->enabled_cpu_features());
512
+ isolate_->set_enabled_cpu_features(old_enabled_ | mask);
513
+ }
514
+ }
515
+ ~Scope() {
516
+ ASSERT_EQ(Isolate::UncheckedCurrent(), isolate_);
517
+ if (isolate_ != NULL) {
518
+ isolate_->set_enabled_cpu_features(old_enabled_);
519
+ }
520
+ }
521
+ private:
522
+ Isolate* isolate_;
523
+ unsigned old_enabled_;
524
+ #else
525
+ public:
526
+ explicit Scope(CpuFeature f) {}
527
+ #endif
528
+ };
529
+
530
+ class TryForceFeatureScope BASE_EMBEDDED {
531
+ public:
532
+ explicit TryForceFeatureScope(CpuFeature f)
533
+ : old_supported_(CpuFeatures::supported_) {
534
+ if (CanForce()) {
535
+ CpuFeatures::supported_ |= (1u << f);
536
+ }
537
+ }
538
+
539
+ ~TryForceFeatureScope() {
540
+ if (CanForce()) {
541
+ CpuFeatures::supported_ = old_supported_;
542
+ }
543
+ }
544
+
545
+ private:
546
+ static bool CanForce() {
547
+ // It's only safe to temporarily force support of CPU features
548
+ // when there's only a single isolate, which is guaranteed when
549
+ // the serializer is enabled.
550
+ return Serializer::enabled();
551
+ }
552
+
553
+ const unsigned old_supported_;
554
+ };
555
+
556
+ private:
557
+ #ifdef DEBUG
558
+ static bool initialized_;
559
+ #endif
560
+ static unsigned supported_;
561
+ static unsigned found_by_runtime_probing_;
562
+
563
+ DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
564
+ };
565
+
566
+
567
+ extern const Instr kMovLrPc;
568
+ extern const Instr kLdrPCMask;
569
+ extern const Instr kLdrPCPattern;
570
+ extern const Instr kBlxRegMask;
571
+ extern const Instr kBlxRegPattern;
572
+
573
+ extern const Instr kMovMvnMask;
574
+ extern const Instr kMovMvnPattern;
575
+ extern const Instr kMovMvnFlip;
576
+
577
+ extern const Instr kMovLeaveCCMask;
578
+ extern const Instr kMovLeaveCCPattern;
579
+ extern const Instr kMovwMask;
580
+ extern const Instr kMovwPattern;
581
+ extern const Instr kMovwLeaveCCFlip;
582
+
583
+ extern const Instr kCmpCmnMask;
584
+ extern const Instr kCmpCmnPattern;
585
+ extern const Instr kCmpCmnFlip;
586
+ extern const Instr kAddSubFlip;
587
+ extern const Instr kAndBicFlip;
588
+
589
+
590
+
591
+ class Assembler : public AssemblerBase {
592
+ public:
593
+ // Create an assembler. Instructions and relocation information are emitted
594
+ // into a buffer, with the instructions starting from the beginning and the
595
+ // relocation information starting from the end of the buffer. See CodeDesc
596
+ // for a detailed comment on the layout (globals.h).
597
+ //
598
+ // If the provided buffer is NULL, the assembler allocates and grows its own
599
+ // buffer, and buffer_size determines the initial buffer size. The buffer is
600
+ // owned by the assembler and deallocated upon destruction of the assembler.
601
+ //
602
+ // If the provided buffer is not NULL, the assembler uses the provided buffer
603
+ // for code generation and assumes its size to be buffer_size. If the buffer
604
+ // is too small, a fatal error occurs. No deallocation of the buffer is done
605
+ // upon destruction of the assembler.
606
+ Assembler(Isolate* isolate, void* buffer, int buffer_size);
607
+ ~Assembler();
608
+
609
+ // Overrides the default provided by FLAG_debug_code.
610
+ void set_emit_debug_code(bool value) { emit_debug_code_ = value; }
611
+
612
+ // GetCode emits any pending (non-emitted) code and fills the descriptor
613
+ // desc. GetCode() is idempotent; it returns the same result if no other
614
+ // Assembler functions are invoked in between GetCode() calls.
615
+ void GetCode(CodeDesc* desc);
616
+
617
+ // Label operations & relative jumps (PPUM Appendix D)
618
+ //
619
+ // Takes a branch opcode (cc) and a label (L) and generates
620
+ // either a backward branch or a forward branch and links it
621
+ // to the label fixup chain. Usage:
622
+ //
623
+ // Label L; // unbound label
624
+ // j(cc, &L); // forward branch to unbound label
625
+ // bind(&L); // bind label to the current pc
626
+ // j(cc, &L); // backward branch to bound label
627
+ // bind(&L); // illegal: a label may be bound only once
628
+ //
629
+ // Note: The same Label can be used for forward and backward branches
630
+ // but it may be bound only once.
631
+
632
+ void bind(Label* L); // binds an unbound label L to the current code position
633
+
634
+ // Returns the branch offset to the given label from the current code position
635
+ // Links the label to the current position if it is still unbound
636
+ // Manages the jump elimination optimization if the second parameter is true.
637
+ int branch_offset(Label* L, bool jump_elimination_allowed);
638
+
639
+ // Puts a labels target address at the given position.
640
+ // The high 8 bits are set to zero.
641
+ void label_at_put(Label* L, int at_offset);
642
+
643
+ // Return the address in the constant pool of the code target address used by
644
+ // the branch/call instruction at pc.
645
+ INLINE(static Address target_address_address_at(Address pc));
646
+
647
+ // Read/Modify the code target address in the branch/call instruction at pc.
648
+ INLINE(static Address target_address_at(Address pc));
649
+ INLINE(static void set_target_address_at(Address pc, Address target));
650
+
651
+ // This sets the branch destination (which is in the constant pool on ARM).
652
+ // This is for calls and branches within generated code.
653
+ inline static void set_target_at(Address constant_pool_entry, Address target);
654
+
655
+ // This sets the branch destination (which is in the constant pool on ARM).
656
+ // This is for calls and branches to runtime code.
657
+ inline static void set_external_target_at(Address constant_pool_entry,
658
+ Address target) {
659
+ set_target_at(constant_pool_entry, target);
660
+ }
661
+
662
+ // Here we are patching the address in the constant pool, not the actual call
663
+ // instruction. The address in the constant pool is the same size as a
664
+ // pointer.
665
+ static const int kCallTargetSize = kPointerSize;
666
+ static const int kExternalTargetSize = kPointerSize;
667
+
668
+ // Size of an instruction.
669
+ static const int kInstrSize = sizeof(Instr);
670
+
671
+ // Distance between the instruction referring to the address of the call
672
+ // target and the return address.
673
+ #ifdef USE_BLX
674
+ // Call sequence is:
675
+ // ldr ip, [pc, #...] @ call address
676
+ // blx ip
677
+ // @ return address
678
+ static const int kCallTargetAddressOffset = 2 * kInstrSize;
679
+ #else
680
+ // Call sequence is:
681
+ // mov lr, pc
682
+ // ldr pc, [pc, #...] @ call address
683
+ // @ return address
684
+ static const int kCallTargetAddressOffset = kInstrSize;
685
+ #endif
686
+
687
+ // Distance between start of patched return sequence and the emitted address
688
+ // to jump to.
689
+ #ifdef USE_BLX
690
+ // Patched return sequence is:
691
+ // ldr ip, [pc, #0] @ emited address and start
692
+ // blx ip
693
+ static const int kPatchReturnSequenceAddressOffset = 0 * kInstrSize;
694
+ #else
695
+ // Patched return sequence is:
696
+ // mov lr, pc @ start of sequence
697
+ // ldr pc, [pc, #-4] @ emited address
698
+ static const int kPatchReturnSequenceAddressOffset = kInstrSize;
699
+ #endif
700
+
701
+ // Distance between start of patched debug break slot and the emitted address
702
+ // to jump to.
703
+ #ifdef USE_BLX
704
+ // Patched debug break slot code is:
705
+ // ldr ip, [pc, #0] @ emited address and start
706
+ // blx ip
707
+ static const int kPatchDebugBreakSlotAddressOffset = 0 * kInstrSize;
708
+ #else
709
+ // Patched debug break slot code is:
710
+ // mov lr, pc @ start of sequence
711
+ // ldr pc, [pc, #-4] @ emited address
712
+ static const int kPatchDebugBreakSlotAddressOffset = kInstrSize;
713
+ #endif
714
+
715
+ // Difference between address of current opcode and value read from pc
716
+ // register.
717
+ static const int kPcLoadDelta = 8;
718
+
719
+ static const int kJSReturnSequenceInstructions = 4;
720
+ static const int kDebugBreakSlotInstructions = 3;
721
+ static const int kDebugBreakSlotLength =
722
+ kDebugBreakSlotInstructions * kInstrSize;
723
+
724
+ // ---------------------------------------------------------------------------
725
+ // Code generation
726
+
727
+ // Insert the smallest number of nop instructions
728
+ // possible to align the pc offset to a multiple
729
+ // of m. m must be a power of 2 (>= 4).
730
+ void Align(int m);
731
+ // Aligns code to something that's optimal for a jump target for the platform.
732
+ void CodeTargetAlign();
733
+
734
+ // Branch instructions
735
+ void b(int branch_offset, Condition cond = al);
736
+ void bl(int branch_offset, Condition cond = al);
737
+ void blx(int branch_offset); // v5 and above
738
+ void blx(Register target, Condition cond = al); // v5 and above
739
+ void bx(Register target, Condition cond = al); // v5 and above, plus v4t
740
+
741
+ // Convenience branch instructions using labels
742
+ void b(Label* L, Condition cond = al) {
743
+ b(branch_offset(L, cond == al), cond);
744
+ }
745
+ void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); }
746
+ void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
747
+ void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); }
748
+ void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above
749
+
750
+ // Data-processing instructions
751
+
752
+ void and_(Register dst, Register src1, const Operand& src2,
753
+ SBit s = LeaveCC, Condition cond = al);
754
+
755
+ void eor(Register dst, Register src1, const Operand& src2,
756
+ SBit s = LeaveCC, Condition cond = al);
757
+
758
+ void sub(Register dst, Register src1, const Operand& src2,
759
+ SBit s = LeaveCC, Condition cond = al);
760
+ void sub(Register dst, Register src1, Register src2,
761
+ SBit s = LeaveCC, Condition cond = al) {
762
+ sub(dst, src1, Operand(src2), s, cond);
763
+ }
764
+
765
+ void rsb(Register dst, Register src1, const Operand& src2,
766
+ SBit s = LeaveCC, Condition cond = al);
767
+
768
+ void add(Register dst, Register src1, const Operand& src2,
769
+ SBit s = LeaveCC, Condition cond = al);
770
+ void add(Register dst, Register src1, Register src2,
771
+ SBit s = LeaveCC, Condition cond = al) {
772
+ add(dst, src1, Operand(src2), s, cond);
773
+ }
774
+
775
+ void adc(Register dst, Register src1, const Operand& src2,
776
+ SBit s = LeaveCC, Condition cond = al);
777
+
778
+ void sbc(Register dst, Register src1, const Operand& src2,
779
+ SBit s = LeaveCC, Condition cond = al);
780
+
781
+ void rsc(Register dst, Register src1, const Operand& src2,
782
+ SBit s = LeaveCC, Condition cond = al);
783
+
784
+ void tst(Register src1, const Operand& src2, Condition cond = al);
785
+ void tst(Register src1, Register src2, Condition cond = al) {
786
+ tst(src1, Operand(src2), cond);
787
+ }
788
+
789
+ void teq(Register src1, const Operand& src2, Condition cond = al);
790
+
791
+ void cmp(Register src1, const Operand& src2, Condition cond = al);
792
+ void cmp(Register src1, Register src2, Condition cond = al) {
793
+ cmp(src1, Operand(src2), cond);
794
+ }
795
+ void cmp_raw_immediate(Register src1, int raw_immediate, Condition cond = al);
796
+
797
+ void cmn(Register src1, const Operand& src2, Condition cond = al);
798
+
799
+ void orr(Register dst, Register src1, const Operand& src2,
800
+ SBit s = LeaveCC, Condition cond = al);
801
+ void orr(Register dst, Register src1, Register src2,
802
+ SBit s = LeaveCC, Condition cond = al) {
803
+ orr(dst, src1, Operand(src2), s, cond);
804
+ }
805
+
806
+ void mov(Register dst, const Operand& src,
807
+ SBit s = LeaveCC, Condition cond = al);
808
+ void mov(Register dst, Register src, SBit s = LeaveCC, Condition cond = al) {
809
+ mov(dst, Operand(src), s, cond);
810
+ }
811
+
812
+ // ARMv7 instructions for loading a 32 bit immediate in two instructions.
813
+ // This may actually emit a different mov instruction, but on an ARMv7 it
814
+ // is guaranteed to only emit one instruction.
815
+ void movw(Register reg, uint32_t immediate, Condition cond = al);
816
+ // The constant for movt should be in the range 0-0xffff.
817
+ void movt(Register reg, uint32_t immediate, Condition cond = al);
818
+
819
+ void bic(Register dst, Register src1, const Operand& src2,
820
+ SBit s = LeaveCC, Condition cond = al);
821
+
822
+ void mvn(Register dst, const Operand& src,
823
+ SBit s = LeaveCC, Condition cond = al);
824
+
825
+ // Multiply instructions
826
+
827
+ void mla(Register dst, Register src1, Register src2, Register srcA,
828
+ SBit s = LeaveCC, Condition cond = al);
829
+
830
+ void mul(Register dst, Register src1, Register src2,
831
+ SBit s = LeaveCC, Condition cond = al);
832
+
833
+ void smlal(Register dstL, Register dstH, Register src1, Register src2,
834
+ SBit s = LeaveCC, Condition cond = al);
835
+
836
+ void smull(Register dstL, Register dstH, Register src1, Register src2,
837
+ SBit s = LeaveCC, Condition cond = al);
838
+
839
+ void umlal(Register dstL, Register dstH, Register src1, Register src2,
840
+ SBit s = LeaveCC, Condition cond = al);
841
+
842
+ void umull(Register dstL, Register dstH, Register src1, Register src2,
843
+ SBit s = LeaveCC, Condition cond = al);
844
+
845
+ // Miscellaneous arithmetic instructions
846
+
847
+ void clz(Register dst, Register src, Condition cond = al); // v5 and above
848
+
849
+ // Saturating instructions. v6 and above.
850
+
851
+ // Unsigned saturate.
852
+ //
853
+ // Saturate an optionally shifted signed value to an unsigned range.
854
+ //
855
+ // usat dst, #satpos, src
856
+ // usat dst, #satpos, src, lsl #sh
857
+ // usat dst, #satpos, src, asr #sh
858
+ //
859
+ // Register dst will contain:
860
+ //
861
+ // 0, if s < 0
862
+ // (1 << satpos) - 1, if s > ((1 << satpos) - 1)
863
+ // s, otherwise
864
+ //
865
+ // where s is the contents of src after shifting (if used.)
866
+ void usat(Register dst, int satpos, const Operand& src, Condition cond = al);
867
+
868
+ // Bitfield manipulation instructions. v7 and above.
869
+
870
+ void ubfx(Register dst, Register src, int lsb, int width,
871
+ Condition cond = al);
872
+
873
+ void sbfx(Register dst, Register src, int lsb, int width,
874
+ Condition cond = al);
875
+
876
+ void bfc(Register dst, int lsb, int width, Condition cond = al);
877
+
878
+ void bfi(Register dst, Register src, int lsb, int width,
879
+ Condition cond = al);
880
+
881
+ // Status register access instructions
882
+
883
+ void mrs(Register dst, SRegister s, Condition cond = al);
884
+ void msr(SRegisterFieldMask fields, const Operand& src, Condition cond = al);
885
+
886
+ // Load/Store instructions
887
+ void ldr(Register dst, const MemOperand& src, Condition cond = al);
888
+ void str(Register src, const MemOperand& dst, Condition cond = al);
889
+ void ldrb(Register dst, const MemOperand& src, Condition cond = al);
890
+ void strb(Register src, const MemOperand& dst, Condition cond = al);
891
+ void ldrh(Register dst, const MemOperand& src, Condition cond = al);
892
+ void strh(Register src, const MemOperand& dst, Condition cond = al);
893
+ void ldrsb(Register dst, const MemOperand& src, Condition cond = al);
894
+ void ldrsh(Register dst, const MemOperand& src, Condition cond = al);
895
+ void ldrd(Register dst1,
896
+ Register dst2,
897
+ const MemOperand& src, Condition cond = al);
898
+ void strd(Register src1,
899
+ Register src2,
900
+ const MemOperand& dst, Condition cond = al);
901
+
902
+ // Load/Store multiple instructions
903
+ void ldm(BlockAddrMode am, Register base, RegList dst, Condition cond = al);
904
+ void stm(BlockAddrMode am, Register base, RegList src, Condition cond = al);
905
+
906
+ // Exception-generating instructions and debugging support
907
+ void stop(const char* msg,
908
+ Condition cond = al,
909
+ int32_t code = kDefaultStopCode);
910
+
911
+ void bkpt(uint32_t imm16); // v5 and above
912
+ void svc(uint32_t imm24, Condition cond = al);
913
+
914
+ // Coprocessor instructions
915
+
916
+ void cdp(Coprocessor coproc, int opcode_1,
917
+ CRegister crd, CRegister crn, CRegister crm,
918
+ int opcode_2, Condition cond = al);
919
+
920
+ void cdp2(Coprocessor coproc, int opcode_1,
921
+ CRegister crd, CRegister crn, CRegister crm,
922
+ int opcode_2); // v5 and above
923
+
924
+ void mcr(Coprocessor coproc, int opcode_1,
925
+ Register rd, CRegister crn, CRegister crm,
926
+ int opcode_2 = 0, Condition cond = al);
927
+
928
+ void mcr2(Coprocessor coproc, int opcode_1,
929
+ Register rd, CRegister crn, CRegister crm,
930
+ int opcode_2 = 0); // v5 and above
931
+
932
+ void mrc(Coprocessor coproc, int opcode_1,
933
+ Register rd, CRegister crn, CRegister crm,
934
+ int opcode_2 = 0, Condition cond = al);
935
+
936
+ void mrc2(Coprocessor coproc, int opcode_1,
937
+ Register rd, CRegister crn, CRegister crm,
938
+ int opcode_2 = 0); // v5 and above
939
+
940
+ void ldc(Coprocessor coproc, CRegister crd, const MemOperand& src,
941
+ LFlag l = Short, Condition cond = al);
942
+ void ldc(Coprocessor coproc, CRegister crd, Register base, int option,
943
+ LFlag l = Short, Condition cond = al);
944
+
945
+ void ldc2(Coprocessor coproc, CRegister crd, const MemOperand& src,
946
+ LFlag l = Short); // v5 and above
947
+ void ldc2(Coprocessor coproc, CRegister crd, Register base, int option,
948
+ LFlag l = Short); // v5 and above
949
+
950
+ void stc(Coprocessor coproc, CRegister crd, const MemOperand& dst,
951
+ LFlag l = Short, Condition cond = al);
952
+ void stc(Coprocessor coproc, CRegister crd, Register base, int option,
953
+ LFlag l = Short, Condition cond = al);
954
+
955
+ void stc2(Coprocessor coproc, CRegister crd, const MemOperand& dst,
956
+ LFlag l = Short); // v5 and above
957
+ void stc2(Coprocessor coproc, CRegister crd, Register base, int option,
958
+ LFlag l = Short); // v5 and above
959
+
960
+ // Support for VFP.
961
+ // All these APIs support S0 to S31 and D0 to D15.
962
+ // Currently these APIs do not support extended D registers, i.e, D16 to D31.
963
+ // However, some simple modifications can allow
964
+ // these APIs to support D16 to D31.
965
+
966
+ void vldr(const DwVfpRegister dst,
967
+ const Register base,
968
+ int offset,
969
+ const Condition cond = al);
970
+ void vldr(const DwVfpRegister dst,
971
+ const MemOperand& src,
972
+ const Condition cond = al);
973
+
974
+ void vldr(const SwVfpRegister dst,
975
+ const Register base,
976
+ int offset,
977
+ const Condition cond = al);
978
+ void vldr(const SwVfpRegister dst,
979
+ const MemOperand& src,
980
+ const Condition cond = al);
981
+
982
+ void vstr(const DwVfpRegister src,
983
+ const Register base,
984
+ int offset,
985
+ const Condition cond = al);
986
+ void vstr(const DwVfpRegister src,
987
+ const MemOperand& dst,
988
+ const Condition cond = al);
989
+
990
+ void vstr(const SwVfpRegister src,
991
+ const Register base,
992
+ int offset,
993
+ const Condition cond = al);
994
+ void vstr(const SwVfpRegister src,
995
+ const MemOperand& dst,
996
+ const Condition cond = al);
997
+
998
+ void vldm(BlockAddrMode am,
999
+ Register base,
1000
+ DwVfpRegister first,
1001
+ DwVfpRegister last,
1002
+ Condition cond = al);
1003
+
1004
+ void vstm(BlockAddrMode am,
1005
+ Register base,
1006
+ DwVfpRegister first,
1007
+ DwVfpRegister last,
1008
+ Condition cond = al);
1009
+
1010
+ void vldm(BlockAddrMode am,
1011
+ Register base,
1012
+ SwVfpRegister first,
1013
+ SwVfpRegister last,
1014
+ Condition cond = al);
1015
+
1016
+ void vstm(BlockAddrMode am,
1017
+ Register base,
1018
+ SwVfpRegister first,
1019
+ SwVfpRegister last,
1020
+ Condition cond = al);
1021
+
1022
+ void vmov(const DwVfpRegister dst,
1023
+ double imm,
1024
+ const Condition cond = al);
1025
+ void vmov(const SwVfpRegister dst,
1026
+ const SwVfpRegister src,
1027
+ const Condition cond = al);
1028
+ void vmov(const DwVfpRegister dst,
1029
+ const DwVfpRegister src,
1030
+ const Condition cond = al);
1031
+ void vmov(const DwVfpRegister dst,
1032
+ const Register src1,
1033
+ const Register src2,
1034
+ const Condition cond = al);
1035
+ void vmov(const Register dst1,
1036
+ const Register dst2,
1037
+ const DwVfpRegister src,
1038
+ const Condition cond = al);
1039
+ void vmov(const SwVfpRegister dst,
1040
+ const Register src,
1041
+ const Condition cond = al);
1042
+ void vmov(const Register dst,
1043
+ const SwVfpRegister src,
1044
+ const Condition cond = al);
1045
+ void vcvt_f64_s32(const DwVfpRegister dst,
1046
+ const SwVfpRegister src,
1047
+ VFPConversionMode mode = kDefaultRoundToZero,
1048
+ const Condition cond = al);
1049
+ void vcvt_f32_s32(const SwVfpRegister dst,
1050
+ const SwVfpRegister src,
1051
+ VFPConversionMode mode = kDefaultRoundToZero,
1052
+ const Condition cond = al);
1053
+ void vcvt_f64_u32(const DwVfpRegister dst,
1054
+ const SwVfpRegister src,
1055
+ VFPConversionMode mode = kDefaultRoundToZero,
1056
+ const Condition cond = al);
1057
+ void vcvt_s32_f64(const SwVfpRegister dst,
1058
+ const DwVfpRegister src,
1059
+ VFPConversionMode mode = kDefaultRoundToZero,
1060
+ const Condition cond = al);
1061
+ void vcvt_u32_f64(const SwVfpRegister dst,
1062
+ const DwVfpRegister src,
1063
+ VFPConversionMode mode = kDefaultRoundToZero,
1064
+ const Condition cond = al);
1065
+ void vcvt_f64_f32(const DwVfpRegister dst,
1066
+ const SwVfpRegister src,
1067
+ VFPConversionMode mode = kDefaultRoundToZero,
1068
+ const Condition cond = al);
1069
+ void vcvt_f32_f64(const SwVfpRegister dst,
1070
+ const DwVfpRegister src,
1071
+ VFPConversionMode mode = kDefaultRoundToZero,
1072
+ const Condition cond = al);
1073
+
1074
+ void vneg(const DwVfpRegister dst,
1075
+ const DwVfpRegister src,
1076
+ const Condition cond = al);
1077
+ void vabs(const DwVfpRegister dst,
1078
+ const DwVfpRegister src,
1079
+ const Condition cond = al);
1080
+ void vadd(const DwVfpRegister dst,
1081
+ const DwVfpRegister src1,
1082
+ const DwVfpRegister src2,
1083
+ const Condition cond = al);
1084
+ void vsub(const DwVfpRegister dst,
1085
+ const DwVfpRegister src1,
1086
+ const DwVfpRegister src2,
1087
+ const Condition cond = al);
1088
+ void vmul(const DwVfpRegister dst,
1089
+ const DwVfpRegister src1,
1090
+ const DwVfpRegister src2,
1091
+ const Condition cond = al);
1092
+ void vdiv(const DwVfpRegister dst,
1093
+ const DwVfpRegister src1,
1094
+ const DwVfpRegister src2,
1095
+ const Condition cond = al);
1096
+ void vcmp(const DwVfpRegister src1,
1097
+ const DwVfpRegister src2,
1098
+ const Condition cond = al);
1099
+ void vcmp(const DwVfpRegister src1,
1100
+ const double src2,
1101
+ const Condition cond = al);
1102
+ void vmrs(const Register dst,
1103
+ const Condition cond = al);
1104
+ void vmsr(const Register dst,
1105
+ const Condition cond = al);
1106
+ void vsqrt(const DwVfpRegister dst,
1107
+ const DwVfpRegister src,
1108
+ const Condition cond = al);
1109
+
1110
+ // Pseudo instructions
1111
+
1112
+ // Different nop operations are used by the code generator to detect certain
1113
+ // states of the generated code.
1114
+ enum NopMarkerTypes {
1115
+ NON_MARKING_NOP = 0,
1116
+ DEBUG_BREAK_NOP,
1117
+ // IC markers.
1118
+ PROPERTY_ACCESS_INLINED,
1119
+ PROPERTY_ACCESS_INLINED_CONTEXT,
1120
+ PROPERTY_ACCESS_INLINED_CONTEXT_DONT_DELETE,
1121
+ // Helper values.
1122
+ LAST_CODE_MARKER,
1123
+ FIRST_IC_MARKER = PROPERTY_ACCESS_INLINED
1124
+ };
1125
+
1126
+ void nop(int type = 0); // 0 is the default non-marking type.
1127
+
1128
+ void push(Register src, Condition cond = al) {
1129
+ str(src, MemOperand(sp, 4, NegPreIndex), cond);
1130
+ }
1131
+
1132
+ void pop(Register dst, Condition cond = al) {
1133
+ ldr(dst, MemOperand(sp, 4, PostIndex), cond);
1134
+ }
1135
+
1136
+ void pop() {
1137
+ add(sp, sp, Operand(kPointerSize));
1138
+ }
1139
+
1140
+ // Jump unconditionally to given label.
1141
+ void jmp(Label* L) { b(L, al); }
1142
+
1143
+ // Check the code size generated from label to here.
1144
+ int InstructionsGeneratedSince(Label* l) {
1145
+ return (pc_offset() - l->pos()) / kInstrSize;
1146
+ }
1147
+
1148
+ // Check whether an immediate fits an addressing mode 1 instruction.
1149
+ bool ImmediateFitsAddrMode1Instruction(int32_t imm32);
1150
+
1151
+ // Class for scoping postponing the constant pool generation.
1152
+ class BlockConstPoolScope {
1153
+ public:
1154
+ explicit BlockConstPoolScope(Assembler* assem) : assem_(assem) {
1155
+ assem_->StartBlockConstPool();
1156
+ }
1157
+ ~BlockConstPoolScope() {
1158
+ assem_->EndBlockConstPool();
1159
+ }
1160
+
1161
+ private:
1162
+ Assembler* assem_;
1163
+
1164
+ DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstPoolScope);
1165
+ };
1166
+
1167
+ // Postpone the generation of the constant pool for the specified number of
1168
+ // instructions.
1169
+ void BlockConstPoolFor(int instructions);
1170
+
1171
+ // Debugging
1172
+
1173
+ // Mark address of the ExitJSFrame code.
1174
+ void RecordJSReturn();
1175
+
1176
+ // Mark address of a debug break slot.
1177
+ void RecordDebugBreakSlot();
1178
+
1179
+ // Record a comment relocation entry that can be used by a disassembler.
1180
+ // Use --code-comments to enable.
1181
+ void RecordComment(const char* msg);
1182
+
1183
+ // Writes a single byte or word of data in the code stream. Used
1184
+ // for inline tables, e.g., jump-tables. The constant pool should be
1185
+ // emitted before any use of db and dd to ensure that constant pools
1186
+ // are not emitted as part of the tables generated.
1187
+ void db(uint8_t data);
1188
+ void dd(uint32_t data);
1189
+
1190
+ int pc_offset() const { return pc_ - buffer_; }
1191
+
1192
+ PositionsRecorder* positions_recorder() { return &positions_recorder_; }
1193
+
1194
+ bool can_peephole_optimize(int instructions) {
1195
+ if (!allow_peephole_optimization_) return false;
1196
+ if (last_bound_pos_ > pc_offset() - instructions * kInstrSize) return false;
1197
+ return reloc_info_writer.last_pc() <= pc_ - instructions * kInstrSize;
1198
+ }
1199
+
1200
+ // Read/patch instructions
1201
+ static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
1202
+ static void instr_at_put(byte* pc, Instr instr) {
1203
+ *reinterpret_cast<Instr*>(pc) = instr;
1204
+ }
1205
+ static Condition GetCondition(Instr instr);
1206
+ static bool IsBranch(Instr instr);
1207
+ static int GetBranchOffset(Instr instr);
1208
+ static bool IsLdrRegisterImmediate(Instr instr);
1209
+ static int GetLdrRegisterImmediateOffset(Instr instr);
1210
+ static Instr SetLdrRegisterImmediateOffset(Instr instr, int offset);
1211
+ static bool IsStrRegisterImmediate(Instr instr);
1212
+ static Instr SetStrRegisterImmediateOffset(Instr instr, int offset);
1213
+ static bool IsAddRegisterImmediate(Instr instr);
1214
+ static Instr SetAddRegisterImmediateOffset(Instr instr, int offset);
1215
+ static Register GetRd(Instr instr);
1216
+ static Register GetRn(Instr instr);
1217
+ static Register GetRm(Instr instr);
1218
+ static bool IsPush(Instr instr);
1219
+ static bool IsPop(Instr instr);
1220
+ static bool IsStrRegFpOffset(Instr instr);
1221
+ static bool IsLdrRegFpOffset(Instr instr);
1222
+ static bool IsStrRegFpNegOffset(Instr instr);
1223
+ static bool IsLdrRegFpNegOffset(Instr instr);
1224
+ static bool IsLdrPcImmediateOffset(Instr instr);
1225
+ static bool IsTstImmediate(Instr instr);
1226
+ static bool IsCmpRegister(Instr instr);
1227
+ static bool IsCmpImmediate(Instr instr);
1228
+ static Register GetCmpImmediateRegister(Instr instr);
1229
+ static int GetCmpImmediateRawImmediate(Instr instr);
1230
+ static bool IsNop(Instr instr, int type = NON_MARKING_NOP);
1231
+
1232
+ // Check if is time to emit a constant pool for pending reloc info entries
1233
+ void CheckConstPool(bool force_emit, bool require_jump);
1234
+
1235
+ protected:
1236
+ bool emit_debug_code() const { return emit_debug_code_; }
1237
+
1238
+ int buffer_space() const { return reloc_info_writer.pos() - pc_; }
1239
+
1240
+ // Read/patch instructions
1241
+ Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); }
1242
+ void instr_at_put(int pos, Instr instr) {
1243
+ *reinterpret_cast<Instr*>(buffer_ + pos) = instr;
1244
+ }
1245
+
1246
+ // Decode branch instruction at pos and return branch target pos
1247
+ int target_at(int pos);
1248
+
1249
+ // Patch branch instruction at pos to branch to given branch target pos
1250
+ void target_at_put(int pos, int target_pos);
1251
+
1252
+ // Block the emission of the constant pool before pc_offset
1253
+ void BlockConstPoolBefore(int pc_offset) {
1254
+ if (no_const_pool_before_ < pc_offset) no_const_pool_before_ = pc_offset;
1255
+ }
1256
+
1257
+ void StartBlockConstPool() {
1258
+ const_pool_blocked_nesting_++;
1259
+ }
1260
+ void EndBlockConstPool() {
1261
+ const_pool_blocked_nesting_--;
1262
+ }
1263
+ bool is_const_pool_blocked() const { return const_pool_blocked_nesting_ > 0; }
1264
+
1265
+ private:
1266
+ // Code buffer:
1267
+ // The buffer into which code and relocation info are generated.
1268
+ byte* buffer_;
1269
+ int buffer_size_;
1270
+ // True if the assembler owns the buffer, false if buffer is external.
1271
+ bool own_buffer_;
1272
+
1273
+ // Buffer size and constant pool distance are checked together at regular
1274
+ // intervals of kBufferCheckInterval emitted bytes
1275
+ static const int kBufferCheckInterval = 1*KB/2;
1276
+ int next_buffer_check_; // pc offset of next buffer check
1277
+
1278
+ // Code generation
1279
+ // The relocation writer's position is at least kGap bytes below the end of
1280
+ // the generated instructions. This is so that multi-instruction sequences do
1281
+ // not have to check for overflow. The same is true for writes of large
1282
+ // relocation info entries.
1283
+ static const int kGap = 32;
1284
+ byte* pc_; // the program counter; moves forward
1285
+
1286
+ // Constant pool generation
1287
+ // Pools are emitted in the instruction stream, preferably after unconditional
1288
+ // jumps or after returns from functions (in dead code locations).
1289
+ // If a long code sequence does not contain unconditional jumps, it is
1290
+ // necessary to emit the constant pool before the pool gets too far from the
1291
+ // location it is accessed from. In this case, we emit a jump over the emitted
1292
+ // constant pool.
1293
+ // Constants in the pool may be addresses of functions that gets relocated;
1294
+ // if so, a relocation info entry is associated to the constant pool entry.
1295
+
1296
+ // Repeated checking whether the constant pool should be emitted is rather
1297
+ // expensive. By default we only check again once a number of instructions
1298
+ // has been generated. That also means that the sizing of the buffers is not
1299
+ // an exact science, and that we rely on some slop to not overrun buffers.
1300
+ static const int kCheckConstIntervalInst = 32;
1301
+ static const int kCheckConstInterval = kCheckConstIntervalInst * kInstrSize;
1302
+
1303
+
1304
+ // Pools are emitted after function return and in dead code at (more or less)
1305
+ // regular intervals of kDistBetweenPools bytes
1306
+ static const int kDistBetweenPools = 1*KB;
1307
+
1308
+ // Constants in pools are accessed via pc relative addressing, which can
1309
+ // reach +/-4KB thereby defining a maximum distance between the instruction
1310
+ // and the accessed constant. We satisfy this constraint by limiting the
1311
+ // distance between pools.
1312
+ static const int kMaxDistBetweenPools = 4*KB - 2*kBufferCheckInterval;
1313
+
1314
+ // Emission of the constant pool may be blocked in some code sequences.
1315
+ int const_pool_blocked_nesting_; // Block emission if this is not zero.
1316
+ int no_const_pool_before_; // Block emission before this pc offset.
1317
+
1318
+ // Keep track of the last emitted pool to guarantee a maximal distance
1319
+ int last_const_pool_end_; // pc offset following the last constant pool
1320
+
1321
+ // Relocation info generation
1322
+ // Each relocation is encoded as a variable size value
1323
+ static const int kMaxRelocSize = RelocInfoWriter::kMaxSize;
1324
+ RelocInfoWriter reloc_info_writer;
1325
+ // Relocation info records are also used during code generation as temporary
1326
+ // containers for constants and code target addresses until they are emitted
1327
+ // to the constant pool. These pending relocation info records are temporarily
1328
+ // stored in a separate buffer until a constant pool is emitted.
1329
+ // If every instruction in a long sequence is accessing the pool, we need one
1330
+ // pending relocation entry per instruction.
1331
+ static const int kMaxNumPRInfo = kMaxDistBetweenPools/kInstrSize;
1332
+ RelocInfo prinfo_[kMaxNumPRInfo]; // the buffer of pending relocation info
1333
+ int num_prinfo_; // number of pending reloc info entries in the buffer
1334
+
1335
+ // The bound position, before this we cannot do instruction elimination.
1336
+ int last_bound_pos_;
1337
+
1338
+ // Code emission
1339
+ inline void CheckBuffer();
1340
+ void GrowBuffer();
1341
+ inline void emit(Instr x);
1342
+
1343
+ // Instruction generation
1344
+ void addrmod1(Instr instr, Register rn, Register rd, const Operand& x);
1345
+ void addrmod2(Instr instr, Register rd, const MemOperand& x);
1346
+ void addrmod3(Instr instr, Register rd, const MemOperand& x);
1347
+ void addrmod4(Instr instr, Register rn, RegList rl);
1348
+ void addrmod5(Instr instr, CRegister crd, const MemOperand& x);
1349
+
1350
+ // Labels
1351
+ void print(Label* L);
1352
+ void bind_to(Label* L, int pos);
1353
+ void link_to(Label* L, Label* appendix);
1354
+ void next(Label* L);
1355
+
1356
+ // Record reloc info for current pc_
1357
+ void RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data = 0);
1358
+
1359
+ friend class RegExpMacroAssemblerARM;
1360
+ friend class RelocInfo;
1361
+ friend class CodePatcher;
1362
+ friend class BlockConstPoolScope;
1363
+
1364
+ PositionsRecorder positions_recorder_;
1365
+ bool allow_peephole_optimization_;
1366
+ bool emit_debug_code_;
1367
+ friend class PositionsRecorder;
1368
+ friend class EnsureSpace;
1369
+ };
1370
+
1371
+
1372
+ class EnsureSpace BASE_EMBEDDED {
1373
+ public:
1374
+ explicit EnsureSpace(Assembler* assembler) {
1375
+ assembler->CheckBuffer();
1376
+ }
1377
+ };
1378
+
1379
+
1380
+ } } // namespace v8::internal
1381
+
1382
+ #endif // V8_ARM_ASSEMBLER_ARM_H_