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,1799 @@
1
+ // Copyright 2006-2008 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_ARM)
31
+
32
+ #include "assembler-arm.h"
33
+ #include "code-stubs.h"
34
+ #include "codegen-inl.h"
35
+ #include "disasm.h"
36
+ #include "ic-inl.h"
37
+ #include "runtime.h"
38
+ #include "stub-cache.h"
39
+
40
+ namespace v8 {
41
+ namespace internal {
42
+
43
+
44
+ // ----------------------------------------------------------------------------
45
+ // Static IC stub generators.
46
+ //
47
+
48
+ #define __ ACCESS_MASM(masm)
49
+
50
+
51
+ static void GenerateGlobalInstanceTypeCheck(MacroAssembler* masm,
52
+ Register type,
53
+ Label* global_object) {
54
+ // Register usage:
55
+ // type: holds the receiver instance type on entry.
56
+ __ cmp(type, Operand(JS_GLOBAL_OBJECT_TYPE));
57
+ __ b(eq, global_object);
58
+ __ cmp(type, Operand(JS_BUILTINS_OBJECT_TYPE));
59
+ __ b(eq, global_object);
60
+ __ cmp(type, Operand(JS_GLOBAL_PROXY_TYPE));
61
+ __ b(eq, global_object);
62
+ }
63
+
64
+
65
+ // Generated code falls through if the receiver is a regular non-global
66
+ // JS object with slow properties and no interceptors.
67
+ static void GenerateStringDictionaryReceiverCheck(MacroAssembler* masm,
68
+ Register receiver,
69
+ Register elements,
70
+ Register t0,
71
+ Register t1,
72
+ Label* miss) {
73
+ // Register usage:
74
+ // receiver: holds the receiver on entry and is unchanged.
75
+ // elements: holds the property dictionary on fall through.
76
+ // Scratch registers:
77
+ // t0: used to holds the receiver map.
78
+ // t1: used to holds the receiver instance type, receiver bit mask and
79
+ // elements map.
80
+
81
+ // Check that the receiver isn't a smi.
82
+ __ tst(receiver, Operand(kSmiTagMask));
83
+ __ b(eq, miss);
84
+
85
+ // Check that the receiver is a valid JS object.
86
+ __ CompareObjectType(receiver, t0, t1, FIRST_JS_OBJECT_TYPE);
87
+ __ b(lt, miss);
88
+
89
+ // If this assert fails, we have to check upper bound too.
90
+ ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
91
+
92
+ GenerateGlobalInstanceTypeCheck(masm, t1, miss);
93
+
94
+ // Check that the global object does not require access checks.
95
+ __ ldrb(t1, FieldMemOperand(t0, Map::kBitFieldOffset));
96
+ __ tst(t1, Operand((1 << Map::kIsAccessCheckNeeded) |
97
+ (1 << Map::kHasNamedInterceptor)));
98
+ __ b(ne, miss);
99
+
100
+ __ ldr(elements, FieldMemOperand(receiver, JSObject::kPropertiesOffset));
101
+ __ ldr(t1, FieldMemOperand(elements, HeapObject::kMapOffset));
102
+ __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
103
+ __ cmp(t1, ip);
104
+ __ b(ne, miss);
105
+ }
106
+
107
+
108
+ // Probe the string dictionary in the |elements| register. Jump to the
109
+ // |done| label if a property with the given name is found. Jump to
110
+ // the |miss| label otherwise.
111
+ static void GenerateStringDictionaryProbes(MacroAssembler* masm,
112
+ Label* miss,
113
+ Label* done,
114
+ Register elements,
115
+ Register name,
116
+ Register scratch1,
117
+ Register scratch2) {
118
+ // Assert that name contains a string.
119
+ if (FLAG_debug_code) __ AbortIfNotString(name);
120
+
121
+ // Compute the capacity mask.
122
+ const int kCapacityOffset = StringDictionary::kHeaderSize +
123
+ StringDictionary::kCapacityIndex * kPointerSize;
124
+ __ ldr(scratch1, FieldMemOperand(elements, kCapacityOffset));
125
+ __ mov(scratch1, Operand(scratch1, ASR, kSmiTagSize)); // convert smi to int
126
+ __ sub(scratch1, scratch1, Operand(1));
127
+
128
+ const int kElementsStartOffset = StringDictionary::kHeaderSize +
129
+ StringDictionary::kElementsStartIndex * kPointerSize;
130
+
131
+ // Generate an unrolled loop that performs a few probes before
132
+ // giving up. Measurements done on Gmail indicate that 2 probes
133
+ // cover ~93% of loads from dictionaries.
134
+ static const int kProbes = 4;
135
+ for (int i = 0; i < kProbes; i++) {
136
+ // Compute the masked index: (hash + i + i * i) & mask.
137
+ __ ldr(scratch2, FieldMemOperand(name, String::kHashFieldOffset));
138
+ if (i > 0) {
139
+ // Add the probe offset (i + i * i) left shifted to avoid right shifting
140
+ // the hash in a separate instruction. The value hash + i + i * i is right
141
+ // shifted in the following and instruction.
142
+ ASSERT(StringDictionary::GetProbeOffset(i) <
143
+ 1 << (32 - String::kHashFieldOffset));
144
+ __ add(scratch2, scratch2, Operand(
145
+ StringDictionary::GetProbeOffset(i) << String::kHashShift));
146
+ }
147
+ __ and_(scratch2, scratch1, Operand(scratch2, LSR, String::kHashShift));
148
+
149
+ // Scale the index by multiplying by the element size.
150
+ ASSERT(StringDictionary::kEntrySize == 3);
151
+ // scratch2 = scratch2 * 3.
152
+ __ add(scratch2, scratch2, Operand(scratch2, LSL, 1));
153
+
154
+ // Check if the key is identical to the name.
155
+ __ add(scratch2, elements, Operand(scratch2, LSL, 2));
156
+ __ ldr(ip, FieldMemOperand(scratch2, kElementsStartOffset));
157
+ __ cmp(name, Operand(ip));
158
+ if (i != kProbes - 1) {
159
+ __ b(eq, done);
160
+ } else {
161
+ __ b(ne, miss);
162
+ }
163
+ }
164
+ }
165
+
166
+
167
+ // Helper function used from LoadIC/CallIC GenerateNormal.
168
+ //
169
+ // elements: Property dictionary. It is not clobbered if a jump to the miss
170
+ // label is done.
171
+ // name: Property name. It is not clobbered if a jump to the miss label is
172
+ // done
173
+ // result: Register for the result. It is only updated if a jump to the miss
174
+ // label is not done. Can be the same as elements or name clobbering
175
+ // one of these in the case of not jumping to the miss label.
176
+ // The two scratch registers need to be different from elements, name and
177
+ // result.
178
+ // The generated code assumes that the receiver has slow properties,
179
+ // is not a global object and does not have interceptors.
180
+ static void GenerateDictionaryLoad(MacroAssembler* masm,
181
+ Label* miss,
182
+ Register elements,
183
+ Register name,
184
+ Register result,
185
+ Register scratch1,
186
+ Register scratch2) {
187
+ // Main use of the scratch registers.
188
+ // scratch1: Used as temporary and to hold the capacity of the property
189
+ // dictionary.
190
+ // scratch2: Used as temporary.
191
+ Label done;
192
+
193
+ // Probe the dictionary.
194
+ GenerateStringDictionaryProbes(masm,
195
+ miss,
196
+ &done,
197
+ elements,
198
+ name,
199
+ scratch1,
200
+ scratch2);
201
+
202
+ // If probing finds an entry check that the value is a normal
203
+ // property.
204
+ __ bind(&done); // scratch2 == elements + 4 * index
205
+ const int kElementsStartOffset = StringDictionary::kHeaderSize +
206
+ StringDictionary::kElementsStartIndex * kPointerSize;
207
+ const int kDetailsOffset = kElementsStartOffset + 2 * kPointerSize;
208
+ __ ldr(scratch1, FieldMemOperand(scratch2, kDetailsOffset));
209
+ __ tst(scratch1, Operand(PropertyDetails::TypeField::mask() << kSmiTagSize));
210
+ __ b(ne, miss);
211
+
212
+ // Get the value at the masked, scaled index and return.
213
+ __ ldr(result,
214
+ FieldMemOperand(scratch2, kElementsStartOffset + 1 * kPointerSize));
215
+ }
216
+
217
+
218
+ // Helper function used from StoreIC::GenerateNormal.
219
+ //
220
+ // elements: Property dictionary. It is not clobbered if a jump to the miss
221
+ // label is done.
222
+ // name: Property name. It is not clobbered if a jump to the miss label is
223
+ // done
224
+ // value: The value to store.
225
+ // The two scratch registers need to be different from elements, name and
226
+ // result.
227
+ // The generated code assumes that the receiver has slow properties,
228
+ // is not a global object and does not have interceptors.
229
+ static void GenerateDictionaryStore(MacroAssembler* masm,
230
+ Label* miss,
231
+ Register elements,
232
+ Register name,
233
+ Register value,
234
+ Register scratch1,
235
+ Register scratch2) {
236
+ // Main use of the scratch registers.
237
+ // scratch1: Used as temporary and to hold the capacity of the property
238
+ // dictionary.
239
+ // scratch2: Used as temporary.
240
+ Label done;
241
+
242
+ // Probe the dictionary.
243
+ GenerateStringDictionaryProbes(masm,
244
+ miss,
245
+ &done,
246
+ elements,
247
+ name,
248
+ scratch1,
249
+ scratch2);
250
+
251
+ // If probing finds an entry in the dictionary check that the value
252
+ // is a normal property that is not read only.
253
+ __ bind(&done); // scratch2 == elements + 4 * index
254
+ const int kElementsStartOffset = 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
+ __ ldr(scratch1, FieldMemOperand(scratch2, kDetailsOffset));
261
+ __ tst(scratch1, Operand(kTypeAndReadOnlyMask));
262
+ __ b(ne, miss);
263
+
264
+ // Store the value at the masked, scaled index and return.
265
+ const int kValueOffset = kElementsStartOffset + kPointerSize;
266
+ __ add(scratch2, scratch2, Operand(kValueOffset - kHeapObjectTag));
267
+ __ str(value, MemOperand(scratch2));
268
+
269
+ // Update the write barrier. Make sure not to clobber the value.
270
+ __ mov(scratch1, value);
271
+ __ RecordWrite(elements, scratch2, scratch1);
272
+ }
273
+
274
+
275
+ static void GenerateNumberDictionaryLoad(MacroAssembler* masm,
276
+ Label* miss,
277
+ Register elements,
278
+ Register key,
279
+ Register result,
280
+ Register t0,
281
+ Register t1,
282
+ Register t2) {
283
+ // Register use:
284
+ //
285
+ // elements - holds the slow-case elements of the receiver on entry.
286
+ // Unchanged unless 'result' is the same register.
287
+ //
288
+ // key - holds the smi key on entry.
289
+ // Unchanged unless 'result' is the same register.
290
+ //
291
+ // result - holds the result on exit if the load succeeded.
292
+ // Allowed to be the same as 'key' or 'result'.
293
+ // Unchanged on bailout so 'key' or 'result' can be used
294
+ // in further computation.
295
+ //
296
+ // Scratch registers:
297
+ //
298
+ // t0 - holds the untagged key on entry and holds the hash once computed.
299
+ //
300
+ // t1 - used to hold the capacity mask of the dictionary
301
+ //
302
+ // t2 - used for the index into the dictionary.
303
+ Label done;
304
+
305
+ // Compute the hash code from the untagged key. This must be kept in sync
306
+ // with ComputeIntegerHash in utils.h.
307
+ //
308
+ // hash = ~hash + (hash << 15);
309
+ __ mvn(t1, Operand(t0));
310
+ __ add(t0, t1, Operand(t0, LSL, 15));
311
+ // hash = hash ^ (hash >> 12);
312
+ __ eor(t0, t0, Operand(t0, LSR, 12));
313
+ // hash = hash + (hash << 2);
314
+ __ add(t0, t0, Operand(t0, LSL, 2));
315
+ // hash = hash ^ (hash >> 4);
316
+ __ eor(t0, t0, Operand(t0, LSR, 4));
317
+ // hash = hash * 2057;
318
+ __ mov(t1, Operand(2057));
319
+ __ mul(t0, t0, t1);
320
+ // hash = hash ^ (hash >> 16);
321
+ __ eor(t0, t0, Operand(t0, LSR, 16));
322
+
323
+ // Compute the capacity mask.
324
+ __ ldr(t1, FieldMemOperand(elements, NumberDictionary::kCapacityOffset));
325
+ __ mov(t1, Operand(t1, ASR, kSmiTagSize)); // convert smi to int
326
+ __ sub(t1, t1, Operand(1));
327
+
328
+ // Generate an unrolled loop that performs a few probes before giving up.
329
+ static const int kProbes = 4;
330
+ for (int i = 0; i < kProbes; i++) {
331
+ // Use t2 for index calculations and keep the hash intact in t0.
332
+ __ mov(t2, t0);
333
+ // Compute the masked index: (hash + i + i * i) & mask.
334
+ if (i > 0) {
335
+ __ add(t2, t2, Operand(NumberDictionary::GetProbeOffset(i)));
336
+ }
337
+ __ and_(t2, t2, Operand(t1));
338
+
339
+ // Scale the index by multiplying by the element size.
340
+ ASSERT(NumberDictionary::kEntrySize == 3);
341
+ __ add(t2, t2, Operand(t2, LSL, 1)); // t2 = t2 * 3
342
+
343
+ // Check if the key is identical to the name.
344
+ __ add(t2, elements, Operand(t2, LSL, kPointerSizeLog2));
345
+ __ ldr(ip, FieldMemOperand(t2, NumberDictionary::kElementsStartOffset));
346
+ __ cmp(key, Operand(ip));
347
+ if (i != kProbes - 1) {
348
+ __ b(eq, &done);
349
+ } else {
350
+ __ b(ne, miss);
351
+ }
352
+ }
353
+
354
+ __ bind(&done);
355
+ // Check that the value is a normal property.
356
+ // t2: elements + (index * kPointerSize)
357
+ const int kDetailsOffset =
358
+ NumberDictionary::kElementsStartOffset + 2 * kPointerSize;
359
+ __ ldr(t1, FieldMemOperand(t2, kDetailsOffset));
360
+ __ tst(t1, Operand(Smi::FromInt(PropertyDetails::TypeField::mask())));
361
+ __ b(ne, miss);
362
+
363
+ // Get the value at the masked, scaled index and return.
364
+ const int kValueOffset =
365
+ NumberDictionary::kElementsStartOffset + kPointerSize;
366
+ __ ldr(result, FieldMemOperand(t2, kValueOffset));
367
+ }
368
+
369
+
370
+ void LoadIC::GenerateArrayLength(MacroAssembler* masm) {
371
+ // ----------- S t a t e -------------
372
+ // -- r2 : name
373
+ // -- lr : return address
374
+ // -- r0 : receiver
375
+ // -- sp[0] : receiver
376
+ // -----------------------------------
377
+ Label miss;
378
+
379
+ StubCompiler::GenerateLoadArrayLength(masm, r0, r3, &miss);
380
+ __ bind(&miss);
381
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
382
+ }
383
+
384
+
385
+ void LoadIC::GenerateStringLength(MacroAssembler* masm, bool support_wrappers) {
386
+ // ----------- S t a t e -------------
387
+ // -- r2 : name
388
+ // -- lr : return address
389
+ // -- r0 : receiver
390
+ // -- sp[0] : receiver
391
+ // -----------------------------------
392
+ Label miss;
393
+
394
+ StubCompiler::GenerateLoadStringLength(masm, r0, r1, r3, &miss,
395
+ support_wrappers);
396
+ // Cache miss: Jump to runtime.
397
+ __ bind(&miss);
398
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
399
+ }
400
+
401
+
402
+ void LoadIC::GenerateFunctionPrototype(MacroAssembler* masm) {
403
+ // ----------- S t a t e -------------
404
+ // -- r2 : name
405
+ // -- lr : return address
406
+ // -- r0 : receiver
407
+ // -- sp[0] : receiver
408
+ // -----------------------------------
409
+ Label miss;
410
+
411
+ StubCompiler::GenerateLoadFunctionPrototype(masm, r0, r1, r3, &miss);
412
+ __ bind(&miss);
413
+ StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
414
+ }
415
+
416
+
417
+ // Checks the receiver for special cases (value type, slow case bits).
418
+ // Falls through for regular JS object.
419
+ static void GenerateKeyedLoadReceiverCheck(MacroAssembler* masm,
420
+ Register receiver,
421
+ Register map,
422
+ Register scratch,
423
+ int interceptor_bit,
424
+ Label* slow) {
425
+ // Check that the object isn't a smi.
426
+ __ JumpIfSmi(receiver, slow);
427
+ // Get the map of the receiver.
428
+ __ ldr(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
429
+ // Check bit field.
430
+ __ ldrb(scratch, FieldMemOperand(map, Map::kBitFieldOffset));
431
+ __ tst(scratch,
432
+ Operand((1 << Map::kIsAccessCheckNeeded) | (1 << interceptor_bit)));
433
+ __ b(ne, slow);
434
+ // Check that the object is some kind of JS object EXCEPT JS Value type.
435
+ // In the case that the object is a value-wrapper object,
436
+ // we enter the runtime system to make sure that indexing into string
437
+ // objects work as intended.
438
+ ASSERT(JS_OBJECT_TYPE > JS_VALUE_TYPE);
439
+ __ ldrb(scratch, FieldMemOperand(map, Map::kInstanceTypeOffset));
440
+ __ cmp(scratch, Operand(JS_OBJECT_TYPE));
441
+ __ b(lt, slow);
442
+ }
443
+
444
+
445
+ // Loads an indexed element from a fast case array.
446
+ // If not_fast_array is NULL, doesn't perform the elements map check.
447
+ static void GenerateFastArrayLoad(MacroAssembler* masm,
448
+ Register receiver,
449
+ Register key,
450
+ Register elements,
451
+ Register scratch1,
452
+ Register scratch2,
453
+ Register result,
454
+ Label* not_fast_array,
455
+ Label* out_of_range) {
456
+ // Register use:
457
+ //
458
+ // receiver - holds the receiver on entry.
459
+ // Unchanged unless 'result' is the same register.
460
+ //
461
+ // key - holds the smi key on entry.
462
+ // Unchanged unless 'result' is the same register.
463
+ //
464
+ // elements - holds the elements of the receiver on exit.
465
+ //
466
+ // result - holds the result on exit if the load succeeded.
467
+ // Allowed to be the the same as 'receiver' or 'key'.
468
+ // Unchanged on bailout so 'receiver' and 'key' can be safely
469
+ // used by further computation.
470
+ //
471
+ // Scratch registers:
472
+ //
473
+ // scratch1 - used to hold elements map and elements length.
474
+ // Holds the elements map if not_fast_array branch is taken.
475
+ //
476
+ // scratch2 - used to hold the loaded value.
477
+
478
+ __ ldr(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
479
+ if (not_fast_array != NULL) {
480
+ // Check that the object is in fast mode and writable.
481
+ __ ldr(scratch1, FieldMemOperand(elements, HeapObject::kMapOffset));
482
+ __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
483
+ __ cmp(scratch1, ip);
484
+ __ b(ne, not_fast_array);
485
+ } else {
486
+ __ AssertFastElements(elements);
487
+ }
488
+ // Check that the key (index) is within bounds.
489
+ __ ldr(scratch1, FieldMemOperand(elements, FixedArray::kLengthOffset));
490
+ __ cmp(key, Operand(scratch1));
491
+ __ b(hs, out_of_range);
492
+ // Fast case: Do the load.
493
+ __ add(scratch1, elements, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
494
+ // The key is a smi.
495
+ ASSERT(kSmiTag == 0 && kSmiTagSize < kPointerSizeLog2);
496
+ __ ldr(scratch2,
497
+ MemOperand(scratch1, key, LSL, kPointerSizeLog2 - kSmiTagSize));
498
+ __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
499
+ __ cmp(scratch2, ip);
500
+ // In case the loaded value is the_hole we have to consult GetProperty
501
+ // to ensure the prototype chain is searched.
502
+ __ b(eq, out_of_range);
503
+ __ mov(result, scratch2);
504
+ }
505
+
506
+
507
+ // Checks whether a key is an array index string or a symbol string.
508
+ // Falls through if a key is a symbol.
509
+ static void GenerateKeyStringCheck(MacroAssembler* masm,
510
+ Register key,
511
+ Register map,
512
+ Register hash,
513
+ Label* index_string,
514
+ Label* not_symbol) {
515
+ // The key is not a smi.
516
+ // Is it a string?
517
+ __ CompareObjectType(key, map, hash, FIRST_NONSTRING_TYPE);
518
+ __ b(ge, not_symbol);
519
+
520
+ // Is the string an array index, with cached numeric value?
521
+ __ ldr(hash, FieldMemOperand(key, String::kHashFieldOffset));
522
+ __ tst(hash, Operand(String::kContainsCachedArrayIndexMask));
523
+ __ b(eq, index_string);
524
+
525
+ // Is the string a symbol?
526
+ // map: key map
527
+ __ ldrb(hash, FieldMemOperand(map, Map::kInstanceTypeOffset));
528
+ ASSERT(kSymbolTag != 0);
529
+ __ tst(hash, Operand(kIsSymbolMask));
530
+ __ b(eq, not_symbol);
531
+ }
532
+
533
+
534
+ // Defined in ic.cc.
535
+ Object* CallIC_Miss(Arguments args);
536
+
537
+ // The generated code does not accept smi keys.
538
+ // The generated code falls through if both probes miss.
539
+ static void GenerateMonomorphicCacheProbe(MacroAssembler* masm,
540
+ int argc,
541
+ Code::Kind kind) {
542
+ // ----------- S t a t e -------------
543
+ // -- r1 : receiver
544
+ // -- r2 : name
545
+ // -----------------------------------
546
+ Label number, non_number, non_string, boolean, probe, miss;
547
+
548
+ // Probe the stub cache.
549
+ Code::Flags flags = Code::ComputeFlags(kind,
550
+ NOT_IN_LOOP,
551
+ MONOMORPHIC,
552
+ Code::kNoExtraICState,
553
+ NORMAL,
554
+ argc);
555
+ StubCache::GenerateProbe(masm, flags, r1, r2, r3, r4, r5);
556
+
557
+ // If the stub cache probing failed, the receiver might be a value.
558
+ // For value objects, we use the map of the prototype objects for
559
+ // the corresponding JSValue for the cache and that is what we need
560
+ // to probe.
561
+ //
562
+ // Check for number.
563
+ __ tst(r1, Operand(kSmiTagMask));
564
+ __ b(eq, &number);
565
+ __ CompareObjectType(r1, r3, r3, HEAP_NUMBER_TYPE);
566
+ __ b(ne, &non_number);
567
+ __ bind(&number);
568
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
569
+ masm, Context::NUMBER_FUNCTION_INDEX, r1);
570
+ __ b(&probe);
571
+
572
+ // Check for string.
573
+ __ bind(&non_number);
574
+ __ cmp(r3, Operand(FIRST_NONSTRING_TYPE));
575
+ __ b(hs, &non_string);
576
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
577
+ masm, Context::STRING_FUNCTION_INDEX, r1);
578
+ __ b(&probe);
579
+
580
+ // Check for boolean.
581
+ __ bind(&non_string);
582
+ __ LoadRoot(ip, Heap::kTrueValueRootIndex);
583
+ __ cmp(r1, ip);
584
+ __ b(eq, &boolean);
585
+ __ LoadRoot(ip, Heap::kFalseValueRootIndex);
586
+ __ cmp(r1, ip);
587
+ __ b(ne, &miss);
588
+ __ bind(&boolean);
589
+ StubCompiler::GenerateLoadGlobalFunctionPrototype(
590
+ masm, Context::BOOLEAN_FUNCTION_INDEX, r1);
591
+
592
+ // Probe the stub cache for the value object.
593
+ __ bind(&probe);
594
+ StubCache::GenerateProbe(masm, flags, r1, r2, r3, r4, r5);
595
+
596
+ __ bind(&miss);
597
+ }
598
+
599
+
600
+ static void GenerateFunctionTailCall(MacroAssembler* masm,
601
+ int argc,
602
+ Label* miss,
603
+ Register scratch) {
604
+ // r1: function
605
+
606
+ // Check that the value isn't a smi.
607
+ __ tst(r1, Operand(kSmiTagMask));
608
+ __ b(eq, miss);
609
+
610
+ // Check that the value is a JSFunction.
611
+ __ CompareObjectType(r1, scratch, scratch, JS_FUNCTION_TYPE);
612
+ __ b(ne, miss);
613
+
614
+ // Invoke the function.
615
+ ParameterCount actual(argc);
616
+ __ InvokeFunction(r1, actual, JUMP_FUNCTION);
617
+ }
618
+
619
+
620
+ static void GenerateCallNormal(MacroAssembler* masm, int argc) {
621
+ // ----------- S t a t e -------------
622
+ // -- r2 : name
623
+ // -- lr : return address
624
+ // -----------------------------------
625
+ Label miss;
626
+
627
+ // Get the receiver of the function from the stack into r1.
628
+ __ ldr(r1, MemOperand(sp, argc * kPointerSize));
629
+
630
+ GenerateStringDictionaryReceiverCheck(masm, r1, r0, r3, r4, &miss);
631
+
632
+ // r0: elements
633
+ // Search the dictionary - put result in register r1.
634
+ GenerateDictionaryLoad(masm, &miss, r0, r2, r1, r3, r4);
635
+
636
+ GenerateFunctionTailCall(masm, argc, &miss, r4);
637
+
638
+ __ bind(&miss);
639
+ }
640
+
641
+
642
+ static void GenerateCallMiss(MacroAssembler* masm, int argc, IC::UtilityId id) {
643
+ // ----------- S t a t e -------------
644
+ // -- r2 : name
645
+ // -- lr : return address
646
+ // -----------------------------------
647
+
648
+ if (id == IC::kCallIC_Miss) {
649
+ __ IncrementCounter(&Counters::call_miss, 1, r3, r4);
650
+ } else {
651
+ __ IncrementCounter(&Counters::keyed_call_miss, 1, r3, r4);
652
+ }
653
+
654
+ // Get the receiver of the function from the stack.
655
+ __ ldr(r3, MemOperand(sp, argc * kPointerSize));
656
+
657
+ __ EnterInternalFrame();
658
+
659
+ // Push the receiver and the name of the function.
660
+ __ Push(r3, r2);
661
+
662
+ // Call the entry.
663
+ __ mov(r0, Operand(2));
664
+ __ mov(r1, Operand(ExternalReference(IC_Utility(id))));
665
+
666
+ CEntryStub stub(1);
667
+ __ CallStub(&stub);
668
+
669
+ // Move result to r1 and leave the internal frame.
670
+ __ mov(r1, Operand(r0));
671
+ __ LeaveInternalFrame();
672
+
673
+ // Check if the receiver is a global object of some sort.
674
+ // This can happen only for regular CallIC but not KeyedCallIC.
675
+ if (id == IC::kCallIC_Miss) {
676
+ Label invoke, global;
677
+ __ ldr(r2, MemOperand(sp, argc * kPointerSize)); // receiver
678
+ __ tst(r2, Operand(kSmiTagMask));
679
+ __ b(eq, &invoke);
680
+ __ CompareObjectType(r2, r3, r3, JS_GLOBAL_OBJECT_TYPE);
681
+ __ b(eq, &global);
682
+ __ cmp(r3, Operand(JS_BUILTINS_OBJECT_TYPE));
683
+ __ b(ne, &invoke);
684
+
685
+ // Patch the receiver on the stack.
686
+ __ bind(&global);
687
+ __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalReceiverOffset));
688
+ __ str(r2, MemOperand(sp, argc * kPointerSize));
689
+ __ bind(&invoke);
690
+ }
691
+
692
+ // Invoke the function.
693
+ ParameterCount actual(argc);
694
+ __ InvokeFunction(r1, actual, JUMP_FUNCTION);
695
+ }
696
+
697
+
698
+ void CallIC::GenerateMiss(MacroAssembler* masm, int argc) {
699
+ // ----------- S t a t e -------------
700
+ // -- r2 : name
701
+ // -- lr : return address
702
+ // -----------------------------------
703
+
704
+ GenerateCallMiss(masm, argc, IC::kCallIC_Miss);
705
+ }
706
+
707
+
708
+ void CallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
709
+ // ----------- S t a t e -------------
710
+ // -- r2 : name
711
+ // -- lr : return address
712
+ // -----------------------------------
713
+
714
+ // Get the receiver of the function from the stack into r1.
715
+ __ ldr(r1, MemOperand(sp, argc * kPointerSize));
716
+ GenerateMonomorphicCacheProbe(masm, argc, Code::CALL_IC);
717
+ GenerateMiss(masm, argc);
718
+ }
719
+
720
+
721
+ void CallIC::GenerateNormal(MacroAssembler* masm, int argc) {
722
+ // ----------- S t a t e -------------
723
+ // -- r2 : name
724
+ // -- lr : return address
725
+ // -----------------------------------
726
+
727
+ GenerateCallNormal(masm, argc);
728
+ GenerateMiss(masm, argc);
729
+ }
730
+
731
+
732
+ void KeyedCallIC::GenerateMiss(MacroAssembler* masm, int argc) {
733
+ // ----------- S t a t e -------------
734
+ // -- r2 : name
735
+ // -- lr : return address
736
+ // -----------------------------------
737
+
738
+ GenerateCallMiss(masm, argc, IC::kKeyedCallIC_Miss);
739
+ }
740
+
741
+
742
+ void KeyedCallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
743
+ // ----------- S t a t e -------------
744
+ // -- r2 : name
745
+ // -- lr : return address
746
+ // -----------------------------------
747
+
748
+ // Get the receiver of the function from the stack into r1.
749
+ __ ldr(r1, MemOperand(sp, argc * kPointerSize));
750
+
751
+ Label do_call, slow_call, slow_load, slow_reload_receiver;
752
+ Label check_number_dictionary, check_string, lookup_monomorphic_cache;
753
+ Label index_smi, index_string;
754
+
755
+ // Check that the key is a smi.
756
+ __ JumpIfNotSmi(r2, &check_string);
757
+ __ bind(&index_smi);
758
+ // Now the key is known to be a smi. This place is also jumped to from below
759
+ // where a numeric string is converted to a smi.
760
+
761
+ GenerateKeyedLoadReceiverCheck(
762
+ masm, r1, r0, r3, Map::kHasIndexedInterceptor, &slow_call);
763
+
764
+ GenerateFastArrayLoad(
765
+ masm, r1, r2, r4, r3, r0, r1, &check_number_dictionary, &slow_load);
766
+ __ IncrementCounter(&Counters::keyed_call_generic_smi_fast, 1, r0, r3);
767
+
768
+ __ bind(&do_call);
769
+ // receiver in r1 is not used after this point.
770
+ // r2: key
771
+ // r1: function
772
+ GenerateFunctionTailCall(masm, argc, &slow_call, r0);
773
+
774
+ __ bind(&check_number_dictionary);
775
+ // r2: key
776
+ // r3: elements map
777
+ // r4: elements
778
+ // Check whether the elements is a number dictionary.
779
+ __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
780
+ __ cmp(r3, ip);
781
+ __ b(ne, &slow_load);
782
+ __ mov(r0, Operand(r2, ASR, kSmiTagSize));
783
+ // r0: untagged index
784
+ GenerateNumberDictionaryLoad(masm, &slow_load, r4, r2, r1, r0, r3, r5);
785
+ __ IncrementCounter(&Counters::keyed_call_generic_smi_dict, 1, r0, r3);
786
+ __ jmp(&do_call);
787
+
788
+ __ bind(&slow_load);
789
+ // This branch is taken when calling KeyedCallIC_Miss is neither required
790
+ // nor beneficial.
791
+ __ IncrementCounter(&Counters::keyed_call_generic_slow_load, 1, r0, r3);
792
+ __ EnterInternalFrame();
793
+ __ push(r2); // save the key
794
+ __ Push(r1, r2); // pass the receiver and the key
795
+ __ CallRuntime(Runtime::kKeyedGetProperty, 2);
796
+ __ pop(r2); // restore the key
797
+ __ LeaveInternalFrame();
798
+ __ mov(r1, r0);
799
+ __ jmp(&do_call);
800
+
801
+ __ bind(&check_string);
802
+ GenerateKeyStringCheck(masm, r2, r0, r3, &index_string, &slow_call);
803
+
804
+ // The key is known to be a symbol.
805
+ // If the receiver is a regular JS object with slow properties then do
806
+ // a quick inline probe of the receiver's dictionary.
807
+ // Otherwise do the monomorphic cache probe.
808
+ GenerateKeyedLoadReceiverCheck(
809
+ masm, r1, r0, r3, Map::kHasNamedInterceptor, &lookup_monomorphic_cache);
810
+
811
+ __ ldr(r0, FieldMemOperand(r1, JSObject::kPropertiesOffset));
812
+ __ ldr(r3, FieldMemOperand(r0, HeapObject::kMapOffset));
813
+ __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
814
+ __ cmp(r3, ip);
815
+ __ b(ne, &lookup_monomorphic_cache);
816
+
817
+ GenerateDictionaryLoad(masm, &slow_load, r0, r2, r1, r3, r4);
818
+ __ IncrementCounter(&Counters::keyed_call_generic_lookup_dict, 1, r0, r3);
819
+ __ jmp(&do_call);
820
+
821
+ __ bind(&lookup_monomorphic_cache);
822
+ __ IncrementCounter(&Counters::keyed_call_generic_lookup_cache, 1, r0, r3);
823
+ GenerateMonomorphicCacheProbe(masm, argc, Code::KEYED_CALL_IC);
824
+ // Fall through on miss.
825
+
826
+ __ bind(&slow_call);
827
+ // This branch is taken if:
828
+ // - the receiver requires boxing or access check,
829
+ // - the key is neither smi nor symbol,
830
+ // - the value loaded is not a function,
831
+ // - there is hope that the runtime will create a monomorphic call stub
832
+ // that will get fetched next time.
833
+ __ IncrementCounter(&Counters::keyed_call_generic_slow, 1, r0, r3);
834
+ GenerateMiss(masm, argc);
835
+
836
+ __ bind(&index_string);
837
+ __ IndexFromHash(r3, r2);
838
+ // Now jump to the place where smi keys are handled.
839
+ __ jmp(&index_smi);
840
+ }
841
+
842
+
843
+ void KeyedCallIC::GenerateNormal(MacroAssembler* masm, int argc) {
844
+ // ----------- S t a t e -------------
845
+ // -- r2 : name
846
+ // -- lr : return address
847
+ // -----------------------------------
848
+
849
+ // Check if the name is a string.
850
+ Label miss;
851
+ __ tst(r2, Operand(kSmiTagMask));
852
+ __ b(eq, &miss);
853
+ __ IsObjectJSStringType(r2, r0, &miss);
854
+
855
+ GenerateCallNormal(masm, argc);
856
+ __ bind(&miss);
857
+ GenerateMiss(masm, argc);
858
+ }
859
+
860
+
861
+ // Defined in ic.cc.
862
+ Object* LoadIC_Miss(Arguments args);
863
+
864
+ void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
865
+ // ----------- S t a t e -------------
866
+ // -- r2 : name
867
+ // -- lr : return address
868
+ // -- r0 : receiver
869
+ // -- sp[0] : receiver
870
+ // -----------------------------------
871
+
872
+ // Probe the stub cache.
873
+ Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
874
+ NOT_IN_LOOP,
875
+ MONOMORPHIC);
876
+ StubCache::GenerateProbe(masm, flags, r0, r2, r3, r4, r5);
877
+
878
+ // Cache miss: Jump to runtime.
879
+ GenerateMiss(masm);
880
+ }
881
+
882
+
883
+ void LoadIC::GenerateNormal(MacroAssembler* masm) {
884
+ // ----------- S t a t e -------------
885
+ // -- r2 : name
886
+ // -- lr : return address
887
+ // -- r0 : receiver
888
+ // -- sp[0] : receiver
889
+ // -----------------------------------
890
+ Label miss;
891
+
892
+ GenerateStringDictionaryReceiverCheck(masm, r0, r1, r3, r4, &miss);
893
+
894
+ // r1: elements
895
+ GenerateDictionaryLoad(masm, &miss, r1, r2, r0, r3, r4);
896
+ __ Ret();
897
+
898
+ // Cache miss: Jump to runtime.
899
+ __ bind(&miss);
900
+ GenerateMiss(masm);
901
+ }
902
+
903
+
904
+ void LoadIC::GenerateMiss(MacroAssembler* masm) {
905
+ // ----------- S t a t e -------------
906
+ // -- r2 : name
907
+ // -- lr : return address
908
+ // -- r0 : receiver
909
+ // -- sp[0] : receiver
910
+ // -----------------------------------
911
+
912
+ __ IncrementCounter(&Counters::load_miss, 1, r3, r4);
913
+
914
+ __ mov(r3, r0);
915
+ __ Push(r3, r2);
916
+
917
+ // Perform tail call to the entry.
918
+ ExternalReference ref = ExternalReference(IC_Utility(kLoadIC_Miss));
919
+ __ TailCallExternalReference(ref, 2, 1);
920
+ }
921
+
922
+ // Returns the code marker, or the 0 if the code is not marked.
923
+ static inline int InlinedICSiteMarker(Address address,
924
+ Address* inline_end_address) {
925
+ if (V8::UseCrankshaft()) return false;
926
+
927
+ // If the instruction after the call site is not the pseudo instruction nop1
928
+ // then this is not related to an inlined in-object property load. The nop1
929
+ // instruction is located just after the call to the IC in the deferred code
930
+ // handling the miss in the inlined code. After the nop1 instruction there is
931
+ // a branch instruction for jumping back from the deferred code.
932
+ Address address_after_call = address + Assembler::kCallTargetAddressOffset;
933
+ Instr instr_after_call = Assembler::instr_at(address_after_call);
934
+ int code_marker = MacroAssembler::GetCodeMarker(instr_after_call);
935
+
936
+ // A negative result means the code is not marked.
937
+ if (code_marker <= 0) return 0;
938
+
939
+ Address address_after_nop = address_after_call + Assembler::kInstrSize;
940
+ Instr instr_after_nop = Assembler::instr_at(address_after_nop);
941
+ // There may be some reg-reg move and frame merging code to skip over before
942
+ // the branch back from the DeferredReferenceGetKeyedValue code to the inlined
943
+ // code.
944
+ while (!Assembler::IsBranch(instr_after_nop)) {
945
+ address_after_nop += Assembler::kInstrSize;
946
+ instr_after_nop = Assembler::instr_at(address_after_nop);
947
+ }
948
+
949
+ // Find the end of the inlined code for handling the load.
950
+ int b_offset =
951
+ Assembler::GetBranchOffset(instr_after_nop) + Assembler::kPcLoadDelta;
952
+ ASSERT(b_offset < 0); // Jumping back from deferred code.
953
+ *inline_end_address = address_after_nop + b_offset;
954
+
955
+ return code_marker;
956
+ }
957
+
958
+
959
+ bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) {
960
+ if (V8::UseCrankshaft()) return false;
961
+
962
+ // Find the end of the inlined code for handling the load if this is an
963
+ // inlined IC call site.
964
+ Address inline_end_address;
965
+ if (InlinedICSiteMarker(address, &inline_end_address)
966
+ != Assembler::PROPERTY_ACCESS_INLINED) {
967
+ return false;
968
+ }
969
+
970
+ // Patch the offset of the property load instruction (ldr r0, [r1, #+XXX]).
971
+ // The immediate must be representable in 12 bits.
972
+ ASSERT((JSObject::kMaxInstanceSize - JSObject::kHeaderSize) < (1 << 12));
973
+ Address ldr_property_instr_address =
974
+ inline_end_address - Assembler::kInstrSize;
975
+ ASSERT(Assembler::IsLdrRegisterImmediate(
976
+ Assembler::instr_at(ldr_property_instr_address)));
977
+ Instr ldr_property_instr = Assembler::instr_at(ldr_property_instr_address);
978
+ ldr_property_instr = Assembler::SetLdrRegisterImmediateOffset(
979
+ ldr_property_instr, offset - kHeapObjectTag);
980
+ Assembler::instr_at_put(ldr_property_instr_address, ldr_property_instr);
981
+
982
+ // Indicate that code has changed.
983
+ CPU::FlushICache(ldr_property_instr_address, 1 * Assembler::kInstrSize);
984
+
985
+ // Patch the map check.
986
+ // For PROPERTY_ACCESS_INLINED, the load map instruction is generated
987
+ // 4 instructions before the end of the inlined code.
988
+ // See codgen-arm.cc CodeGenerator::EmitNamedLoad.
989
+ int ldr_map_offset = -4;
990
+ Address ldr_map_instr_address =
991
+ inline_end_address + ldr_map_offset * Assembler::kInstrSize;
992
+ Assembler::set_target_address_at(ldr_map_instr_address,
993
+ reinterpret_cast<Address>(map));
994
+ return true;
995
+ }
996
+
997
+
998
+ bool LoadIC::PatchInlinedContextualLoad(Address address,
999
+ Object* map,
1000
+ Object* cell,
1001
+ bool is_dont_delete) {
1002
+ // Find the end of the inlined code for handling the contextual load if
1003
+ // this is inlined IC call site.
1004
+ Address inline_end_address;
1005
+ int marker = InlinedICSiteMarker(address, &inline_end_address);
1006
+ if (!((marker == Assembler::PROPERTY_ACCESS_INLINED_CONTEXT) ||
1007
+ (marker == Assembler::PROPERTY_ACCESS_INLINED_CONTEXT_DONT_DELETE))) {
1008
+ return false;
1009
+ }
1010
+ // On ARM we don't rely on the is_dont_delete argument as the hint is already
1011
+ // embedded in the code marker.
1012
+ bool marker_is_dont_delete =
1013
+ marker == Assembler::PROPERTY_ACCESS_INLINED_CONTEXT_DONT_DELETE;
1014
+
1015
+ // These are the offsets from the end of the inlined code.
1016
+ // See codgen-arm.cc CodeGenerator::EmitNamedLoad.
1017
+ int ldr_map_offset = marker_is_dont_delete ? -5: -8;
1018
+ int ldr_cell_offset = marker_is_dont_delete ? -2: -5;
1019
+ if (FLAG_debug_code && marker_is_dont_delete) {
1020
+ // Three extra instructions were generated to check for the_hole_value.
1021
+ ldr_map_offset -= 3;
1022
+ ldr_cell_offset -= 3;
1023
+ }
1024
+ Address ldr_map_instr_address =
1025
+ inline_end_address + ldr_map_offset * Assembler::kInstrSize;
1026
+ Address ldr_cell_instr_address =
1027
+ inline_end_address + ldr_cell_offset * Assembler::kInstrSize;
1028
+
1029
+ // Patch the map check.
1030
+ Assembler::set_target_address_at(ldr_map_instr_address,
1031
+ reinterpret_cast<Address>(map));
1032
+ // Patch the cell address.
1033
+ Assembler::set_target_address_at(ldr_cell_instr_address,
1034
+ reinterpret_cast<Address>(cell));
1035
+
1036
+ return true;
1037
+ }
1038
+
1039
+
1040
+ bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) {
1041
+ if (V8::UseCrankshaft()) return false;
1042
+
1043
+ // Find the end of the inlined code for the store if there is an
1044
+ // inlined version of the store.
1045
+ Address inline_end_address;
1046
+ if (InlinedICSiteMarker(address, &inline_end_address)
1047
+ != Assembler::PROPERTY_ACCESS_INLINED) {
1048
+ return false;
1049
+ }
1050
+
1051
+ // Compute the address of the map load instruction.
1052
+ Address ldr_map_instr_address =
1053
+ inline_end_address -
1054
+ (CodeGenerator::GetInlinedNamedStoreInstructionsAfterPatch() *
1055
+ Assembler::kInstrSize);
1056
+
1057
+ // Update the offsets if initializing the inlined store. No reason
1058
+ // to update the offsets when clearing the inlined version because
1059
+ // it will bail out in the map check.
1060
+ if (map != Heap::null_value()) {
1061
+ // Patch the offset in the actual store instruction.
1062
+ Address str_property_instr_address =
1063
+ ldr_map_instr_address + 3 * Assembler::kInstrSize;
1064
+ Instr str_property_instr = Assembler::instr_at(str_property_instr_address);
1065
+ ASSERT(Assembler::IsStrRegisterImmediate(str_property_instr));
1066
+ str_property_instr = Assembler::SetStrRegisterImmediateOffset(
1067
+ str_property_instr, offset - kHeapObjectTag);
1068
+ Assembler::instr_at_put(str_property_instr_address, str_property_instr);
1069
+
1070
+ // Patch the offset in the add instruction that is part of the
1071
+ // write barrier.
1072
+ Address add_offset_instr_address =
1073
+ str_property_instr_address + Assembler::kInstrSize;
1074
+ Instr add_offset_instr = Assembler::instr_at(add_offset_instr_address);
1075
+ ASSERT(Assembler::IsAddRegisterImmediate(add_offset_instr));
1076
+ add_offset_instr = Assembler::SetAddRegisterImmediateOffset(
1077
+ add_offset_instr, offset - kHeapObjectTag);
1078
+ Assembler::instr_at_put(add_offset_instr_address, add_offset_instr);
1079
+
1080
+ // Indicate that code has changed.
1081
+ CPU::FlushICache(str_property_instr_address, 2 * Assembler::kInstrSize);
1082
+ }
1083
+
1084
+ // Patch the map check.
1085
+ Assembler::set_target_address_at(ldr_map_instr_address,
1086
+ reinterpret_cast<Address>(map));
1087
+
1088
+ return true;
1089
+ }
1090
+
1091
+
1092
+ bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) {
1093
+ if (V8::UseCrankshaft()) return false;
1094
+
1095
+ Address inline_end_address;
1096
+ if (InlinedICSiteMarker(address, &inline_end_address)
1097
+ != Assembler::PROPERTY_ACCESS_INLINED) {
1098
+ return false;
1099
+ }
1100
+
1101
+ // Patch the map check.
1102
+ Address ldr_map_instr_address =
1103
+ inline_end_address -
1104
+ (CodeGenerator::GetInlinedKeyedLoadInstructionsAfterPatch() *
1105
+ Assembler::kInstrSize);
1106
+ Assembler::set_target_address_at(ldr_map_instr_address,
1107
+ reinterpret_cast<Address>(map));
1108
+ return true;
1109
+ }
1110
+
1111
+
1112
+ bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) {
1113
+ if (V8::UseCrankshaft()) return false;
1114
+
1115
+ // Find the end of the inlined code for handling the store if this is an
1116
+ // inlined IC call site.
1117
+ Address inline_end_address;
1118
+ if (InlinedICSiteMarker(address, &inline_end_address)
1119
+ != Assembler::PROPERTY_ACCESS_INLINED) {
1120
+ return false;
1121
+ }
1122
+
1123
+ // Patch the map check.
1124
+ Address ldr_map_instr_address =
1125
+ inline_end_address -
1126
+ (CodeGenerator::kInlinedKeyedStoreInstructionsAfterPatch *
1127
+ Assembler::kInstrSize);
1128
+ Assembler::set_target_address_at(ldr_map_instr_address,
1129
+ reinterpret_cast<Address>(map));
1130
+ return true;
1131
+ }
1132
+
1133
+
1134
+ Object* KeyedLoadIC_Miss(Arguments args);
1135
+
1136
+
1137
+ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
1138
+ // ---------- S t a t e --------------
1139
+ // -- lr : return address
1140
+ // -- r0 : key
1141
+ // -- r1 : receiver
1142
+ // -----------------------------------
1143
+
1144
+ __ IncrementCounter(&Counters::keyed_load_miss, 1, r3, r4);
1145
+
1146
+ __ Push(r1, r0);
1147
+
1148
+ ExternalReference ref = ExternalReference(IC_Utility(kKeyedLoadIC_Miss));
1149
+ __ TailCallExternalReference(ref, 2, 1);
1150
+ }
1151
+
1152
+
1153
+ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) {
1154
+ // ---------- S t a t e --------------
1155
+ // -- lr : return address
1156
+ // -- r0 : key
1157
+ // -- r1 : receiver
1158
+ // -----------------------------------
1159
+
1160
+ __ Push(r1, r0);
1161
+
1162
+ __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1);
1163
+ }
1164
+
1165
+
1166
+ void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
1167
+ // ---------- S t a t e --------------
1168
+ // -- lr : return address
1169
+ // -- r0 : key
1170
+ // -- r1 : receiver
1171
+ // -----------------------------------
1172
+ Label slow, check_string, index_smi, index_string, property_array_property;
1173
+ Label check_pixel_array, probe_dictionary, check_number_dictionary;
1174
+
1175
+ Register key = r0;
1176
+ Register receiver = r1;
1177
+
1178
+ // Check that the key is a smi.
1179
+ __ JumpIfNotSmi(key, &check_string);
1180
+ __ bind(&index_smi);
1181
+ // Now the key is known to be a smi. This place is also jumped to from below
1182
+ // where a numeric string is converted to a smi.
1183
+
1184
+ GenerateKeyedLoadReceiverCheck(
1185
+ masm, receiver, r2, r3, Map::kHasIndexedInterceptor, &slow);
1186
+
1187
+ // Check the "has fast elements" bit in the receiver's map which is
1188
+ // now in r2.
1189
+ __ ldrb(r3, FieldMemOperand(r2, Map::kBitField2Offset));
1190
+ __ tst(r3, Operand(1 << Map::kHasFastElements));
1191
+ __ b(eq, &check_pixel_array);
1192
+
1193
+ GenerateFastArrayLoad(
1194
+ masm, receiver, key, r4, r3, r2, r0, NULL, &slow);
1195
+ __ IncrementCounter(&Counters::keyed_load_generic_smi, 1, r2, r3);
1196
+ __ Ret();
1197
+
1198
+ // Check whether the elements is a pixel array.
1199
+ // r0: key
1200
+ // r1: receiver
1201
+ __ bind(&check_pixel_array);
1202
+
1203
+ GenerateFastPixelArrayLoad(masm,
1204
+ r1,
1205
+ r0,
1206
+ r3,
1207
+ r4,
1208
+ r2,
1209
+ r5,
1210
+ r0,
1211
+ &check_number_dictionary,
1212
+ NULL,
1213
+ &slow);
1214
+
1215
+ __ bind(&check_number_dictionary);
1216
+ // Check whether the elements is a number dictionary.
1217
+ // r0: key
1218
+ // r3: elements map
1219
+ // r4: elements
1220
+ __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
1221
+ __ cmp(r3, ip);
1222
+ __ b(ne, &slow);
1223
+ __ mov(r2, Operand(r0, ASR, kSmiTagSize));
1224
+ GenerateNumberDictionaryLoad(masm, &slow, r4, r0, r0, r2, r3, r5);
1225
+ __ Ret();
1226
+
1227
+ // Slow case, key and receiver still in r0 and r1.
1228
+ __ bind(&slow);
1229
+ __ IncrementCounter(&Counters::keyed_load_generic_slow, 1, r2, r3);
1230
+ GenerateRuntimeGetProperty(masm);
1231
+
1232
+ __ bind(&check_string);
1233
+ GenerateKeyStringCheck(masm, key, r2, r3, &index_string, &slow);
1234
+
1235
+ GenerateKeyedLoadReceiverCheck(
1236
+ masm, receiver, r2, r3, Map::kHasNamedInterceptor, &slow);
1237
+
1238
+ // If the receiver is a fast-case object, check the keyed lookup
1239
+ // cache. Otherwise probe the dictionary.
1240
+ __ ldr(r3, FieldMemOperand(r1, JSObject::kPropertiesOffset));
1241
+ __ ldr(r4, FieldMemOperand(r3, HeapObject::kMapOffset));
1242
+ __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
1243
+ __ cmp(r4, ip);
1244
+ __ b(eq, &probe_dictionary);
1245
+
1246
+ // Load the map of the receiver, compute the keyed lookup cache hash
1247
+ // based on 32 bits of the map pointer and the string hash.
1248
+ __ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
1249
+ __ mov(r3, Operand(r2, ASR, KeyedLookupCache::kMapHashShift));
1250
+ __ ldr(r4, FieldMemOperand(r0, String::kHashFieldOffset));
1251
+ __ eor(r3, r3, Operand(r4, ASR, String::kHashShift));
1252
+ __ And(r3, r3, Operand(KeyedLookupCache::kCapacityMask));
1253
+
1254
+ // Load the key (consisting of map and symbol) from the cache and
1255
+ // check for match.
1256
+ ExternalReference cache_keys = ExternalReference::keyed_lookup_cache_keys();
1257
+ __ mov(r4, Operand(cache_keys));
1258
+ __ add(r4, r4, Operand(r3, LSL, kPointerSizeLog2 + 1));
1259
+ __ ldr(r5, MemOperand(r4, kPointerSize, PostIndex)); // Move r4 to symbol.
1260
+ __ cmp(r2, r5);
1261
+ __ b(ne, &slow);
1262
+ __ ldr(r5, MemOperand(r4));
1263
+ __ cmp(r0, r5);
1264
+ __ b(ne, &slow);
1265
+
1266
+ // Get field offset.
1267
+ // r0 : key
1268
+ // r1 : receiver
1269
+ // r2 : receiver's map
1270
+ // r3 : lookup cache index
1271
+ ExternalReference cache_field_offsets
1272
+ = ExternalReference::keyed_lookup_cache_field_offsets();
1273
+ __ mov(r4, Operand(cache_field_offsets));
1274
+ __ ldr(r5, MemOperand(r4, r3, LSL, kPointerSizeLog2));
1275
+ __ ldrb(r6, FieldMemOperand(r2, Map::kInObjectPropertiesOffset));
1276
+ __ sub(r5, r5, r6, SetCC);
1277
+ __ b(ge, &property_array_property);
1278
+
1279
+ // Load in-object property.
1280
+ __ ldrb(r6, FieldMemOperand(r2, Map::kInstanceSizeOffset));
1281
+ __ add(r6, r6, r5); // Index from start of object.
1282
+ __ sub(r1, r1, Operand(kHeapObjectTag)); // Remove the heap tag.
1283
+ __ ldr(r0, MemOperand(r1, r6, LSL, kPointerSizeLog2));
1284
+ __ IncrementCounter(&Counters::keyed_load_generic_lookup_cache, 1, r2, r3);
1285
+ __ Ret();
1286
+
1287
+ // Load property array property.
1288
+ __ bind(&property_array_property);
1289
+ __ ldr(r1, FieldMemOperand(r1, JSObject::kPropertiesOffset));
1290
+ __ add(r1, r1, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1291
+ __ ldr(r0, MemOperand(r1, r5, LSL, kPointerSizeLog2));
1292
+ __ IncrementCounter(&Counters::keyed_load_generic_lookup_cache, 1, r2, r3);
1293
+ __ Ret();
1294
+
1295
+ // Do a quick inline probe of the receiver's dictionary, if it
1296
+ // exists.
1297
+ __ bind(&probe_dictionary);
1298
+ // r1: receiver
1299
+ // r0: key
1300
+ // r3: elements
1301
+ __ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
1302
+ __ ldrb(r2, FieldMemOperand(r2, Map::kInstanceTypeOffset));
1303
+ GenerateGlobalInstanceTypeCheck(masm, r2, &slow);
1304
+ // Load the property to r0.
1305
+ GenerateDictionaryLoad(masm, &slow, r3, r0, r0, r2, r4);
1306
+ __ IncrementCounter(&Counters::keyed_load_generic_symbol, 1, r2, r3);
1307
+ __ Ret();
1308
+
1309
+ __ bind(&index_string);
1310
+ __ IndexFromHash(r3, key);
1311
+ // Now jump to the place where smi keys are handled.
1312
+ __ jmp(&index_smi);
1313
+ }
1314
+
1315
+
1316
+ void KeyedLoadIC::GenerateString(MacroAssembler* masm) {
1317
+ // ---------- S t a t e --------------
1318
+ // -- lr : return address
1319
+ // -- r0 : key (index)
1320
+ // -- r1 : receiver
1321
+ // -----------------------------------
1322
+ Label miss;
1323
+
1324
+ Register receiver = r1;
1325
+ Register index = r0;
1326
+ Register scratch1 = r2;
1327
+ Register scratch2 = r3;
1328
+ Register result = r0;
1329
+
1330
+ StringCharAtGenerator char_at_generator(receiver,
1331
+ index,
1332
+ scratch1,
1333
+ scratch2,
1334
+ result,
1335
+ &miss, // When not a string.
1336
+ &miss, // When not a number.
1337
+ &miss, // When index out of range.
1338
+ STRING_INDEX_IS_ARRAY_INDEX);
1339
+ char_at_generator.GenerateFast(masm);
1340
+ __ Ret();
1341
+
1342
+ StubRuntimeCallHelper call_helper;
1343
+ char_at_generator.GenerateSlow(masm, call_helper);
1344
+
1345
+ __ bind(&miss);
1346
+ GenerateMiss(masm);
1347
+ }
1348
+
1349
+
1350
+ void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) {
1351
+ // ---------- S t a t e --------------
1352
+ // -- lr : return address
1353
+ // -- r0 : key
1354
+ // -- r1 : receiver
1355
+ // -----------------------------------
1356
+ Label slow;
1357
+
1358
+ // Check that the receiver isn't a smi.
1359
+ __ JumpIfSmi(r1, &slow);
1360
+
1361
+ // Check that the key is an array index, that is Uint32.
1362
+ __ tst(r0, Operand(kSmiTagMask | kSmiSignMask));
1363
+ __ b(ne, &slow);
1364
+
1365
+ // Get the map of the receiver.
1366
+ __ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
1367
+
1368
+ // Check that it has indexed interceptor and access checks
1369
+ // are not enabled for this object.
1370
+ __ ldrb(r3, FieldMemOperand(r2, Map::kBitFieldOffset));
1371
+ __ and_(r3, r3, Operand(kSlowCaseBitFieldMask));
1372
+ __ cmp(r3, Operand(1 << Map::kHasIndexedInterceptor));
1373
+ __ b(ne, &slow);
1374
+
1375
+ // Everything is fine, call runtime.
1376
+ __ Push(r1, r0); // Receiver, key.
1377
+
1378
+ // Perform tail call to the entry.
1379
+ __ TailCallExternalReference(ExternalReference(
1380
+ IC_Utility(kKeyedLoadPropertyWithInterceptor)), 2, 1);
1381
+
1382
+ __ bind(&slow);
1383
+ GenerateMiss(masm);
1384
+ }
1385
+
1386
+
1387
+ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
1388
+ // ---------- S t a t e --------------
1389
+ // -- r0 : value
1390
+ // -- r1 : key
1391
+ // -- r2 : receiver
1392
+ // -- lr : return address
1393
+ // -----------------------------------
1394
+
1395
+ // Push receiver, key and value for runtime call.
1396
+ __ Push(r2, r1, r0);
1397
+
1398
+ ExternalReference ref = ExternalReference(IC_Utility(kKeyedStoreIC_Miss));
1399
+ __ TailCallExternalReference(ref, 3, 1);
1400
+ }
1401
+
1402
+
1403
+ void KeyedStoreIC::GenerateRuntimeSetProperty(MacroAssembler* masm,
1404
+ StrictModeFlag strict_mode) {
1405
+ // ---------- S t a t e --------------
1406
+ // -- r0 : value
1407
+ // -- r1 : key
1408
+ // -- r2 : receiver
1409
+ // -- lr : return address
1410
+ // -----------------------------------
1411
+
1412
+ // Push receiver, key and value for runtime call.
1413
+ __ Push(r2, r1, r0);
1414
+
1415
+ __ mov(r1, Operand(Smi::FromInt(NONE))); // PropertyAttributes
1416
+ __ mov(r0, Operand(Smi::FromInt(strict_mode))); // Strict mode.
1417
+ __ Push(r1, r0);
1418
+
1419
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1);
1420
+ }
1421
+
1422
+
1423
+ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm,
1424
+ StrictModeFlag strict_mode) {
1425
+ // ---------- S t a t e --------------
1426
+ // -- r0 : value
1427
+ // -- r1 : key
1428
+ // -- r2 : receiver
1429
+ // -- lr : return address
1430
+ // -----------------------------------
1431
+ Label slow, fast, array, extra, check_pixel_array;
1432
+
1433
+ // Register usage.
1434
+ Register value = r0;
1435
+ Register key = r1;
1436
+ Register receiver = r2;
1437
+ Register elements = r3; // Elements array of the receiver.
1438
+ // r4 and r5 are used as general scratch registers.
1439
+
1440
+ // Check that the key is a smi.
1441
+ __ tst(key, Operand(kSmiTagMask));
1442
+ __ b(ne, &slow);
1443
+ // Check that the object isn't a smi.
1444
+ __ tst(receiver, Operand(kSmiTagMask));
1445
+ __ b(eq, &slow);
1446
+ // Get the map of the object.
1447
+ __ ldr(r4, FieldMemOperand(receiver, HeapObject::kMapOffset));
1448
+ // Check that the receiver does not require access checks. We need
1449
+ // to do this because this generic stub does not perform map checks.
1450
+ __ ldrb(ip, FieldMemOperand(r4, Map::kBitFieldOffset));
1451
+ __ tst(ip, Operand(1 << Map::kIsAccessCheckNeeded));
1452
+ __ b(ne, &slow);
1453
+ // Check if the object is a JS array or not.
1454
+ __ ldrb(r4, FieldMemOperand(r4, Map::kInstanceTypeOffset));
1455
+ __ cmp(r4, Operand(JS_ARRAY_TYPE));
1456
+ __ b(eq, &array);
1457
+ // Check that the object is some kind of JS object.
1458
+ __ cmp(r4, Operand(FIRST_JS_OBJECT_TYPE));
1459
+ __ b(lt, &slow);
1460
+
1461
+ // Object case: Check key against length in the elements array.
1462
+ __ ldr(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
1463
+ // Check that the object is in fast mode and writable.
1464
+ __ ldr(r4, FieldMemOperand(elements, HeapObject::kMapOffset));
1465
+ __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
1466
+ __ cmp(r4, ip);
1467
+ __ b(ne, &check_pixel_array);
1468
+ // Check array bounds. Both the key and the length of FixedArray are smis.
1469
+ __ ldr(ip, FieldMemOperand(elements, FixedArray::kLengthOffset));
1470
+ __ cmp(key, Operand(ip));
1471
+ __ b(lo, &fast);
1472
+
1473
+ // Slow case, handle jump to runtime.
1474
+ __ bind(&slow);
1475
+ // Entry registers are intact.
1476
+ // r0: value.
1477
+ // r1: key.
1478
+ // r2: receiver.
1479
+ GenerateRuntimeSetProperty(masm, strict_mode);
1480
+
1481
+ // Check whether the elements is a pixel array.
1482
+ // r4: elements map.
1483
+ __ bind(&check_pixel_array);
1484
+ GenerateFastPixelArrayStore(masm,
1485
+ r2,
1486
+ r1,
1487
+ r0,
1488
+ elements,
1489
+ r4,
1490
+ r5,
1491
+ r6,
1492
+ false,
1493
+ false,
1494
+ NULL,
1495
+ &slow,
1496
+ &slow,
1497
+ &slow);
1498
+
1499
+ // Extra capacity case: Check if there is extra capacity to
1500
+ // perform the store and update the length. Used for adding one
1501
+ // element to the array by writing to array[array.length].
1502
+ __ bind(&extra);
1503
+ // Condition code from comparing key and array length is still available.
1504
+ __ b(ne, &slow); // Only support writing to writing to array[array.length].
1505
+ // Check for room in the elements backing store.
1506
+ // Both the key and the length of FixedArray are smis.
1507
+ __ ldr(ip, FieldMemOperand(elements, FixedArray::kLengthOffset));
1508
+ __ cmp(key, Operand(ip));
1509
+ __ b(hs, &slow);
1510
+ // Calculate key + 1 as smi.
1511
+ ASSERT_EQ(0, kSmiTag);
1512
+ __ add(r4, key, Operand(Smi::FromInt(1)));
1513
+ __ str(r4, FieldMemOperand(receiver, JSArray::kLengthOffset));
1514
+ __ b(&fast);
1515
+
1516
+ // Array case: Get the length and the elements array from the JS
1517
+ // array. Check that the array is in fast mode (and writable); if it
1518
+ // is the length is always a smi.
1519
+ __ bind(&array);
1520
+ __ ldr(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
1521
+ __ ldr(r4, FieldMemOperand(elements, HeapObject::kMapOffset));
1522
+ __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
1523
+ __ cmp(r4, ip);
1524
+ __ b(ne, &slow);
1525
+
1526
+ // Check the key against the length in the array.
1527
+ __ ldr(ip, FieldMemOperand(receiver, JSArray::kLengthOffset));
1528
+ __ cmp(key, Operand(ip));
1529
+ __ b(hs, &extra);
1530
+ // Fall through to fast case.
1531
+
1532
+ __ bind(&fast);
1533
+ // Fast case, store the value to the elements backing store.
1534
+ __ add(r5, elements, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
1535
+ __ add(r5, r5, Operand(key, LSL, kPointerSizeLog2 - kSmiTagSize));
1536
+ __ str(value, MemOperand(r5));
1537
+ // Skip write barrier if the written value is a smi.
1538
+ __ tst(value, Operand(kSmiTagMask));
1539
+ __ Ret(eq);
1540
+ // Update write barrier for the elements array address.
1541
+ __ sub(r4, r5, Operand(elements));
1542
+ __ RecordWrite(elements, Operand(r4), r5, r6);
1543
+
1544
+ __ Ret();
1545
+ }
1546
+
1547
+
1548
+ void StoreIC::GenerateMegamorphic(MacroAssembler* masm,
1549
+ StrictModeFlag strict_mode) {
1550
+ // ----------- S t a t e -------------
1551
+ // -- r0 : value
1552
+ // -- r1 : receiver
1553
+ // -- r2 : name
1554
+ // -- lr : return address
1555
+ // -----------------------------------
1556
+
1557
+ // Get the receiver from the stack and probe the stub cache.
1558
+ Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
1559
+ NOT_IN_LOOP,
1560
+ MONOMORPHIC,
1561
+ strict_mode);
1562
+ StubCache::GenerateProbe(masm, flags, r1, r2, r3, r4, r5);
1563
+
1564
+ // Cache miss: Jump to runtime.
1565
+ GenerateMiss(masm);
1566
+ }
1567
+
1568
+
1569
+ void StoreIC::GenerateMiss(MacroAssembler* masm) {
1570
+ // ----------- S t a t e -------------
1571
+ // -- r0 : value
1572
+ // -- r1 : receiver
1573
+ // -- r2 : name
1574
+ // -- lr : return address
1575
+ // -----------------------------------
1576
+
1577
+ __ Push(r1, r2, r0);
1578
+
1579
+ // Perform tail call to the entry.
1580
+ ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_Miss));
1581
+ __ TailCallExternalReference(ref, 3, 1);
1582
+ }
1583
+
1584
+
1585
+ void StoreIC::GenerateArrayLength(MacroAssembler* masm) {
1586
+ // ----------- S t a t e -------------
1587
+ // -- r0 : value
1588
+ // -- r1 : receiver
1589
+ // -- r2 : name
1590
+ // -- lr : return address
1591
+ // -----------------------------------
1592
+ //
1593
+ // This accepts as a receiver anything JSObject::SetElementsLength accepts
1594
+ // (currently anything except for external and pixel arrays which means
1595
+ // anything with elements of FixedArray type.), but currently is restricted
1596
+ // to JSArray.
1597
+ // Value must be a number, but only smis are accepted as the most common case.
1598
+
1599
+ Label miss;
1600
+
1601
+ Register receiver = r1;
1602
+ Register value = r0;
1603
+ Register scratch = r3;
1604
+
1605
+ // Check that the receiver isn't a smi.
1606
+ __ JumpIfSmi(receiver, &miss);
1607
+
1608
+ // Check that the object is a JS array.
1609
+ __ CompareObjectType(receiver, scratch, scratch, JS_ARRAY_TYPE);
1610
+ __ b(ne, &miss);
1611
+
1612
+ // Check that elements are FixedArray.
1613
+ // We rely on StoreIC_ArrayLength below to deal with all types of
1614
+ // fast elements (including COW).
1615
+ __ ldr(scratch, FieldMemOperand(receiver, JSArray::kElementsOffset));
1616
+ __ CompareObjectType(scratch, scratch, scratch, FIXED_ARRAY_TYPE);
1617
+ __ b(ne, &miss);
1618
+
1619
+ // Check that value is a smi.
1620
+ __ JumpIfNotSmi(value, &miss);
1621
+
1622
+ // Prepare tail call to StoreIC_ArrayLength.
1623
+ __ Push(receiver, value);
1624
+
1625
+ ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_ArrayLength));
1626
+ __ TailCallExternalReference(ref, 2, 1);
1627
+
1628
+ __ bind(&miss);
1629
+
1630
+ GenerateMiss(masm);
1631
+ }
1632
+
1633
+
1634
+ void StoreIC::GenerateNormal(MacroAssembler* masm) {
1635
+ // ----------- S t a t e -------------
1636
+ // -- r0 : value
1637
+ // -- r1 : receiver
1638
+ // -- r2 : name
1639
+ // -- lr : return address
1640
+ // -----------------------------------
1641
+ Label miss;
1642
+
1643
+ GenerateStringDictionaryReceiverCheck(masm, r1, r3, r4, r5, &miss);
1644
+
1645
+ GenerateDictionaryStore(masm, &miss, r3, r2, r0, r4, r5);
1646
+ __ IncrementCounter(&Counters::store_normal_hit, 1, r4, r5);
1647
+ __ Ret();
1648
+
1649
+ __ bind(&miss);
1650
+ __ IncrementCounter(&Counters::store_normal_miss, 1, r4, r5);
1651
+ GenerateMiss(masm);
1652
+ }
1653
+
1654
+
1655
+ void StoreIC::GenerateGlobalProxy(MacroAssembler* masm,
1656
+ StrictModeFlag strict_mode) {
1657
+ // ----------- S t a t e -------------
1658
+ // -- r0 : value
1659
+ // -- r1 : receiver
1660
+ // -- r2 : name
1661
+ // -- lr : return address
1662
+ // -----------------------------------
1663
+
1664
+ __ Push(r1, r2, r0);
1665
+
1666
+ __ mov(r1, Operand(Smi::FromInt(NONE))); // PropertyAttributes
1667
+ __ mov(r0, Operand(Smi::FromInt(strict_mode)));
1668
+ __ Push(r1, r0);
1669
+
1670
+ // Do tail-call to runtime routine.
1671
+ __ TailCallRuntime(Runtime::kSetProperty, 5, 1);
1672
+ }
1673
+
1674
+
1675
+ #undef __
1676
+
1677
+
1678
+ Condition CompareIC::ComputeCondition(Token::Value op) {
1679
+ switch (op) {
1680
+ case Token::EQ_STRICT:
1681
+ case Token::EQ:
1682
+ return eq;
1683
+ case Token::LT:
1684
+ return lt;
1685
+ case Token::GT:
1686
+ // Reverse left and right operands to obtain ECMA-262 conversion order.
1687
+ return lt;
1688
+ case Token::LTE:
1689
+ // Reverse left and right operands to obtain ECMA-262 conversion order.
1690
+ return ge;
1691
+ case Token::GTE:
1692
+ return ge;
1693
+ default:
1694
+ UNREACHABLE();
1695
+ return kNoCondition;
1696
+ }
1697
+ }
1698
+
1699
+
1700
+ void CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) {
1701
+ HandleScope scope;
1702
+ Handle<Code> rewritten;
1703
+ State previous_state = GetState();
1704
+ State state = TargetState(previous_state, false, x, y);
1705
+ if (state == GENERIC) {
1706
+ CompareStub stub(GetCondition(), strict(), NO_COMPARE_FLAGS, r1, r0);
1707
+ rewritten = stub.GetCode();
1708
+ } else {
1709
+ ICCompareStub stub(op_, state);
1710
+ rewritten = stub.GetCode();
1711
+ }
1712
+ set_target(*rewritten);
1713
+
1714
+ #ifdef DEBUG
1715
+ if (FLAG_trace_ic) {
1716
+ PrintF("[CompareIC (%s->%s)#%s]\n",
1717
+ GetStateName(previous_state),
1718
+ GetStateName(state),
1719
+ Token::Name(op_));
1720
+ }
1721
+ #endif
1722
+
1723
+ // Activate inlined smi code.
1724
+ if (previous_state == UNINITIALIZED) {
1725
+ PatchInlinedSmiCode(address());
1726
+ }
1727
+ }
1728
+
1729
+
1730
+ void PatchInlinedSmiCode(Address address) {
1731
+ Address cmp_instruction_address =
1732
+ address + Assembler::kCallTargetAddressOffset;
1733
+
1734
+ // If the instruction following the call is not a cmp rx, #yyy, nothing
1735
+ // was inlined.
1736
+ Instr instr = Assembler::instr_at(cmp_instruction_address);
1737
+ if (!Assembler::IsCmpImmediate(instr)) {
1738
+ return;
1739
+ }
1740
+
1741
+ // The delta to the start of the map check instruction and the
1742
+ // condition code uses at the patched jump.
1743
+ int delta = Assembler::GetCmpImmediateRawImmediate(instr);
1744
+ delta +=
1745
+ Assembler::GetCmpImmediateRegister(instr).code() * kOff12Mask;
1746
+ // If the delta is 0 the instruction is cmp r0, #0 which also signals that
1747
+ // nothing was inlined.
1748
+ if (delta == 0) {
1749
+ return;
1750
+ }
1751
+
1752
+ #ifdef DEBUG
1753
+ if (FLAG_trace_ic) {
1754
+ PrintF("[ patching ic at %p, cmp=%p, delta=%d\n",
1755
+ address, cmp_instruction_address, delta);
1756
+ }
1757
+ #endif
1758
+
1759
+ Address patch_address =
1760
+ cmp_instruction_address - delta * Instruction::kInstrSize;
1761
+ Instr instr_at_patch = Assembler::instr_at(patch_address);
1762
+ Instr branch_instr =
1763
+ Assembler::instr_at(patch_address + Instruction::kInstrSize);
1764
+ ASSERT(Assembler::IsCmpRegister(instr_at_patch));
1765
+ ASSERT_EQ(Assembler::GetRn(instr_at_patch).code(),
1766
+ Assembler::GetRm(instr_at_patch).code());
1767
+ ASSERT(Assembler::IsBranch(branch_instr));
1768
+ if (Assembler::GetCondition(branch_instr) == eq) {
1769
+ // This is patching a "jump if not smi" site to be active.
1770
+ // Changing
1771
+ // cmp rx, rx
1772
+ // b eq, <target>
1773
+ // to
1774
+ // tst rx, #kSmiTagMask
1775
+ // b ne, <target>
1776
+ CodePatcher patcher(patch_address, 2);
1777
+ Register reg = Assembler::GetRn(instr_at_patch);
1778
+ patcher.masm()->tst(reg, Operand(kSmiTagMask));
1779
+ patcher.EmitCondition(ne);
1780
+ } else {
1781
+ ASSERT(Assembler::GetCondition(branch_instr) == ne);
1782
+ // This is patching a "jump if smi" site to be active.
1783
+ // Changing
1784
+ // cmp rx, rx
1785
+ // b ne, <target>
1786
+ // to
1787
+ // tst rx, #kSmiTagMask
1788
+ // b eq, <target>
1789
+ CodePatcher patcher(patch_address, 2);
1790
+ Register reg = Assembler::GetRn(instr_at_patch);
1791
+ patcher.masm()->tst(reg, Operand(kSmiTagMask));
1792
+ patcher.EmitCondition(eq);
1793
+ }
1794
+ }
1795
+
1796
+
1797
+ } } // namespace v8::internal
1798
+
1799
+ #endif // V8_TARGET_ARCH_ARM