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,1786 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "v8.h"
29
+
30
+ #if defined(V8_TARGET_ARCH_IA32)
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
+ __ cmp(type, JS_GLOBAL_OBJECT_TYPE);
53
+ __ j(equal, global_object, not_taken);
54
+ __ cmp(type, JS_BUILTINS_OBJECT_TYPE);
55
+ __ j(equal, global_object, not_taken);
56
+ __ cmp(type, JS_GLOBAL_PROXY_TYPE);
57
+ __ j(equal, global_object, not_taken);
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
+ // Check that the receiver isn't a smi.
75
+ __ test(receiver, Immediate(kSmiTagMask));
76
+ __ j(zero, miss, not_taken);
77
+
78
+ // Check that the receiver is a valid JS object.
79
+ __ mov(r1, FieldOperand(receiver, HeapObject::kMapOffset));
80
+ __ movzx_b(r0, FieldOperand(r1, Map::kInstanceTypeOffset));
81
+ __ cmp(r0, FIRST_JS_OBJECT_TYPE);
82
+ __ j(below, miss, not_taken);
83
+
84
+ // If this assert fails, we have to check upper bound too.
85
+ ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
86
+
87
+ GenerateGlobalInstanceTypeCheck(masm, r0, miss);
88
+
89
+ // Check for non-global object that requires access check.
90
+ __ test_b(FieldOperand(r1, Map::kBitFieldOffset),
91
+ (1 << Map::kIsAccessCheckNeeded) |
92
+ (1 << Map::kHasNamedInterceptor));
93
+ __ j(not_zero, miss, not_taken);
94
+
95
+ __ mov(r0, FieldOperand(receiver, JSObject::kPropertiesOffset));
96
+ __ CheckMap(r0, Factory::hash_table_map(), miss, true);
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 |r0|. 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
+ __ mov(r1, FieldOperand(elements, kCapacityOffset));
119
+ __ shr(r1, kSmiTagSize); // convert smi to int
120
+ __ dec(r1);
121
+
122
+ // Generate an unrolled loop that performs a few probes before
123
+ // giving up. Measurements done on Gmail indicate that 2 probes
124
+ // cover ~93% of loads from dictionaries.
125
+ static const int kProbes = 4;
126
+ const int kElementsStartOffset =
127
+ StringDictionary::kHeaderSize +
128
+ StringDictionary::kElementsStartIndex * kPointerSize;
129
+ for (int i = 0; i < kProbes; i++) {
130
+ // Compute the masked index: (hash + i + i * i) & mask.
131
+ __ mov(r0, FieldOperand(name, String::kHashFieldOffset));
132
+ __ shr(r0, String::kHashShift);
133
+ if (i > 0) {
134
+ __ add(Operand(r0), Immediate(StringDictionary::GetProbeOffset(i)));
135
+ }
136
+ __ and_(r0, Operand(r1));
137
+
138
+ // Scale the index by multiplying by the entry size.
139
+ ASSERT(StringDictionary::kEntrySize == 3);
140
+ __ lea(r0, Operand(r0, r0, times_2, 0)); // r0 = r0 * 3
141
+
142
+ // Check if the key is identical to the name.
143
+ __ cmp(name, Operand(elements, r0, times_4,
144
+ kElementsStartOffset - kHeapObjectTag));
145
+ if (i != kProbes - 1) {
146
+ __ j(equal, done, taken);
147
+ } else {
148
+ __ j(not_equal, miss, not_taken);
149
+ }
150
+ }
151
+ }
152
+
153
+
154
+
155
+ // Helper function used to load a property from a dictionary backing
156
+ // storage. This function may fail to load a property even though it is
157
+ // in the dictionary, so code at miss_label must always call a backup
158
+ // property load that is complete. This function is safe to call if
159
+ // name is not a symbol, and will jump to the miss_label in that
160
+ // case. The generated code assumes that the receiver has slow
161
+ // properties, is not a global object and does not have interceptors.
162
+ static void GenerateDictionaryLoad(MacroAssembler* masm,
163
+ Label* miss_label,
164
+ Register elements,
165
+ Register name,
166
+ Register r0,
167
+ Register r1,
168
+ Register result) {
169
+ // Register use:
170
+ //
171
+ // elements - holds the property dictionary on entry and is unchanged.
172
+ //
173
+ // name - holds the name of the property on entry and is unchanged.
174
+ //
175
+ // Scratch registers:
176
+ //
177
+ // r0 - used for the index into the property dictionary
178
+ //
179
+ // r1 - used to hold the capacity of the property dictionary.
180
+ //
181
+ // result - holds the result on exit.
182
+
183
+ Label done;
184
+
185
+ // Probe the dictionary.
186
+ GenerateStringDictionaryProbes(masm,
187
+ miss_label,
188
+ &done,
189
+ elements,
190
+ name,
191
+ r0,
192
+ r1);
193
+
194
+ // If probing finds an entry in the dictionary, r0 contains the
195
+ // index into the dictionary. Check that the value is a normal
196
+ // property.
197
+ __ bind(&done);
198
+ const int kElementsStartOffset =
199
+ StringDictionary::kHeaderSize +
200
+ StringDictionary::kElementsStartIndex * kPointerSize;
201
+ const int kDetailsOffset = kElementsStartOffset + 2 * kPointerSize;
202
+ __ test(Operand(elements, r0, times_4, kDetailsOffset - kHeapObjectTag),
203
+ Immediate(PropertyDetails::TypeField::mask() << kSmiTagSize));
204
+ __ j(not_zero, miss_label, not_taken);
205
+
206
+ // Get the value at the masked, scaled index.
207
+ const int kValueOffset = kElementsStartOffset + kPointerSize;
208
+ __ mov(result, Operand(elements, r0, times_4, kValueOffset - kHeapObjectTag));
209
+ }
210
+
211
+
212
+ // Helper function used to store a property to a dictionary backing
213
+ // storage. This function may fail to store a property eventhough it
214
+ // is in the dictionary, so code at miss_label must always call a
215
+ // backup property store that is complete. This function is safe to
216
+ // call if name is not a symbol, and will jump to the miss_label in
217
+ // that case. The generated code assumes that the receiver has slow
218
+ // properties, is not a global object and does not have interceptors.
219
+ static void GenerateDictionaryStore(MacroAssembler* masm,
220
+ Label* miss_label,
221
+ Register elements,
222
+ Register name,
223
+ Register value,
224
+ Register r0,
225
+ Register r1) {
226
+ // Register use:
227
+ //
228
+ // elements - holds the property dictionary on entry and is clobbered.
229
+ //
230
+ // name - holds the name of the property on entry and is unchanged.
231
+ //
232
+ // value - holds the value to store and is unchanged.
233
+ //
234
+ // r0 - used for index into the property dictionary and is clobbered.
235
+ //
236
+ // r1 - used to hold the capacity of the property dictionary and is clobbered.
237
+ Label done;
238
+
239
+
240
+ // Probe the dictionary.
241
+ GenerateStringDictionaryProbes(masm,
242
+ miss_label,
243
+ &done,
244
+ elements,
245
+ name,
246
+ r0,
247
+ r1);
248
+
249
+ // If probing finds an entry in the dictionary, r0 contains the
250
+ // index into the dictionary. Check that the value is a normal
251
+ // property that is not read only.
252
+ __ bind(&done);
253
+ const int kElementsStartOffset =
254
+ StringDictionary::kHeaderSize +
255
+ StringDictionary::kElementsStartIndex * kPointerSize;
256
+ const int kDetailsOffset = kElementsStartOffset + 2 * kPointerSize;
257
+ const int kTypeAndReadOnlyMask
258
+ = (PropertyDetails::TypeField::mask() |
259
+ PropertyDetails::AttributesField::encode(READ_ONLY)) << kSmiTagSize;
260
+ __ test(Operand(elements, r0, times_4, kDetailsOffset - kHeapObjectTag),
261
+ Immediate(kTypeAndReadOnlyMask));
262
+ __ j(not_zero, miss_label, not_taken);
263
+
264
+ // Store the value at the masked, scaled index.
265
+ const int kValueOffset = kElementsStartOffset + kPointerSize;
266
+ __ lea(r0, Operand(elements, r0, times_4, kValueOffset - kHeapObjectTag));
267
+ __ mov(Operand(r0, 0), value);
268
+
269
+ // Update write barrier. Make sure not to clobber the value.
270
+ __ mov(r1, value);
271
+ __ RecordWrite(elements, r0, r1);
272
+ }
273
+
274
+
275
+ static void GenerateNumberDictionaryLoad(MacroAssembler* masm,
276
+ Label* miss,
277
+ Register elements,
278
+ Register key,
279
+ Register r0,
280
+ Register r1,
281
+ Register r2,
282
+ Register result) {
283
+ // Register use:
284
+ //
285
+ // elements - holds the slow-case elements of the receiver and is unchanged.
286
+ //
287
+ // key - holds the smi key on entry and is unchanged.
288
+ //
289
+ // Scratch registers:
290
+ //
291
+ // r0 - holds the untagged key on entry and holds the hash once computed.
292
+ //
293
+ // r1 - used to hold the capacity mask of the dictionary
294
+ //
295
+ // r2 - used for the index into the dictionary.
296
+ //
297
+ // result - holds the result on exit if the load succeeds and we fall through.
298
+
299
+ Label done;
300
+
301
+ // Compute the hash code from the untagged key. This must be kept in sync
302
+ // with ComputeIntegerHash in utils.h.
303
+ //
304
+ // hash = ~hash + (hash << 15);
305
+ __ mov(r1, r0);
306
+ __ not_(r0);
307
+ __ shl(r1, 15);
308
+ __ add(r0, Operand(r1));
309
+ // hash = hash ^ (hash >> 12);
310
+ __ mov(r1, r0);
311
+ __ shr(r1, 12);
312
+ __ xor_(r0, Operand(r1));
313
+ // hash = hash + (hash << 2);
314
+ __ lea(r0, Operand(r0, r0, times_4, 0));
315
+ // hash = hash ^ (hash >> 4);
316
+ __ mov(r1, r0);
317
+ __ shr(r1, 4);
318
+ __ xor_(r0, Operand(r1));
319
+ // hash = hash * 2057;
320
+ __ imul(r0, r0, 2057);
321
+ // hash = hash ^ (hash >> 16);
322
+ __ mov(r1, r0);
323
+ __ shr(r1, 16);
324
+ __ xor_(r0, Operand(r1));
325
+
326
+ // Compute capacity mask.
327
+ __ mov(r1, FieldOperand(elements, NumberDictionary::kCapacityOffset));
328
+ __ shr(r1, kSmiTagSize); // convert smi to int
329
+ __ dec(r1);
330
+
331
+ // Generate an unrolled loop that performs a few probes before giving up.
332
+ const int kProbes = 4;
333
+ for (int i = 0; i < kProbes; i++) {
334
+ // Use r2 for index calculations and keep the hash intact in r0.
335
+ __ mov(r2, r0);
336
+ // Compute the masked index: (hash + i + i * i) & mask.
337
+ if (i > 0) {
338
+ __ add(Operand(r2), Immediate(NumberDictionary::GetProbeOffset(i)));
339
+ }
340
+ __ and_(r2, Operand(r1));
341
+
342
+ // Scale the index by multiplying by the entry size.
343
+ ASSERT(NumberDictionary::kEntrySize == 3);
344
+ __ lea(r2, Operand(r2, r2, times_2, 0)); // r2 = r2 * 3
345
+
346
+ // Check if the key matches.
347
+ __ cmp(key, FieldOperand(elements,
348
+ r2,
349
+ times_pointer_size,
350
+ NumberDictionary::kElementsStartOffset));
351
+ if (i != (kProbes - 1)) {
352
+ __ j(equal, &done, taken);
353
+ } else {
354
+ __ j(not_equal, miss, not_taken);
355
+ }
356
+ }
357
+
358
+ __ bind(&done);
359
+ // Check that the value is a normal propety.
360
+ const int kDetailsOffset =
361
+ NumberDictionary::kElementsStartOffset + 2 * kPointerSize;
362
+ ASSERT_EQ(NORMAL, 0);
363
+ __ test(FieldOperand(elements, r2, times_pointer_size, kDetailsOffset),
364
+ Immediate(PropertyDetails::TypeField::mask() << kSmiTagSize));
365
+ __ j(not_zero, miss);
366
+
367
+ // Get the value at the masked, scaled index.
368
+ const int kValueOffset =
369
+ NumberDictionary::kElementsStartOffset + kPointerSize;
370
+ __ mov(result, FieldOperand(elements, r2, times_pointer_size, kValueOffset));
371
+ }
372
+
373
+
374
+ // The offset from the inlined patch site to the start of the
375
+ // inlined load instruction. It is 7 bytes (test eax, imm) plus
376
+ // 6 bytes (jne slow_label).
377
+ const int LoadIC::kOffsetToLoadInstruction = 13;
378
+
379
+
380
+ void LoadIC::GenerateArrayLength(MacroAssembler* masm) {
381
+ // ----------- S t a t e -------------
382
+ // -- eax : receiver
383
+ // -- ecx : name
384
+ // -- esp[0] : return address
385
+ // -----------------------------------
386
+ Label miss;
387
+
388
+ StubCompiler::GenerateLoadArrayLength(masm, eax, edx, &miss);
389
+ __ bind(&miss);
390
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
391
+ }
392
+
393
+
394
+ void LoadIC::GenerateStringLength(MacroAssembler* masm,
395
+ bool support_wrappers) {
396
+ // ----------- S t a t e -------------
397
+ // -- eax : receiver
398
+ // -- ecx : name
399
+ // -- esp[0] : return address
400
+ // -----------------------------------
401
+ Label miss;
402
+
403
+ StubCompiler::GenerateLoadStringLength(masm, eax, edx, ebx, &miss,
404
+ support_wrappers);
405
+ __ bind(&miss);
406
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
407
+ }
408
+
409
+
410
+ void LoadIC::GenerateFunctionPrototype(MacroAssembler* masm) {
411
+ // ----------- S t a t e -------------
412
+ // -- eax : receiver
413
+ // -- ecx : name
414
+ // -- esp[0] : return address
415
+ // -----------------------------------
416
+ Label miss;
417
+
418
+ StubCompiler::GenerateLoadFunctionPrototype(masm, eax, edx, ebx, &miss);
419
+ __ bind(&miss);
420
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
421
+ }
422
+
423
+
424
+ // Checks the receiver for special cases (value type, slow case bits).
425
+ // Falls through for regular JS object.
426
+ static void GenerateKeyedLoadReceiverCheck(MacroAssembler* masm,
427
+ Register receiver,
428
+ Register map,
429
+ int interceptor_bit,
430
+ Label* slow) {
431
+ // Register use:
432
+ // receiver - holds the receiver and is unchanged.
433
+ // Scratch registers:
434
+ // map - used to hold the map of the receiver.
435
+
436
+ // Check that the object isn't a smi.
437
+ __ test(receiver, Immediate(kSmiTagMask));
438
+ __ j(zero, slow, not_taken);
439
+
440
+ // Get the map of the receiver.
441
+ __ mov(map, FieldOperand(receiver, HeapObject::kMapOffset));
442
+
443
+ // Check bit field.
444
+ __ test_b(FieldOperand(map, Map::kBitFieldOffset),
445
+ (1 << Map::kIsAccessCheckNeeded) | (1 << interceptor_bit));
446
+ __ j(not_zero, slow, not_taken);
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 works as intended.
451
+ ASSERT(JS_OBJECT_TYPE > JS_VALUE_TYPE);
452
+
453
+ __ CmpInstanceType(map, JS_OBJECT_TYPE);
454
+ __ j(below, slow, not_taken);
455
+ }
456
+
457
+
458
+ // Loads an indexed element from a fast case array.
459
+ // If not_fast_array is NULL, doesn't perform the elements map check.
460
+ static void GenerateFastArrayLoad(MacroAssembler* masm,
461
+ Register receiver,
462
+ Register key,
463
+ Register scratch,
464
+ Register result,
465
+ Label* not_fast_array,
466
+ Label* out_of_range) {
467
+ // Register use:
468
+ // receiver - holds the receiver and is unchanged.
469
+ // key - holds the key and is unchanged (must be a smi).
470
+ // Scratch registers:
471
+ // scratch - used to hold elements of the receiver and the loaded value.
472
+ // result - holds the result on exit if the load succeeds and
473
+ // we fall through.
474
+
475
+ __ mov(scratch, FieldOperand(receiver, JSObject::kElementsOffset));
476
+ if (not_fast_array != NULL) {
477
+ // Check that the object is in fast mode and writable.
478
+ __ CheckMap(scratch, Factory::fixed_array_map(), not_fast_array, true);
479
+ } else {
480
+ __ AssertFastElements(scratch);
481
+ }
482
+ // Check that the key (index) is within bounds.
483
+ __ cmp(key, FieldOperand(scratch, FixedArray::kLengthOffset));
484
+ __ j(above_equal, out_of_range);
485
+ // Fast case: Do the load.
486
+ ASSERT((kPointerSize == 4) && (kSmiTagSize == 1) && (kSmiTag == 0));
487
+ __ mov(scratch, FieldOperand(scratch, key, times_2, FixedArray::kHeaderSize));
488
+ __ cmp(Operand(scratch), Immediate(Factory::the_hole_value()));
489
+ // In case the loaded value is the_hole we have to consult GetProperty
490
+ // to ensure the prototype chain is searched.
491
+ __ j(equal, out_of_range);
492
+ if (!result.is(scratch)) {
493
+ __ mov(result, scratch);
494
+ }
495
+ }
496
+
497
+
498
+ // Checks whether a key is an array index string or a symbol string.
499
+ // Falls through if the key is a symbol.
500
+ static void GenerateKeyStringCheck(MacroAssembler* masm,
501
+ Register key,
502
+ Register map,
503
+ Register hash,
504
+ Label* index_string,
505
+ Label* not_symbol) {
506
+ // Register use:
507
+ // key - holds the key and is unchanged. Assumed to be non-smi.
508
+ // Scratch registers:
509
+ // map - used to hold the map of the key.
510
+ // hash - used to hold the hash of the key.
511
+ __ CmpObjectType(key, FIRST_NONSTRING_TYPE, map);
512
+ __ j(above_equal, not_symbol);
513
+
514
+ // Is the string an array index, with cached numeric value?
515
+ __ mov(hash, FieldOperand(key, String::kHashFieldOffset));
516
+ __ test(hash, Immediate(String::kContainsCachedArrayIndexMask));
517
+ __ j(zero, index_string, not_taken);
518
+
519
+ // Is the string a symbol?
520
+ ASSERT(kSymbolTag != 0);
521
+ __ test_b(FieldOperand(map, Map::kInstanceTypeOffset), kIsSymbolMask);
522
+ __ j(zero, not_symbol, not_taken);
523
+ }
524
+
525
+
526
+ void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
527
+ // ----------- S t a t e -------------
528
+ // -- eax : key
529
+ // -- edx : receiver
530
+ // -- esp[0] : return address
531
+ // -----------------------------------
532
+ Label slow, check_string, index_smi, index_string, property_array_property;
533
+ Label check_pixel_array, probe_dictionary, check_number_dictionary;
534
+
535
+ // Check that the key is a smi.
536
+ __ test(eax, Immediate(kSmiTagMask));
537
+ __ j(not_zero, &check_string, not_taken);
538
+ __ bind(&index_smi);
539
+ // Now the key is known to be a smi. This place is also jumped to from
540
+ // where a numeric string is converted to a smi.
541
+
542
+ GenerateKeyedLoadReceiverCheck(
543
+ masm, edx, ecx, Map::kHasIndexedInterceptor, &slow);
544
+
545
+ // Check the "has fast elements" bit in the receiver's map which is
546
+ // now in ecx.
547
+ __ test_b(FieldOperand(ecx, Map::kBitField2Offset),
548
+ 1 << Map::kHasFastElements);
549
+ __ j(zero, &check_pixel_array, not_taken);
550
+
551
+ GenerateFastArrayLoad(masm,
552
+ edx,
553
+ eax,
554
+ ecx,
555
+ eax,
556
+ NULL,
557
+ &slow);
558
+ __ IncrementCounter(&Counters::keyed_load_generic_smi, 1);
559
+ __ ret(0);
560
+
561
+ __ bind(&check_pixel_array);
562
+ GenerateFastPixelArrayLoad(masm,
563
+ edx,
564
+ eax,
565
+ ecx,
566
+ ebx,
567
+ eax,
568
+ &check_number_dictionary,
569
+ NULL,
570
+ &slow);
571
+
572
+ __ bind(&check_number_dictionary);
573
+ // Check whether the elements is a number dictionary.
574
+ // edx: receiver
575
+ // ebx: untagged index
576
+ // eax: key
577
+ // ecx: elements
578
+ __ CheckMap(ecx, Factory::hash_table_map(), &slow, true);
579
+ Label slow_pop_receiver;
580
+ // Push receiver on the stack to free up a register for the dictionary
581
+ // probing.
582
+ __ push(edx);
583
+ GenerateNumberDictionaryLoad(masm,
584
+ &slow_pop_receiver,
585
+ ecx,
586
+ eax,
587
+ ebx,
588
+ edx,
589
+ edi,
590
+ eax);
591
+ // Pop receiver before returning.
592
+ __ pop(edx);
593
+ __ ret(0);
594
+
595
+ __ bind(&slow_pop_receiver);
596
+ // Pop the receiver from the stack and jump to runtime.
597
+ __ pop(edx);
598
+
599
+ __ bind(&slow);
600
+ // Slow case: jump to runtime.
601
+ // edx: receiver
602
+ // eax: key
603
+ __ IncrementCounter(&Counters::keyed_load_generic_slow, 1);
604
+ GenerateRuntimeGetProperty(masm);
605
+
606
+ __ bind(&check_string);
607
+ GenerateKeyStringCheck(masm, eax, ecx, ebx, &index_string, &slow);
608
+
609
+ GenerateKeyedLoadReceiverCheck(
610
+ masm, edx, ecx, Map::kHasNamedInterceptor, &slow);
611
+
612
+ // If the receiver is a fast-case object, check the keyed lookup
613
+ // cache. Otherwise probe the dictionary.
614
+ __ mov(ebx, FieldOperand(edx, JSObject::kPropertiesOffset));
615
+ __ cmp(FieldOperand(ebx, HeapObject::kMapOffset),
616
+ Immediate(Factory::hash_table_map()));
617
+ __ j(equal, &probe_dictionary);
618
+
619
+ // Load the map of the receiver, compute the keyed lookup cache hash
620
+ // based on 32 bits of the map pointer and the string hash.
621
+ __ mov(ebx, FieldOperand(edx, HeapObject::kMapOffset));
622
+ __ mov(ecx, ebx);
623
+ __ shr(ecx, KeyedLookupCache::kMapHashShift);
624
+ __ mov(edi, FieldOperand(eax, String::kHashFieldOffset));
625
+ __ shr(edi, String::kHashShift);
626
+ __ xor_(ecx, Operand(edi));
627
+ __ and_(ecx, KeyedLookupCache::kCapacityMask);
628
+
629
+ // Load the key (consisting of map and symbol) from the cache and
630
+ // check for match.
631
+ ExternalReference cache_keys
632
+ = ExternalReference::keyed_lookup_cache_keys();
633
+ __ mov(edi, ecx);
634
+ __ shl(edi, kPointerSizeLog2 + 1);
635
+ __ cmp(ebx, Operand::StaticArray(edi, times_1, cache_keys));
636
+ __ j(not_equal, &slow);
637
+ __ add(Operand(edi), Immediate(kPointerSize));
638
+ __ cmp(eax, Operand::StaticArray(edi, times_1, cache_keys));
639
+ __ j(not_equal, &slow);
640
+
641
+ // Get field offset.
642
+ // edx : receiver
643
+ // ebx : receiver's map
644
+ // eax : key
645
+ // ecx : lookup cache index
646
+ ExternalReference cache_field_offsets
647
+ = ExternalReference::keyed_lookup_cache_field_offsets();
648
+ __ mov(edi,
649
+ Operand::StaticArray(ecx, times_pointer_size, cache_field_offsets));
650
+ __ movzx_b(ecx, FieldOperand(ebx, Map::kInObjectPropertiesOffset));
651
+ __ sub(edi, Operand(ecx));
652
+ __ j(above_equal, &property_array_property);
653
+
654
+ // Load in-object property.
655
+ __ movzx_b(ecx, FieldOperand(ebx, Map::kInstanceSizeOffset));
656
+ __ add(ecx, Operand(edi));
657
+ __ mov(eax, FieldOperand(edx, ecx, times_pointer_size, 0));
658
+ __ IncrementCounter(&Counters::keyed_load_generic_lookup_cache, 1);
659
+ __ ret(0);
660
+
661
+ // Load property array property.
662
+ __ bind(&property_array_property);
663
+ __ mov(eax, FieldOperand(edx, JSObject::kPropertiesOffset));
664
+ __ mov(eax, FieldOperand(eax, edi, times_pointer_size,
665
+ FixedArray::kHeaderSize));
666
+ __ IncrementCounter(&Counters::keyed_load_generic_lookup_cache, 1);
667
+ __ ret(0);
668
+
669
+ // Do a quick inline probe of the receiver's dictionary, if it
670
+ // exists.
671
+ __ bind(&probe_dictionary);
672
+
673
+ __ mov(ecx, FieldOperand(edx, JSObject::kMapOffset));
674
+ __ movzx_b(ecx, FieldOperand(ecx, Map::kInstanceTypeOffset));
675
+ GenerateGlobalInstanceTypeCheck(masm, ecx, &slow);
676
+
677
+ GenerateDictionaryLoad(masm, &slow, ebx, eax, ecx, edi, eax);
678
+ __ IncrementCounter(&Counters::keyed_load_generic_symbol, 1);
679
+ __ ret(0);
680
+
681
+ __ bind(&index_string);
682
+ __ IndexFromHash(ebx, eax);
683
+ // Now jump to the place where smi keys are handled.
684
+ __ jmp(&index_smi);
685
+ }
686
+
687
+
688
+ void KeyedLoadIC::GenerateString(MacroAssembler* masm) {
689
+ // ----------- S t a t e -------------
690
+ // -- eax : key (index)
691
+ // -- edx : receiver
692
+ // -- esp[0] : return address
693
+ // -----------------------------------
694
+ Label miss;
695
+
696
+ Register receiver = edx;
697
+ Register index = eax;
698
+ Register scratch1 = ebx;
699
+ Register scratch2 = ecx;
700
+ Register result = eax;
701
+
702
+ StringCharAtGenerator char_at_generator(receiver,
703
+ index,
704
+ scratch1,
705
+ scratch2,
706
+ result,
707
+ &miss, // When not a string.
708
+ &miss, // When not a number.
709
+ &miss, // When index out of range.
710
+ STRING_INDEX_IS_ARRAY_INDEX);
711
+ char_at_generator.GenerateFast(masm);
712
+ __ ret(0);
713
+
714
+ StubRuntimeCallHelper call_helper;
715
+ char_at_generator.GenerateSlow(masm, call_helper);
716
+
717
+ __ bind(&miss);
718
+ GenerateMiss(masm);
719
+ }
720
+
721
+
722
+ void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) {
723
+ // ----------- S t a t e -------------
724
+ // -- eax : key
725
+ // -- edx : receiver
726
+ // -- esp[0] : return address
727
+ // -----------------------------------
728
+ Label slow;
729
+
730
+ // Check that the receiver isn't a smi.
731
+ __ test(edx, Immediate(kSmiTagMask));
732
+ __ j(zero, &slow, not_taken);
733
+
734
+ // Check that the key is an array index, that is Uint32.
735
+ __ test(eax, Immediate(kSmiTagMask | kSmiSignMask));
736
+ __ j(not_zero, &slow, not_taken);
737
+
738
+ // Get the map of the receiver.
739
+ __ mov(ecx, FieldOperand(edx, HeapObject::kMapOffset));
740
+
741
+ // Check that it has indexed interceptor and access checks
742
+ // are not enabled for this object.
743
+ __ movzx_b(ecx, FieldOperand(ecx, Map::kBitFieldOffset));
744
+ __ and_(Operand(ecx), Immediate(kSlowCaseBitFieldMask));
745
+ __ cmp(Operand(ecx), Immediate(1 << Map::kHasIndexedInterceptor));
746
+ __ j(not_zero, &slow, not_taken);
747
+
748
+ // Everything is fine, call runtime.
749
+ __ pop(ecx);
750
+ __ push(edx); // receiver
751
+ __ push(eax); // key
752
+ __ push(ecx); // return address
753
+
754
+ // Perform tail call to the entry.
755
+ ExternalReference ref = ExternalReference(
756
+ IC_Utility(kKeyedLoadPropertyWithInterceptor));
757
+ __ TailCallExternalReference(ref, 2, 1);
758
+
759
+ __ bind(&slow);
760
+ GenerateMiss(masm);
761
+ }
762
+
763
+
764
+ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm,
765
+ StrictModeFlag strict_mode) {
766
+ // ----------- S t a t e -------------
767
+ // -- eax : value
768
+ // -- ecx : key
769
+ // -- edx : receiver
770
+ // -- esp[0] : return address
771
+ // -----------------------------------
772
+ Label slow, fast, array, extra, check_pixel_array;
773
+
774
+ // Check that the object isn't a smi.
775
+ __ test(edx, Immediate(kSmiTagMask));
776
+ __ j(zero, &slow, not_taken);
777
+ // Get the map from the receiver.
778
+ __ mov(edi, FieldOperand(edx, HeapObject::kMapOffset));
779
+ // Check that the receiver does not require access checks. We need
780
+ // to do this because this generic stub does not perform map checks.
781
+ __ test_b(FieldOperand(edi, Map::kBitFieldOffset),
782
+ 1 << Map::kIsAccessCheckNeeded);
783
+ __ j(not_zero, &slow, not_taken);
784
+ // Check that the key is a smi.
785
+ __ test(ecx, Immediate(kSmiTagMask));
786
+ __ j(not_zero, &slow, not_taken);
787
+ __ CmpInstanceType(edi, JS_ARRAY_TYPE);
788
+ __ j(equal, &array);
789
+ // Check that the object is some kind of JS object.
790
+ __ CmpInstanceType(edi, FIRST_JS_OBJECT_TYPE);
791
+ __ j(below, &slow, not_taken);
792
+
793
+ // Object case: Check key against length in the elements array.
794
+ // eax: value
795
+ // edx: JSObject
796
+ // ecx: key (a smi)
797
+ __ mov(edi, FieldOperand(edx, JSObject::kElementsOffset));
798
+ // Check that the object is in fast mode and writable.
799
+ __ CheckMap(edi, Factory::fixed_array_map(), &check_pixel_array, true);
800
+ __ cmp(ecx, FieldOperand(edi, FixedArray::kLengthOffset));
801
+ __ j(below, &fast, taken);
802
+
803
+ // Slow case: call runtime.
804
+ __ bind(&slow);
805
+ GenerateRuntimeSetProperty(masm, strict_mode);
806
+
807
+ // Check whether the elements is a pixel array.
808
+ __ bind(&check_pixel_array);
809
+ // eax: value
810
+ // ecx: key (a smi)
811
+ // edx: receiver
812
+ // edi: elements array
813
+ GenerateFastPixelArrayStore(masm,
814
+ edx,
815
+ ecx,
816
+ eax,
817
+ edi,
818
+ ebx,
819
+ false,
820
+ NULL,
821
+ &slow,
822
+ &slow,
823
+ &slow);
824
+
825
+ // Extra capacity case: Check if there is extra capacity to
826
+ // perform the store and update the length. Used for adding one
827
+ // element to the array by writing to array[array.length].
828
+ __ bind(&extra);
829
+ // eax: value
830
+ // edx: receiver, a JSArray
831
+ // ecx: key, a smi.
832
+ // edi: receiver->elements, a FixedArray
833
+ // flags: compare (ecx, edx.length())
834
+ __ j(not_equal, &slow, not_taken); // do not leave holes in the array
835
+ __ cmp(ecx, FieldOperand(edi, FixedArray::kLengthOffset));
836
+ __ j(above_equal, &slow, not_taken);
837
+ // Add 1 to receiver->length, and go to fast array write.
838
+ __ add(FieldOperand(edx, JSArray::kLengthOffset),
839
+ Immediate(Smi::FromInt(1)));
840
+ __ jmp(&fast);
841
+
842
+ // Array case: Get the length and the elements array from the JS
843
+ // array. Check that the array is in fast mode (and writable); if it
844
+ // is the length is always a smi.
845
+ __ bind(&array);
846
+ // eax: value
847
+ // edx: receiver, a JSArray
848
+ // ecx: key, a smi.
849
+ __ mov(edi, FieldOperand(edx, JSObject::kElementsOffset));
850
+ __ CheckMap(edi, Factory::fixed_array_map(), &check_pixel_array, true);
851
+
852
+ // Check the key against the length in the array, compute the
853
+ // address to store into and fall through to fast case.
854
+ __ cmp(ecx, FieldOperand(edx, JSArray::kLengthOffset)); // Compare smis.
855
+ __ j(above_equal, &extra, not_taken);
856
+
857
+ // Fast case: Do the store.
858
+ __ bind(&fast);
859
+ // eax: value
860
+ // ecx: key (a smi)
861
+ // edx: receiver
862
+ // edi: FixedArray receiver->elements
863
+ __ mov(CodeGenerator::FixedArrayElementOperand(edi, ecx), eax);
864
+ // Update write barrier for the elements array address.
865
+ __ mov(edx, Operand(eax));
866
+ __ RecordWrite(edi, 0, edx, ecx);
867
+ __ ret(0);
868
+ }
869
+
870
+
871
+ // The generated code does not accept smi keys.
872
+ // The generated code falls through if both probes miss.
873
+ static void GenerateMonomorphicCacheProbe(MacroAssembler* masm,
874
+ int argc,
875
+ Code::Kind kind) {
876
+ // ----------- S t a t e -------------
877
+ // -- ecx : name
878
+ // -- edx : receiver
879
+ // -----------------------------------
880
+ Label number, non_number, non_string, boolean, probe, miss;
881
+
882
+ // Probe the stub cache.
883
+ Code::Flags flags = Code::ComputeFlags(kind,
884
+ NOT_IN_LOOP,
885
+ MONOMORPHIC,
886
+ Code::kNoExtraICState,
887
+ NORMAL,
888
+ argc);
889
+ StubCache::GenerateProbe(masm, flags, edx, ecx, ebx, eax);
890
+
891
+ // If the stub cache probing failed, the receiver might be a value.
892
+ // For value objects, we use the map of the prototype objects for
893
+ // the corresponding JSValue for the cache and that is what we need
894
+ // to probe.
895
+ //
896
+ // Check for number.
897
+ __ test(edx, Immediate(kSmiTagMask));
898
+ __ j(zero, &number, not_taken);
899
+ __ CmpObjectType(edx, HEAP_NUMBER_TYPE, ebx);
900
+ __ j(not_equal, &non_number, taken);
901
+ __ bind(&number);
902
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
903
+ masm, Context::NUMBER_FUNCTION_INDEX, edx);
904
+ __ jmp(&probe);
905
+
906
+ // Check for string.
907
+ __ bind(&non_number);
908
+ __ CmpInstanceType(ebx, FIRST_NONSTRING_TYPE);
909
+ __ j(above_equal, &non_string, taken);
910
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
911
+ masm, Context::STRING_FUNCTION_INDEX, edx);
912
+ __ jmp(&probe);
913
+
914
+ // Check for boolean.
915
+ __ bind(&non_string);
916
+ __ cmp(edx, Factory::true_value());
917
+ __ j(equal, &boolean, not_taken);
918
+ __ cmp(edx, Factory::false_value());
919
+ __ j(not_equal, &miss, taken);
920
+ __ bind(&boolean);
921
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
922
+ masm, Context::BOOLEAN_FUNCTION_INDEX, edx);
923
+
924
+ // Probe the stub cache for the value object.
925
+ __ bind(&probe);
926
+ StubCache::GenerateProbe(masm, flags, edx, ecx, ebx, no_reg);
927
+ __ bind(&miss);
928
+ }
929
+
930
+
931
+ static void GenerateFunctionTailCall(MacroAssembler* masm,
932
+ int argc,
933
+ Label* miss) {
934
+ // ----------- S t a t e -------------
935
+ // -- ecx : name
936
+ // -- edi : function
937
+ // -- esp[0] : return address
938
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
939
+ // -- ...
940
+ // -- esp[(argc + 1) * 4] : receiver
941
+ // -----------------------------------
942
+
943
+ // Check that the result is not a smi.
944
+ __ test(edi, Immediate(kSmiTagMask));
945
+ __ j(zero, miss, not_taken);
946
+
947
+ // Check that the value is a JavaScript function, fetching its map into eax.
948
+ __ CmpObjectType(edi, JS_FUNCTION_TYPE, eax);
949
+ __ j(not_equal, miss, not_taken);
950
+
951
+ // Invoke the function.
952
+ ParameterCount actual(argc);
953
+ __ InvokeFunction(edi, actual, JUMP_FUNCTION);
954
+ }
955
+
956
+ // The generated code falls through if the call should be handled by runtime.
957
+ static void GenerateCallNormal(MacroAssembler* masm, int argc) {
958
+ // ----------- S t a t e -------------
959
+ // -- ecx : name
960
+ // -- esp[0] : return address
961
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
962
+ // -- ...
963
+ // -- esp[(argc + 1) * 4] : receiver
964
+ // -----------------------------------
965
+ Label miss;
966
+
967
+ // Get the receiver of the function from the stack; 1 ~ return address.
968
+ __ mov(edx, Operand(esp, (argc + 1) * kPointerSize));
969
+
970
+ GenerateStringDictionaryReceiverCheck(masm, edx, eax, ebx, &miss);
971
+
972
+ // eax: elements
973
+ // Search the dictionary placing the result in edi.
974
+ GenerateDictionaryLoad(masm, &miss, eax, ecx, edi, ebx, edi);
975
+ GenerateFunctionTailCall(masm, argc, &miss);
976
+
977
+ __ bind(&miss);
978
+ }
979
+
980
+
981
+ static void GenerateCallMiss(MacroAssembler* masm,
982
+ int argc,
983
+ IC::UtilityId id) {
984
+ // ----------- S t a t e -------------
985
+ // -- ecx : name
986
+ // -- esp[0] : return address
987
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
988
+ // -- ...
989
+ // -- esp[(argc + 1) * 4] : receiver
990
+ // -----------------------------------
991
+
992
+ if (id == IC::kCallIC_Miss) {
993
+ __ IncrementCounter(&Counters::call_miss, 1);
994
+ } else {
995
+ __ IncrementCounter(&Counters::keyed_call_miss, 1);
996
+ }
997
+
998
+ // Get the receiver of the function from the stack; 1 ~ return address.
999
+ __ mov(edx, Operand(esp, (argc + 1) * kPointerSize));
1000
+
1001
+ // Enter an internal frame.
1002
+ __ EnterInternalFrame();
1003
+
1004
+ // Push the receiver and the name of the function.
1005
+ __ push(edx);
1006
+ __ push(ecx);
1007
+
1008
+ // Call the entry.
1009
+ CEntryStub stub(1);
1010
+ __ mov(eax, Immediate(2));
1011
+ __ mov(ebx, Immediate(ExternalReference(IC_Utility(id))));
1012
+ __ CallStub(&stub);
1013
+
1014
+ // Move result to edi and exit the internal frame.
1015
+ __ mov(edi, eax);
1016
+ __ LeaveInternalFrame();
1017
+
1018
+ // Check if the receiver is a global object of some sort.
1019
+ // This can happen only for regular CallIC but not KeyedCallIC.
1020
+ if (id == IC::kCallIC_Miss) {
1021
+ Label invoke, global;
1022
+ __ mov(edx, Operand(esp, (argc + 1) * kPointerSize)); // receiver
1023
+ __ test(edx, Immediate(kSmiTagMask));
1024
+ __ j(zero, &invoke, not_taken);
1025
+ __ mov(ebx, FieldOperand(edx, HeapObject::kMapOffset));
1026
+ __ movzx_b(ebx, FieldOperand(ebx, Map::kInstanceTypeOffset));
1027
+ __ cmp(ebx, JS_GLOBAL_OBJECT_TYPE);
1028
+ __ j(equal, &global);
1029
+ __ cmp(ebx, JS_BUILTINS_OBJECT_TYPE);
1030
+ __ j(not_equal, &invoke);
1031
+
1032
+ // Patch the receiver on the stack.
1033
+ __ bind(&global);
1034
+ __ mov(edx, FieldOperand(edx, GlobalObject::kGlobalReceiverOffset));
1035
+ __ mov(Operand(esp, (argc + 1) * kPointerSize), edx);
1036
+ __ bind(&invoke);
1037
+ }
1038
+
1039
+ // Invoke the function.
1040
+ ParameterCount actual(argc);
1041
+ __ InvokeFunction(edi, actual, JUMP_FUNCTION);
1042
+ }
1043
+
1044
+
1045
+ void CallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
1046
+ // ----------- S t a t e -------------
1047
+ // -- ecx : name
1048
+ // -- esp[0] : return address
1049
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
1050
+ // -- ...
1051
+ // -- esp[(argc + 1) * 4] : receiver
1052
+ // -----------------------------------
1053
+
1054
+ // Get the receiver of the function from the stack; 1 ~ return address.
1055
+ __ mov(edx, Operand(esp, (argc + 1) * kPointerSize));
1056
+ GenerateMonomorphicCacheProbe(masm, argc, Code::CALL_IC);
1057
+ GenerateMiss(masm, argc);
1058
+ }
1059
+
1060
+
1061
+ void CallIC::GenerateNormal(MacroAssembler* masm, int argc) {
1062
+ // ----------- S t a t e -------------
1063
+ // -- ecx : name
1064
+ // -- esp[0] : return address
1065
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
1066
+ // -- ...
1067
+ // -- esp[(argc + 1) * 4] : receiver
1068
+ // -----------------------------------
1069
+
1070
+ GenerateCallNormal(masm, argc);
1071
+ GenerateMiss(masm, argc);
1072
+ }
1073
+
1074
+
1075
+ void CallIC::GenerateMiss(MacroAssembler* masm, int argc) {
1076
+ // ----------- S t a t e -------------
1077
+ // -- ecx : name
1078
+ // -- esp[0] : return address
1079
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
1080
+ // -- ...
1081
+ // -- esp[(argc + 1) * 4] : receiver
1082
+ // -----------------------------------
1083
+
1084
+ GenerateCallMiss(masm, argc, IC::kCallIC_Miss);
1085
+ }
1086
+
1087
+
1088
+ void KeyedCallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
1089
+ // ----------- S t a t e -------------
1090
+ // -- ecx : name
1091
+ // -- esp[0] : return address
1092
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
1093
+ // -- ...
1094
+ // -- esp[(argc + 1) * 4] : receiver
1095
+ // -----------------------------------
1096
+
1097
+ // Get the receiver of the function from the stack; 1 ~ return address.
1098
+ __ mov(edx, Operand(esp, (argc + 1) * kPointerSize));
1099
+
1100
+ Label do_call, slow_call, slow_load, slow_reload_receiver;
1101
+ Label check_number_dictionary, check_string, lookup_monomorphic_cache;
1102
+ Label index_smi, index_string;
1103
+
1104
+ // Check that the key is a smi.
1105
+ __ test(ecx, Immediate(kSmiTagMask));
1106
+ __ j(not_zero, &check_string, not_taken);
1107
+
1108
+ __ bind(&index_smi);
1109
+ // Now the key is known to be a smi. This place is also jumped to from
1110
+ // where a numeric string is converted to a smi.
1111
+
1112
+ GenerateKeyedLoadReceiverCheck(
1113
+ masm, edx, eax, Map::kHasIndexedInterceptor, &slow_call);
1114
+
1115
+ GenerateFastArrayLoad(
1116
+ masm, edx, ecx, eax, edi, &check_number_dictionary, &slow_load);
1117
+ __ IncrementCounter(&Counters::keyed_call_generic_smi_fast, 1);
1118
+
1119
+ __ bind(&do_call);
1120
+ // receiver in edx is not used after this point.
1121
+ // ecx: key
1122
+ // edi: function
1123
+ GenerateFunctionTailCall(masm, argc, &slow_call);
1124
+
1125
+ __ bind(&check_number_dictionary);
1126
+ // eax: elements
1127
+ // ecx: smi key
1128
+ // Check whether the elements is a number dictionary.
1129
+ __ CheckMap(eax, Factory::hash_table_map(), &slow_load, true);
1130
+ __ mov(ebx, ecx);
1131
+ __ SmiUntag(ebx);
1132
+ // ebx: untagged index
1133
+ // Receiver in edx will be clobbered, need to reload it on miss.
1134
+ GenerateNumberDictionaryLoad(
1135
+ masm, &slow_reload_receiver, eax, ecx, ebx, edx, edi, edi);
1136
+ __ IncrementCounter(&Counters::keyed_call_generic_smi_dict, 1);
1137
+ __ jmp(&do_call);
1138
+
1139
+ __ bind(&slow_reload_receiver);
1140
+ __ mov(edx, Operand(esp, (argc + 1) * kPointerSize));
1141
+
1142
+ __ bind(&slow_load);
1143
+ // This branch is taken when calling KeyedCallIC_Miss is neither required
1144
+ // nor beneficial.
1145
+ __ IncrementCounter(&Counters::keyed_call_generic_slow_load, 1);
1146
+ __ EnterInternalFrame();
1147
+ __ push(ecx); // save the key
1148
+ __ push(edx); // pass the receiver
1149
+ __ push(ecx); // pass the key
1150
+ __ CallRuntime(Runtime::kKeyedGetProperty, 2);
1151
+ __ pop(ecx); // restore the key
1152
+ __ LeaveInternalFrame();
1153
+ __ mov(edi, eax);
1154
+ __ jmp(&do_call);
1155
+
1156
+ __ bind(&check_string);
1157
+ GenerateKeyStringCheck(masm, ecx, eax, ebx, &index_string, &slow_call);
1158
+
1159
+ // The key is known to be a symbol.
1160
+ // If the receiver is a regular JS object with slow properties then do
1161
+ // a quick inline probe of the receiver's dictionary.
1162
+ // Otherwise do the monomorphic cache probe.
1163
+ GenerateKeyedLoadReceiverCheck(
1164
+ masm, edx, eax, Map::kHasNamedInterceptor, &lookup_monomorphic_cache);
1165
+
1166
+ __ mov(ebx, FieldOperand(edx, JSObject::kPropertiesOffset));
1167
+ __ CheckMap(ebx, Factory::hash_table_map(), &lookup_monomorphic_cache, true);
1168
+
1169
+ GenerateDictionaryLoad(masm, &slow_load, ebx, ecx, eax, edi, edi);
1170
+ __ IncrementCounter(&Counters::keyed_call_generic_lookup_dict, 1);
1171
+ __ jmp(&do_call);
1172
+
1173
+ __ bind(&lookup_monomorphic_cache);
1174
+ __ IncrementCounter(&Counters::keyed_call_generic_lookup_cache, 1);
1175
+ GenerateMonomorphicCacheProbe(masm, argc, Code::KEYED_CALL_IC);
1176
+ // Fall through on miss.
1177
+
1178
+ __ bind(&slow_call);
1179
+ // This branch is taken if:
1180
+ // - the receiver requires boxing or access check,
1181
+ // - the key is neither smi nor symbol,
1182
+ // - the value loaded is not a function,
1183
+ // - there is hope that the runtime will create a monomorphic call stub
1184
+ // that will get fetched next time.
1185
+ __ IncrementCounter(&Counters::keyed_call_generic_slow, 1);
1186
+ GenerateMiss(masm, argc);
1187
+
1188
+ __ bind(&index_string);
1189
+ __ IndexFromHash(ebx, ecx);
1190
+ // Now jump to the place where smi keys are handled.
1191
+ __ jmp(&index_smi);
1192
+ }
1193
+
1194
+
1195
+ void KeyedCallIC::GenerateNormal(MacroAssembler* masm, int argc) {
1196
+ // ----------- S t a t e -------------
1197
+ // -- ecx : name
1198
+ // -- esp[0] : return address
1199
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
1200
+ // -- ...
1201
+ // -- esp[(argc + 1) * 4] : receiver
1202
+ // -----------------------------------
1203
+
1204
+ // Check if the name is a string.
1205
+ Label miss;
1206
+ __ test(ecx, Immediate(kSmiTagMask));
1207
+ __ j(zero, &miss);
1208
+ Condition cond = masm->IsObjectStringType(ecx, eax, eax);
1209
+ __ j(NegateCondition(cond), &miss);
1210
+ GenerateCallNormal(masm, argc);
1211
+ __ bind(&miss);
1212
+ GenerateMiss(masm, argc);
1213
+ }
1214
+
1215
+
1216
+ void KeyedCallIC::GenerateMiss(MacroAssembler* masm, int argc) {
1217
+ // ----------- S t a t e -------------
1218
+ // -- ecx : name
1219
+ // -- esp[0] : return address
1220
+ // -- esp[(argc - n) * 4] : arg[n] (zero-based)
1221
+ // -- ...
1222
+ // -- esp[(argc + 1) * 4] : receiver
1223
+ // -----------------------------------
1224
+
1225
+ GenerateCallMiss(masm, argc, IC::kKeyedCallIC_Miss);
1226
+ }
1227
+
1228
+
1229
+ void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
1230
+ // ----------- S t a t e -------------
1231
+ // -- eax : receiver
1232
+ // -- ecx : name
1233
+ // -- esp[0] : return address
1234
+ // -----------------------------------
1235
+
1236
+ // Probe the stub cache.
1237
+ Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
1238
+ NOT_IN_LOOP,
1239
+ MONOMORPHIC);
1240
+ StubCache::GenerateProbe(masm, flags, eax, ecx, ebx, edx);
1241
+
1242
+ // Cache miss: Jump to runtime.
1243
+ GenerateMiss(masm);
1244
+ }
1245
+
1246
+
1247
+ void LoadIC::GenerateNormal(MacroAssembler* masm) {
1248
+ // ----------- S t a t e -------------
1249
+ // -- eax : receiver
1250
+ // -- ecx : name
1251
+ // -- esp[0] : return address
1252
+ // -----------------------------------
1253
+ Label miss;
1254
+
1255
+ GenerateStringDictionaryReceiverCheck(masm, eax, edx, ebx, &miss);
1256
+
1257
+ // edx: elements
1258
+ // Search the dictionary placing the result in eax.
1259
+ GenerateDictionaryLoad(masm, &miss, edx, ecx, edi, ebx, eax);
1260
+ __ ret(0);
1261
+
1262
+ // Cache miss: Jump to runtime.
1263
+ __ bind(&miss);
1264
+ GenerateMiss(masm);
1265
+ }
1266
+
1267
+
1268
+ void LoadIC::GenerateMiss(MacroAssembler* masm) {
1269
+ // ----------- S t a t e -------------
1270
+ // -- eax : receiver
1271
+ // -- ecx : name
1272
+ // -- esp[0] : return address
1273
+ // -----------------------------------
1274
+
1275
+ __ IncrementCounter(&Counters::load_miss, 1);
1276
+
1277
+ __ pop(ebx);
1278
+ __ push(eax); // receiver
1279
+ __ push(ecx); // name
1280
+ __ push(ebx); // return address
1281
+
1282
+ // Perform tail call to the entry.
1283
+ ExternalReference ref = ExternalReference(IC_Utility(kLoadIC_Miss));
1284
+ __ TailCallExternalReference(ref, 2, 1);
1285
+ }
1286
+
1287
+
1288
+ bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) {
1289
+ if (V8::UseCrankshaft()) return false;
1290
+
1291
+ // The address of the instruction following the call.
1292
+ Address test_instruction_address =
1293
+ address + Assembler::kCallTargetAddressOffset;
1294
+ // If the instruction following the call is not a test eax, nothing
1295
+ // was inlined.
1296
+ if (*test_instruction_address != Assembler::kTestEaxByte) return false;
1297
+
1298
+ Address delta_address = test_instruction_address + 1;
1299
+ // The delta to the start of the map check instruction.
1300
+ int delta = *reinterpret_cast<int*>(delta_address);
1301
+
1302
+ // The map address is the last 4 bytes of the 7-byte
1303
+ // operand-immediate compare instruction, so we add 3 to get the
1304
+ // offset to the last 4 bytes.
1305
+ Address map_address = test_instruction_address + delta + 3;
1306
+ *(reinterpret_cast<Object**>(map_address)) = map;
1307
+
1308
+ // The offset is in the last 4 bytes of a six byte
1309
+ // memory-to-register move instruction, so we add 2 to get the
1310
+ // offset to the last 4 bytes.
1311
+ Address offset_address =
1312
+ test_instruction_address + delta + kOffsetToLoadInstruction + 2;
1313
+ *reinterpret_cast<int*>(offset_address) = offset - kHeapObjectTag;
1314
+ return true;
1315
+ }
1316
+
1317
+
1318
+ // One byte opcode for mov ecx,0xXXXXXXXX.
1319
+ // Marks inlined contextual loads using all kinds of cells. Generated
1320
+ // code has the hole check:
1321
+ // mov reg, <cell>
1322
+ // mov reg, (<cell>, value offset)
1323
+ // cmp reg, <the hole>
1324
+ // je slow
1325
+ // ;; use reg
1326
+ static const byte kMovEcxByte = 0xB9;
1327
+
1328
+ // One byte opcode for mov edx,0xXXXXXXXX.
1329
+ // Marks inlined contextual loads using only "don't delete"
1330
+ // cells. Generated code doesn't have the hole check:
1331
+ // mov reg, <cell>
1332
+ // mov reg, (<cell>, value offset)
1333
+ // ;; use reg
1334
+ static const byte kMovEdxByte = 0xBA;
1335
+
1336
+ bool LoadIC::PatchInlinedContextualLoad(Address address,
1337
+ Object* map,
1338
+ Object* cell,
1339
+ bool is_dont_delete) {
1340
+ if (V8::UseCrankshaft()) return false;
1341
+
1342
+ // The address of the instruction following the call.
1343
+ Address mov_instruction_address =
1344
+ address + Assembler::kCallTargetAddressOffset;
1345
+ // If the instruction following the call is not a mov ecx/edx,
1346
+ // nothing was inlined.
1347
+ byte b = *mov_instruction_address;
1348
+ if (b != kMovEcxByte && b != kMovEdxByte) return false;
1349
+ // If we don't have the hole check generated, we can only support
1350
+ // "don't delete" cells.
1351
+ if (b == kMovEdxByte && !is_dont_delete) return false;
1352
+
1353
+ Address delta_address = mov_instruction_address + 1;
1354
+ // The delta to the start of the map check instruction.
1355
+ int delta = *reinterpret_cast<int*>(delta_address);
1356
+
1357
+ // The map address is the last 4 bytes of the 7-byte
1358
+ // operand-immediate compare instruction, so we add 3 to get the
1359
+ // offset to the last 4 bytes.
1360
+ Address map_address = mov_instruction_address + delta + 3;
1361
+ *(reinterpret_cast<Object**>(map_address)) = map;
1362
+
1363
+ // The cell is in the last 4 bytes of a five byte mov reg, imm32
1364
+ // instruction, so we add 1 to get the offset to the last 4 bytes.
1365
+ Address offset_address =
1366
+ mov_instruction_address + delta + kOffsetToLoadInstruction + 1;
1367
+ *reinterpret_cast<Object**>(offset_address) = cell;
1368
+ return true;
1369
+ }
1370
+
1371
+
1372
+ bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) {
1373
+ if (V8::UseCrankshaft()) return false;
1374
+
1375
+ // The address of the instruction following the call.
1376
+ Address test_instruction_address =
1377
+ address + Assembler::kCallTargetAddressOffset;
1378
+
1379
+ // If the instruction following the call is not a test eax, nothing
1380
+ // was inlined.
1381
+ if (*test_instruction_address != Assembler::kTestEaxByte) return false;
1382
+
1383
+ // Extract the encoded deltas from the test eax instruction.
1384
+ Address encoded_offsets_address = test_instruction_address + 1;
1385
+ int encoded_offsets = *reinterpret_cast<int*>(encoded_offsets_address);
1386
+ int delta_to_map_check = -(encoded_offsets & 0xFFFF);
1387
+ int delta_to_record_write = encoded_offsets >> 16;
1388
+
1389
+ // Patch the map to check. The map address is the last 4 bytes of
1390
+ // the 7-byte operand-immediate compare instruction.
1391
+ Address map_check_address = test_instruction_address + delta_to_map_check;
1392
+ Address map_address = map_check_address + 3;
1393
+ *(reinterpret_cast<Object**>(map_address)) = map;
1394
+
1395
+ // Patch the offset in the store instruction. The offset is in the
1396
+ // last 4 bytes of a six byte register-to-memory move instruction.
1397
+ Address offset_address =
1398
+ map_check_address + StoreIC::kOffsetToStoreInstruction + 2;
1399
+ // The offset should have initial value (kMaxInt - 1), cleared value
1400
+ // (-1) or we should be clearing the inlined version.
1401
+ ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt - 1 ||
1402
+ *reinterpret_cast<int*>(offset_address) == -1 ||
1403
+ (offset == 0 && map == Heap::null_value()));
1404
+ *reinterpret_cast<int*>(offset_address) = offset - kHeapObjectTag;
1405
+
1406
+ // Patch the offset in the write-barrier code. The offset is the
1407
+ // last 4 bytes of a six byte lea instruction.
1408
+ offset_address = map_check_address + delta_to_record_write + 2;
1409
+ // The offset should have initial value (kMaxInt), cleared value
1410
+ // (-1) or we should be clearing the inlined version.
1411
+ ASSERT(*reinterpret_cast<int*>(offset_address) == kMaxInt ||
1412
+ *reinterpret_cast<int*>(offset_address) == -1 ||
1413
+ (offset == 0 && map == Heap::null_value()));
1414
+ *reinterpret_cast<int*>(offset_address) = offset - kHeapObjectTag;
1415
+
1416
+ return true;
1417
+ }
1418
+
1419
+
1420
+ static bool PatchInlinedMapCheck(Address address, Object* map) {
1421
+ if (V8::UseCrankshaft()) return false;
1422
+
1423
+ Address test_instruction_address =
1424
+ address + Assembler::kCallTargetAddressOffset;
1425
+ // The keyed load has a fast inlined case if the IC call instruction
1426
+ // is immediately followed by a test instruction.
1427
+ if (*test_instruction_address != Assembler::kTestEaxByte) return false;
1428
+
1429
+ // Fetch the offset from the test instruction to the map cmp
1430
+ // instruction. This offset is stored in the last 4 bytes of the 5
1431
+ // byte test instruction.
1432
+ Address delta_address = test_instruction_address + 1;
1433
+ int delta = *reinterpret_cast<int*>(delta_address);
1434
+ // Compute the map address. The map address is in the last 4 bytes
1435
+ // of the 7-byte operand-immediate compare instruction, so we add 3
1436
+ // to the offset to get the map address.
1437
+ Address map_address = test_instruction_address + delta + 3;
1438
+ // Patch the map check.
1439
+ *(reinterpret_cast<Object**>(map_address)) = map;
1440
+ return true;
1441
+ }
1442
+
1443
+
1444
+ bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) {
1445
+ return PatchInlinedMapCheck(address, map);
1446
+ }
1447
+
1448
+
1449
+ bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) {
1450
+ return PatchInlinedMapCheck(address, map);
1451
+ }
1452
+
1453
+
1454
+ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
1455
+ // ----------- S t a t e -------------
1456
+ // -- eax : key
1457
+ // -- edx : receiver
1458
+ // -- esp[0] : return address
1459
+ // -----------------------------------
1460
+
1461
+ __ IncrementCounter(&Counters::keyed_load_miss, 1);
1462
+
1463
+ __ pop(ebx);
1464
+ __ push(edx); // receiver
1465
+ __ push(eax); // name
1466
+ __ push(ebx); // return address
1467
+
1468
+ // Perform tail call to the entry.
1469
+ ExternalReference ref = ExternalReference(IC_Utility(kKeyedLoadIC_Miss));
1470
+ __ TailCallExternalReference(ref, 2, 1);
1471
+ }
1472
+
1473
+
1474
+ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) {
1475
+ // ----------- S t a t e -------------
1476
+ // -- eax : key
1477
+ // -- edx : receiver
1478
+ // -- esp[0] : return address
1479
+ // -----------------------------------
1480
+
1481
+ __ pop(ebx);
1482
+ __ push(edx); // receiver
1483
+ __ push(eax); // name
1484
+ __ push(ebx); // return address
1485
+
1486
+ // Perform tail call to the entry.
1487
+ __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1);
1488
+ }
1489
+
1490
+
1491
+ void StoreIC::GenerateMegamorphic(MacroAssembler* masm,
1492
+ StrictModeFlag strict_mode) {
1493
+ // ----------- S t a t e -------------
1494
+ // -- eax : value
1495
+ // -- ecx : name
1496
+ // -- edx : receiver
1497
+ // -- esp[0] : return address
1498
+ // -----------------------------------
1499
+
1500
+ Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
1501
+ NOT_IN_LOOP,
1502
+ MONOMORPHIC,
1503
+ strict_mode);
1504
+ StubCache::GenerateProbe(masm, flags, edx, ecx, ebx, no_reg);
1505
+
1506
+ // Cache miss: Jump to runtime.
1507
+ GenerateMiss(masm);
1508
+ }
1509
+
1510
+
1511
+ void StoreIC::GenerateMiss(MacroAssembler* masm) {
1512
+ // ----------- S t a t e -------------
1513
+ // -- eax : value
1514
+ // -- ecx : name
1515
+ // -- edx : receiver
1516
+ // -- esp[0] : return address
1517
+ // -----------------------------------
1518
+
1519
+ __ pop(ebx);
1520
+ __ push(edx);
1521
+ __ push(ecx);
1522
+ __ push(eax);
1523
+ __ push(ebx);
1524
+
1525
+ // Perform tail call to the entry.
1526
+ ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_Miss));
1527
+ __ TailCallExternalReference(ref, 3, 1);
1528
+ }
1529
+
1530
+
1531
+ // The offset from the inlined patch site to the start of the inlined
1532
+ // store instruction. It is 7 bytes (test reg, imm) plus 6 bytes (jne
1533
+ // slow_label).
1534
+ const int StoreIC::kOffsetToStoreInstruction = 13;
1535
+
1536
+
1537
+ void StoreIC::GenerateArrayLength(MacroAssembler* masm) {
1538
+ // ----------- S t a t e -------------
1539
+ // -- eax : value
1540
+ // -- ecx : name
1541
+ // -- edx : receiver
1542
+ // -- esp[0] : return address
1543
+ // -----------------------------------
1544
+ //
1545
+ // This accepts as a receiver anything JSObject::SetElementsLength accepts
1546
+ // (currently anything except for external and pixel arrays which means
1547
+ // anything with elements of FixedArray type.), but currently is restricted
1548
+ // to JSArray.
1549
+ // Value must be a number, but only smis are accepted as the most common case.
1550
+
1551
+ Label miss;
1552
+
1553
+ Register receiver = edx;
1554
+ Register value = eax;
1555
+ Register scratch = ebx;
1556
+
1557
+ // Check that the receiver isn't a smi.
1558
+ __ test(receiver, Immediate(kSmiTagMask));
1559
+ __ j(zero, &miss, not_taken);
1560
+
1561
+ // Check that the object is a JS array.
1562
+ __ CmpObjectType(receiver, JS_ARRAY_TYPE, scratch);
1563
+ __ j(not_equal, &miss, not_taken);
1564
+
1565
+ // Check that elements are FixedArray.
1566
+ // We rely on StoreIC_ArrayLength below to deal with all types of
1567
+ // fast elements (including COW).
1568
+ __ mov(scratch, FieldOperand(receiver, JSArray::kElementsOffset));
1569
+ __ CmpObjectType(scratch, FIXED_ARRAY_TYPE, scratch);
1570
+ __ j(not_equal, &miss, not_taken);
1571
+
1572
+ // Check that value is a smi.
1573
+ __ test(value, Immediate(kSmiTagMask));
1574
+ __ j(not_zero, &miss, not_taken);
1575
+
1576
+ // Prepare tail call to StoreIC_ArrayLength.
1577
+ __ pop(scratch);
1578
+ __ push(receiver);
1579
+ __ push(value);
1580
+ __ push(scratch); // return address
1581
+
1582
+ ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_ArrayLength));
1583
+ __ TailCallExternalReference(ref, 2, 1);
1584
+
1585
+ __ bind(&miss);
1586
+
1587
+ GenerateMiss(masm);
1588
+ }
1589
+
1590
+
1591
+ void StoreIC::GenerateNormal(MacroAssembler* masm) {
1592
+ // ----------- S t a t e -------------
1593
+ // -- eax : value
1594
+ // -- ecx : name
1595
+ // -- edx : receiver
1596
+ // -- esp[0] : return address
1597
+ // -----------------------------------
1598
+
1599
+ Label miss, restore_miss;
1600
+
1601
+ GenerateStringDictionaryReceiverCheck(masm, edx, ebx, edi, &miss);
1602
+
1603
+ // A lot of registers are needed for storing to slow case
1604
+ // objects. Push and restore receiver but rely on
1605
+ // GenerateDictionaryStore preserving the value and name.
1606
+ __ push(edx);
1607
+ GenerateDictionaryStore(masm, &restore_miss, ebx, ecx, eax, edx, edi);
1608
+ __ Drop(1);
1609
+ __ IncrementCounter(&Counters::store_normal_hit, 1);
1610
+ __ ret(0);
1611
+
1612
+ __ bind(&restore_miss);
1613
+ __ pop(edx);
1614
+
1615
+ __ bind(&miss);
1616
+ __ IncrementCounter(&Counters::store_normal_miss, 1);
1617
+ GenerateMiss(masm);
1618
+ }
1619
+
1620
+
1621
+ void StoreIC::GenerateGlobalProxy(MacroAssembler* masm,
1622
+ StrictModeFlag strict_mode) {
1623
+ // ----------- S t a t e -------------
1624
+ // -- eax : value
1625
+ // -- ecx : name
1626
+ // -- edx : receiver
1627
+ // -- esp[0] : return address
1628
+ // -----------------------------------
1629
+ __ pop(ebx);
1630
+ __ push(edx);
1631
+ __ push(ecx);
1632
+ __ push(eax);
1633
+ __ push(Immediate(Smi::FromInt(NONE))); // PropertyAttributes
1634
+ __ push(Immediate(Smi::FromInt(strict_mode)));
1635
+ __ push(ebx); // return address
1636
+
1637
+ // Do tail-call to runtime routine.
1638
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1);
1639
+ }
1640
+
1641
+
1642
+ void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm,
1643
+ StrictModeFlag strict_mode) {
1644
+ // ----------- S t a t e -------------
1645
+ // -- eax : value
1646
+ // -- ecx : key
1647
+ // -- edx : receiver
1648
+ // -- esp[0] : return address
1649
+ // -----------------------------------
1650
+
1651
+ __ pop(ebx);
1652
+ __ push(edx);
1653
+ __ push(ecx);
1654
+ __ push(eax);
1655
+ __ push(Immediate(Smi::FromInt(NONE))); // PropertyAttributes
1656
+ __ push(Immediate(Smi::FromInt(strict_mode))); // Strict mode.
1657
+ __ push(ebx); // return address
1658
+
1659
+ // Do tail-call to runtime routine.
1660
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1);
1661
+ }
1662
+
1663
+
1664
+ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
1665
+ // ----------- S t a t e -------------
1666
+ // -- eax : value
1667
+ // -- ecx : key
1668
+ // -- edx : receiver
1669
+ // -- esp[0] : return address
1670
+ // -----------------------------------
1671
+
1672
+ __ pop(ebx);
1673
+ __ push(edx);
1674
+ __ push(ecx);
1675
+ __ push(eax);
1676
+ __ push(ebx);
1677
+
1678
+ // Do tail-call to runtime routine.
1679
+ ExternalReference ref = ExternalReference(IC_Utility(kKeyedStoreIC_Miss));
1680
+ __ TailCallExternalReference(ref, 3, 1);
1681
+ }
1682
+
1683
+
1684
+ #undef __
1685
+
1686
+
1687
+ Condition CompareIC::ComputeCondition(Token::Value op) {
1688
+ switch (op) {
1689
+ case Token::EQ_STRICT:
1690
+ case Token::EQ:
1691
+ return equal;
1692
+ case Token::LT:
1693
+ return less;
1694
+ case Token::GT:
1695
+ // Reverse left and right operands to obtain ECMA-262 conversion order.
1696
+ return less;
1697
+ case Token::LTE:
1698
+ // Reverse left and right operands to obtain ECMA-262 conversion order.
1699
+ return greater_equal;
1700
+ case Token::GTE:
1701
+ return greater_equal;
1702
+ default:
1703
+ UNREACHABLE();
1704
+ return no_condition;
1705
+ }
1706
+ }
1707
+
1708
+
1709
+ static bool HasInlinedSmiCode(Address address) {
1710
+ // The address of the instruction following the call.
1711
+ Address test_instruction_address =
1712
+ address + Assembler::kCallTargetAddressOffset;
1713
+
1714
+ // If the instruction following the call is not a test al, nothing
1715
+ // was inlined.
1716
+ return *test_instruction_address == Assembler::kTestAlByte;
1717
+ }
1718
+
1719
+
1720
+ void CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) {
1721
+ HandleScope scope;
1722
+ Handle<Code> rewritten;
1723
+ State previous_state = GetState();
1724
+
1725
+ State state = TargetState(previous_state, HasInlinedSmiCode(address()), x, y);
1726
+ if (state == GENERIC) {
1727
+ CompareStub stub(GetCondition(), strict(), NO_COMPARE_FLAGS);
1728
+ rewritten = stub.GetCode();
1729
+ } else {
1730
+ ICCompareStub stub(op_, state);
1731
+ rewritten = stub.GetCode();
1732
+ }
1733
+ set_target(*rewritten);
1734
+
1735
+ #ifdef DEBUG
1736
+ if (FLAG_trace_ic) {
1737
+ PrintF("[CompareIC (%s->%s)#%s]\n",
1738
+ GetStateName(previous_state),
1739
+ GetStateName(state),
1740
+ Token::Name(op_));
1741
+ }
1742
+ #endif
1743
+
1744
+ // Activate inlined smi code.
1745
+ if (previous_state == UNINITIALIZED) {
1746
+ PatchInlinedSmiCode(address());
1747
+ }
1748
+ }
1749
+
1750
+
1751
+ void PatchInlinedSmiCode(Address address) {
1752
+ // The address of the instruction following the call.
1753
+ Address test_instruction_address =
1754
+ address + Assembler::kCallTargetAddressOffset;
1755
+
1756
+ // If the instruction following the call is not a test al, nothing
1757
+ // was inlined.
1758
+ if (*test_instruction_address != Assembler::kTestAlByte) {
1759
+ ASSERT(*test_instruction_address == Assembler::kNopByte);
1760
+ return;
1761
+ }
1762
+
1763
+ Address delta_address = test_instruction_address + 1;
1764
+ // The delta to the start of the map check instruction and the
1765
+ // condition code uses at the patched jump.
1766
+ int8_t delta = *reinterpret_cast<int8_t*>(delta_address);
1767
+ if (FLAG_trace_ic) {
1768
+ PrintF("[ patching ic at %p, test=%p, delta=%d\n",
1769
+ address, test_instruction_address, delta);
1770
+ }
1771
+
1772
+ // Patch with a short conditional jump. There must be a
1773
+ // short jump-if-carry/not-carry at this position.
1774
+ Address jmp_address = test_instruction_address - delta;
1775
+ ASSERT(*jmp_address == Assembler::kJncShortOpcode ||
1776
+ *jmp_address == Assembler::kJcShortOpcode);
1777
+ Condition cc = *jmp_address == Assembler::kJncShortOpcode
1778
+ ? not_zero
1779
+ : zero;
1780
+ *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc);
1781
+ }
1782
+
1783
+
1784
+ } } // namespace v8::internal
1785
+
1786
+ #endif // V8_TARGET_ARCH_IA32