therubyracer 0.8.1.pre2 → 0.8.1

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

Potentially problematic release.


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

Files changed (877) hide show
  1. data/Changelog.md +2 -1
  2. data/README.md +6 -3
  3. data/ext/v8/upstream/3.1.8/.gitignore +31 -0
  4. data/ext/v8/upstream/3.1.8/AUTHORS +40 -0
  5. data/ext/v8/upstream/3.1.8/ChangeLog +2566 -0
  6. data/ext/v8/upstream/3.1.8/LICENSE +52 -0
  7. data/ext/v8/upstream/3.1.8/LICENSE.strongtalk +29 -0
  8. data/ext/v8/upstream/3.1.8/LICENSE.v8 +26 -0
  9. data/ext/v8/upstream/3.1.8/LICENSE.valgrind +45 -0
  10. data/ext/v8/upstream/3.1.8/SConstruct +1192 -0
  11. data/ext/v8/upstream/3.1.8/build/README.txt +25 -0
  12. data/ext/v8/upstream/3.1.8/build/all.gyp +18 -0
  13. data/ext/v8/upstream/3.1.8/build/armu.gypi +32 -0
  14. data/ext/v8/upstream/3.1.8/build/common.gypi +82 -0
  15. data/ext/v8/upstream/3.1.8/build/gyp_v8 +145 -0
  16. data/ext/v8/upstream/3.1.8/include/v8-debug.h +384 -0
  17. data/ext/v8/upstream/3.1.8/include/v8-preparser.h +116 -0
  18. data/ext/v8/upstream/3.1.8/include/v8-profiler.h +426 -0
  19. data/ext/v8/upstream/3.1.8/include/v8-testing.h +99 -0
  20. data/ext/v8/upstream/3.1.8/include/v8.h +3846 -0
  21. data/ext/v8/upstream/3.1.8/include/v8stdint.h +53 -0
  22. data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +206 -0
  23. data/ext/v8/upstream/3.1.8/src/SConscript +356 -0
  24. data/ext/v8/upstream/3.1.8/src/accessors.cc +907 -0
  25. data/ext/v8/upstream/3.1.8/src/accessors.h +121 -0
  26. data/ext/v8/upstream/3.1.8/src/allocation.cc +204 -0
  27. data/ext/v8/upstream/3.1.8/src/allocation.h +176 -0
  28. data/ext/v8/upstream/3.1.8/src/api.cc +5191 -0
  29. data/ext/v8/upstream/3.1.8/src/api.h +508 -0
  30. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/apinatives.js +0 -0
  31. data/ext/v8/upstream/3.1.8/src/apiutils.h +80 -0
  32. data/ext/v8/upstream/3.1.8/src/arguments.h +105 -0
  33. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +352 -0
  34. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +2756 -0
  35. data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +1294 -0
  36. data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +1628 -0
  37. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +6783 -0
  38. data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +657 -0
  39. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm-inl.h +48 -0
  40. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +7403 -0
  41. data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +595 -0
  42. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.cc +152 -0
  43. data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +769 -0
  44. data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +147 -0
  45. data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +315 -0
  46. data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +700 -0
  47. data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +1439 -0
  48. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.cc +45 -0
  49. data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +168 -0
  50. data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +4230 -0
  51. data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +1799 -0
  52. data/ext/v8/upstream/3.1.8/src/arm/jump-target-arm.cc +174 -0
  53. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +2041 -0
  54. data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +2046 -0
  55. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +3822 -0
  56. data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +312 -0
  57. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +303 -0
  58. data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.h +84 -0
  59. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +2701 -0
  60. data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +1015 -0
  61. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +1280 -0
  62. data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +252 -0
  63. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm-inl.h +0 -0
  64. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.cc +0 -0
  65. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.h +0 -0
  66. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +3165 -0
  67. data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +402 -0
  68. data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +4077 -0
  69. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/virtual-frame-arm-inl.h +0 -0
  70. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +843 -0
  71. data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +520 -0
  72. data/ext/v8/upstream/3.1.8/src/array.js +1231 -0
  73. data/ext/v8/upstream/3.1.8/src/assembler.cc +973 -0
  74. data/ext/v8/upstream/3.1.8/src/assembler.h +787 -0
  75. data/ext/v8/upstream/3.1.8/src/ast-inl.h +107 -0
  76. data/ext/v8/upstream/3.1.8/src/ast.cc +1067 -0
  77. data/ext/v8/upstream/3.1.8/src/ast.h +2177 -0
  78. data/ext/v8/upstream/3.1.8/src/atomicops.h +165 -0
  79. data/ext/v8/upstream/3.1.8/src/atomicops_internals_arm_gcc.h +145 -0
  80. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.cc +126 -0
  81. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.h +287 -0
  82. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_macosx.h +301 -0
  83. data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_msvc.h +203 -0
  84. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.cc +655 -0
  85. data/ext/v8/upstream/3.1.8/src/bignum-dtoa.h +81 -0
  86. data/ext/v8/upstream/3.1.8/src/bignum.cc +768 -0
  87. data/ext/v8/upstream/3.1.8/src/bignum.h +140 -0
  88. data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +1888 -0
  89. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/bootstrapper.h +0 -0
  90. data/ext/v8/upstream/3.1.8/src/builtins.cc +1586 -0
  91. data/ext/v8/upstream/3.1.8/src/builtins.h +339 -0
  92. data/ext/v8/upstream/3.1.8/src/bytecodes-irregexp.h +105 -0
  93. data/ext/v8/upstream/3.1.8/src/cached-powers.cc +177 -0
  94. data/ext/v8/upstream/3.1.8/src/cached-powers.h +65 -0
  95. data/ext/v8/upstream/3.1.8/src/char-predicates-inl.h +94 -0
  96. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/char-predicates.h +0 -0
  97. data/ext/v8/upstream/3.1.8/src/checks.cc +110 -0
  98. data/ext/v8/upstream/3.1.8/src/checks.h +292 -0
  99. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue-inl.h +0 -0
  100. data/ext/v8/upstream/3.1.8/src/circular-queue.cc +122 -0
  101. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue.h +0 -0
  102. data/ext/v8/upstream/3.1.8/src/code-stubs.cc +230 -0
  103. data/ext/v8/upstream/3.1.8/src/code-stubs.h +950 -0
  104. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/code.h +0 -0
  105. data/ext/v8/upstream/3.1.8/src/codegen-inl.h +64 -0
  106. data/ext/v8/upstream/3.1.8/src/codegen.cc +495 -0
  107. data/ext/v8/upstream/3.1.8/src/codegen.h +245 -0
  108. data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +654 -0
  109. data/ext/v8/upstream/3.1.8/src/compilation-cache.h +112 -0
  110. data/ext/v8/upstream/3.1.8/src/compiler.cc +806 -0
  111. data/ext/v8/upstream/3.1.8/src/compiler.h +290 -0
  112. data/ext/v8/upstream/3.1.8/src/contexts.cc +320 -0
  113. data/ext/v8/upstream/3.1.8/src/contexts.h +376 -0
  114. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/conversions-inl.h +0 -0
  115. data/ext/v8/upstream/3.1.8/src/conversions.cc +1069 -0
  116. data/ext/v8/upstream/3.1.8/src/conversions.h +122 -0
  117. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/counters.cc +0 -0
  118. data/ext/v8/upstream/3.1.8/src/counters.h +242 -0
  119. data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +100 -0
  120. data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +554 -0
  121. data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +291 -0
  122. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/cpu.h +0 -0
  123. data/ext/v8/upstream/3.1.8/src/d8-debug.cc +367 -0
  124. data/ext/v8/upstream/3.1.8/src/d8-debug.h +157 -0
  125. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-posix.cc +0 -0
  126. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-readline.cc +0 -0
  127. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-windows.cc +0 -0
  128. data/ext/v8/upstream/3.1.8/src/d8.cc +792 -0
  129. data/ext/v8/upstream/3.1.8/src/d8.gyp +85 -0
  130. data/ext/v8/upstream/3.1.8/src/d8.h +231 -0
  131. data/ext/v8/upstream/3.1.8/src/d8.js +2798 -0
  132. data/ext/v8/upstream/3.1.8/src/data-flow.cc +545 -0
  133. data/ext/v8/upstream/3.1.8/src/data-flow.h +379 -0
  134. data/ext/v8/upstream/3.1.8/src/date.js +1103 -0
  135. data/ext/v8/upstream/3.1.8/src/dateparser-inl.h +125 -0
  136. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/dateparser.cc +0 -0
  137. data/ext/v8/upstream/3.1.8/src/dateparser.h +263 -0
  138. data/ext/v8/upstream/3.1.8/src/debug-agent.cc +446 -0
  139. data/ext/v8/upstream/3.1.8/src/debug-agent.h +131 -0
  140. data/ext/v8/upstream/3.1.8/src/debug-debugger.js +2569 -0
  141. data/ext/v8/upstream/3.1.8/src/debug.cc +3085 -0
  142. data/ext/v8/upstream/3.1.8/src/debug.h +1025 -0
  143. data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +1185 -0
  144. data/ext/v8/upstream/3.1.8/src/deoptimizer.h +529 -0
  145. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disasm.h +0 -0
  146. data/ext/v8/upstream/3.1.8/src/disassembler.cc +338 -0
  147. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disassembler.h +0 -0
  148. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.cc +0 -0
  149. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.h +0 -0
  150. data/ext/v8/upstream/3.1.8/src/double.h +238 -0
  151. data/ext/v8/upstream/3.1.8/src/dtoa.cc +103 -0
  152. data/ext/v8/upstream/3.1.8/src/dtoa.h +85 -0
  153. data/ext/v8/upstream/3.1.8/src/execution.cc +735 -0
  154. data/ext/v8/upstream/3.1.8/src/execution.h +322 -0
  155. data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +53 -0
  156. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +264 -0
  157. data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.h +64 -0
  158. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +141 -0
  159. data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.h +50 -0
  160. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +58 -0
  161. data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.h +49 -0
  162. data/ext/v8/upstream/3.1.8/src/factory.cc +1087 -0
  163. data/ext/v8/upstream/3.1.8/src/factory.h +432 -0
  164. data/ext/v8/upstream/3.1.8/src/fast-dtoa.cc +736 -0
  165. data/ext/v8/upstream/3.1.8/src/fast-dtoa.h +83 -0
  166. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.cc +0 -0
  167. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.h +0 -0
  168. data/ext/v8/upstream/3.1.8/src/flag-definitions.h +552 -0
  169. data/ext/v8/upstream/3.1.8/src/flags.cc +551 -0
  170. data/ext/v8/upstream/3.1.8/src/flags.h +79 -0
  171. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/frame-element.cc +0 -0
  172. data/ext/v8/upstream/3.1.8/src/frame-element.h +277 -0
  173. data/ext/v8/upstream/3.1.8/src/frames-inl.h +210 -0
  174. data/ext/v8/upstream/3.1.8/src/frames.cc +1232 -0
  175. data/ext/v8/upstream/3.1.8/src/frames.h +826 -0
  176. data/ext/v8/upstream/3.1.8/src/full-codegen.cc +1382 -0
  177. data/ext/v8/upstream/3.1.8/src/full-codegen.h +751 -0
  178. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +90 -0
  179. data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +111 -0
  180. data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +1547 -0
  181. data/ext/v8/upstream/3.1.8/src/gdb-jit.h +138 -0
  182. data/ext/v8/upstream/3.1.8/src/global-handles.cc +534 -0
  183. data/ext/v8/upstream/3.1.8/src/global-handles.h +181 -0
  184. data/ext/v8/upstream/3.1.8/src/globals.h +325 -0
  185. data/ext/v8/upstream/3.1.8/src/handles-inl.h +80 -0
  186. data/ext/v8/upstream/3.1.8/src/handles.cc +910 -0
  187. data/ext/v8/upstream/3.1.8/src/handles.h +424 -0
  188. data/ext/v8/upstream/3.1.8/src/hashmap.cc +230 -0
  189. data/ext/v8/upstream/3.1.8/src/hashmap.h +121 -0
  190. data/ext/v8/upstream/3.1.8/src/heap-inl.h +587 -0
  191. data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +1128 -0
  192. data/ext/v8/upstream/3.1.8/src/heap-profiler.h +381 -0
  193. data/ext/v8/upstream/3.1.8/src/heap.cc +5610 -0
  194. data/ext/v8/upstream/3.1.8/src/heap.h +2218 -0
  195. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +1490 -0
  196. data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +3493 -0
  197. data/ext/v8/upstream/3.1.8/src/hydrogen.cc +6056 -0
  198. data/ext/v8/upstream/3.1.8/src/hydrogen.h +1091 -0
  199. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +429 -0
  200. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +2800 -0
  201. data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +1093 -0
  202. data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +1590 -0
  203. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +6624 -0
  204. data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +536 -0
  205. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/codegen-ia32-inl.h +0 -0
  206. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +10354 -0
  207. data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +798 -0
  208. data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +87 -0
  209. data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +309 -0
  210. data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +664 -0
  211. data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +1597 -0
  212. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.cc +45 -0
  213. data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +140 -0
  214. data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +4278 -0
  215. data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +1786 -0
  216. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/jump-target-ia32.cc +0 -0
  217. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +3880 -0
  218. data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +309 -0
  219. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +460 -0
  220. data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
  221. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +2095 -0
  222. data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +2127 -0
  223. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +2031 -0
  224. data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +798 -0
  225. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +1253 -0
  226. data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +215 -0
  227. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32-inl.h +0 -0
  228. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.cc +0 -0
  229. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.h +0 -0
  230. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/simulator-ia32.cc +0 -0
  231. data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +72 -0
  232. data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +3732 -0
  233. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +1360 -0
  234. data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +646 -0
  235. data/ext/v8/upstream/3.1.8/src/ic-inl.h +129 -0
  236. data/ext/v8/upstream/3.1.8/src/ic.cc +2333 -0
  237. data/ext/v8/upstream/3.1.8/src/ic.h +639 -0
  238. data/ext/v8/upstream/3.1.8/src/inspector.cc +63 -0
  239. data/ext/v8/upstream/3.1.8/src/inspector.h +62 -0
  240. data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +655 -0
  241. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/interpreter-irregexp.h +0 -0
  242. data/ext/v8/upstream/3.1.8/src/json.js +342 -0
  243. data/ext/v8/upstream/3.1.8/src/jsregexp.cc +5340 -0
  244. data/ext/v8/upstream/3.1.8/src/jsregexp.h +1484 -0
  245. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-heavy-inl.h +0 -0
  246. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +430 -0
  247. data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +244 -0
  248. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-inl.h +0 -0
  249. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-light-inl.h +0 -0
  250. data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +111 -0
  251. data/ext/v8/upstream/3.1.8/src/jump-target-light.h +193 -0
  252. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.cc +0 -0
  253. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.h +0 -0
  254. data/ext/v8/upstream/3.1.8/src/list-inl.h +206 -0
  255. data/ext/v8/upstream/3.1.8/src/list.h +164 -0
  256. data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +140 -0
  257. data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +2093 -0
  258. data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +644 -0
  259. data/ext/v8/upstream/3.1.8/src/lithium.cc +168 -0
  260. data/ext/v8/upstream/3.1.8/src/lithium.h +592 -0
  261. data/ext/v8/upstream/3.1.8/src/liveedit-debugger.js +1082 -0
  262. data/ext/v8/upstream/3.1.8/src/liveedit.cc +1650 -0
  263. data/ext/v8/upstream/3.1.8/src/liveedit.h +174 -0
  264. data/ext/v8/upstream/3.1.8/src/liveobjectlist-inl.h +126 -0
  265. data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +2527 -0
  266. data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +322 -0
  267. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/log-inl.h +0 -0
  268. data/ext/v8/upstream/3.1.8/src/log-utils.cc +336 -0
  269. data/ext/v8/upstream/3.1.8/src/log-utils.h +232 -0
  270. data/ext/v8/upstream/3.1.8/src/log.cc +1608 -0
  271. data/ext/v8/upstream/3.1.8/src/log.h +379 -0
  272. data/ext/v8/upstream/3.1.8/src/macro-assembler.h +120 -0
  273. data/ext/v8/upstream/3.1.8/src/macros.py +178 -0
  274. data/ext/v8/upstream/3.1.8/src/mark-compact.cc +2957 -0
  275. data/ext/v8/upstream/3.1.8/src/mark-compact.h +433 -0
  276. data/ext/v8/upstream/3.1.8/src/math.js +264 -0
  277. data/ext/v8/upstream/3.1.8/src/memory.h +82 -0
  278. data/ext/v8/upstream/3.1.8/src/messages.cc +164 -0
  279. data/ext/v8/upstream/3.1.8/src/messages.h +114 -0
  280. data/ext/v8/upstream/3.1.8/src/messages.js +1071 -0
  281. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips-inl.h +0 -0
  282. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips.cc +0 -0
  283. data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +667 -0
  284. data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +205 -0
  285. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips-inl.h +0 -0
  286. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips.cc +0 -0
  287. data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +431 -0
  288. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.cc +0 -0
  289. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.h +0 -0
  290. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/cpu-mips.cc +0 -0
  291. data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +127 -0
  292. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/disasm-mips.cc +0 -0
  293. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/fast-codegen-mips.cc +0 -0
  294. data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +96 -0
  295. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/frames-mips.h +0 -0
  296. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/full-codegen-mips.cc +0 -0
  297. data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +208 -0
  298. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/jump-target-mips.cc +0 -0
  299. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.cc +0 -0
  300. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.h +0 -0
  301. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips-inl.h +0 -0
  302. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.cc +0 -0
  303. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.h +0 -0
  304. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +1650 -0
  305. data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +311 -0
  306. data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +418 -0
  307. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.cc +0 -0
  308. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.h +0 -0
  309. data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +2380 -0
  310. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mksnapshot.cc +0 -0
  311. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/natives.h +0 -0
  312. data/ext/v8/upstream/3.1.8/src/objects-debug.cc +722 -0
  313. data/ext/v8/upstream/3.1.8/src/objects-inl.h +3946 -0
  314. data/ext/v8/upstream/3.1.8/src/objects-printer.cc +801 -0
  315. data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +142 -0
  316. data/ext/v8/upstream/3.1.8/src/objects-visiting.h +401 -0
  317. data/ext/v8/upstream/3.1.8/src/objects.cc +10044 -0
  318. data/ext/v8/upstream/3.1.8/src/objects.h +6571 -0
  319. data/ext/v8/upstream/3.1.8/src/parser.cc +5165 -0
  320. data/ext/v8/upstream/3.1.8/src/parser.h +802 -0
  321. data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +745 -0
  322. data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +702 -0
  323. data/ext/v8/upstream/3.1.8/src/platform-linux.cc +981 -0
  324. data/ext/v8/upstream/3.1.8/src/platform-macos.cc +732 -0
  325. data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +498 -0
  326. data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +657 -0
  327. data/ext/v8/upstream/3.1.8/src/platform-posix.cc +399 -0
  328. data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +714 -0
  329. data/ext/v8/upstream/3.1.8/src/platform-win32.cc +1974 -0
  330. data/ext/v8/upstream/3.1.8/src/platform.h +636 -0
  331. data/ext/v8/upstream/3.1.8/src/preparse-data.cc +183 -0
  332. data/ext/v8/upstream/3.1.8/src/preparse-data.h +249 -0
  333. data/ext/v8/upstream/3.1.8/src/preparser-api.cc +213 -0
  334. data/ext/v8/upstream/3.1.8/src/preparser.cc +1205 -0
  335. data/ext/v8/upstream/3.1.8/src/preparser.h +278 -0
  336. data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +1539 -0
  337. data/ext/v8/upstream/3.1.8/src/prettyprinter.h +223 -0
  338. data/ext/v8/upstream/3.1.8/src/profile-generator-inl.h +128 -0
  339. data/ext/v8/upstream/3.1.8/src/profile-generator.cc +2899 -0
  340. data/ext/v8/upstream/3.1.8/src/profile-generator.h +1151 -0
  341. data/ext/v8/upstream/3.1.8/src/property.cc +96 -0
  342. data/ext/v8/upstream/3.1.8/src/property.h +337 -0
  343. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
  344. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +470 -0
  345. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.h +142 -0
  346. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.cc +373 -0
  347. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.h +104 -0
  348. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +257 -0
  349. data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +231 -0
  350. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.cc +0 -0
  351. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.h +0 -0
  352. data/ext/v8/upstream/3.1.8/src/regexp.js +483 -0
  353. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator-inl.h +0 -0
  354. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.cc +0 -0
  355. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.h +0 -0
  356. data/ext/v8/upstream/3.1.8/src/rewriter.cc +1023 -0
  357. data/ext/v8/upstream/3.1.8/src/rewriter.h +59 -0
  358. data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +443 -0
  359. data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +77 -0
  360. data/ext/v8/upstream/3.1.8/src/runtime.cc +11592 -0
  361. data/ext/v8/upstream/3.1.8/src/runtime.h +582 -0
  362. data/ext/v8/upstream/3.1.8/src/runtime.js +643 -0
  363. data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +253 -0
  364. data/ext/v8/upstream/3.1.8/src/safepoint-table.h +263 -0
  365. data/ext/v8/upstream/3.1.8/src/scanner-base.cc +971 -0
  366. data/ext/v8/upstream/3.1.8/src/scanner-base.h +653 -0
  367. data/ext/v8/upstream/3.1.8/src/scanner.cc +586 -0
  368. data/ext/v8/upstream/3.1.8/src/scanner.h +194 -0
  369. data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +636 -0
  370. data/ext/v8/upstream/3.1.8/src/scopeinfo.h +238 -0
  371. data/ext/v8/upstream/3.1.8/src/scopes.cc +1063 -0
  372. data/ext/v8/upstream/3.1.8/src/scopes.h +494 -0
  373. data/ext/v8/upstream/3.1.8/src/serialize.cc +1535 -0
  374. data/ext/v8/upstream/3.1.8/src/serialize.h +584 -0
  375. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/shell.h +0 -0
  376. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/simulator.h +0 -0
  377. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/smart-pointer.h +0 -0
  378. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-common.cc +0 -0
  379. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-empty.cc +0 -0
  380. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot.h +0 -0
  381. data/ext/v8/upstream/3.1.8/src/spaces-inl.h +524 -0
  382. data/ext/v8/upstream/3.1.8/src/spaces.cc +3254 -0
  383. data/ext/v8/upstream/3.1.8/src/spaces.h +2362 -0
  384. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree-inl.h +0 -0
  385. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree.h +0 -0
  386. data/ext/v8/upstream/3.1.8/src/string-search.cc +40 -0
  387. data/ext/v8/upstream/3.1.8/src/string-search.h +567 -0
  388. data/ext/v8/upstream/3.1.8/src/string-stream.cc +584 -0
  389. data/ext/v8/upstream/3.1.8/src/string-stream.h +191 -0
  390. data/ext/v8/upstream/3.1.8/src/string.js +915 -0
  391. data/ext/v8/upstream/3.1.8/src/strtod.cc +440 -0
  392. data/ext/v8/upstream/3.1.8/src/strtod.h +40 -0
  393. data/ext/v8/upstream/3.1.8/src/stub-cache.cc +1878 -0
  394. data/ext/v8/upstream/3.1.8/src/stub-cache.h +849 -0
  395. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/third_party/valgrind/valgrind.h +0 -0
  396. data/ext/v8/upstream/3.1.8/src/token.cc +63 -0
  397. data/ext/v8/upstream/3.1.8/src/token.h +288 -0
  398. data/ext/v8/upstream/3.1.8/src/top.cc +1152 -0
  399. data/ext/v8/upstream/3.1.8/src/top.h +608 -0
  400. data/ext/v8/upstream/3.1.8/src/type-info.cc +406 -0
  401. data/ext/v8/upstream/3.1.8/src/type-info.h +283 -0
  402. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue-inl.h +0 -0
  403. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue.h +0 -0
  404. data/ext/v8/upstream/3.1.8/src/unicode-inl.h +238 -0
  405. data/ext/v8/upstream/3.1.8/src/unicode.cc +1624 -0
  406. data/ext/v8/upstream/3.1.8/src/unicode.h +280 -0
  407. data/ext/v8/upstream/3.1.8/src/uri.js +402 -0
  408. data/ext/v8/upstream/3.1.8/src/utils.cc +371 -0
  409. data/ext/v8/upstream/3.1.8/src/utils.h +793 -0
  410. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8-counters.cc +0 -0
  411. data/ext/v8/upstream/3.1.8/src/v8-counters.h +290 -0
  412. data/ext/v8/upstream/3.1.8/src/v8.cc +270 -0
  413. data/ext/v8/upstream/3.1.8/src/v8.h +127 -0
  414. data/ext/v8/upstream/3.1.8/src/v8checks.h +64 -0
  415. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8dll-main.cc +0 -0
  416. data/ext/v8/upstream/3.1.8/src/v8globals.h +480 -0
  417. data/ext/v8/upstream/3.1.8/src/v8natives.js +1252 -0
  418. data/ext/v8/upstream/3.1.8/src/v8preparserdll-main.cc +39 -0
  419. data/ext/v8/upstream/3.1.8/src/v8threads.cc +440 -0
  420. data/ext/v8/upstream/3.1.8/src/v8threads.h +157 -0
  421. data/ext/v8/upstream/3.1.8/src/v8utils.h +354 -0
  422. data/ext/v8/upstream/3.1.8/src/variables.cc +132 -0
  423. data/ext/v8/upstream/3.1.8/src/variables.h +212 -0
  424. data/ext/v8/upstream/3.1.8/src/version.cc +95 -0
  425. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/version.h +0 -0
  426. data/ext/v8/upstream/3.1.8/src/virtual-frame-heavy-inl.h +190 -0
  427. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-heavy.cc +0 -0
  428. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-inl.h +0 -0
  429. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light-inl.h +0 -0
  430. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light.cc +0 -0
  431. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame.cc +0 -0
  432. data/ext/v8/upstream/3.1.8/src/virtual-frame.h +59 -0
  433. data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +134 -0
  434. data/ext/v8/upstream/3.1.8/src/vm-state.h +68 -0
  435. data/ext/v8/upstream/3.1.8/src/win32-headers.h +95 -0
  436. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +455 -0
  437. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +3162 -0
  438. data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +1584 -0
  439. data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +1492 -0
  440. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +5150 -0
  441. data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +519 -0
  442. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64-inl.h +46 -0
  443. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +8835 -0
  444. data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +750 -0
  445. data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +86 -0
  446. data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +316 -0
  447. data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +781 -0
  448. data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +1737 -0
  449. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.cc +45 -0
  450. data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +130 -0
  451. data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +3984 -0
  452. data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +1761 -0
  453. data/ext/v8/upstream/3.1.8/src/x64/jump-target-x64.cc +437 -0
  454. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +3639 -0
  455. data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +305 -0
  456. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.cc +320 -0
  457. data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.h +74 -0
  458. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +2044 -0
  459. data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +2052 -0
  460. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +2660 -0
  461. data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +1852 -0
  462. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +1382 -0
  463. data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +278 -0
  464. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64-inl.h +0 -0
  465. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.cc +0 -0
  466. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.h +0 -0
  467. data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/simulator-x64.cc +0 -0
  468. data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +71 -0
  469. data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +3509 -0
  470. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +1292 -0
  471. data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +593 -0
  472. data/ext/v8/upstream/3.1.8/src/zone-inl.h +83 -0
  473. data/ext/v8/upstream/3.1.8/src/zone.cc +195 -0
  474. data/ext/v8/upstream/3.1.8/src/zone.h +233 -0
  475. data/ext/v8/upstream/3.1.8/tools/codemap.js +265 -0
  476. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/consarray.js +0 -0
  477. data/ext/v8/upstream/3.1.8/tools/csvparser.js +78 -0
  478. data/ext/v8/upstream/3.1.8/tools/disasm.py +92 -0
  479. data/ext/v8/upstream/3.1.8/tools/gc-nvp-trace-processor.py +328 -0
  480. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/generate-ten-powers.scm +0 -0
  481. data/ext/v8/upstream/3.1.8/tools/grokdump.py +840 -0
  482. data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +869 -0
  483. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/js2c.py +0 -0
  484. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/jsmin.py +0 -0
  485. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/linux-tick-processor +0 -0
  486. data/ext/v8/upstream/3.1.8/tools/ll_prof.py +919 -0
  487. data/ext/v8/upstream/3.1.8/tools/logreader.js +185 -0
  488. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-nm +0 -0
  489. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-tick-processor +0 -0
  490. data/ext/v8/upstream/3.1.8/tools/oom_dump/README +31 -0
  491. data/ext/v8/upstream/3.1.8/tools/oom_dump/SConstruct +42 -0
  492. data/ext/v8/upstream/3.1.8/tools/oom_dump/oom_dump.cc +288 -0
  493. data/ext/v8/upstream/3.1.8/tools/presubmit.py +305 -0
  494. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/process-heap-prof.py +0 -0
  495. data/ext/v8/upstream/3.1.8/tools/profile.js +751 -0
  496. data/ext/v8/upstream/3.1.8/tools/profile_view.js +219 -0
  497. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/run-valgrind.py +0 -0
  498. data/ext/v8/upstream/3.1.8/tools/splaytree.js +316 -0
  499. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/stats-viewer.py +0 -0
  500. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/tickprocessor-driver.js +0 -0
  501. data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +863 -0
  502. data/ext/v8/upstream/3.1.8/tools/utils.py +96 -0
  503. data/ext/v8/upstream/3.1.8/tools/visual_studio/README.txt +70 -0
  504. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/arm.vsprops +0 -0
  505. data/ext/v8/upstream/3.1.8/tools/visual_studio/common.vsprops +34 -0
  506. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8.vcproj +0 -0
  507. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_arm.vcproj +0 -0
  508. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_x64.vcproj +0 -0
  509. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8js2c.cmd +0 -0
  510. data/ext/v8/upstream/3.1.8/tools/visual_studio/debug.vsprops +17 -0
  511. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/ia32.vsprops +0 -0
  512. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/js2c.cmd +0 -0
  513. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/release.vsprops +0 -0
  514. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.sln +0 -0
  515. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.vcproj +0 -0
  516. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.sln +0 -0
  517. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.vcproj +0 -0
  518. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +1296 -0
  519. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +1234 -0
  520. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +1296 -0
  521. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest.vcproj +0 -0
  522. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
  523. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
  524. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
  525. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
  526. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
  527. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
  528. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
  529. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample.vcproj +147 -0
  530. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_arm.vcproj +147 -0
  531. data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_x64.vcproj +163 -0
  532. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  533. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  534. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  535. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  536. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.sln +0 -0
  537. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.vcproj +0 -0
  538. data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/x64.vsprops +0 -0
  539. data/ext/v8/upstream/3.1.8/tools/windows-tick-processor.bat +30 -0
  540. data/ext/v8/upstream/Makefile +2 -1
  541. data/ext/v8/v8_template.cpp +2 -2
  542. data/lib/v8/version.rb +1 -1
  543. data/spec/redjs/jsapi_spec.rb +2 -2
  544. metadata +552 -490
  545. data/ext/v8/upstream/2.3.3/.gitignore +0 -26
  546. data/ext/v8/upstream/2.3.3/AUTHORS +0 -31
  547. data/ext/v8/upstream/2.3.3/ChangeLog +0 -1916
  548. data/ext/v8/upstream/2.3.3/LICENSE +0 -55
  549. data/ext/v8/upstream/2.3.3/SConstruct +0 -1154
  550. data/ext/v8/upstream/2.3.3/include/v8-debug.h +0 -381
  551. data/ext/v8/upstream/2.3.3/include/v8-profiler.h +0 -353
  552. data/ext/v8/upstream/2.3.3/include/v8.h +0 -3616
  553. data/ext/v8/upstream/2.3.3/src/SConscript +0 -330
  554. data/ext/v8/upstream/2.3.3/src/accessors.cc +0 -661
  555. data/ext/v8/upstream/2.3.3/src/accessors.h +0 -114
  556. data/ext/v8/upstream/2.3.3/src/allocation.cc +0 -198
  557. data/ext/v8/upstream/2.3.3/src/allocation.h +0 -169
  558. data/ext/v8/upstream/2.3.3/src/api.cc +0 -4795
  559. data/ext/v8/upstream/2.3.3/src/api.h +0 -485
  560. data/ext/v8/upstream/2.3.3/src/apiutils.h +0 -69
  561. data/ext/v8/upstream/2.3.3/src/arguments.h +0 -96
  562. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm-inl.h +0 -305
  563. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.cc +0 -2580
  564. data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.h +0 -1275
  565. data/ext/v8/upstream/2.3.3/src/arm/builtins-arm.cc +0 -1320
  566. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm-inl.h +0 -48
  567. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.cc +0 -11398
  568. data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.h +0 -1102
  569. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.cc +0 -154
  570. data/ext/v8/upstream/2.3.3/src/arm/constants-arm.h +0 -388
  571. data/ext/v8/upstream/2.3.3/src/arm/cpu-arm.cc +0 -142
  572. data/ext/v8/upstream/2.3.3/src/arm/debug-arm.cc +0 -309
  573. data/ext/v8/upstream/2.3.3/src/arm/disasm-arm.cc +0 -1459
  574. data/ext/v8/upstream/2.3.3/src/arm/fast-codegen-arm.cc +0 -241
  575. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.cc +0 -123
  576. data/ext/v8/upstream/2.3.3/src/arm/frames-arm.h +0 -162
  577. data/ext/v8/upstream/2.3.3/src/arm/full-codegen-arm.cc +0 -3178
  578. data/ext/v8/upstream/2.3.3/src/arm/ic-arm.cc +0 -2258
  579. data/ext/v8/upstream/2.3.3/src/arm/jump-target-arm.cc +0 -164
  580. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.cc +0 -1892
  581. data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.h +0 -727
  582. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.cc +0 -1261
  583. data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.h +0 -266
  584. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.cc +0 -2822
  585. data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.h +0 -361
  586. data/ext/v8/upstream/2.3.3/src/arm/stub-cache-arm.cc +0 -2387
  587. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.cc +0 -834
  588. data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.h +0 -519
  589. data/ext/v8/upstream/2.3.3/src/array.js +0 -1127
  590. data/ext/v8/upstream/2.3.3/src/assembler.cc +0 -801
  591. data/ext/v8/upstream/2.3.3/src/assembler.h +0 -573
  592. data/ext/v8/upstream/2.3.3/src/ast-inl.h +0 -81
  593. data/ext/v8/upstream/2.3.3/src/ast.cc +0 -1152
  594. data/ext/v8/upstream/2.3.3/src/ast.h +0 -2106
  595. data/ext/v8/upstream/2.3.3/src/bootstrapper.cc +0 -1819
  596. data/ext/v8/upstream/2.3.3/src/builtins.cc +0 -1529
  597. data/ext/v8/upstream/2.3.3/src/builtins.h +0 -263
  598. data/ext/v8/upstream/2.3.3/src/bytecodes-irregexp.h +0 -104
  599. data/ext/v8/upstream/2.3.3/src/cached-powers.h +0 -119
  600. data/ext/v8/upstream/2.3.3/src/char-predicates-inl.h +0 -86
  601. data/ext/v8/upstream/2.3.3/src/checks.cc +0 -100
  602. data/ext/v8/upstream/2.3.3/src/checks.h +0 -310
  603. data/ext/v8/upstream/2.3.3/src/circular-queue.cc +0 -121
  604. data/ext/v8/upstream/2.3.3/src/code-stubs.cc +0 -177
  605. data/ext/v8/upstream/2.3.3/src/code-stubs.h +0 -177
  606. data/ext/v8/upstream/2.3.3/src/codegen-inl.h +0 -60
  607. data/ext/v8/upstream/2.3.3/src/codegen.cc +0 -516
  608. data/ext/v8/upstream/2.3.3/src/codegen.h +0 -897
  609. data/ext/v8/upstream/2.3.3/src/compilation-cache.cc +0 -562
  610. data/ext/v8/upstream/2.3.3/src/compilation-cache.h +0 -102
  611. data/ext/v8/upstream/2.3.3/src/compiler.cc +0 -654
  612. data/ext/v8/upstream/2.3.3/src/compiler.h +0 -299
  613. data/ext/v8/upstream/2.3.3/src/contexts.cc +0 -256
  614. data/ext/v8/upstream/2.3.3/src/contexts.h +0 -342
  615. data/ext/v8/upstream/2.3.3/src/conversions.cc +0 -1119
  616. data/ext/v8/upstream/2.3.3/src/conversions.h +0 -123
  617. data/ext/v8/upstream/2.3.3/src/counters.h +0 -239
  618. data/ext/v8/upstream/2.3.3/src/cpu-profiler-inl.h +0 -100
  619. data/ext/v8/upstream/2.3.3/src/cpu-profiler.cc +0 -538
  620. data/ext/v8/upstream/2.3.3/src/cpu-profiler.h +0 -285
  621. data/ext/v8/upstream/2.3.3/src/d8-debug.cc +0 -356
  622. data/ext/v8/upstream/2.3.3/src/d8-debug.h +0 -155
  623. data/ext/v8/upstream/2.3.3/src/d8.cc +0 -783
  624. data/ext/v8/upstream/2.3.3/src/d8.h +0 -227
  625. data/ext/v8/upstream/2.3.3/src/d8.js +0 -1683
  626. data/ext/v8/upstream/2.3.3/src/data-flow.cc +0 -758
  627. data/ext/v8/upstream/2.3.3/src/data-flow.h +0 -278
  628. data/ext/v8/upstream/2.3.3/src/date.js +0 -1059
  629. data/ext/v8/upstream/2.3.3/src/dateparser-inl.h +0 -123
  630. data/ext/v8/upstream/2.3.3/src/dateparser.h +0 -244
  631. data/ext/v8/upstream/2.3.3/src/debug-agent.cc +0 -427
  632. data/ext/v8/upstream/2.3.3/src/debug-agent.h +0 -129
  633. data/ext/v8/upstream/2.3.3/src/debug-debugger.js +0 -2227
  634. data/ext/v8/upstream/2.3.3/src/debug.cc +0 -3005
  635. data/ext/v8/upstream/2.3.3/src/debug.h +0 -993
  636. data/ext/v8/upstream/2.3.3/src/disassembler.cc +0 -312
  637. data/ext/v8/upstream/2.3.3/src/double.h +0 -169
  638. data/ext/v8/upstream/2.3.3/src/dtoa-config.c +0 -92
  639. data/ext/v8/upstream/2.3.3/src/dtoa.cc +0 -77
  640. data/ext/v8/upstream/2.3.3/src/dtoa.h +0 -81
  641. data/ext/v8/upstream/2.3.3/src/execution.cc +0 -809
  642. data/ext/v8/upstream/2.3.3/src/execution.h +0 -336
  643. data/ext/v8/upstream/2.3.3/src/factory.cc +0 -1003
  644. data/ext/v8/upstream/2.3.3/src/factory.h +0 -410
  645. data/ext/v8/upstream/2.3.3/src/fast-codegen.cc +0 -746
  646. data/ext/v8/upstream/2.3.3/src/fast-codegen.h +0 -161
  647. data/ext/v8/upstream/2.3.3/src/fast-dtoa.cc +0 -505
  648. data/ext/v8/upstream/2.3.3/src/fast-dtoa.h +0 -58
  649. data/ext/v8/upstream/2.3.3/src/flag-definitions.h +0 -455
  650. data/ext/v8/upstream/2.3.3/src/flags.cc +0 -551
  651. data/ext/v8/upstream/2.3.3/src/flags.h +0 -81
  652. data/ext/v8/upstream/2.3.3/src/flow-graph.cc +0 -763
  653. data/ext/v8/upstream/2.3.3/src/flow-graph.h +0 -180
  654. data/ext/v8/upstream/2.3.3/src/frame-element.h +0 -273
  655. data/ext/v8/upstream/2.3.3/src/frames-inl.h +0 -217
  656. data/ext/v8/upstream/2.3.3/src/frames.cc +0 -826
  657. data/ext/v8/upstream/2.3.3/src/frames.h +0 -682
  658. data/ext/v8/upstream/2.3.3/src/full-codegen.cc +0 -1443
  659. data/ext/v8/upstream/2.3.3/src/full-codegen.h +0 -548
  660. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.cc +0 -76
  661. data/ext/v8/upstream/2.3.3/src/func-name-inferrer.h +0 -135
  662. data/ext/v8/upstream/2.3.3/src/global-handles.cc +0 -520
  663. data/ext/v8/upstream/2.3.3/src/global-handles.h +0 -180
  664. data/ext/v8/upstream/2.3.3/src/globals.h +0 -669
  665. data/ext/v8/upstream/2.3.3/src/handles-inl.h +0 -76
  666. data/ext/v8/upstream/2.3.3/src/handles.cc +0 -825
  667. data/ext/v8/upstream/2.3.3/src/handles.h +0 -393
  668. data/ext/v8/upstream/2.3.3/src/hashmap.cc +0 -226
  669. data/ext/v8/upstream/2.3.3/src/hashmap.h +0 -120
  670. data/ext/v8/upstream/2.3.3/src/heap-inl.h +0 -493
  671. data/ext/v8/upstream/2.3.3/src/heap-profiler.cc +0 -779
  672. data/ext/v8/upstream/2.3.3/src/heap-profiler.h +0 -323
  673. data/ext/v8/upstream/2.3.3/src/heap.cc +0 -4994
  674. data/ext/v8/upstream/2.3.3/src/heap.h +0 -1984
  675. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32-inl.h +0 -360
  676. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.cc +0 -2600
  677. data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.h +0 -969
  678. data/ext/v8/upstream/2.3.3/src/ia32/builtins-ia32.cc +0 -1261
  679. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.cc +0 -13968
  680. data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.h +0 -1097
  681. data/ext/v8/upstream/2.3.3/src/ia32/cpu-ia32.cc +0 -83
  682. data/ext/v8/upstream/2.3.3/src/ia32/debug-ia32.cc +0 -309
  683. data/ext/v8/upstream/2.3.3/src/ia32/disasm-ia32.cc +0 -1471
  684. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.cc +0 -954
  685. data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.h +0 -155
  686. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.cc +0 -115
  687. data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.h +0 -135
  688. data/ext/v8/upstream/2.3.3/src/ia32/full-codegen-ia32.cc +0 -3281
  689. data/ext/v8/upstream/2.3.3/src/ia32/ic-ia32.cc +0 -1966
  690. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.cc +0 -1610
  691. data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.h +0 -610
  692. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.cc +0 -1247
  693. data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.h +0 -214
  694. data/ext/v8/upstream/2.3.3/src/ia32/simulator-ia32.h +0 -62
  695. data/ext/v8/upstream/2.3.3/src/ia32/stub-cache-ia32.cc +0 -2750
  696. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.cc +0 -1334
  697. data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.h +0 -627
  698. data/ext/v8/upstream/2.3.3/src/ic-inl.h +0 -120
  699. data/ext/v8/upstream/2.3.3/src/ic.cc +0 -1827
  700. data/ext/v8/upstream/2.3.3/src/ic.h +0 -515
  701. data/ext/v8/upstream/2.3.3/src/interpreter-irregexp.cc +0 -646
  702. data/ext/v8/upstream/2.3.3/src/json.js +0 -268
  703. data/ext/v8/upstream/2.3.3/src/jsregexp.cc +0 -5283
  704. data/ext/v8/upstream/2.3.3/src/jsregexp.h +0 -1463
  705. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.cc +0 -429
  706. data/ext/v8/upstream/2.3.3/src/jump-target-heavy.h +0 -244
  707. data/ext/v8/upstream/2.3.3/src/jump-target-light.cc +0 -110
  708. data/ext/v8/upstream/2.3.3/src/jump-target-light.h +0 -192
  709. data/ext/v8/upstream/2.3.3/src/list-inl.h +0 -166
  710. data/ext/v8/upstream/2.3.3/src/list.h +0 -159
  711. data/ext/v8/upstream/2.3.3/src/liveedit-debugger.js +0 -1057
  712. data/ext/v8/upstream/2.3.3/src/liveedit.cc +0 -1480
  713. data/ext/v8/upstream/2.3.3/src/liveedit.h +0 -170
  714. data/ext/v8/upstream/2.3.3/src/log-utils.cc +0 -497
  715. data/ext/v8/upstream/2.3.3/src/log-utils.h +0 -289
  716. data/ext/v8/upstream/2.3.3/src/log.cc +0 -1561
  717. data/ext/v8/upstream/2.3.3/src/log.h +0 -384
  718. data/ext/v8/upstream/2.3.3/src/macro-assembler.h +0 -86
  719. data/ext/v8/upstream/2.3.3/src/macros.py +0 -177
  720. data/ext/v8/upstream/2.3.3/src/mark-compact.cc +0 -2330
  721. data/ext/v8/upstream/2.3.3/src/mark-compact.h +0 -451
  722. data/ext/v8/upstream/2.3.3/src/math.js +0 -264
  723. data/ext/v8/upstream/2.3.3/src/memory.h +0 -74
  724. data/ext/v8/upstream/2.3.3/src/messages.cc +0 -183
  725. data/ext/v8/upstream/2.3.3/src/messages.h +0 -113
  726. data/ext/v8/upstream/2.3.3/src/messages.js +0 -982
  727. data/ext/v8/upstream/2.3.3/src/mips/assembler-mips.h +0 -668
  728. data/ext/v8/upstream/2.3.3/src/mips/builtins-mips.cc +0 -205
  729. data/ext/v8/upstream/2.3.3/src/mips/codegen-mips.h +0 -434
  730. data/ext/v8/upstream/2.3.3/src/mips/debug-mips.cc +0 -131
  731. data/ext/v8/upstream/2.3.3/src/mips/frames-mips.cc +0 -102
  732. data/ext/v8/upstream/2.3.3/src/mips/ic-mips.cc +0 -220
  733. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.cc +0 -1651
  734. data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.h +0 -311
  735. data/ext/v8/upstream/2.3.3/src/mips/stub-cache-mips.cc +0 -403
  736. data/ext/v8/upstream/2.3.3/src/mirror-debugger.js +0 -2380
  737. data/ext/v8/upstream/2.3.3/src/objects-debug.cc +0 -1366
  738. data/ext/v8/upstream/2.3.3/src/objects-inl.h +0 -3333
  739. data/ext/v8/upstream/2.3.3/src/objects.cc +0 -8820
  740. data/ext/v8/upstream/2.3.3/src/objects.h +0 -5373
  741. data/ext/v8/upstream/2.3.3/src/oprofile-agent.cc +0 -108
  742. data/ext/v8/upstream/2.3.3/src/oprofile-agent.h +0 -77
  743. data/ext/v8/upstream/2.3.3/src/parser.cc +0 -5207
  744. data/ext/v8/upstream/2.3.3/src/parser.h +0 -197
  745. data/ext/v8/upstream/2.3.3/src/platform-freebsd.cc +0 -667
  746. data/ext/v8/upstream/2.3.3/src/platform-linux.cc +0 -862
  747. data/ext/v8/upstream/2.3.3/src/platform-macos.cc +0 -665
  748. data/ext/v8/upstream/2.3.3/src/platform-nullos.cc +0 -454
  749. data/ext/v8/upstream/2.3.3/src/platform-openbsd.cc +0 -622
  750. data/ext/v8/upstream/2.3.3/src/platform-posix.cc +0 -362
  751. data/ext/v8/upstream/2.3.3/src/platform-solaris.cc +0 -653
  752. data/ext/v8/upstream/2.3.3/src/platform-win32.cc +0 -1911
  753. data/ext/v8/upstream/2.3.3/src/platform.h +0 -577
  754. data/ext/v8/upstream/2.3.3/src/powers-ten.h +0 -2461
  755. data/ext/v8/upstream/2.3.3/src/prettyprinter.cc +0 -1531
  756. data/ext/v8/upstream/2.3.3/src/prettyprinter.h +0 -221
  757. data/ext/v8/upstream/2.3.3/src/profile-generator-inl.h +0 -148
  758. data/ext/v8/upstream/2.3.3/src/profile-generator.cc +0 -1830
  759. data/ext/v8/upstream/2.3.3/src/profile-generator.h +0 -853
  760. data/ext/v8/upstream/2.3.3/src/property.cc +0 -96
  761. data/ext/v8/upstream/2.3.3/src/property.h +0 -315
  762. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.cc +0 -464
  763. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.h +0 -141
  764. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.cc +0 -356
  765. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.h +0 -103
  766. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.cc +0 -261
  767. data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.h +0 -228
  768. data/ext/v8/upstream/2.3.3/src/regexp.js +0 -549
  769. data/ext/v8/upstream/2.3.3/src/rewriter.cc +0 -1038
  770. data/ext/v8/upstream/2.3.3/src/rewriter.h +0 -54
  771. data/ext/v8/upstream/2.3.3/src/runtime.cc +0 -10599
  772. data/ext/v8/upstream/2.3.3/src/runtime.h +0 -459
  773. data/ext/v8/upstream/2.3.3/src/runtime.js +0 -629
  774. data/ext/v8/upstream/2.3.3/src/scanner.cc +0 -1346
  775. data/ext/v8/upstream/2.3.3/src/scanner.h +0 -503
  776. data/ext/v8/upstream/2.3.3/src/scopeinfo.cc +0 -637
  777. data/ext/v8/upstream/2.3.3/src/scopeinfo.h +0 -233
  778. data/ext/v8/upstream/2.3.3/src/scopes.cc +0 -962
  779. data/ext/v8/upstream/2.3.3/src/scopes.h +0 -400
  780. data/ext/v8/upstream/2.3.3/src/serialize.cc +0 -1461
  781. data/ext/v8/upstream/2.3.3/src/serialize.h +0 -581
  782. data/ext/v8/upstream/2.3.3/src/spaces-inl.h +0 -483
  783. data/ext/v8/upstream/2.3.3/src/spaces.cc +0 -2901
  784. data/ext/v8/upstream/2.3.3/src/spaces.h +0 -2197
  785. data/ext/v8/upstream/2.3.3/src/string-stream.cc +0 -584
  786. data/ext/v8/upstream/2.3.3/src/string-stream.h +0 -189
  787. data/ext/v8/upstream/2.3.3/src/string.js +0 -1006
  788. data/ext/v8/upstream/2.3.3/src/stub-cache.cc +0 -1379
  789. data/ext/v8/upstream/2.3.3/src/stub-cache.h +0 -756
  790. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/COPYING +0 -15
  791. data/ext/v8/upstream/2.3.3/src/third_party/dtoa/dtoa.c +0 -3334
  792. data/ext/v8/upstream/2.3.3/src/token.cc +0 -56
  793. data/ext/v8/upstream/2.3.3/src/token.h +0 -270
  794. data/ext/v8/upstream/2.3.3/src/top.cc +0 -1067
  795. data/ext/v8/upstream/2.3.3/src/top.h +0 -463
  796. data/ext/v8/upstream/2.3.3/src/type-info.cc +0 -53
  797. data/ext/v8/upstream/2.3.3/src/type-info.h +0 -244
  798. data/ext/v8/upstream/2.3.3/src/unicode-inl.h +0 -238
  799. data/ext/v8/upstream/2.3.3/src/unicode.cc +0 -749
  800. data/ext/v8/upstream/2.3.3/src/unicode.h +0 -279
  801. data/ext/v8/upstream/2.3.3/src/uri.js +0 -415
  802. data/ext/v8/upstream/2.3.3/src/utils.cc +0 -285
  803. data/ext/v8/upstream/2.3.3/src/utils.h +0 -745
  804. data/ext/v8/upstream/2.3.3/src/v8-counters.h +0 -250
  805. data/ext/v8/upstream/2.3.3/src/v8.cc +0 -228
  806. data/ext/v8/upstream/2.3.3/src/v8.h +0 -121
  807. data/ext/v8/upstream/2.3.3/src/v8natives.js +0 -1188
  808. data/ext/v8/upstream/2.3.3/src/v8threads.cc +0 -461
  809. data/ext/v8/upstream/2.3.3/src/v8threads.h +0 -159
  810. data/ext/v8/upstream/2.3.3/src/variables.cc +0 -119
  811. data/ext/v8/upstream/2.3.3/src/variables.h +0 -205
  812. data/ext/v8/upstream/2.3.3/src/version.cc +0 -88
  813. data/ext/v8/upstream/2.3.3/src/virtual-frame-heavy-inl.h +0 -192
  814. data/ext/v8/upstream/2.3.3/src/virtual-frame.h +0 -46
  815. data/ext/v8/upstream/2.3.3/src/vm-state-inl.h +0 -137
  816. data/ext/v8/upstream/2.3.3/src/vm-state.cc +0 -39
  817. data/ext/v8/upstream/2.3.3/src/vm-state.h +0 -77
  818. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64-inl.h +0 -400
  819. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.cc +0 -2963
  820. data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.h +0 -1438
  821. data/ext/v8/upstream/2.3.3/src/x64/builtins-x64.cc +0 -1296
  822. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64-inl.h +0 -46
  823. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.cc +0 -12491
  824. data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.h +0 -1090
  825. data/ext/v8/upstream/2.3.3/src/x64/cpu-x64.cc +0 -83
  826. data/ext/v8/upstream/2.3.3/src/x64/debug-x64.cc +0 -267
  827. data/ext/v8/upstream/2.3.3/src/x64/disasm-x64.cc +0 -1696
  828. data/ext/v8/upstream/2.3.3/src/x64/fast-codegen-x64.cc +0 -250
  829. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.cc +0 -113
  830. data/ext/v8/upstream/2.3.3/src/x64/frames-x64.h +0 -125
  831. data/ext/v8/upstream/2.3.3/src/x64/full-codegen-x64.cc +0 -3270
  832. data/ext/v8/upstream/2.3.3/src/x64/ic-x64.cc +0 -1907
  833. data/ext/v8/upstream/2.3.3/src/x64/jump-target-x64.cc +0 -437
  834. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.cc +0 -2793
  835. data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.h +0 -916
  836. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.cc +0 -1374
  837. data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.h +0 -277
  838. data/ext/v8/upstream/2.3.3/src/x64/simulator-x64.h +0 -63
  839. data/ext/v8/upstream/2.3.3/src/x64/stub-cache-x64.cc +0 -2560
  840. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.cc +0 -1264
  841. data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.h +0 -590
  842. data/ext/v8/upstream/2.3.3/src/zone-inl.h +0 -82
  843. data/ext/v8/upstream/2.3.3/src/zone.cc +0 -194
  844. data/ext/v8/upstream/2.3.3/src/zone.h +0 -221
  845. data/ext/v8/upstream/2.3.3/tools/codemap.js +0 -270
  846. data/ext/v8/upstream/2.3.3/tools/csvparser.js +0 -83
  847. data/ext/v8/upstream/2.3.3/tools/gc-nvp-trace-processor.py +0 -317
  848. data/ext/v8/upstream/2.3.3/tools/gyp/v8.gyp +0 -749
  849. data/ext/v8/upstream/2.3.3/tools/linux-tick-processor.py +0 -78
  850. data/ext/v8/upstream/2.3.3/tools/logreader.js +0 -338
  851. data/ext/v8/upstream/2.3.3/tools/oprofile/annotate +0 -7
  852. data/ext/v8/upstream/2.3.3/tools/oprofile/common +0 -19
  853. data/ext/v8/upstream/2.3.3/tools/oprofile/dump +0 -7
  854. data/ext/v8/upstream/2.3.3/tools/oprofile/report +0 -7
  855. data/ext/v8/upstream/2.3.3/tools/oprofile/reset +0 -7
  856. data/ext/v8/upstream/2.3.3/tools/oprofile/run +0 -14
  857. data/ext/v8/upstream/2.3.3/tools/oprofile/shutdown +0 -7
  858. data/ext/v8/upstream/2.3.3/tools/oprofile/start +0 -7
  859. data/ext/v8/upstream/2.3.3/tools/presubmit.py +0 -299
  860. data/ext/v8/upstream/2.3.3/tools/profile.js +0 -691
  861. data/ext/v8/upstream/2.3.3/tools/profile_view.js +0 -224
  862. data/ext/v8/upstream/2.3.3/tools/splaytree.js +0 -322
  863. data/ext/v8/upstream/2.3.3/tools/splaytree.py +0 -226
  864. data/ext/v8/upstream/2.3.3/tools/tickprocessor.js +0 -862
  865. data/ext/v8/upstream/2.3.3/tools/tickprocessor.py +0 -571
  866. data/ext/v8/upstream/2.3.3/tools/utils.py +0 -88
  867. data/ext/v8/upstream/2.3.3/tools/visual_studio/README.txt +0 -71
  868. data/ext/v8/upstream/2.3.3/tools/visual_studio/common.vsprops +0 -34
  869. data/ext/v8/upstream/2.3.3/tools/visual_studio/debug.vsprops +0 -17
  870. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base.vcproj +0 -1143
  871. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_arm.vcproj +0 -1115
  872. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_x64.vcproj +0 -1096
  873. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample.vcproj +0 -145
  874. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -145
  875. data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -161
  876. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.bat +0 -29
  877. data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.py +0 -137
@@ -0,0 +1,1761 @@
1
+ // Copyright 2011 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "v8.h"
29
+
30
+ #if defined(V8_TARGET_ARCH_X64)
31
+
32
+ #include "codegen-inl.h"
33
+ #include "ic-inl.h"
34
+ #include "runtime.h"
35
+ #include "stub-cache.h"
36
+
37
+ namespace v8 {
38
+ namespace internal {
39
+
40
+ // ----------------------------------------------------------------------------
41
+ // Static IC stub generators.
42
+ //
43
+
44
+ #define __ ACCESS_MASM(masm)
45
+
46
+
47
+ static void GenerateGlobalInstanceTypeCheck(MacroAssembler* masm,
48
+ Register type,
49
+ Label* global_object) {
50
+ // Register usage:
51
+ // type: holds the receiver instance type on entry.
52
+ __ cmpb(type, Immediate(JS_GLOBAL_OBJECT_TYPE));
53
+ __ j(equal, global_object);
54
+ __ cmpb(type, Immediate(JS_BUILTINS_OBJECT_TYPE));
55
+ __ j(equal, global_object);
56
+ __ cmpb(type, Immediate(JS_GLOBAL_PROXY_TYPE));
57
+ __ j(equal, global_object);
58
+ }
59
+
60
+
61
+ // Generated code falls through if the receiver is a regular non-global
62
+ // JS object with slow properties and no interceptors.
63
+ static void GenerateStringDictionaryReceiverCheck(MacroAssembler* masm,
64
+ Register receiver,
65
+ Register r0,
66
+ Register r1,
67
+ Label* miss) {
68
+ // Register usage:
69
+ // receiver: holds the receiver on entry and is unchanged.
70
+ // r0: used to hold receiver instance type.
71
+ // Holds the property dictionary on fall through.
72
+ // r1: used to hold receivers map.
73
+
74
+ __ JumpIfSmi(receiver, miss);
75
+
76
+ // Check that the receiver is a valid JS object.
77
+ __ movq(r1, FieldOperand(receiver, HeapObject::kMapOffset));
78
+ __ movb(r0, FieldOperand(r1, Map::kInstanceTypeOffset));
79
+ __ cmpb(r0, Immediate(FIRST_JS_OBJECT_TYPE));
80
+ __ j(below, miss);
81
+
82
+ // If this assert fails, we have to check upper bound too.
83
+ ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
84
+
85
+ GenerateGlobalInstanceTypeCheck(masm, r0, miss);
86
+
87
+ // Check for non-global object that requires access check.
88
+ __ testb(FieldOperand(r1, Map::kBitFieldOffset),
89
+ Immediate((1 << Map::kIsAccessCheckNeeded) |
90
+ (1 << Map::kHasNamedInterceptor)));
91
+ __ j(not_zero, miss);
92
+
93
+ __ movq(r0, FieldOperand(receiver, JSObject::kPropertiesOffset));
94
+ __ CompareRoot(FieldOperand(r0, HeapObject::kMapOffset),
95
+ Heap::kHashTableMapRootIndex);
96
+ __ j(not_equal, miss);
97
+ }
98
+
99
+
100
+ // Probe the string dictionary in the |elements| register. Jump to the
101
+ // |done| label if a property with the given name is found leaving the
102
+ // index into the dictionary in |r1|. Jump to the |miss| label
103
+ // otherwise.
104
+ static void GenerateStringDictionaryProbes(MacroAssembler* masm,
105
+ Label* miss,
106
+ Label* done,
107
+ Register elements,
108
+ Register name,
109
+ Register r0,
110
+ Register r1) {
111
+ // Assert that name contains a string.
112
+ if (FLAG_debug_code) __ AbortIfNotString(name);
113
+
114
+ // Compute the capacity mask.
115
+ const int kCapacityOffset =
116
+ StringDictionary::kHeaderSize +
117
+ StringDictionary::kCapacityIndex * kPointerSize;
118
+ __ SmiToInteger32(r0, FieldOperand(elements, kCapacityOffset));
119
+ __ decl(r0);
120
+
121
+ // Generate an unrolled loop that performs a few probes before
122
+ // giving up. Measurements done on Gmail indicate that 2 probes
123
+ // cover ~93% of loads from dictionaries.
124
+ static const int kProbes = 4;
125
+ const int kElementsStartOffset =
126
+ StringDictionary::kHeaderSize +
127
+ StringDictionary::kElementsStartIndex * kPointerSize;
128
+ for (int i = 0; i < kProbes; i++) {
129
+ // Compute the masked index: (hash + i + i * i) & mask.
130
+ __ movl(r1, FieldOperand(name, String::kHashFieldOffset));
131
+ __ shrl(r1, Immediate(String::kHashShift));
132
+ if (i > 0) {
133
+ __ addl(r1, Immediate(StringDictionary::GetProbeOffset(i)));
134
+ }
135
+ __ and_(r1, r0);
136
+
137
+ // Scale the index by multiplying by the entry size.
138
+ ASSERT(StringDictionary::kEntrySize == 3);
139
+ __ lea(r1, Operand(r1, r1, times_2, 0)); // r1 = r1 * 3
140
+
141
+ // Check if the key is identical to the name.
142
+ __ cmpq(name, Operand(elements, r1, times_pointer_size,
143
+ kElementsStartOffset - kHeapObjectTag));
144
+ if (i != kProbes - 1) {
145
+ __ j(equal, done);
146
+ } else {
147
+ __ j(not_equal, miss);
148
+ }
149
+ }
150
+ }
151
+
152
+
153
+ // Helper function used to load a property from a dictionary backing storage.
154
+ // This function may return false negatives, so miss_label
155
+ // must always call a backup property load that is complete.
156
+ // This function is safe to call if name is not a symbol, and will jump to
157
+ // the miss_label in that case.
158
+ // The generated code assumes that the receiver has slow properties,
159
+ // is not a global object and does not have interceptors.
160
+ static void GenerateDictionaryLoad(MacroAssembler* masm,
161
+ Label* miss_label,
162
+ Register elements,
163
+ Register name,
164
+ Register r0,
165
+ Register r1,
166
+ Register result) {
167
+ // Register use:
168
+ //
169
+ // elements - holds the property dictionary on entry and is unchanged.
170
+ //
171
+ // name - holds the name of the property on entry and is unchanged.
172
+ //
173
+ // r0 - used to hold the capacity of the property dictionary.
174
+ //
175
+ // r1 - used to hold the index into the property dictionary.
176
+ //
177
+ // result - holds the result on exit if the load succeeded.
178
+
179
+ Label done;
180
+
181
+ // Probe the dictionary.
182
+ GenerateStringDictionaryProbes(masm,
183
+ miss_label,
184
+ &done,
185
+ elements,
186
+ name,
187
+ r0,
188
+ r1);
189
+
190
+ // If probing finds an entry in the dictionary, r0 contains the
191
+ // index into the dictionary. Check that the value is a normal
192
+ // property.
193
+ __ bind(&done);
194
+ const int kElementsStartOffset =
195
+ StringDictionary::kHeaderSize +
196
+ StringDictionary::kElementsStartIndex * kPointerSize;
197
+ const int kDetailsOffset = kElementsStartOffset + 2 * kPointerSize;
198
+ __ Test(Operand(elements, r1, times_pointer_size,
199
+ kDetailsOffset - kHeapObjectTag),
200
+ Smi::FromInt(PropertyDetails::TypeField::mask()));
201
+ __ j(not_zero, miss_label);
202
+
203
+ // Get the value at the masked, scaled index.
204
+ const int kValueOffset = kElementsStartOffset + kPointerSize;
205
+ __ movq(result,
206
+ Operand(elements, r1, times_pointer_size,
207
+ kValueOffset - kHeapObjectTag));
208
+ }
209
+
210
+
211
+ // Helper function used to store a property to a dictionary backing
212
+ // storage. This function may fail to store a property even though it
213
+ // is in the dictionary, so code at miss_label must always call a
214
+ // backup property store that is complete. This function is safe to
215
+ // call if name is not a symbol, and will jump to the miss_label in
216
+ // that case. The generated code assumes that the receiver has slow
217
+ // properties, is not a global object and does not have interceptors.
218
+ static void GenerateDictionaryStore(MacroAssembler* masm,
219
+ Label* miss_label,
220
+ Register elements,
221
+ Register name,
222
+ Register value,
223
+ Register scratch0,
224
+ Register scratch1) {
225
+ // Register use:
226
+ //
227
+ // elements - holds the property dictionary on entry and is clobbered.
228
+ //
229
+ // name - holds the name of the property on entry and is unchanged.
230
+ //
231
+ // value - holds the value to store and is unchanged.
232
+ //
233
+ // scratch0 - used for index into the property dictionary and is clobbered.
234
+ //
235
+ // scratch1 - used to hold the capacity of the property dictionary and is
236
+ // clobbered.
237
+ Label done;
238
+
239
+ // Probe the dictionary.
240
+ GenerateStringDictionaryProbes(masm,
241
+ miss_label,
242
+ &done,
243
+ elements,
244
+ name,
245
+ scratch0,
246
+ scratch1);
247
+
248
+ // If probing finds an entry in the dictionary, scratch0 contains the
249
+ // index into the dictionary. Check that the value is a normal
250
+ // property that is not read only.
251
+ __ bind(&done);
252
+ const int kElementsStartOffset =
253
+ StringDictionary::kHeaderSize +
254
+ StringDictionary::kElementsStartIndex * kPointerSize;
255
+ const int kDetailsOffset = kElementsStartOffset + 2 * kPointerSize;
256
+ const int kTypeAndReadOnlyMask
257
+ = (PropertyDetails::TypeField::mask() |
258
+ PropertyDetails::AttributesField::encode(READ_ONLY)) << kSmiTagSize;
259
+ __ Test(Operand(elements,
260
+ scratch1,
261
+ times_pointer_size,
262
+ kDetailsOffset - kHeapObjectTag),
263
+ Smi::FromInt(kTypeAndReadOnlyMask));
264
+ __ j(not_zero, miss_label);
265
+
266
+ // Store the value at the masked, scaled index.
267
+ const int kValueOffset = kElementsStartOffset + kPointerSize;
268
+ __ lea(scratch1, Operand(elements,
269
+ scratch1,
270
+ times_pointer_size,
271
+ kValueOffset - kHeapObjectTag));
272
+ __ movq(Operand(scratch1, 0), value);
273
+
274
+ // Update write barrier. Make sure not to clobber the value.
275
+ __ movq(scratch0, value);
276
+ __ RecordWrite(elements, scratch1, scratch0);
277
+ }
278
+
279
+
280
+ static void GenerateNumberDictionaryLoad(MacroAssembler* masm,
281
+ Label* miss,
282
+ Register elements,
283
+ Register key,
284
+ Register r0,
285
+ Register r1,
286
+ Register r2,
287
+ Register result) {
288
+ // Register use:
289
+ //
290
+ // elements - holds the slow-case elements of the receiver on entry.
291
+ // Unchanged unless 'result' is the same register.
292
+ //
293
+ // key - holds the smi key on entry.
294
+ // Unchanged unless 'result' is the same register.
295
+ //
296
+ // Scratch registers:
297
+ //
298
+ // r0 - holds the untagged key on entry and holds the hash once computed.
299
+ //
300
+ // r1 - used to hold the capacity mask of the dictionary
301
+ //
302
+ // r2 - used for the index into the dictionary.
303
+ //
304
+ // result - holds the result on exit if the load succeeded.
305
+ // Allowed to be the same as 'key' or 'result'.
306
+ // Unchanged on bailout so 'key' or 'result' can be used
307
+ // in further computation.
308
+
309
+ Label done;
310
+
311
+ // Compute the hash code from the untagged key. This must be kept in sync
312
+ // with ComputeIntegerHash in utils.h.
313
+ //
314
+ // hash = ~hash + (hash << 15);
315
+ __ movl(r1, r0);
316
+ __ notl(r0);
317
+ __ shll(r1, Immediate(15));
318
+ __ addl(r0, r1);
319
+ // hash = hash ^ (hash >> 12);
320
+ __ movl(r1, r0);
321
+ __ shrl(r1, Immediate(12));
322
+ __ xorl(r0, r1);
323
+ // hash = hash + (hash << 2);
324
+ __ leal(r0, Operand(r0, r0, times_4, 0));
325
+ // hash = hash ^ (hash >> 4);
326
+ __ movl(r1, r0);
327
+ __ shrl(r1, Immediate(4));
328
+ __ xorl(r0, r1);
329
+ // hash = hash * 2057;
330
+ __ imull(r0, r0, Immediate(2057));
331
+ // hash = hash ^ (hash >> 16);
332
+ __ movl(r1, r0);
333
+ __ shrl(r1, Immediate(16));
334
+ __ xorl(r0, r1);
335
+
336
+ // Compute capacity mask.
337
+ __ SmiToInteger32(r1,
338
+ FieldOperand(elements, NumberDictionary::kCapacityOffset));
339
+ __ decl(r1);
340
+
341
+ // Generate an unrolled loop that performs a few probes before giving up.
342
+ const int kProbes = 4;
343
+ for (int i = 0; i < kProbes; i++) {
344
+ // Use r2 for index calculations and keep the hash intact in r0.
345
+ __ movq(r2, r0);
346
+ // Compute the masked index: (hash + i + i * i) & mask.
347
+ if (i > 0) {
348
+ __ addl(r2, Immediate(NumberDictionary::GetProbeOffset(i)));
349
+ }
350
+ __ and_(r2, r1);
351
+
352
+ // Scale the index by multiplying by the entry size.
353
+ ASSERT(NumberDictionary::kEntrySize == 3);
354
+ __ lea(r2, Operand(r2, r2, times_2, 0)); // r2 = r2 * 3
355
+
356
+ // Check if the key matches.
357
+ __ cmpq(key, FieldOperand(elements,
358
+ r2,
359
+ times_pointer_size,
360
+ NumberDictionary::kElementsStartOffset));
361
+ if (i != (kProbes - 1)) {
362
+ __ j(equal, &done);
363
+ } else {
364
+ __ j(not_equal, miss);
365
+ }
366
+ }
367
+
368
+ __ bind(&done);
369
+ // Check that the value is a normal propety.
370
+ const int kDetailsOffset =
371
+ NumberDictionary::kElementsStartOffset + 2 * kPointerSize;
372
+ ASSERT_EQ(NORMAL, 0);
373
+ __ Test(FieldOperand(elements, r2, times_pointer_size, kDetailsOffset),
374
+ Smi::FromInt(PropertyDetails::TypeField::mask()));
375
+ __ j(not_zero, miss);
376
+
377
+ // Get the value at the masked, scaled index.
378
+ const int kValueOffset =
379
+ NumberDictionary::kElementsStartOffset + kPointerSize;
380
+ __ movq(result, FieldOperand(elements, r2, times_pointer_size, kValueOffset));
381
+ }
382
+
383
+
384
+ // The offset from the inlined patch site to the start of the inlined
385
+ // load instruction.
386
+ const int LoadIC::kOffsetToLoadInstruction = 20;
387
+
388
+
389
+ void LoadIC::GenerateArrayLength(MacroAssembler* masm) {
390
+ // ----------- S t a t e -------------
391
+ // -- rax : receiver
392
+ // -- rcx : name
393
+ // -- rsp[0] : return address
394
+ // -----------------------------------
395
+ Label miss;
396
+
397
+ StubCompiler::GenerateLoadArrayLength(masm, rax, rdx, &miss);
398
+ __ bind(&miss);
399
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
400
+ }
401
+
402
+
403
+ void LoadIC::GenerateStringLength(MacroAssembler* masm, bool support_wrappers) {
404
+ // ----------- S t a t e -------------
405
+ // -- rax : receiver
406
+ // -- rcx : name
407
+ // -- rsp[0] : return address
408
+ // -----------------------------------
409
+ Label miss;
410
+
411
+ StubCompiler::GenerateLoadStringLength(masm, rax, rdx, rbx, &miss,
412
+ support_wrappers);
413
+ __ bind(&miss);
414
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
415
+ }
416
+
417
+
418
+ void LoadIC::GenerateFunctionPrototype(MacroAssembler* masm) {
419
+ // ----------- S t a t e -------------
420
+ // -- rax : receiver
421
+ // -- rcx : name
422
+ // -- rsp[0] : return address
423
+ // -----------------------------------
424
+ Label miss;
425
+
426
+ StubCompiler::GenerateLoadFunctionPrototype(masm, rax, rdx, rbx, &miss);
427
+ __ bind(&miss);
428
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
429
+ }
430
+
431
+
432
+ // Checks the receiver for special cases (value type, slow case bits).
433
+ // Falls through for regular JS object.
434
+ static void GenerateKeyedLoadReceiverCheck(MacroAssembler* masm,
435
+ Register receiver,
436
+ Register map,
437
+ int interceptor_bit,
438
+ Label* slow) {
439
+ // Register use:
440
+ // receiver - holds the receiver and is unchanged.
441
+ // Scratch registers:
442
+ // map - used to hold the map of the receiver.
443
+
444
+ // Check that the object isn't a smi.
445
+ __ JumpIfSmi(receiver, slow);
446
+
447
+ // Check that the object is some kind of JS object EXCEPT JS Value type.
448
+ // In the case that the object is a value-wrapper object,
449
+ // we enter the runtime system to make sure that indexing
450
+ // into string objects work as intended.
451
+ ASSERT(JS_OBJECT_TYPE > JS_VALUE_TYPE);
452
+ __ CmpObjectType(receiver, JS_OBJECT_TYPE, map);
453
+ __ j(below, slow);
454
+
455
+ // Check bit field.
456
+ __ testb(FieldOperand(map, Map::kBitFieldOffset),
457
+ Immediate((1 << Map::kIsAccessCheckNeeded) |
458
+ (1 << interceptor_bit)));
459
+ __ j(not_zero, slow);
460
+ }
461
+
462
+
463
+ // Loads an indexed element from a fast case array.
464
+ // If not_fast_array is NULL, doesn't perform the elements map check.
465
+ static void GenerateFastArrayLoad(MacroAssembler* masm,
466
+ Register receiver,
467
+ Register key,
468
+ Register elements,
469
+ Register scratch,
470
+ Register result,
471
+ Label* not_fast_array,
472
+ Label* out_of_range) {
473
+ // Register use:
474
+ //
475
+ // receiver - holds the receiver on entry.
476
+ // Unchanged unless 'result' is the same register.
477
+ //
478
+ // key - holds the smi key on entry.
479
+ // Unchanged unless 'result' is the same register.
480
+ //
481
+ // elements - holds the elements of the receiver on exit.
482
+ //
483
+ // result - holds the result on exit if the load succeeded.
484
+ // Allowed to be the the same as 'receiver' or 'key'.
485
+ // Unchanged on bailout so 'receiver' and 'key' can be safely
486
+ // used by further computation.
487
+ //
488
+ // Scratch registers:
489
+ //
490
+ // scratch - used to hold elements of the receiver and the loaded value.
491
+
492
+ __ movq(elements, FieldOperand(receiver, JSObject::kElementsOffset));
493
+ if (not_fast_array != NULL) {
494
+ // Check that the object is in fast mode and writable.
495
+ __ CompareRoot(FieldOperand(elements, HeapObject::kMapOffset),
496
+ Heap::kFixedArrayMapRootIndex);
497
+ __ j(not_equal, not_fast_array);
498
+ } else {
499
+ __ AssertFastElements(elements);
500
+ }
501
+ // Check that the key (index) is within bounds.
502
+ __ SmiCompare(key, FieldOperand(elements, FixedArray::kLengthOffset));
503
+ // Unsigned comparison rejects negative indices.
504
+ __ j(above_equal, out_of_range);
505
+ // Fast case: Do the load.
506
+ SmiIndex index = masm->SmiToIndex(scratch, key, kPointerSizeLog2);
507
+ __ movq(scratch, FieldOperand(elements,
508
+ index.reg,
509
+ index.scale,
510
+ FixedArray::kHeaderSize));
511
+ __ CompareRoot(scratch, Heap::kTheHoleValueRootIndex);
512
+ // In case the loaded value is the_hole we have to consult GetProperty
513
+ // to ensure the prototype chain is searched.
514
+ __ j(equal, out_of_range);
515
+ if (!result.is(scratch)) {
516
+ __ movq(result, scratch);
517
+ }
518
+ }
519
+
520
+
521
+ // Checks whether a key is an array index string or a symbol string.
522
+ // Falls through if the key is a symbol.
523
+ static void GenerateKeyStringCheck(MacroAssembler* masm,
524
+ Register key,
525
+ Register map,
526
+ Register hash,
527
+ Label* index_string,
528
+ Label* not_symbol) {
529
+ // Register use:
530
+ // key - holds the key and is unchanged. Assumed to be non-smi.
531
+ // Scratch registers:
532
+ // map - used to hold the map of the key.
533
+ // hash - used to hold the hash of the key.
534
+ __ CmpObjectType(key, FIRST_NONSTRING_TYPE, map);
535
+ __ j(above_equal, not_symbol);
536
+ // Is the string an array index, with cached numeric value?
537
+ __ movl(hash, FieldOperand(key, String::kHashFieldOffset));
538
+ __ testl(hash, Immediate(String::kContainsCachedArrayIndexMask));
539
+ __ j(zero, index_string); // The value in hash is used at jump target.
540
+
541
+ // Is the string a symbol?
542
+ ASSERT(kSymbolTag != 0);
543
+ __ testb(FieldOperand(map, Map::kInstanceTypeOffset),
544
+ Immediate(kIsSymbolMask));
545
+ __ j(zero, not_symbol);
546
+ }
547
+
548
+
549
+
550
+ void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
551
+ // ----------- S t a t e -------------
552
+ // -- rax : key
553
+ // -- rdx : receiver
554
+ // -- rsp[0] : return address
555
+ // -----------------------------------
556
+ Label slow, check_string, index_smi, index_string, property_array_property;
557
+ Label check_pixel_array, probe_dictionary, check_number_dictionary;
558
+
559
+ // Check that the key is a smi.
560
+ __ JumpIfNotSmi(rax, &check_string);
561
+ __ bind(&index_smi);
562
+ // Now the key is known to be a smi. This place is also jumped to from below
563
+ // where a numeric string is converted to a smi.
564
+
565
+ GenerateKeyedLoadReceiverCheck(
566
+ masm, rdx, rcx, Map::kHasIndexedInterceptor, &slow);
567
+
568
+ // Check the "has fast elements" bit in the receiver's map which is
569
+ // now in rcx.
570
+ __ testb(FieldOperand(rcx, Map::kBitField2Offset),
571
+ Immediate(1 << Map::kHasFastElements));
572
+ __ j(zero, &check_pixel_array);
573
+
574
+ GenerateFastArrayLoad(masm,
575
+ rdx,
576
+ rax,
577
+ rcx,
578
+ rbx,
579
+ rax,
580
+ NULL,
581
+ &slow);
582
+ __ IncrementCounter(&Counters::keyed_load_generic_smi, 1);
583
+ __ ret(0);
584
+
585
+ __ bind(&check_pixel_array);
586
+ GenerateFastPixelArrayLoad(masm,
587
+ rdx,
588
+ rax,
589
+ rcx,
590
+ rbx,
591
+ rax,
592
+ &check_number_dictionary,
593
+ NULL,
594
+ &slow);
595
+
596
+ __ bind(&check_number_dictionary);
597
+ // Check whether the elements is a number dictionary.
598
+ // rdx: receiver
599
+ // rax: key
600
+ // rbx: key as untagged int32
601
+ // rcx: elements
602
+ __ CompareRoot(FieldOperand(rcx, HeapObject::kMapOffset),
603
+ Heap::kHashTableMapRootIndex);
604
+ __ j(not_equal, &slow);
605
+ GenerateNumberDictionaryLoad(masm, &slow, rcx, rax, rbx, r9, rdi, rax);
606
+ __ ret(0);
607
+
608
+ __ bind(&slow);
609
+ // Slow case: Jump to runtime.
610
+ // rdx: receiver
611
+ // rax: key
612
+ __ IncrementCounter(&Counters::keyed_load_generic_slow, 1);
613
+ GenerateRuntimeGetProperty(masm);
614
+
615
+ __ bind(&check_string);
616
+ GenerateKeyStringCheck(masm, rax, rcx, rbx, &index_string, &slow);
617
+
618
+ GenerateKeyedLoadReceiverCheck(
619
+ masm, rdx, rcx, Map::kHasNamedInterceptor, &slow);
620
+
621
+ // If the receiver is a fast-case object, check the keyed lookup
622
+ // cache. Otherwise probe the dictionary leaving result in rcx.
623
+ __ movq(rbx, FieldOperand(rdx, JSObject::kPropertiesOffset));
624
+ __ CompareRoot(FieldOperand(rbx, HeapObject::kMapOffset),
625
+ Heap::kHashTableMapRootIndex);
626
+ __ j(equal, &probe_dictionary);
627
+
628
+ // Load the map of the receiver, compute the keyed lookup cache hash
629
+ // based on 32 bits of the map pointer and the string hash.
630
+ __ movq(rbx, FieldOperand(rdx, HeapObject::kMapOffset));
631
+ __ movl(rcx, rbx);
632
+ __ shr(rcx, Immediate(KeyedLookupCache::kMapHashShift));
633
+ __ movl(rdi, FieldOperand(rax, String::kHashFieldOffset));
634
+ __ shr(rdi, Immediate(String::kHashShift));
635
+ __ xor_(rcx, rdi);
636
+ __ and_(rcx, Immediate(KeyedLookupCache::kCapacityMask));
637
+
638
+ // Load the key (consisting of map and symbol) from the cache and
639
+ // check for match.
640
+ ExternalReference cache_keys
641
+ = ExternalReference::keyed_lookup_cache_keys();
642
+ __ movq(rdi, rcx);
643
+ __ shl(rdi, Immediate(kPointerSizeLog2 + 1));
644
+ __ movq(kScratchRegister, cache_keys);
645
+ __ cmpq(rbx, Operand(kScratchRegister, rdi, times_1, 0));
646
+ __ j(not_equal, &slow);
647
+ __ cmpq(rax, Operand(kScratchRegister, rdi, times_1, kPointerSize));
648
+ __ j(not_equal, &slow);
649
+
650
+ // Get field offset, which is a 32-bit integer.
651
+ ExternalReference cache_field_offsets
652
+ = ExternalReference::keyed_lookup_cache_field_offsets();
653
+ __ movq(kScratchRegister, cache_field_offsets);
654
+ __ movl(rdi, Operand(kScratchRegister, rcx, times_4, 0));
655
+ __ movzxbq(rcx, FieldOperand(rbx, Map::kInObjectPropertiesOffset));
656
+ __ subq(rdi, rcx);
657
+ __ j(above_equal, &property_array_property);
658
+
659
+ // Load in-object property.
660
+ __ movzxbq(rcx, FieldOperand(rbx, Map::kInstanceSizeOffset));
661
+ __ addq(rcx, rdi);
662
+ __ movq(rax, FieldOperand(rdx, rcx, times_pointer_size, 0));
663
+ __ IncrementCounter(&Counters::keyed_load_generic_lookup_cache, 1);
664
+ __ ret(0);
665
+
666
+ // Load property array property.
667
+ __ bind(&property_array_property);
668
+ __ movq(rax, FieldOperand(rdx, JSObject::kPropertiesOffset));
669
+ __ movq(rax, FieldOperand(rax, rdi, times_pointer_size,
670
+ FixedArray::kHeaderSize));
671
+ __ IncrementCounter(&Counters::keyed_load_generic_lookup_cache, 1);
672
+ __ ret(0);
673
+
674
+ // Do a quick inline probe of the receiver's dictionary, if it
675
+ // exists.
676
+ __ bind(&probe_dictionary);
677
+ // rdx: receiver
678
+ // rax: key
679
+ // rbx: elements
680
+
681
+ __ movq(rcx, FieldOperand(rdx, JSObject::kMapOffset));
682
+ __ movb(rcx, FieldOperand(rcx, Map::kInstanceTypeOffset));
683
+ GenerateGlobalInstanceTypeCheck(masm, rcx, &slow);
684
+
685
+ GenerateDictionaryLoad(masm, &slow, rbx, rax, rcx, rdi, rax);
686
+ __ IncrementCounter(&Counters::keyed_load_generic_symbol, 1);
687
+ __ ret(0);
688
+
689
+ __ bind(&index_string);
690
+ __ IndexFromHash(rbx, rax);
691
+ __ jmp(&index_smi);
692
+ }
693
+
694
+
695
+ void KeyedLoadIC::GenerateString(MacroAssembler* masm) {
696
+ // ----------- S t a t e -------------
697
+ // -- rax : key
698
+ // -- rdx : receiver
699
+ // -- rsp[0] : return address
700
+ // -----------------------------------
701
+ Label miss;
702
+
703
+ Register receiver = rdx;
704
+ Register index = rax;
705
+ Register scratch1 = rbx;
706
+ Register scratch2 = rcx;
707
+ Register result = rax;
708
+
709
+ StringCharAtGenerator char_at_generator(receiver,
710
+ index,
711
+ scratch1,
712
+ scratch2,
713
+ result,
714
+ &miss, // When not a string.
715
+ &miss, // When not a number.
716
+ &miss, // When index out of range.
717
+ STRING_INDEX_IS_ARRAY_INDEX);
718
+ char_at_generator.GenerateFast(masm);
719
+ __ ret(0);
720
+
721
+ StubRuntimeCallHelper call_helper;
722
+ char_at_generator.GenerateSlow(masm, call_helper);
723
+
724
+ __ bind(&miss);
725
+ GenerateMiss(masm);
726
+ }
727
+
728
+
729
+ void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) {
730
+ // ----------- S t a t e -------------
731
+ // -- rax : key
732
+ // -- rdx : receiver
733
+ // -- rsp[0] : return address
734
+ // -----------------------------------
735
+ Label slow;
736
+
737
+ // Check that the receiver isn't a smi.
738
+ __ JumpIfSmi(rdx, &slow);
739
+
740
+ // Check that the key is an array index, that is Uint32.
741
+ STATIC_ASSERT(kSmiValueSize <= 32);
742
+ __ JumpUnlessNonNegativeSmi(rax, &slow);
743
+
744
+ // Get the map of the receiver.
745
+ __ movq(rcx, FieldOperand(rdx, HeapObject::kMapOffset));
746
+
747
+ // Check that it has indexed interceptor and access checks
748
+ // are not enabled for this object.
749
+ __ movb(rcx, FieldOperand(rcx, Map::kBitFieldOffset));
750
+ __ andb(rcx, Immediate(kSlowCaseBitFieldMask));
751
+ __ cmpb(rcx, Immediate(1 << Map::kHasIndexedInterceptor));
752
+ __ j(not_zero, &slow);
753
+
754
+ // Everything is fine, call runtime.
755
+ __ pop(rcx);
756
+ __ push(rdx); // receiver
757
+ __ push(rax); // key
758
+ __ push(rcx); // return address
759
+
760
+ // Perform tail call to the entry.
761
+ __ TailCallExternalReference(ExternalReference(
762
+ IC_Utility(kKeyedLoadPropertyWithInterceptor)), 2, 1);
763
+
764
+ __ bind(&slow);
765
+ GenerateMiss(masm);
766
+ }
767
+
768
+
769
+ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm,
770
+ StrictModeFlag strict_mode) {
771
+ // ----------- S t a t e -------------
772
+ // -- rax : value
773
+ // -- rcx : key
774
+ // -- rdx : receiver
775
+ // -- rsp[0] : return address
776
+ // -----------------------------------
777
+ Label slow, slow_with_tagged_index, fast, array, extra, check_pixel_array;
778
+
779
+ // Check that the object isn't a smi.
780
+ __ JumpIfSmi(rdx, &slow_with_tagged_index);
781
+ // Get the map from the receiver.
782
+ __ movq(rbx, FieldOperand(rdx, HeapObject::kMapOffset));
783
+ // Check that the receiver does not require access checks. We need
784
+ // to do this because this generic stub does not perform map checks.
785
+ __ testb(FieldOperand(rbx, Map::kBitFieldOffset),
786
+ Immediate(1 << Map::kIsAccessCheckNeeded));
787
+ __ j(not_zero, &slow_with_tagged_index);
788
+ // Check that the key is a smi.
789
+ __ JumpIfNotSmi(rcx, &slow_with_tagged_index);
790
+ __ SmiToInteger32(rcx, rcx);
791
+
792
+ __ CmpInstanceType(rbx, JS_ARRAY_TYPE);
793
+ __ j(equal, &array);
794
+ // Check that the object is some kind of JS object.
795
+ __ CmpInstanceType(rbx, FIRST_JS_OBJECT_TYPE);
796
+ __ j(below, &slow);
797
+
798
+ // Object case: Check key against length in the elements array.
799
+ // rax: value
800
+ // rdx: JSObject
801
+ // rcx: index
802
+ __ movq(rbx, FieldOperand(rdx, JSObject::kElementsOffset));
803
+ // Check that the object is in fast mode and writable.
804
+ __ CompareRoot(FieldOperand(rbx, HeapObject::kMapOffset),
805
+ Heap::kFixedArrayMapRootIndex);
806
+ __ j(not_equal, &check_pixel_array);
807
+ __ SmiCompareInteger32(FieldOperand(rbx, FixedArray::kLengthOffset), rcx);
808
+ // rax: value
809
+ // rbx: FixedArray
810
+ // rcx: index
811
+ __ j(above, &fast);
812
+
813
+ // Slow case: call runtime.
814
+ __ bind(&slow);
815
+ __ Integer32ToSmi(rcx, rcx);
816
+ __ bind(&slow_with_tagged_index);
817
+ GenerateRuntimeSetProperty(masm, strict_mode);
818
+ // Never returns to here.
819
+
820
+ // Check whether the elements is a pixel array.
821
+ // rax: value
822
+ // rdx: receiver
823
+ // rbx: receiver's elements array
824
+ // rcx: index, zero-extended.
825
+ __ bind(&check_pixel_array);
826
+ GenerateFastPixelArrayStore(masm,
827
+ rdx,
828
+ rcx,
829
+ rax,
830
+ rbx,
831
+ rdi,
832
+ false,
833
+ true,
834
+ NULL,
835
+ &slow,
836
+ &slow,
837
+ &slow);
838
+
839
+ // Extra capacity case: Check if there is extra capacity to
840
+ // perform the store and update the length. Used for adding one
841
+ // element to the array by writing to array[array.length].
842
+ __ bind(&extra);
843
+ // rax: value
844
+ // rdx: receiver (a JSArray)
845
+ // rbx: receiver's elements array (a FixedArray)
846
+ // rcx: index
847
+ // flags: smicompare (rdx.length(), rbx)
848
+ __ j(not_equal, &slow); // do not leave holes in the array
849
+ __ SmiCompareInteger32(FieldOperand(rbx, FixedArray::kLengthOffset), rcx);
850
+ __ j(below_equal, &slow);
851
+ // Increment index to get new length.
852
+ __ leal(rdi, Operand(rcx, 1));
853
+ __ Integer32ToSmiField(FieldOperand(rdx, JSArray::kLengthOffset), rdi);
854
+ __ jmp(&fast);
855
+
856
+ // Array case: Get the length and the elements array from the JS
857
+ // array. Check that the array is in fast mode (and writable); if it
858
+ // is the length is always a smi.
859
+ __ bind(&array);
860
+ // rax: value
861
+ // rdx: receiver (a JSArray)
862
+ // rcx: index
863
+ __ movq(rbx, FieldOperand(rdx, JSObject::kElementsOffset));
864
+ __ CompareRoot(FieldOperand(rbx, HeapObject::kMapOffset),
865
+ Heap::kFixedArrayMapRootIndex);
866
+ __ j(not_equal, &slow);
867
+
868
+ // Check the key against the length in the array, compute the
869
+ // address to store into and fall through to fast case.
870
+ __ SmiCompareInteger32(FieldOperand(rdx, JSArray::kLengthOffset), rcx);
871
+ __ j(below_equal, &extra);
872
+
873
+ // Fast case: Do the store.
874
+ __ bind(&fast);
875
+ // rax: value
876
+ // rbx: receiver's elements array (a FixedArray)
877
+ // rcx: index
878
+ NearLabel non_smi_value;
879
+ __ movq(FieldOperand(rbx, rcx, times_pointer_size, FixedArray::kHeaderSize),
880
+ rax);
881
+ __ JumpIfNotSmi(rax, &non_smi_value);
882
+ __ ret(0);
883
+ __ bind(&non_smi_value);
884
+ // Slow case that needs to retain rcx for use by RecordWrite.
885
+ // Update write barrier for the elements array address.
886
+ __ movq(rdx, rax);
887
+ __ RecordWriteNonSmi(rbx, 0, rdx, rcx);
888
+ __ ret(0);
889
+ }
890
+
891
+
892
+ // The generated code does not accept smi keys.
893
+ // The generated code falls through if both probes miss.
894
+ static void GenerateMonomorphicCacheProbe(MacroAssembler* masm,
895
+ int argc,
896
+ Code::Kind kind) {
897
+ // ----------- S t a t e -------------
898
+ // rcx : function name
899
+ // rdx : receiver
900
+ // -----------------------------------
901
+ Label number, non_number, non_string, boolean, probe, miss;
902
+
903
+ // Probe the stub cache.
904
+ Code::Flags flags = Code::ComputeFlags(kind,
905
+ NOT_IN_LOOP,
906
+ MONOMORPHIC,
907
+ Code::kNoExtraICState,
908
+ NORMAL,
909
+ argc);
910
+ StubCache::GenerateProbe(masm, flags, rdx, rcx, rbx, rax);
911
+
912
+ // If the stub cache probing failed, the receiver might be a value.
913
+ // For value objects, we use the map of the prototype objects for
914
+ // the corresponding JSValue for the cache and that is what we need
915
+ // to probe.
916
+ //
917
+ // Check for number.
918
+ __ JumpIfSmi(rdx, &number);
919
+ __ CmpObjectType(rdx, HEAP_NUMBER_TYPE, rbx);
920
+ __ j(not_equal, &non_number);
921
+ __ bind(&number);
922
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
923
+ masm, Context::NUMBER_FUNCTION_INDEX, rdx);
924
+ __ jmp(&probe);
925
+
926
+ // Check for string.
927
+ __ bind(&non_number);
928
+ __ CmpInstanceType(rbx, FIRST_NONSTRING_TYPE);
929
+ __ j(above_equal, &non_string);
930
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
931
+ masm, Context::STRING_FUNCTION_INDEX, rdx);
932
+ __ jmp(&probe);
933
+
934
+ // Check for boolean.
935
+ __ bind(&non_string);
936
+ __ CompareRoot(rdx, Heap::kTrueValueRootIndex);
937
+ __ j(equal, &boolean);
938
+ __ CompareRoot(rdx, Heap::kFalseValueRootIndex);
939
+ __ j(not_equal, &miss);
940
+ __ bind(&boolean);
941
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
942
+ masm, Context::BOOLEAN_FUNCTION_INDEX, rdx);
943
+
944
+ // Probe the stub cache for the value object.
945
+ __ bind(&probe);
946
+ StubCache::GenerateProbe(masm, flags, rdx, rcx, rbx, no_reg);
947
+
948
+ __ bind(&miss);
949
+ }
950
+
951
+
952
+ static void GenerateFunctionTailCall(MacroAssembler* masm,
953
+ int argc,
954
+ Label* miss) {
955
+ // ----------- S t a t e -------------
956
+ // rcx : function name
957
+ // rdi : function
958
+ // rsp[0] : return address
959
+ // rsp[8] : argument argc
960
+ // rsp[16] : argument argc - 1
961
+ // ...
962
+ // rsp[argc * 8] : argument 1
963
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
964
+ // -----------------------------------
965
+ __ JumpIfSmi(rdi, miss);
966
+ // Check that the value is a JavaScript function.
967
+ __ CmpObjectType(rdi, JS_FUNCTION_TYPE, rdx);
968
+ __ j(not_equal, miss);
969
+
970
+ // Invoke the function.
971
+ ParameterCount actual(argc);
972
+ __ InvokeFunction(rdi, actual, JUMP_FUNCTION);
973
+ }
974
+
975
+
976
+ // The generated code falls through if the call should be handled by runtime.
977
+ static void GenerateCallNormal(MacroAssembler* masm, int argc) {
978
+ // ----------- S t a t e -------------
979
+ // rcx : function name
980
+ // rsp[0] : return address
981
+ // rsp[8] : argument argc
982
+ // rsp[16] : argument argc - 1
983
+ // ...
984
+ // rsp[argc * 8] : argument 1
985
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
986
+ // -----------------------------------
987
+ Label miss;
988
+
989
+ // Get the receiver of the function from the stack.
990
+ __ movq(rdx, Operand(rsp, (argc + 1) * kPointerSize));
991
+
992
+ GenerateStringDictionaryReceiverCheck(masm, rdx, rax, rbx, &miss);
993
+
994
+ // rax: elements
995
+ // Search the dictionary placing the result in rdi.
996
+ GenerateDictionaryLoad(masm, &miss, rax, rcx, rbx, rdi, rdi);
997
+
998
+ GenerateFunctionTailCall(masm, argc, &miss);
999
+
1000
+ __ bind(&miss);
1001
+ }
1002
+
1003
+
1004
+ static void GenerateCallMiss(MacroAssembler* masm, int argc, IC::UtilityId id) {
1005
+ // ----------- S t a t e -------------
1006
+ // rcx : function name
1007
+ // rsp[0] : return address
1008
+ // rsp[8] : argument argc
1009
+ // rsp[16] : argument argc - 1
1010
+ // ...
1011
+ // rsp[argc * 8] : argument 1
1012
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
1013
+ // -----------------------------------
1014
+
1015
+ if (id == IC::kCallIC_Miss) {
1016
+ __ IncrementCounter(&Counters::call_miss, 1);
1017
+ } else {
1018
+ __ IncrementCounter(&Counters::keyed_call_miss, 1);
1019
+ }
1020
+
1021
+ // Get the receiver of the function from the stack; 1 ~ return address.
1022
+ __ movq(rdx, Operand(rsp, (argc + 1) * kPointerSize));
1023
+
1024
+ // Enter an internal frame.
1025
+ __ EnterInternalFrame();
1026
+
1027
+ // Push the receiver and the name of the function.
1028
+ __ push(rdx);
1029
+ __ push(rcx);
1030
+
1031
+ // Call the entry.
1032
+ CEntryStub stub(1);
1033
+ __ movq(rax, Immediate(2));
1034
+ __ movq(rbx, ExternalReference(IC_Utility(id)));
1035
+ __ CallStub(&stub);
1036
+
1037
+ // Move result to rdi and exit the internal frame.
1038
+ __ movq(rdi, rax);
1039
+ __ LeaveInternalFrame();
1040
+
1041
+ // Check if the receiver is a global object of some sort.
1042
+ // This can happen only for regular CallIC but not KeyedCallIC.
1043
+ if (id == IC::kCallIC_Miss) {
1044
+ Label invoke, global;
1045
+ __ movq(rdx, Operand(rsp, (argc + 1) * kPointerSize)); // receiver
1046
+ __ JumpIfSmi(rdx, &invoke);
1047
+ __ CmpObjectType(rdx, JS_GLOBAL_OBJECT_TYPE, rcx);
1048
+ __ j(equal, &global);
1049
+ __ CmpInstanceType(rcx, JS_BUILTINS_OBJECT_TYPE);
1050
+ __ j(not_equal, &invoke);
1051
+
1052
+ // Patch the receiver on the stack.
1053
+ __ bind(&global);
1054
+ __ movq(rdx, FieldOperand(rdx, GlobalObject::kGlobalReceiverOffset));
1055
+ __ movq(Operand(rsp, (argc + 1) * kPointerSize), rdx);
1056
+ __ bind(&invoke);
1057
+ }
1058
+
1059
+ // Invoke the function.
1060
+ ParameterCount actual(argc);
1061
+ __ InvokeFunction(rdi, actual, JUMP_FUNCTION);
1062
+ }
1063
+
1064
+
1065
+ void CallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
1066
+ // ----------- S t a t e -------------
1067
+ // rcx : function name
1068
+ // rsp[0] : return address
1069
+ // rsp[8] : argument argc
1070
+ // rsp[16] : argument argc - 1
1071
+ // ...
1072
+ // rsp[argc * 8] : argument 1
1073
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
1074
+ // -----------------------------------
1075
+
1076
+ // Get the receiver of the function from the stack; 1 ~ return address.
1077
+ __ movq(rdx, Operand(rsp, (argc + 1) * kPointerSize));
1078
+ GenerateMonomorphicCacheProbe(masm, argc, Code::CALL_IC);
1079
+ GenerateMiss(masm, argc);
1080
+ }
1081
+
1082
+
1083
+ void CallIC::GenerateNormal(MacroAssembler* masm, int argc) {
1084
+ // ----------- S t a t e -------------
1085
+ // rcx : function name
1086
+ // rsp[0] : return address
1087
+ // rsp[8] : argument argc
1088
+ // rsp[16] : argument argc - 1
1089
+ // ...
1090
+ // rsp[argc * 8] : argument 1
1091
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
1092
+ // -----------------------------------
1093
+
1094
+ GenerateCallNormal(masm, argc);
1095
+ GenerateMiss(masm, argc);
1096
+ }
1097
+
1098
+
1099
+ void CallIC::GenerateMiss(MacroAssembler* masm, int argc) {
1100
+ // ----------- S t a t e -------------
1101
+ // rcx : function name
1102
+ // rsp[0] : return address
1103
+ // rsp[8] : argument argc
1104
+ // rsp[16] : argument argc - 1
1105
+ // ...
1106
+ // rsp[argc * 8] : argument 1
1107
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
1108
+ // -----------------------------------
1109
+
1110
+ GenerateCallMiss(masm, argc, IC::kCallIC_Miss);
1111
+ }
1112
+
1113
+
1114
+ void KeyedCallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
1115
+ // ----------- S t a t e -------------
1116
+ // rcx : function name
1117
+ // rsp[0] : return address
1118
+ // rsp[8] : argument argc
1119
+ // rsp[16] : argument argc - 1
1120
+ // ...
1121
+ // rsp[argc * 8] : argument 1
1122
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
1123
+ // -----------------------------------
1124
+
1125
+ // Get the receiver of the function from the stack; 1 ~ return address.
1126
+ __ movq(rdx, Operand(rsp, (argc + 1) * kPointerSize));
1127
+
1128
+ Label do_call, slow_call, slow_load;
1129
+ Label check_number_dictionary, check_string, lookup_monomorphic_cache;
1130
+ Label index_smi, index_string;
1131
+
1132
+ // Check that the key is a smi.
1133
+ __ JumpIfNotSmi(rcx, &check_string);
1134
+
1135
+ __ bind(&index_smi);
1136
+ // Now the key is known to be a smi. This place is also jumped to from below
1137
+ // where a numeric string is converted to a smi.
1138
+
1139
+ GenerateKeyedLoadReceiverCheck(
1140
+ masm, rdx, rax, Map::kHasIndexedInterceptor, &slow_call);
1141
+
1142
+ GenerateFastArrayLoad(
1143
+ masm, rdx, rcx, rax, rbx, rdi, &check_number_dictionary, &slow_load);
1144
+ __ IncrementCounter(&Counters::keyed_call_generic_smi_fast, 1);
1145
+
1146
+ __ bind(&do_call);
1147
+ // receiver in rdx is not used after this point.
1148
+ // rcx: key
1149
+ // rdi: function
1150
+ GenerateFunctionTailCall(masm, argc, &slow_call);
1151
+
1152
+ __ bind(&check_number_dictionary);
1153
+ // rax: elements
1154
+ // rcx: smi key
1155
+ // Check whether the elements is a number dictionary.
1156
+ __ CompareRoot(FieldOperand(rax, HeapObject::kMapOffset),
1157
+ Heap::kHashTableMapRootIndex);
1158
+ __ j(not_equal, &slow_load);
1159
+ __ SmiToInteger32(rbx, rcx);
1160
+ // ebx: untagged index
1161
+ GenerateNumberDictionaryLoad(masm, &slow_load, rax, rcx, rbx, r9, rdi, rdi);
1162
+ __ IncrementCounter(&Counters::keyed_call_generic_smi_dict, 1);
1163
+ __ jmp(&do_call);
1164
+
1165
+ __ bind(&slow_load);
1166
+ // This branch is taken when calling KeyedCallIC_Miss is neither required
1167
+ // nor beneficial.
1168
+ __ IncrementCounter(&Counters::keyed_call_generic_slow_load, 1);
1169
+ __ EnterInternalFrame();
1170
+ __ push(rcx); // save the key
1171
+ __ push(rdx); // pass the receiver
1172
+ __ push(rcx); // pass the key
1173
+ __ CallRuntime(Runtime::kKeyedGetProperty, 2);
1174
+ __ pop(rcx); // restore the key
1175
+ __ LeaveInternalFrame();
1176
+ __ movq(rdi, rax);
1177
+ __ jmp(&do_call);
1178
+
1179
+ __ bind(&check_string);
1180
+ GenerateKeyStringCheck(masm, rcx, rax, rbx, &index_string, &slow_call);
1181
+
1182
+ // The key is known to be a symbol.
1183
+ // If the receiver is a regular JS object with slow properties then do
1184
+ // a quick inline probe of the receiver's dictionary.
1185
+ // Otherwise do the monomorphic cache probe.
1186
+ GenerateKeyedLoadReceiverCheck(
1187
+ masm, rdx, rax, Map::kHasNamedInterceptor, &lookup_monomorphic_cache);
1188
+
1189
+ __ movq(rbx, FieldOperand(rdx, JSObject::kPropertiesOffset));
1190
+ __ CompareRoot(FieldOperand(rbx, HeapObject::kMapOffset),
1191
+ Heap::kHashTableMapRootIndex);
1192
+ __ j(not_equal, &lookup_monomorphic_cache);
1193
+
1194
+ GenerateDictionaryLoad(masm, &slow_load, rbx, rcx, rax, rdi, rdi);
1195
+ __ IncrementCounter(&Counters::keyed_call_generic_lookup_dict, 1);
1196
+ __ jmp(&do_call);
1197
+
1198
+ __ bind(&lookup_monomorphic_cache);
1199
+ __ IncrementCounter(&Counters::keyed_call_generic_lookup_cache, 1);
1200
+ GenerateMonomorphicCacheProbe(masm, argc, Code::KEYED_CALL_IC);
1201
+ // Fall through on miss.
1202
+
1203
+ __ bind(&slow_call);
1204
+ // This branch is taken if:
1205
+ // - the receiver requires boxing or access check,
1206
+ // - the key is neither smi nor symbol,
1207
+ // - the value loaded is not a function,
1208
+ // - there is hope that the runtime will create a monomorphic call stub
1209
+ // that will get fetched next time.
1210
+ __ IncrementCounter(&Counters::keyed_call_generic_slow, 1);
1211
+ GenerateMiss(masm, argc);
1212
+
1213
+ __ bind(&index_string);
1214
+ __ IndexFromHash(rbx, rcx);
1215
+ // Now jump to the place where smi keys are handled.
1216
+ __ jmp(&index_smi);
1217
+ }
1218
+
1219
+
1220
+ void KeyedCallIC::GenerateNormal(MacroAssembler* masm, int argc) {
1221
+ // ----------- S t a t e -------------
1222
+ // rcx : function name
1223
+ // rsp[0] : return address
1224
+ // rsp[8] : argument argc
1225
+ // rsp[16] : argument argc - 1
1226
+ // ...
1227
+ // rsp[argc * 8] : argument 1
1228
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
1229
+ // -----------------------------------
1230
+
1231
+ // Check if the name is a string.
1232
+ Label miss;
1233
+ __ JumpIfSmi(rcx, &miss);
1234
+ Condition cond = masm->IsObjectStringType(rcx, rax, rax);
1235
+ __ j(NegateCondition(cond), &miss);
1236
+ GenerateCallNormal(masm, argc);
1237
+ __ bind(&miss);
1238
+ GenerateMiss(masm, argc);
1239
+ }
1240
+
1241
+
1242
+ void KeyedCallIC::GenerateMiss(MacroAssembler* masm, int argc) {
1243
+ // ----------- S t a t e -------------
1244
+ // rcx : function name
1245
+ // rsp[0] : return address
1246
+ // rsp[8] : argument argc
1247
+ // rsp[16] : argument argc - 1
1248
+ // ...
1249
+ // rsp[argc * 8] : argument 1
1250
+ // rsp[(argc + 1) * 8] : argument 0 = receiver
1251
+ // -----------------------------------
1252
+
1253
+ GenerateCallMiss(masm, argc, IC::kKeyedCallIC_Miss);
1254
+ }
1255
+
1256
+
1257
+ void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
1258
+ // ----------- S t a t e -------------
1259
+ // -- rax : receiver
1260
+ // -- rcx : name
1261
+ // -- rsp[0] : return address
1262
+ // -----------------------------------
1263
+
1264
+ // Probe the stub cache.
1265
+ Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
1266
+ NOT_IN_LOOP,
1267
+ MONOMORPHIC);
1268
+ StubCache::GenerateProbe(masm, flags, rax, rcx, rbx, rdx);
1269
+
1270
+ // Cache miss: Jump to runtime.
1271
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
1272
+ }
1273
+
1274
+
1275
+ void LoadIC::GenerateNormal(MacroAssembler* masm) {
1276
+ // ----------- S t a t e -------------
1277
+ // -- rax : receiver
1278
+ // -- rcx : name
1279
+ // -- rsp[0] : return address
1280
+ // -----------------------------------
1281
+ Label miss;
1282
+
1283
+ GenerateStringDictionaryReceiverCheck(masm, rax, rdx, rbx, &miss);
1284
+
1285
+ // rdx: elements
1286
+ // Search the dictionary placing the result in rax.
1287
+ GenerateDictionaryLoad(masm, &miss, rdx, rcx, rbx, rdi, rax);
1288
+ __ ret(0);
1289
+
1290
+ // Cache miss: Jump to runtime.
1291
+ __ bind(&miss);
1292
+ GenerateMiss(masm);
1293
+ }
1294
+
1295
+
1296
+ void LoadIC::GenerateMiss(MacroAssembler* masm) {
1297
+ // ----------- S t a t e -------------
1298
+ // -- rax : receiver
1299
+ // -- rcx : name
1300
+ // -- rsp[0] : return address
1301
+ // -----------------------------------
1302
+
1303
+ __ IncrementCounter(&Counters::load_miss, 1);
1304
+
1305
+ __ pop(rbx);
1306
+ __ push(rax); // receiver
1307
+ __ push(rcx); // name
1308
+ __ push(rbx); // return address
1309
+
1310
+ // Perform tail call to the entry.
1311
+ ExternalReference ref = ExternalReference(IC_Utility(kLoadIC_Miss));
1312
+ __ TailCallExternalReference(ref, 2, 1);
1313
+ }
1314
+
1315
+
1316
+ bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) {
1317
+ if (V8::UseCrankshaft()) return false;
1318
+
1319
+ // The address of the instruction following the call.
1320
+ Address test_instruction_address =
1321
+ address + Assembler::kCallTargetAddressOffset;
1322
+ // If the instruction following the call is not a test rax, nothing
1323
+ // was inlined.
1324
+ if (*test_instruction_address != Assembler::kTestEaxByte) return false;
1325
+
1326
+ Address delta_address = test_instruction_address + 1;
1327
+ // The delta to the start of the map check instruction.
1328
+ int delta = *reinterpret_cast<int*>(delta_address);
1329
+
1330
+ // The map address is the last 8 bytes of the 10-byte
1331
+ // immediate move instruction, so we add 2 to get the
1332
+ // offset to the last 8 bytes.
1333
+ Address map_address = test_instruction_address + delta + 2;
1334
+ *(reinterpret_cast<Object**>(map_address)) = map;
1335
+
1336
+ // The offset is in the 32-bit displacement of a seven byte
1337
+ // memory-to-register move instruction (REX.W 0x88 ModR/M disp32),
1338
+ // so we add 3 to get the offset of the displacement.
1339
+ Address offset_address =
1340
+ test_instruction_address + delta + kOffsetToLoadInstruction + 3;
1341
+ *reinterpret_cast<int*>(offset_address) = offset - kHeapObjectTag;
1342
+ return true;
1343
+ }
1344
+
1345
+
1346
+ bool LoadIC::PatchInlinedContextualLoad(Address address,
1347
+ Object* map,
1348
+ Object* cell,
1349
+ bool is_dont_delete) {
1350
+ // TODO(<bug#>): implement this.
1351
+ return false;
1352
+ }
1353
+
1354
+
1355
+ bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) {
1356
+ if (V8::UseCrankshaft()) return false;
1357
+
1358
+ // The address of the instruction following the call.
1359
+ Address test_instruction_address =
1360
+ address + Assembler::kCallTargetAddressOffset;
1361
+
1362
+ // If the instruction following the call is not a test rax, nothing
1363
+ // was inlined.
1364
+ if (*test_instruction_address != Assembler::kTestEaxByte) return false;
1365
+
1366
+ // Extract the encoded deltas from the test rax instruction.
1367
+ Address encoded_offsets_address = test_instruction_address + 1;
1368
+ int encoded_offsets = *reinterpret_cast<int*>(encoded_offsets_address);
1369
+ int delta_to_map_check = -(encoded_offsets & 0xFFFF);
1370
+ int delta_to_record_write = encoded_offsets >> 16;
1371
+
1372
+ // Patch the map to check. The map address is the last 8 bytes of
1373
+ // the 10-byte immediate move instruction.
1374
+ Address map_check_address = test_instruction_address + delta_to_map_check;
1375
+ Address map_address = map_check_address + 2;
1376
+ *(reinterpret_cast<Object**>(map_address)) = map;
1377
+
1378
+ // Patch the offset in the store instruction. The offset is in the
1379
+ // last 4 bytes of a 7 byte register-to-memory move instruction.
1380
+ Address offset_address =
1381
+ map_check_address + StoreIC::kOffsetToStoreInstruction + 3;
1382
+ // The offset should have initial value (kMaxInt - 1), cleared value
1383
+ // (-1) or we should be clearing the inlined version.
1384
+ ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt - 1 ||
1385
+ *reinterpret_cast<int*>(offset_address) == -1 ||
1386
+ (offset == 0 && map == Heap::null_value()));
1387
+ *reinterpret_cast<int*>(offset_address) = offset - kHeapObjectTag;
1388
+
1389
+ // Patch the offset in the write-barrier code. The offset is the
1390
+ // last 4 bytes of a 7 byte lea instruction.
1391
+ offset_address = map_check_address + delta_to_record_write + 3;
1392
+ // The offset should have initial value (kMaxInt), cleared value
1393
+ // (-1) or we should be clearing the inlined version.
1394
+ ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt ||
1395
+ *reinterpret_cast<int*>(offset_address) == -1 ||
1396
+ (offset == 0 && map == Heap::null_value()));
1397
+ *reinterpret_cast<int*>(offset_address) = offset - kHeapObjectTag;
1398
+
1399
+ return true;
1400
+ }
1401
+
1402
+
1403
+ static bool PatchInlinedMapCheck(Address address, Object* map) {
1404
+ if (V8::UseCrankshaft()) return false;
1405
+
1406
+ // Arguments are address of start of call sequence that called
1407
+ // the IC,
1408
+ Address test_instruction_address =
1409
+ address + Assembler::kCallTargetAddressOffset;
1410
+ // The keyed load has a fast inlined case if the IC call instruction
1411
+ // is immediately followed by a test instruction.
1412
+ if (*test_instruction_address != Assembler::kTestEaxByte) return false;
1413
+
1414
+ // Fetch the offset from the test instruction to the map compare
1415
+ // instructions (starting with the 64-bit immediate mov of the map
1416
+ // address). This offset is stored in the last 4 bytes of the 5
1417
+ // byte test instruction.
1418
+ Address delta_address = test_instruction_address + 1;
1419
+ int delta = *reinterpret_cast<int*>(delta_address);
1420
+ // Compute the map address. The map address is in the last 8 bytes
1421
+ // of the 10-byte immediate mov instruction (incl. REX prefix), so we add 2
1422
+ // to the offset to get the map address.
1423
+ Address map_address = test_instruction_address + delta + 2;
1424
+ // Patch the map check.
1425
+ *(reinterpret_cast<Object**>(map_address)) = map;
1426
+ return true;
1427
+ }
1428
+
1429
+
1430
+ bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) {
1431
+ return PatchInlinedMapCheck(address, map);
1432
+ }
1433
+
1434
+
1435
+ bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) {
1436
+ return PatchInlinedMapCheck(address, map);
1437
+ }
1438
+
1439
+
1440
+ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
1441
+ // ----------- S t a t e -------------
1442
+ // -- rax : key
1443
+ // -- rdx : receiver
1444
+ // -- rsp[0] : return address
1445
+ // -----------------------------------
1446
+
1447
+ __ IncrementCounter(&Counters::keyed_load_miss, 1);
1448
+
1449
+ __ pop(rbx);
1450
+ __ push(rdx); // receiver
1451
+ __ push(rax); // name
1452
+ __ push(rbx); // return address
1453
+
1454
+ // Perform tail call to the entry.
1455
+ ExternalReference ref = ExternalReference(IC_Utility(kKeyedLoadIC_Miss));
1456
+ __ TailCallExternalReference(ref, 2, 1);
1457
+ }
1458
+
1459
+
1460
+ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) {
1461
+ // ----------- S t a t e -------------
1462
+ // -- rax : key
1463
+ // -- rdx : receiver
1464
+ // -- rsp[0] : return address
1465
+ // -----------------------------------
1466
+
1467
+ __ pop(rbx);
1468
+ __ push(rdx); // receiver
1469
+ __ push(rax); // name
1470
+ __ push(rbx); // return address
1471
+
1472
+ // Perform tail call to the entry.
1473
+ __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1);
1474
+ }
1475
+
1476
+
1477
+ void StoreIC::GenerateMegamorphic(MacroAssembler* masm,
1478
+ StrictModeFlag strict_mode) {
1479
+ // ----------- S t a t e -------------
1480
+ // -- rax : value
1481
+ // -- rcx : name
1482
+ // -- rdx : receiver
1483
+ // -- rsp[0] : return address
1484
+ // -----------------------------------
1485
+
1486
+ // Get the receiver from the stack and probe the stub cache.
1487
+ Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
1488
+ NOT_IN_LOOP,
1489
+ MONOMORPHIC,
1490
+ strict_mode);
1491
+ StubCache::GenerateProbe(masm, flags, rdx, rcx, rbx, no_reg);
1492
+
1493
+ // Cache miss: Jump to runtime.
1494
+ GenerateMiss(masm);
1495
+ }
1496
+
1497
+
1498
+ void StoreIC::GenerateMiss(MacroAssembler* masm) {
1499
+ // ----------- S t a t e -------------
1500
+ // -- rax : value
1501
+ // -- rcx : name
1502
+ // -- rdx : receiver
1503
+ // -- rsp[0] : return address
1504
+ // -----------------------------------
1505
+
1506
+ __ pop(rbx);
1507
+ __ push(rdx); // receiver
1508
+ __ push(rcx); // name
1509
+ __ push(rax); // value
1510
+ __ push(rbx); // return address
1511
+
1512
+ // Perform tail call to the entry.
1513
+ ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_Miss));
1514
+ __ TailCallExternalReference(ref, 3, 1);
1515
+ }
1516
+
1517
+
1518
+ // The offset from the inlined patch site to the start of the inlined
1519
+ // store instruction.
1520
+ const int StoreIC::kOffsetToStoreInstruction = 20;
1521
+
1522
+
1523
+ void StoreIC::GenerateArrayLength(MacroAssembler* masm) {
1524
+ // ----------- S t a t e -------------
1525
+ // -- rax : value
1526
+ // -- rcx : name
1527
+ // -- rdx : receiver
1528
+ // -- rsp[0] : return address
1529
+ // -----------------------------------
1530
+ //
1531
+ // This accepts as a receiver anything JSObject::SetElementsLength accepts
1532
+ // (currently anything except for external and pixel arrays which means
1533
+ // anything with elements of FixedArray type.), but currently is restricted
1534
+ // to JSArray.
1535
+ // Value must be a number, but only smis are accepted as the most common case.
1536
+
1537
+ Label miss;
1538
+
1539
+ Register receiver = rdx;
1540
+ Register value = rax;
1541
+ Register scratch = rbx;
1542
+
1543
+ // Check that the receiver isn't a smi.
1544
+ __ JumpIfSmi(receiver, &miss);
1545
+
1546
+ // Check that the object is a JS array.
1547
+ __ CmpObjectType(receiver, JS_ARRAY_TYPE, scratch);
1548
+ __ j(not_equal, &miss);
1549
+
1550
+ // Check that elements are FixedArray.
1551
+ // We rely on StoreIC_ArrayLength below to deal with all types of
1552
+ // fast elements (including COW).
1553
+ __ movq(scratch, FieldOperand(receiver, JSArray::kElementsOffset));
1554
+ __ CmpObjectType(scratch, FIXED_ARRAY_TYPE, scratch);
1555
+ __ j(not_equal, &miss);
1556
+
1557
+ // Check that value is a smi.
1558
+ __ JumpIfNotSmi(value, &miss);
1559
+
1560
+ // Prepare tail call to StoreIC_ArrayLength.
1561
+ __ pop(scratch);
1562
+ __ push(receiver);
1563
+ __ push(value);
1564
+ __ push(scratch); // return address
1565
+
1566
+ ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_ArrayLength));
1567
+ __ TailCallExternalReference(ref, 2, 1);
1568
+
1569
+ __ bind(&miss);
1570
+
1571
+ GenerateMiss(masm);
1572
+ }
1573
+
1574
+
1575
+ void StoreIC::GenerateNormal(MacroAssembler* masm) {
1576
+ // ----------- S t a t e -------------
1577
+ // -- rax : value
1578
+ // -- rcx : name
1579
+ // -- rdx : receiver
1580
+ // -- rsp[0] : return address
1581
+ // -----------------------------------
1582
+
1583
+ Label miss;
1584
+
1585
+ GenerateStringDictionaryReceiverCheck(masm, rdx, rbx, rdi, &miss);
1586
+
1587
+ GenerateDictionaryStore(masm, &miss, rbx, rcx, rax, r8, r9);
1588
+ __ IncrementCounter(&Counters::store_normal_hit, 1);
1589
+ __ ret(0);
1590
+
1591
+ __ bind(&miss);
1592
+ __ IncrementCounter(&Counters::store_normal_miss, 1);
1593
+ GenerateMiss(masm);
1594
+ }
1595
+
1596
+
1597
+ void StoreIC::GenerateGlobalProxy(MacroAssembler* masm,
1598
+ StrictModeFlag strict_mode) {
1599
+ // ----------- S t a t e -------------
1600
+ // -- rax : value
1601
+ // -- rcx : name
1602
+ // -- rdx : receiver
1603
+ // -- rsp[0] : return address
1604
+ // -----------------------------------
1605
+ __ pop(rbx);
1606
+ __ push(rdx);
1607
+ __ push(rcx);
1608
+ __ push(rax);
1609
+ __ Push(Smi::FromInt(NONE)); // PropertyAttributes
1610
+ __ Push(Smi::FromInt(strict_mode));
1611
+ __ push(rbx); // return address
1612
+
1613
+ // Do tail-call to runtime routine.
1614
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1);
1615
+ }
1616
+
1617
+
1618
+ void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm,
1619
+ StrictModeFlag strict_mode) {
1620
+ // ----------- S t a t e -------------
1621
+ // -- rax : value
1622
+ // -- rcx : key
1623
+ // -- rdx : receiver
1624
+ // -- rsp[0] : return address
1625
+ // -----------------------------------
1626
+
1627
+ __ pop(rbx);
1628
+ __ push(rdx); // receiver
1629
+ __ push(rcx); // key
1630
+ __ push(rax); // value
1631
+ __ Push(Smi::FromInt(NONE)); // PropertyAttributes
1632
+ __ Push(Smi::FromInt(strict_mode)); // Strict mode.
1633
+ __ push(rbx); // return address
1634
+
1635
+ // Do tail-call to runtime routine.
1636
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1);
1637
+ }
1638
+
1639
+
1640
+ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
1641
+ // ----------- S t a t e -------------
1642
+ // -- rax : value
1643
+ // -- rcx : key
1644
+ // -- rdx : receiver
1645
+ // -- rsp[0] : return address
1646
+ // -----------------------------------
1647
+
1648
+ __ pop(rbx);
1649
+ __ push(rdx); // receiver
1650
+ __ push(rcx); // key
1651
+ __ push(rax); // value
1652
+ __ push(rbx); // return address
1653
+
1654
+ // Do tail-call to runtime routine.
1655
+ ExternalReference ref = ExternalReference(IC_Utility(kKeyedStoreIC_Miss));
1656
+ __ TailCallExternalReference(ref, 3, 1);
1657
+ }
1658
+
1659
+
1660
+ #undef __
1661
+
1662
+
1663
+ Condition CompareIC::ComputeCondition(Token::Value op) {
1664
+ switch (op) {
1665
+ case Token::EQ_STRICT:
1666
+ case Token::EQ:
1667
+ return equal;
1668
+ case Token::LT:
1669
+ return less;
1670
+ case Token::GT:
1671
+ // Reverse left and right operands to obtain ECMA-262 conversion order.
1672
+ return less;
1673
+ case Token::LTE:
1674
+ // Reverse left and right operands to obtain ECMA-262 conversion order.
1675
+ return greater_equal;
1676
+ case Token::GTE:
1677
+ return greater_equal;
1678
+ default:
1679
+ UNREACHABLE();
1680
+ return no_condition;
1681
+ }
1682
+ }
1683
+
1684
+
1685
+ static bool HasInlinedSmiCode(Address address) {
1686
+ // The address of the instruction following the call.
1687
+ Address test_instruction_address =
1688
+ address + Assembler::kCallTargetAddressOffset;
1689
+
1690
+ // If the instruction following the call is not a test al, nothing
1691
+ // was inlined.
1692
+ return *test_instruction_address == Assembler::kTestAlByte;
1693
+ }
1694
+
1695
+
1696
+ void CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) {
1697
+ HandleScope scope;
1698
+ Handle<Code> rewritten;
1699
+ State previous_state = GetState();
1700
+
1701
+ State state = TargetState(previous_state, HasInlinedSmiCode(address()), x, y);
1702
+ if (state == GENERIC) {
1703
+ CompareStub stub(GetCondition(), strict(), NO_COMPARE_FLAGS);
1704
+ rewritten = stub.GetCode();
1705
+ } else {
1706
+ ICCompareStub stub(op_, state);
1707
+ rewritten = stub.GetCode();
1708
+ }
1709
+ set_target(*rewritten);
1710
+
1711
+ #ifdef DEBUG
1712
+ if (FLAG_trace_ic) {
1713
+ PrintF("[CompareIC (%s->%s)#%s]\n",
1714
+ GetStateName(previous_state),
1715
+ GetStateName(state),
1716
+ Token::Name(op_));
1717
+ }
1718
+ #endif
1719
+
1720
+ // Activate inlined smi code.
1721
+ if (previous_state == UNINITIALIZED) {
1722
+ PatchInlinedSmiCode(address());
1723
+ }
1724
+ }
1725
+
1726
+ void PatchInlinedSmiCode(Address address) {
1727
+ // The address of the instruction following the call.
1728
+ Address test_instruction_address =
1729
+ address + Assembler::kCallTargetAddressOffset;
1730
+
1731
+ // If the instruction following the call is not a test al, nothing
1732
+ // was inlined.
1733
+ if (*test_instruction_address != Assembler::kTestAlByte) {
1734
+ ASSERT(*test_instruction_address == Assembler::kNopByte);
1735
+ return;
1736
+ }
1737
+
1738
+ Address delta_address = test_instruction_address + 1;
1739
+ // The delta to the start of the map check instruction and the
1740
+ // condition code uses at the patched jump.
1741
+ int8_t delta = *reinterpret_cast<int8_t*>(delta_address);
1742
+ if (FLAG_trace_ic) {
1743
+ PrintF("[ patching ic at %p, test=%p, delta=%d\n",
1744
+ address, test_instruction_address, delta);
1745
+ }
1746
+
1747
+ // Patch with a short conditional jump. There must be a
1748
+ // short jump-if-carry/not-carry at this position.
1749
+ Address jmp_address = test_instruction_address - delta;
1750
+ ASSERT(*jmp_address == Assembler::kJncShortOpcode ||
1751
+ *jmp_address == Assembler::kJcShortOpcode);
1752
+ Condition cc = *jmp_address == Assembler::kJncShortOpcode
1753
+ ? not_zero
1754
+ : zero;
1755
+ *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc);
1756
+ }
1757
+
1758
+
1759
+ } } // namespace v8::internal
1760
+
1761
+ #endif // V8_TARGET_ARCH_X64