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,2046 @@
1
+ // Copyright 2011 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_ARM_LITHIUM_ARM_H_
29
+ #define V8_ARM_LITHIUM_ARM_H_
30
+
31
+ #include "hydrogen.h"
32
+ #include "lithium-allocator.h"
33
+ #include "lithium.h"
34
+ #include "safepoint-table.h"
35
+
36
+ namespace v8 {
37
+ namespace internal {
38
+
39
+ // Forward declarations.
40
+ class LCodeGen;
41
+
42
+ #define LITHIUM_ALL_INSTRUCTION_LIST(V) \
43
+ V(ControlInstruction) \
44
+ V(Call) \
45
+ LITHIUM_CONCRETE_INSTRUCTION_LIST(V)
46
+
47
+
48
+ #define LITHIUM_CONCRETE_INSTRUCTION_LIST(V) \
49
+ V(AccessArgumentsAt) \
50
+ V(AddI) \
51
+ V(ApplyArguments) \
52
+ V(ArgumentsElements) \
53
+ V(ArgumentsLength) \
54
+ V(ArithmeticD) \
55
+ V(ArithmeticT) \
56
+ V(ArrayLiteral) \
57
+ V(BitI) \
58
+ V(BitNotI) \
59
+ V(BoundsCheck) \
60
+ V(Branch) \
61
+ V(CallConstantFunction) \
62
+ V(CallFunction) \
63
+ V(CallGlobal) \
64
+ V(CallKeyed) \
65
+ V(CallKnownGlobal) \
66
+ V(CallNamed) \
67
+ V(CallNew) \
68
+ V(CallRuntime) \
69
+ V(CallStub) \
70
+ V(CheckFunction) \
71
+ V(CheckInstanceType) \
72
+ V(CheckMap) \
73
+ V(CheckPrototypeMaps) \
74
+ V(CheckSmi) \
75
+ V(ClassOfTest) \
76
+ V(ClassOfTestAndBranch) \
77
+ V(CmpID) \
78
+ V(CmpIDAndBranch) \
79
+ V(CmpJSObjectEq) \
80
+ V(CmpJSObjectEqAndBranch) \
81
+ V(CmpMapAndBranch) \
82
+ V(CmpT) \
83
+ V(CmpTAndBranch) \
84
+ V(ConstantD) \
85
+ V(ConstantI) \
86
+ V(ConstantT) \
87
+ V(Context) \
88
+ V(DeleteProperty) \
89
+ V(Deoptimize) \
90
+ V(DivI) \
91
+ V(DoubleToI) \
92
+ V(FixedArrayLength) \
93
+ V(FunctionLiteral) \
94
+ V(Gap) \
95
+ V(GetCachedArrayIndex) \
96
+ V(GlobalObject) \
97
+ V(GlobalReceiver) \
98
+ V(Goto) \
99
+ V(HasCachedArrayIndex) \
100
+ V(HasCachedArrayIndexAndBranch) \
101
+ V(HasInstanceType) \
102
+ V(HasInstanceTypeAndBranch) \
103
+ V(InstanceOf) \
104
+ V(InstanceOfAndBranch) \
105
+ V(InstanceOfKnownGlobal) \
106
+ V(Integer32ToDouble) \
107
+ V(IsNull) \
108
+ V(IsNullAndBranch) \
109
+ V(IsObject) \
110
+ V(IsObjectAndBranch) \
111
+ V(IsSmi) \
112
+ V(IsSmiAndBranch) \
113
+ V(JSArrayLength) \
114
+ V(Label) \
115
+ V(LazyBailout) \
116
+ V(LoadContextSlot) \
117
+ V(LoadElements) \
118
+ V(LoadFunctionPrototype) \
119
+ V(LoadGlobal) \
120
+ V(LoadKeyedFastElement) \
121
+ V(LoadKeyedGeneric) \
122
+ V(LoadNamedField) \
123
+ V(LoadNamedGeneric) \
124
+ V(LoadPixelArrayElement) \
125
+ V(LoadPixelArrayExternalPointer) \
126
+ V(ModI) \
127
+ V(MulI) \
128
+ V(NumberTagD) \
129
+ V(NumberTagI) \
130
+ V(NumberUntagD) \
131
+ V(ObjectLiteral) \
132
+ V(OsrEntry) \
133
+ V(OuterContext) \
134
+ V(Parameter) \
135
+ V(PixelArrayLength) \
136
+ V(Power) \
137
+ V(PushArgument) \
138
+ V(RegExpLiteral) \
139
+ V(Return) \
140
+ V(ShiftI) \
141
+ V(SmiTag) \
142
+ V(SmiUntag) \
143
+ V(StackCheck) \
144
+ V(StoreContextSlot) \
145
+ V(StoreGlobal) \
146
+ V(StoreKeyedFastElement) \
147
+ V(StoreKeyedGeneric) \
148
+ V(StoreNamedField) \
149
+ V(StoreNamedGeneric) \
150
+ V(StringCharCodeAt) \
151
+ V(StringLength) \
152
+ V(SubI) \
153
+ V(TaggedToI) \
154
+ V(Throw) \
155
+ V(Typeof) \
156
+ V(TypeofIs) \
157
+ V(TypeofIsAndBranch) \
158
+ V(IsConstructCall) \
159
+ V(IsConstructCallAndBranch) \
160
+ V(UnaryMathOperation) \
161
+ V(UnknownOSRValue) \
162
+ V(ValueOf)
163
+
164
+
165
+ #define DECLARE_INSTRUCTION(type) \
166
+ virtual bool Is##type() const { return true; } \
167
+ static L##type* cast(LInstruction* instr) { \
168
+ ASSERT(instr->Is##type()); \
169
+ return reinterpret_cast<L##type*>(instr); \
170
+ }
171
+
172
+
173
+ #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \
174
+ virtual void CompileToNative(LCodeGen* generator); \
175
+ virtual const char* Mnemonic() const { return mnemonic; } \
176
+ DECLARE_INSTRUCTION(type)
177
+
178
+
179
+ #define DECLARE_HYDROGEN_ACCESSOR(type) \
180
+ H##type* hydrogen() const { \
181
+ return H##type::cast(hydrogen_value()); \
182
+ }
183
+
184
+
185
+ class LInstruction: public ZoneObject {
186
+ public:
187
+ LInstruction()
188
+ : environment_(NULL),
189
+ hydrogen_value_(NULL),
190
+ is_call_(false),
191
+ is_save_doubles_(false) { }
192
+ virtual ~LInstruction() { }
193
+
194
+ virtual void CompileToNative(LCodeGen* generator) = 0;
195
+ virtual const char* Mnemonic() const = 0;
196
+ virtual void PrintTo(StringStream* stream);
197
+ virtual void PrintDataTo(StringStream* stream) = 0;
198
+ virtual void PrintOutputOperandTo(StringStream* stream) = 0;
199
+
200
+ // Declare virtual type testers.
201
+ #define DECLARE_DO(type) virtual bool Is##type() const { return false; }
202
+ LITHIUM_ALL_INSTRUCTION_LIST(DECLARE_DO)
203
+ #undef DECLARE_DO
204
+
205
+ virtual bool IsControl() const { return false; }
206
+ virtual void SetBranchTargets(int true_block_id, int false_block_id) { }
207
+
208
+ void set_environment(LEnvironment* env) { environment_ = env; }
209
+ LEnvironment* environment() const { return environment_; }
210
+ bool HasEnvironment() const { return environment_ != NULL; }
211
+
212
+ void set_pointer_map(LPointerMap* p) { pointer_map_.set(p); }
213
+ LPointerMap* pointer_map() const { return pointer_map_.get(); }
214
+ bool HasPointerMap() const { return pointer_map_.is_set(); }
215
+
216
+ void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; }
217
+ HValue* hydrogen_value() const { return hydrogen_value_; }
218
+
219
+ void set_deoptimization_environment(LEnvironment* env) {
220
+ deoptimization_environment_.set(env);
221
+ }
222
+ LEnvironment* deoptimization_environment() const {
223
+ return deoptimization_environment_.get();
224
+ }
225
+ bool HasDeoptimizationEnvironment() const {
226
+ return deoptimization_environment_.is_set();
227
+ }
228
+
229
+ void MarkAsCall() { is_call_ = true; }
230
+ void MarkAsSaveDoubles() { is_save_doubles_ = true; }
231
+
232
+ // Interface to the register allocator and iterators.
233
+ bool IsMarkedAsCall() const { return is_call_; }
234
+ bool IsMarkedAsSaveDoubles() const { return is_save_doubles_; }
235
+
236
+ virtual bool HasResult() const = 0;
237
+ virtual LOperand* result() = 0;
238
+
239
+ virtual int InputCount() = 0;
240
+ virtual LOperand* InputAt(int i) = 0;
241
+ virtual int TempCount() = 0;
242
+ virtual LOperand* TempAt(int i) = 0;
243
+
244
+ LOperand* FirstInput() { return InputAt(0); }
245
+ LOperand* Output() { return HasResult() ? result() : NULL; }
246
+
247
+ #ifdef DEBUG
248
+ void VerifyCall();
249
+ #endif
250
+
251
+ private:
252
+ LEnvironment* environment_;
253
+ SetOncePointer<LPointerMap> pointer_map_;
254
+ HValue* hydrogen_value_;
255
+ SetOncePointer<LEnvironment> deoptimization_environment_;
256
+ bool is_call_;
257
+ bool is_save_doubles_;
258
+ };
259
+
260
+
261
+ template<typename ElementType, int NumElements>
262
+ class OperandContainer {
263
+ public:
264
+ OperandContainer() {
265
+ for (int i = 0; i < NumElements; i++) elems_[i] = NULL;
266
+ }
267
+ int length() { return NumElements; }
268
+ ElementType& operator[](int i) {
269
+ ASSERT(i < length());
270
+ return elems_[i];
271
+ }
272
+ void PrintOperandsTo(StringStream* stream);
273
+
274
+ private:
275
+ ElementType elems_[NumElements];
276
+ };
277
+
278
+
279
+ template<typename ElementType>
280
+ class OperandContainer<ElementType, 0> {
281
+ public:
282
+ int length() { return 0; }
283
+ void PrintOperandsTo(StringStream* stream) { }
284
+ ElementType& operator[](int i) {
285
+ UNREACHABLE();
286
+ static ElementType t = 0;
287
+ return t;
288
+ }
289
+ };
290
+
291
+
292
+ // R = number of result operands (0 or 1).
293
+ // I = number of input operands.
294
+ // T = number of temporary operands.
295
+ template<int R, int I, int T>
296
+ class LTemplateInstruction: public LInstruction {
297
+ public:
298
+ // Allow 0 or 1 output operands.
299
+ STATIC_ASSERT(R == 0 || R == 1);
300
+ virtual bool HasResult() const { return R != 0; }
301
+ void set_result(LOperand* operand) { results_[0] = operand; }
302
+ LOperand* result() { return results_[0]; }
303
+
304
+ int InputCount() { return I; }
305
+ LOperand* InputAt(int i) { return inputs_[i]; }
306
+
307
+ int TempCount() { return T; }
308
+ LOperand* TempAt(int i) { return temps_[i]; }
309
+
310
+ virtual void PrintDataTo(StringStream* stream);
311
+ virtual void PrintOutputOperandTo(StringStream* stream);
312
+
313
+ protected:
314
+ OperandContainer<LOperand*, R> results_;
315
+ OperandContainer<LOperand*, I> inputs_;
316
+ OperandContainer<LOperand*, T> temps_;
317
+ };
318
+
319
+
320
+ class LGap: public LTemplateInstruction<0, 0, 0> {
321
+ public:
322
+ explicit LGap(HBasicBlock* block)
323
+ : block_(block) {
324
+ parallel_moves_[BEFORE] = NULL;
325
+ parallel_moves_[START] = NULL;
326
+ parallel_moves_[END] = NULL;
327
+ parallel_moves_[AFTER] = NULL;
328
+ }
329
+
330
+ DECLARE_CONCRETE_INSTRUCTION(Gap, "gap")
331
+ virtual void PrintDataTo(StringStream* stream) const;
332
+
333
+ bool IsRedundant() const;
334
+
335
+ HBasicBlock* block() const { return block_; }
336
+
337
+ enum InnerPosition {
338
+ BEFORE,
339
+ START,
340
+ END,
341
+ AFTER,
342
+ FIRST_INNER_POSITION = BEFORE,
343
+ LAST_INNER_POSITION = AFTER
344
+ };
345
+
346
+ LParallelMove* GetOrCreateParallelMove(InnerPosition pos) {
347
+ if (parallel_moves_[pos] == NULL) parallel_moves_[pos] = new LParallelMove;
348
+ return parallel_moves_[pos];
349
+ }
350
+
351
+ LParallelMove* GetParallelMove(InnerPosition pos) {
352
+ return parallel_moves_[pos];
353
+ }
354
+
355
+ private:
356
+ LParallelMove* parallel_moves_[LAST_INNER_POSITION + 1];
357
+ HBasicBlock* block_;
358
+ };
359
+
360
+
361
+ class LGoto: public LTemplateInstruction<0, 0, 0> {
362
+ public:
363
+ LGoto(int block_id, bool include_stack_check = false)
364
+ : block_id_(block_id), include_stack_check_(include_stack_check) { }
365
+
366
+ DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
367
+ virtual void PrintDataTo(StringStream* stream);
368
+ virtual bool IsControl() const { return true; }
369
+
370
+ int block_id() const { return block_id_; }
371
+ bool include_stack_check() const { return include_stack_check_; }
372
+
373
+ private:
374
+ int block_id_;
375
+ bool include_stack_check_;
376
+ };
377
+
378
+
379
+ class LLazyBailout: public LTemplateInstruction<0, 0, 0> {
380
+ public:
381
+ LLazyBailout() : gap_instructions_size_(0) { }
382
+
383
+ DECLARE_CONCRETE_INSTRUCTION(LazyBailout, "lazy-bailout")
384
+
385
+ void set_gap_instructions_size(int gap_instructions_size) {
386
+ gap_instructions_size_ = gap_instructions_size;
387
+ }
388
+ int gap_instructions_size() { return gap_instructions_size_; }
389
+
390
+ private:
391
+ int gap_instructions_size_;
392
+ };
393
+
394
+
395
+ class LDeoptimize: public LTemplateInstruction<0, 0, 0> {
396
+ public:
397
+ DECLARE_CONCRETE_INSTRUCTION(Deoptimize, "deoptimize")
398
+ };
399
+
400
+
401
+ class LLabel: public LGap {
402
+ public:
403
+ explicit LLabel(HBasicBlock* block)
404
+ : LGap(block), replacement_(NULL) { }
405
+
406
+ DECLARE_CONCRETE_INSTRUCTION(Label, "label")
407
+
408
+ virtual void PrintDataTo(StringStream* stream);
409
+
410
+ int block_id() const { return block()->block_id(); }
411
+ bool is_loop_header() const { return block()->IsLoopHeader(); }
412
+ Label* label() { return &label_; }
413
+ LLabel* replacement() const { return replacement_; }
414
+ void set_replacement(LLabel* label) { replacement_ = label; }
415
+ bool HasReplacement() const { return replacement_ != NULL; }
416
+
417
+ private:
418
+ Label label_;
419
+ LLabel* replacement_;
420
+ };
421
+
422
+
423
+ class LParameter: public LTemplateInstruction<1, 0, 0> {
424
+ public:
425
+ DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
426
+ };
427
+
428
+
429
+ class LCallStub: public LTemplateInstruction<1, 0, 0> {
430
+ public:
431
+ DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub")
432
+ DECLARE_HYDROGEN_ACCESSOR(CallStub)
433
+
434
+ TranscendentalCache::Type transcendental_type() {
435
+ return hydrogen()->transcendental_type();
436
+ }
437
+ };
438
+
439
+
440
+ class LUnknownOSRValue: public LTemplateInstruction<1, 0, 0> {
441
+ public:
442
+ DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value")
443
+ };
444
+
445
+
446
+ template<int I, int T>
447
+ class LControlInstruction: public LTemplateInstruction<0, I, T> {
448
+ public:
449
+ DECLARE_INSTRUCTION(ControlInstruction)
450
+ virtual bool IsControl() const { return true; }
451
+
452
+ int true_block_id() const { return true_block_id_; }
453
+ int false_block_id() const { return false_block_id_; }
454
+ void SetBranchTargets(int true_block_id, int false_block_id) {
455
+ true_block_id_ = true_block_id;
456
+ false_block_id_ = false_block_id;
457
+ }
458
+
459
+ private:
460
+ int true_block_id_;
461
+ int false_block_id_;
462
+ };
463
+
464
+
465
+ class LApplyArguments: public LTemplateInstruction<1, 4, 0> {
466
+ public:
467
+ LApplyArguments(LOperand* function,
468
+ LOperand* receiver,
469
+ LOperand* length,
470
+ LOperand* elements) {
471
+ inputs_[0] = function;
472
+ inputs_[1] = receiver;
473
+ inputs_[2] = length;
474
+ inputs_[3] = elements;
475
+ }
476
+
477
+ DECLARE_CONCRETE_INSTRUCTION(ApplyArguments, "apply-arguments")
478
+
479
+ LOperand* function() { return inputs_[0]; }
480
+ LOperand* receiver() { return inputs_[1]; }
481
+ LOperand* length() { return inputs_[2]; }
482
+ LOperand* elements() { return inputs_[3]; }
483
+ };
484
+
485
+
486
+ class LAccessArgumentsAt: public LTemplateInstruction<1, 3, 0> {
487
+ public:
488
+ LAccessArgumentsAt(LOperand* arguments, LOperand* length, LOperand* index) {
489
+ inputs_[0] = arguments;
490
+ inputs_[1] = length;
491
+ inputs_[2] = index;
492
+ }
493
+
494
+ DECLARE_CONCRETE_INSTRUCTION(AccessArgumentsAt, "access-arguments-at")
495
+
496
+ LOperand* arguments() { return inputs_[0]; }
497
+ LOperand* length() { return inputs_[1]; }
498
+ LOperand* index() { return inputs_[2]; }
499
+
500
+ virtual void PrintDataTo(StringStream* stream);
501
+ };
502
+
503
+
504
+ class LArgumentsLength: public LTemplateInstruction<1, 1, 0> {
505
+ public:
506
+ explicit LArgumentsLength(LOperand* elements) {
507
+ inputs_[0] = elements;
508
+ }
509
+
510
+ DECLARE_CONCRETE_INSTRUCTION(ArgumentsLength, "arguments-length")
511
+ };
512
+
513
+
514
+ class LArgumentsElements: public LTemplateInstruction<1, 0, 0> {
515
+ public:
516
+ LArgumentsElements() { }
517
+
518
+ DECLARE_CONCRETE_INSTRUCTION(ArgumentsElements, "arguments-elements")
519
+ };
520
+
521
+
522
+ class LModI: public LTemplateInstruction<1, 2, 0> {
523
+ public:
524
+ LModI(LOperand* left, LOperand* right) {
525
+ inputs_[0] = left;
526
+ inputs_[1] = right;
527
+ }
528
+
529
+ DECLARE_CONCRETE_INSTRUCTION(ModI, "mod-i")
530
+ DECLARE_HYDROGEN_ACCESSOR(Mod)
531
+ };
532
+
533
+
534
+ class LDivI: public LTemplateInstruction<1, 2, 0> {
535
+ public:
536
+ LDivI(LOperand* left, LOperand* right) {
537
+ inputs_[0] = left;
538
+ inputs_[1] = right;
539
+ }
540
+
541
+ DECLARE_CONCRETE_INSTRUCTION(DivI, "div-i")
542
+ DECLARE_HYDROGEN_ACCESSOR(Div)
543
+ };
544
+
545
+
546
+ class LMulI: public LTemplateInstruction<1, 2, 1> {
547
+ public:
548
+ LMulI(LOperand* left, LOperand* right, LOperand* temp) {
549
+ inputs_[0] = left;
550
+ inputs_[1] = right;
551
+ temps_[0] = temp;
552
+ }
553
+
554
+ DECLARE_CONCRETE_INSTRUCTION(MulI, "mul-i")
555
+ DECLARE_HYDROGEN_ACCESSOR(Mul)
556
+ };
557
+
558
+
559
+ class LCmpID: public LTemplateInstruction<1, 2, 0> {
560
+ public:
561
+ LCmpID(LOperand* left, LOperand* right) {
562
+ inputs_[0] = left;
563
+ inputs_[1] = right;
564
+ }
565
+
566
+ DECLARE_CONCRETE_INSTRUCTION(CmpID, "cmp-id")
567
+ DECLARE_HYDROGEN_ACCESSOR(Compare)
568
+
569
+ Token::Value op() const { return hydrogen()->token(); }
570
+ bool is_double() const {
571
+ return hydrogen()->GetInputRepresentation().IsDouble();
572
+ }
573
+ };
574
+
575
+
576
+ class LCmpIDAndBranch: public LControlInstruction<2, 0> {
577
+ public:
578
+ LCmpIDAndBranch(LOperand* left, LOperand* right) {
579
+ inputs_[0] = left;
580
+ inputs_[1] = right;
581
+ }
582
+
583
+ DECLARE_CONCRETE_INSTRUCTION(CmpIDAndBranch, "cmp-id-and-branch")
584
+ DECLARE_HYDROGEN_ACCESSOR(Compare)
585
+
586
+ Token::Value op() const { return hydrogen()->token(); }
587
+ bool is_double() const {
588
+ return hydrogen()->GetInputRepresentation().IsDouble();
589
+ }
590
+
591
+ virtual void PrintDataTo(StringStream* stream);
592
+ };
593
+
594
+
595
+ class LUnaryMathOperation: public LTemplateInstruction<1, 1, 1> {
596
+ public:
597
+ LUnaryMathOperation(LOperand* value, LOperand* temp) {
598
+ inputs_[0] = value;
599
+ temps_[0] = temp;
600
+ }
601
+
602
+ DECLARE_CONCRETE_INSTRUCTION(UnaryMathOperation, "unary-math-operation")
603
+ DECLARE_HYDROGEN_ACCESSOR(UnaryMathOperation)
604
+
605
+ virtual void PrintDataTo(StringStream* stream);
606
+ BuiltinFunctionId op() const { return hydrogen()->op(); }
607
+ };
608
+
609
+
610
+ class LCmpJSObjectEq: public LTemplateInstruction<1, 2, 0> {
611
+ public:
612
+ LCmpJSObjectEq(LOperand* left, LOperand* right) {
613
+ inputs_[0] = left;
614
+ inputs_[1] = right;
615
+ }
616
+
617
+ DECLARE_CONCRETE_INSTRUCTION(CmpJSObjectEq, "cmp-jsobject-eq")
618
+ };
619
+
620
+
621
+ class LCmpJSObjectEqAndBranch: public LControlInstruction<2, 0> {
622
+ public:
623
+ LCmpJSObjectEqAndBranch(LOperand* left, LOperand* right) {
624
+ inputs_[0] = left;
625
+ inputs_[1] = right;
626
+ }
627
+
628
+ DECLARE_CONCRETE_INSTRUCTION(CmpJSObjectEqAndBranch,
629
+ "cmp-jsobject-eq-and-branch")
630
+ };
631
+
632
+
633
+ class LIsNull: public LTemplateInstruction<1, 1, 0> {
634
+ public:
635
+ explicit LIsNull(LOperand* value) {
636
+ inputs_[0] = value;
637
+ }
638
+
639
+ DECLARE_CONCRETE_INSTRUCTION(IsNull, "is-null")
640
+ DECLARE_HYDROGEN_ACCESSOR(IsNull)
641
+
642
+ bool is_strict() const { return hydrogen()->is_strict(); }
643
+ };
644
+
645
+ class LIsNullAndBranch: public LControlInstruction<1, 0> {
646
+ public:
647
+ explicit LIsNullAndBranch(LOperand* value) {
648
+ inputs_[0] = value;
649
+ }
650
+
651
+ DECLARE_CONCRETE_INSTRUCTION(IsNullAndBranch, "is-null-and-branch")
652
+ DECLARE_HYDROGEN_ACCESSOR(IsNull)
653
+
654
+ bool is_strict() const { return hydrogen()->is_strict(); }
655
+
656
+ virtual void PrintDataTo(StringStream* stream);
657
+ };
658
+
659
+
660
+ class LIsObject: public LTemplateInstruction<1, 1, 1> {
661
+ public:
662
+ explicit LIsObject(LOperand* value) {
663
+ inputs_[0] = value;
664
+ }
665
+
666
+ DECLARE_CONCRETE_INSTRUCTION(IsObject, "is-object")
667
+ };
668
+
669
+
670
+ class LIsObjectAndBranch: public LControlInstruction<1, 2> {
671
+ public:
672
+ LIsObjectAndBranch(LOperand* value, LOperand* temp) {
673
+ inputs_[0] = value;
674
+ temps_[0] = temp;
675
+ }
676
+
677
+ DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
678
+
679
+ virtual void PrintDataTo(StringStream* stream);
680
+ };
681
+
682
+
683
+ class LIsSmi: public LTemplateInstruction<1, 1, 0> {
684
+ public:
685
+ explicit LIsSmi(LOperand* value) {
686
+ inputs_[0] = value;
687
+ }
688
+
689
+ DECLARE_CONCRETE_INSTRUCTION(IsSmi, "is-smi")
690
+ DECLARE_HYDROGEN_ACCESSOR(IsSmi)
691
+ };
692
+
693
+
694
+ class LIsSmiAndBranch: public LControlInstruction<1, 0> {
695
+ public:
696
+ explicit LIsSmiAndBranch(LOperand* value) {
697
+ inputs_[0] = value;
698
+ }
699
+
700
+ DECLARE_CONCRETE_INSTRUCTION(IsSmiAndBranch, "is-smi-and-branch")
701
+
702
+ virtual void PrintDataTo(StringStream* stream);
703
+ };
704
+
705
+
706
+ class LHasInstanceType: public LTemplateInstruction<1, 1, 0> {
707
+ public:
708
+ explicit LHasInstanceType(LOperand* value) {
709
+ inputs_[0] = value;
710
+ }
711
+
712
+ DECLARE_CONCRETE_INSTRUCTION(HasInstanceType, "has-instance-type")
713
+ DECLARE_HYDROGEN_ACCESSOR(HasInstanceType)
714
+ };
715
+
716
+
717
+ class LHasInstanceTypeAndBranch: public LControlInstruction<1, 0> {
718
+ public:
719
+ explicit LHasInstanceTypeAndBranch(LOperand* value) {
720
+ inputs_[0] = value;
721
+ }
722
+
723
+ DECLARE_CONCRETE_INSTRUCTION(HasInstanceTypeAndBranch,
724
+ "has-instance-type-and-branch")
725
+ DECLARE_HYDROGEN_ACCESSOR(HasInstanceType)
726
+
727
+ virtual void PrintDataTo(StringStream* stream);
728
+ };
729
+
730
+
731
+ class LHasCachedArrayIndex: public LTemplateInstruction<1, 1, 0> {
732
+ public:
733
+ explicit LHasCachedArrayIndex(LOperand* value) {
734
+ inputs_[0] = value;
735
+ }
736
+
737
+ DECLARE_CONCRETE_INSTRUCTION(HasCachedArrayIndex, "has-cached-array-index")
738
+ DECLARE_HYDROGEN_ACCESSOR(HasCachedArrayIndex)
739
+ };
740
+
741
+
742
+ class LGetCachedArrayIndex: public LTemplateInstruction<1, 1, 0> {
743
+ public:
744
+ explicit LGetCachedArrayIndex(LOperand* value) {
745
+ inputs_[0] = value;
746
+ }
747
+
748
+ DECLARE_CONCRETE_INSTRUCTION(GetCachedArrayIndex, "get-cached-array-index")
749
+ DECLARE_HYDROGEN_ACCESSOR(GetCachedArrayIndex)
750
+ };
751
+
752
+
753
+ class LHasCachedArrayIndexAndBranch: public LControlInstruction<1, 0> {
754
+ public:
755
+ explicit LHasCachedArrayIndexAndBranch(LOperand* value) {
756
+ inputs_[0] = value;
757
+ }
758
+
759
+ DECLARE_CONCRETE_INSTRUCTION(HasCachedArrayIndexAndBranch,
760
+ "has-cached-array-index-and-branch")
761
+ virtual void PrintDataTo(StringStream* stream);
762
+ };
763
+
764
+
765
+ class LClassOfTest: public LTemplateInstruction<1, 1, 0> {
766
+ public:
767
+ explicit LClassOfTest(LOperand* value) {
768
+ inputs_[0] = value;
769
+ }
770
+
771
+ DECLARE_CONCRETE_INSTRUCTION(ClassOfTest, "class-of-test")
772
+ DECLARE_HYDROGEN_ACCESSOR(ClassOfTest)
773
+
774
+ virtual void PrintDataTo(StringStream* stream);
775
+ };
776
+
777
+
778
+ class LClassOfTestAndBranch: public LControlInstruction<1, 1> {
779
+ public:
780
+ LClassOfTestAndBranch(LOperand* value, LOperand* temp) {
781
+ inputs_[0] = value;
782
+ temps_[0] = temp;
783
+ }
784
+
785
+ DECLARE_CONCRETE_INSTRUCTION(ClassOfTestAndBranch,
786
+ "class-of-test-and-branch")
787
+ DECLARE_HYDROGEN_ACCESSOR(ClassOfTest)
788
+
789
+ virtual void PrintDataTo(StringStream* stream);
790
+ };
791
+
792
+
793
+ class LCmpT: public LTemplateInstruction<1, 2, 0> {
794
+ public:
795
+ LCmpT(LOperand* left, LOperand* right) {
796
+ inputs_[0] = left;
797
+ inputs_[1] = right;
798
+ }
799
+
800
+ DECLARE_CONCRETE_INSTRUCTION(CmpT, "cmp-t")
801
+ DECLARE_HYDROGEN_ACCESSOR(Compare)
802
+
803
+ Token::Value op() const { return hydrogen()->token(); }
804
+ };
805
+
806
+
807
+ class LCmpTAndBranch: public LControlInstruction<2, 0> {
808
+ public:
809
+ LCmpTAndBranch(LOperand* left, LOperand* right) {
810
+ inputs_[0] = left;
811
+ inputs_[1] = right;
812
+ }
813
+
814
+ DECLARE_CONCRETE_INSTRUCTION(CmpTAndBranch, "cmp-t-and-branch")
815
+ DECLARE_HYDROGEN_ACCESSOR(Compare)
816
+
817
+ Token::Value op() const { return hydrogen()->token(); }
818
+ };
819
+
820
+
821
+ class LInstanceOf: public LTemplateInstruction<1, 2, 0> {
822
+ public:
823
+ LInstanceOf(LOperand* left, LOperand* right) {
824
+ inputs_[0] = left;
825
+ inputs_[1] = right;
826
+ }
827
+
828
+ DECLARE_CONCRETE_INSTRUCTION(InstanceOf, "instance-of")
829
+ };
830
+
831
+
832
+ class LInstanceOfAndBranch: public LControlInstruction<2, 0> {
833
+ public:
834
+ LInstanceOfAndBranch(LOperand* left, LOperand* right) {
835
+ inputs_[0] = left;
836
+ inputs_[1] = right;
837
+ }
838
+
839
+ DECLARE_CONCRETE_INSTRUCTION(InstanceOfAndBranch, "instance-of-and-branch")
840
+ };
841
+
842
+
843
+ class LInstanceOfKnownGlobal: public LTemplateInstruction<1, 1, 1> {
844
+ public:
845
+ LInstanceOfKnownGlobal(LOperand* value, LOperand* temp) {
846
+ inputs_[0] = value;
847
+ temps_[0] = temp;
848
+ }
849
+
850
+ DECLARE_CONCRETE_INSTRUCTION(InstanceOfKnownGlobal,
851
+ "instance-of-known-global")
852
+ DECLARE_HYDROGEN_ACCESSOR(InstanceOfKnownGlobal)
853
+
854
+ Handle<JSFunction> function() const { return hydrogen()->function(); }
855
+ };
856
+
857
+
858
+ class LBoundsCheck: public LTemplateInstruction<0, 2, 0> {
859
+ public:
860
+ LBoundsCheck(LOperand* index, LOperand* length) {
861
+ inputs_[0] = index;
862
+ inputs_[1] = length;
863
+ }
864
+
865
+ LOperand* index() { return inputs_[0]; }
866
+ LOperand* length() { return inputs_[1]; }
867
+
868
+ DECLARE_CONCRETE_INSTRUCTION(BoundsCheck, "bounds-check")
869
+ };
870
+
871
+
872
+ class LBitI: public LTemplateInstruction<1, 2, 0> {
873
+ public:
874
+ LBitI(Token::Value op, LOperand* left, LOperand* right)
875
+ : op_(op) {
876
+ inputs_[0] = left;
877
+ inputs_[1] = right;
878
+ }
879
+
880
+ Token::Value op() const { return op_; }
881
+
882
+ DECLARE_CONCRETE_INSTRUCTION(BitI, "bit-i")
883
+
884
+ private:
885
+ Token::Value op_;
886
+ };
887
+
888
+
889
+ class LShiftI: public LTemplateInstruction<1, 2, 0> {
890
+ public:
891
+ LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt)
892
+ : op_(op), can_deopt_(can_deopt) {
893
+ inputs_[0] = left;
894
+ inputs_[1] = right;
895
+ }
896
+
897
+ Token::Value op() const { return op_; }
898
+
899
+ bool can_deopt() const { return can_deopt_; }
900
+
901
+ DECLARE_CONCRETE_INSTRUCTION(ShiftI, "shift-i")
902
+
903
+ private:
904
+ Token::Value op_;
905
+ bool can_deopt_;
906
+ };
907
+
908
+
909
+ class LSubI: public LTemplateInstruction<1, 2, 0> {
910
+ public:
911
+ LSubI(LOperand* left, LOperand* right) {
912
+ inputs_[0] = left;
913
+ inputs_[1] = right;
914
+ }
915
+
916
+ DECLARE_CONCRETE_INSTRUCTION(SubI, "sub-i")
917
+ DECLARE_HYDROGEN_ACCESSOR(Sub)
918
+ };
919
+
920
+
921
+ class LConstantI: public LTemplateInstruction<1, 0, 0> {
922
+ public:
923
+ DECLARE_CONCRETE_INSTRUCTION(ConstantI, "constant-i")
924
+ DECLARE_HYDROGEN_ACCESSOR(Constant)
925
+
926
+ int32_t value() const { return hydrogen()->Integer32Value(); }
927
+ };
928
+
929
+
930
+ class LConstantD: public LTemplateInstruction<1, 0, 0> {
931
+ public:
932
+ DECLARE_CONCRETE_INSTRUCTION(ConstantD, "constant-d")
933
+ DECLARE_HYDROGEN_ACCESSOR(Constant)
934
+
935
+ double value() const { return hydrogen()->DoubleValue(); }
936
+ };
937
+
938
+
939
+ class LConstantT: public LTemplateInstruction<1, 0, 0> {
940
+ public:
941
+ DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t")
942
+ DECLARE_HYDROGEN_ACCESSOR(Constant)
943
+
944
+ Handle<Object> value() const { return hydrogen()->handle(); }
945
+ };
946
+
947
+
948
+ class LBranch: public LControlInstruction<1, 0> {
949
+ public:
950
+ explicit LBranch(LOperand* value) {
951
+ inputs_[0] = value;
952
+ }
953
+
954
+ DECLARE_CONCRETE_INSTRUCTION(Branch, "branch")
955
+ DECLARE_HYDROGEN_ACCESSOR(Value)
956
+
957
+ virtual void PrintDataTo(StringStream* stream);
958
+ };
959
+
960
+
961
+ class LCmpMapAndBranch: public LTemplateInstruction<0, 1, 1> {
962
+ public:
963
+ LCmpMapAndBranch(LOperand* value, LOperand* temp) {
964
+ inputs_[0] = value;
965
+ temps_[0] = temp;
966
+ }
967
+
968
+ DECLARE_CONCRETE_INSTRUCTION(CmpMapAndBranch, "cmp-map-and-branch")
969
+ DECLARE_HYDROGEN_ACCESSOR(CompareMap)
970
+
971
+ virtual bool IsControl() const { return true; }
972
+
973
+ Handle<Map> map() const { return hydrogen()->map(); }
974
+ int true_block_id() const {
975
+ return hydrogen()->FirstSuccessor()->block_id();
976
+ }
977
+ int false_block_id() const {
978
+ return hydrogen()->SecondSuccessor()->block_id();
979
+ }
980
+ };
981
+
982
+
983
+ class LJSArrayLength: public LTemplateInstruction<1, 1, 0> {
984
+ public:
985
+ explicit LJSArrayLength(LOperand* value) {
986
+ inputs_[0] = value;
987
+ }
988
+
989
+ DECLARE_CONCRETE_INSTRUCTION(JSArrayLength, "js-array-length")
990
+ DECLARE_HYDROGEN_ACCESSOR(JSArrayLength)
991
+ };
992
+
993
+
994
+ class LPixelArrayLength: public LTemplateInstruction<1, 1, 0> {
995
+ public:
996
+ explicit LPixelArrayLength(LOperand* value) {
997
+ inputs_[0] = value;
998
+ }
999
+
1000
+ DECLARE_CONCRETE_INSTRUCTION(PixelArrayLength, "pixel-array-length")
1001
+ DECLARE_HYDROGEN_ACCESSOR(PixelArrayLength)
1002
+ };
1003
+
1004
+
1005
+ class LFixedArrayLength: public LTemplateInstruction<1, 1, 0> {
1006
+ public:
1007
+ explicit LFixedArrayLength(LOperand* value) {
1008
+ inputs_[0] = value;
1009
+ }
1010
+
1011
+ DECLARE_CONCRETE_INSTRUCTION(FixedArrayLength, "fixed-array-length")
1012
+ DECLARE_HYDROGEN_ACCESSOR(FixedArrayLength)
1013
+ };
1014
+
1015
+
1016
+ class LValueOf: public LTemplateInstruction<1, 1, 1> {
1017
+ public:
1018
+ LValueOf(LOperand* value, LOperand* temp) {
1019
+ inputs_[0] = value;
1020
+ temps_[0] = temp;
1021
+ }
1022
+
1023
+ DECLARE_CONCRETE_INSTRUCTION(ValueOf, "value-of")
1024
+ DECLARE_HYDROGEN_ACCESSOR(ValueOf)
1025
+ };
1026
+
1027
+
1028
+ class LThrow: public LTemplateInstruction<0, 1, 0> {
1029
+ public:
1030
+ explicit LThrow(LOperand* value) {
1031
+ inputs_[0] = value;
1032
+ }
1033
+
1034
+ DECLARE_CONCRETE_INSTRUCTION(Throw, "throw")
1035
+ };
1036
+
1037
+
1038
+ class LBitNotI: public LTemplateInstruction<1, 1, 0> {
1039
+ public:
1040
+ explicit LBitNotI(LOperand* value) {
1041
+ inputs_[0] = value;
1042
+ }
1043
+
1044
+ DECLARE_CONCRETE_INSTRUCTION(BitNotI, "bit-not-i")
1045
+ };
1046
+
1047
+
1048
+ class LAddI: public LTemplateInstruction<1, 2, 0> {
1049
+ public:
1050
+ LAddI(LOperand* left, LOperand* right) {
1051
+ inputs_[0] = left;
1052
+ inputs_[1] = right;
1053
+ }
1054
+
1055
+ DECLARE_CONCRETE_INSTRUCTION(AddI, "add-i")
1056
+ DECLARE_HYDROGEN_ACCESSOR(Add)
1057
+ };
1058
+
1059
+
1060
+ class LPower: public LTemplateInstruction<1, 2, 0> {
1061
+ public:
1062
+ LPower(LOperand* left, LOperand* right) {
1063
+ inputs_[0] = left;
1064
+ inputs_[1] = right;
1065
+ }
1066
+
1067
+ DECLARE_CONCRETE_INSTRUCTION(Power, "power")
1068
+ DECLARE_HYDROGEN_ACCESSOR(Power)
1069
+ };
1070
+
1071
+
1072
+ class LArithmeticD: public LTemplateInstruction<1, 2, 0> {
1073
+ public:
1074
+ LArithmeticD(Token::Value op, LOperand* left, LOperand* right)
1075
+ : op_(op) {
1076
+ inputs_[0] = left;
1077
+ inputs_[1] = right;
1078
+ }
1079
+
1080
+ Token::Value op() const { return op_; }
1081
+
1082
+ virtual void CompileToNative(LCodeGen* generator);
1083
+ virtual const char* Mnemonic() const;
1084
+
1085
+ private:
1086
+ Token::Value op_;
1087
+ };
1088
+
1089
+
1090
+ class LArithmeticT: public LTemplateInstruction<1, 2, 0> {
1091
+ public:
1092
+ LArithmeticT(Token::Value op, LOperand* left, LOperand* right)
1093
+ : op_(op) {
1094
+ inputs_[0] = left;
1095
+ inputs_[1] = right;
1096
+ }
1097
+
1098
+ virtual void CompileToNative(LCodeGen* generator);
1099
+ virtual const char* Mnemonic() const;
1100
+
1101
+ Token::Value op() const { return op_; }
1102
+
1103
+ private:
1104
+ Token::Value op_;
1105
+ };
1106
+
1107
+
1108
+ class LReturn: public LTemplateInstruction<0, 1, 0> {
1109
+ public:
1110
+ explicit LReturn(LOperand* value) {
1111
+ inputs_[0] = value;
1112
+ }
1113
+
1114
+ DECLARE_CONCRETE_INSTRUCTION(Return, "return")
1115
+ };
1116
+
1117
+
1118
+ class LLoadNamedField: public LTemplateInstruction<1, 1, 0> {
1119
+ public:
1120
+ explicit LLoadNamedField(LOperand* object) {
1121
+ inputs_[0] = object;
1122
+ }
1123
+
1124
+ DECLARE_CONCRETE_INSTRUCTION(LoadNamedField, "load-named-field")
1125
+ DECLARE_HYDROGEN_ACCESSOR(LoadNamedField)
1126
+ };
1127
+
1128
+
1129
+ class LLoadNamedGeneric: public LTemplateInstruction<1, 1, 0> {
1130
+ public:
1131
+ explicit LLoadNamedGeneric(LOperand* object) {
1132
+ inputs_[0] = object;
1133
+ }
1134
+
1135
+ DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric, "load-named-generic")
1136
+ DECLARE_HYDROGEN_ACCESSOR(LoadNamedGeneric)
1137
+
1138
+ LOperand* object() { return inputs_[0]; }
1139
+ Handle<Object> name() const { return hydrogen()->name(); }
1140
+ };
1141
+
1142
+
1143
+ class LLoadFunctionPrototype: public LTemplateInstruction<1, 1, 0> {
1144
+ public:
1145
+ explicit LLoadFunctionPrototype(LOperand* function) {
1146
+ inputs_[0] = function;
1147
+ }
1148
+
1149
+ DECLARE_CONCRETE_INSTRUCTION(LoadFunctionPrototype, "load-function-prototype")
1150
+ DECLARE_HYDROGEN_ACCESSOR(LoadFunctionPrototype)
1151
+
1152
+ LOperand* function() { return inputs_[0]; }
1153
+ };
1154
+
1155
+
1156
+ class LLoadElements: public LTemplateInstruction<1, 1, 0> {
1157
+ public:
1158
+ explicit LLoadElements(LOperand* object) {
1159
+ inputs_[0] = object;
1160
+ }
1161
+
1162
+ DECLARE_CONCRETE_INSTRUCTION(LoadElements, "load-elements")
1163
+ };
1164
+
1165
+
1166
+ class LLoadPixelArrayExternalPointer: public LTemplateInstruction<1, 1, 0> {
1167
+ public:
1168
+ explicit LLoadPixelArrayExternalPointer(LOperand* object) {
1169
+ inputs_[0] = object;
1170
+ }
1171
+
1172
+ DECLARE_CONCRETE_INSTRUCTION(LoadPixelArrayExternalPointer,
1173
+ "load-pixel-array-external-pointer")
1174
+ };
1175
+
1176
+
1177
+ class LLoadKeyedFastElement: public LTemplateInstruction<1, 2, 0> {
1178
+ public:
1179
+ LLoadKeyedFastElement(LOperand* elements, LOperand* key) {
1180
+ inputs_[0] = elements;
1181
+ inputs_[1] = key;
1182
+ }
1183
+
1184
+ DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastElement, "load-keyed-fast-element")
1185
+ DECLARE_HYDROGEN_ACCESSOR(LoadKeyedFastElement)
1186
+
1187
+ LOperand* elements() { return inputs_[0]; }
1188
+ LOperand* key() { return inputs_[1]; }
1189
+ };
1190
+
1191
+
1192
+ class LLoadPixelArrayElement: public LTemplateInstruction<1, 2, 0> {
1193
+ public:
1194
+ LLoadPixelArrayElement(LOperand* external_pointer, LOperand* key) {
1195
+ inputs_[0] = external_pointer;
1196
+ inputs_[1] = key;
1197
+ }
1198
+
1199
+ DECLARE_CONCRETE_INSTRUCTION(LoadPixelArrayElement,
1200
+ "load-pixel-array-element")
1201
+ DECLARE_HYDROGEN_ACCESSOR(LoadPixelArrayElement)
1202
+
1203
+ LOperand* external_pointer() { return inputs_[0]; }
1204
+ LOperand* key() { return inputs_[1]; }
1205
+ };
1206
+
1207
+
1208
+ class LLoadKeyedGeneric: public LTemplateInstruction<1, 2, 0> {
1209
+ public:
1210
+ LLoadKeyedGeneric(LOperand* obj, LOperand* key) {
1211
+ inputs_[0] = obj;
1212
+ inputs_[1] = key;
1213
+ }
1214
+
1215
+ DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic")
1216
+
1217
+ LOperand* object() { return inputs_[0]; }
1218
+ LOperand* key() { return inputs_[1]; }
1219
+ };
1220
+
1221
+
1222
+ class LLoadGlobal: public LTemplateInstruction<1, 0, 0> {
1223
+ public:
1224
+ DECLARE_CONCRETE_INSTRUCTION(LoadGlobal, "load-global")
1225
+ DECLARE_HYDROGEN_ACCESSOR(LoadGlobal)
1226
+ };
1227
+
1228
+
1229
+ class LStoreGlobal: public LTemplateInstruction<0, 1, 1> {
1230
+ public:
1231
+ LStoreGlobal(LOperand* value, LOperand* temp) {
1232
+ inputs_[0] = value;
1233
+ temps_[0] = temp;
1234
+ }
1235
+
1236
+ DECLARE_CONCRETE_INSTRUCTION(StoreGlobal, "store-global")
1237
+ DECLARE_HYDROGEN_ACCESSOR(StoreGlobal)
1238
+ };
1239
+
1240
+
1241
+ class LLoadContextSlot: public LTemplateInstruction<1, 1, 0> {
1242
+ public:
1243
+ explicit LLoadContextSlot(LOperand* context) {
1244
+ inputs_[0] = context;
1245
+ }
1246
+
1247
+ DECLARE_CONCRETE_INSTRUCTION(LoadContextSlot, "load-context-slot")
1248
+ DECLARE_HYDROGEN_ACCESSOR(LoadContextSlot)
1249
+
1250
+ LOperand* context() { return InputAt(0); }
1251
+ int slot_index() { return hydrogen()->slot_index(); }
1252
+
1253
+ virtual void PrintDataTo(StringStream* stream);
1254
+ };
1255
+
1256
+
1257
+ class LStoreContextSlot: public LTemplateInstruction<0, 2, 0> {
1258
+ public:
1259
+ LStoreContextSlot(LOperand* context, LOperand* value) {
1260
+ inputs_[0] = context;
1261
+ inputs_[1] = value;
1262
+ }
1263
+
1264
+ DECLARE_CONCRETE_INSTRUCTION(StoreContextSlot, "store-context-slot")
1265
+ DECLARE_HYDROGEN_ACCESSOR(StoreContextSlot)
1266
+
1267
+ LOperand* context() { return InputAt(0); }
1268
+ LOperand* value() { return InputAt(1); }
1269
+ int slot_index() { return hydrogen()->slot_index(); }
1270
+ int needs_write_barrier() { return hydrogen()->NeedsWriteBarrier(); }
1271
+
1272
+ virtual void PrintDataTo(StringStream* stream);
1273
+ };
1274
+
1275
+
1276
+ class LPushArgument: public LTemplateInstruction<0, 1, 0> {
1277
+ public:
1278
+ explicit LPushArgument(LOperand* value) {
1279
+ inputs_[0] = value;
1280
+ }
1281
+
1282
+ DECLARE_CONCRETE_INSTRUCTION(PushArgument, "push-argument")
1283
+ };
1284
+
1285
+
1286
+ class LContext: public LTemplateInstruction<1, 0, 0> {
1287
+ public:
1288
+ DECLARE_CONCRETE_INSTRUCTION(Context, "context")
1289
+ };
1290
+
1291
+
1292
+ class LOuterContext: public LTemplateInstruction<1, 1, 0> {
1293
+ public:
1294
+ explicit LOuterContext(LOperand* context) {
1295
+ inputs_[0] = context;
1296
+ }
1297
+
1298
+ DECLARE_CONCRETE_INSTRUCTION(OuterContext, "outer-context")
1299
+
1300
+ LOperand* context() { return InputAt(0); }
1301
+ };
1302
+
1303
+
1304
+ class LGlobalObject: public LTemplateInstruction<1, 1, 0> {
1305
+ public:
1306
+ explicit LGlobalObject(LOperand* context) {
1307
+ inputs_[0] = context;
1308
+ }
1309
+
1310
+ DECLARE_CONCRETE_INSTRUCTION(GlobalObject, "global-object")
1311
+
1312
+ LOperand* context() { return InputAt(0); }
1313
+ };
1314
+
1315
+
1316
+ class LGlobalReceiver: public LTemplateInstruction<1, 1, 0> {
1317
+ public:
1318
+ explicit LGlobalReceiver(LOperand* global_object) {
1319
+ inputs_[0] = global_object;
1320
+ }
1321
+
1322
+ DECLARE_CONCRETE_INSTRUCTION(GlobalReceiver, "global-receiver")
1323
+
1324
+ LOperand* global() { return InputAt(0); }
1325
+ };
1326
+
1327
+
1328
+ class LCallConstantFunction: public LTemplateInstruction<1, 0, 0> {
1329
+ public:
1330
+ DECLARE_CONCRETE_INSTRUCTION(CallConstantFunction, "call-constant-function")
1331
+ DECLARE_HYDROGEN_ACCESSOR(CallConstantFunction)
1332
+
1333
+ virtual void PrintDataTo(StringStream* stream);
1334
+
1335
+ Handle<JSFunction> function() { return hydrogen()->function(); }
1336
+ int arity() const { return hydrogen()->argument_count() - 1; }
1337
+ };
1338
+
1339
+
1340
+ class LCallKeyed: public LTemplateInstruction<1, 1, 0> {
1341
+ public:
1342
+ explicit LCallKeyed(LOperand* key) {
1343
+ inputs_[0] = key;
1344
+ }
1345
+
1346
+ DECLARE_CONCRETE_INSTRUCTION(CallKeyed, "call-keyed")
1347
+ DECLARE_HYDROGEN_ACCESSOR(CallKeyed)
1348
+
1349
+ virtual void PrintDataTo(StringStream* stream);
1350
+
1351
+ int arity() const { return hydrogen()->argument_count() - 1; }
1352
+ };
1353
+
1354
+
1355
+
1356
+ class LCallNamed: public LTemplateInstruction<1, 0, 0> {
1357
+ public:
1358
+ DECLARE_CONCRETE_INSTRUCTION(CallNamed, "call-named")
1359
+ DECLARE_HYDROGEN_ACCESSOR(CallNamed)
1360
+
1361
+ virtual void PrintDataTo(StringStream* stream);
1362
+
1363
+ Handle<String> name() const { return hydrogen()->name(); }
1364
+ int arity() const { return hydrogen()->argument_count() - 1; }
1365
+ };
1366
+
1367
+
1368
+ class LCallFunction: public LTemplateInstruction<1, 0, 0> {
1369
+ public:
1370
+ DECLARE_CONCRETE_INSTRUCTION(CallFunction, "call-function")
1371
+ DECLARE_HYDROGEN_ACCESSOR(CallFunction)
1372
+
1373
+ int arity() const { return hydrogen()->argument_count() - 2; }
1374
+ };
1375
+
1376
+
1377
+ class LCallGlobal: public LTemplateInstruction<1, 0, 0> {
1378
+ public:
1379
+ DECLARE_CONCRETE_INSTRUCTION(CallGlobal, "call-global")
1380
+ DECLARE_HYDROGEN_ACCESSOR(CallGlobal)
1381
+
1382
+ virtual void PrintDataTo(StringStream* stream);
1383
+
1384
+ Handle<String> name() const {return hydrogen()->name(); }
1385
+ int arity() const { return hydrogen()->argument_count() - 1; }
1386
+ };
1387
+
1388
+
1389
+ class LCallKnownGlobal: public LTemplateInstruction<1, 0, 0> {
1390
+ public:
1391
+ DECLARE_CONCRETE_INSTRUCTION(CallKnownGlobal, "call-known-global")
1392
+ DECLARE_HYDROGEN_ACCESSOR(CallKnownGlobal)
1393
+
1394
+ virtual void PrintDataTo(StringStream* stream);
1395
+
1396
+ Handle<JSFunction> target() const { return hydrogen()->target(); }
1397
+ int arity() const { return hydrogen()->argument_count() - 1; }
1398
+ };
1399
+
1400
+
1401
+ class LCallNew: public LTemplateInstruction<1, 1, 0> {
1402
+ public:
1403
+ explicit LCallNew(LOperand* constructor) {
1404
+ inputs_[0] = constructor;
1405
+ }
1406
+
1407
+ DECLARE_CONCRETE_INSTRUCTION(CallNew, "call-new")
1408
+ DECLARE_HYDROGEN_ACCESSOR(CallNew)
1409
+
1410
+ virtual void PrintDataTo(StringStream* stream);
1411
+
1412
+ int arity() const { return hydrogen()->argument_count() - 1; }
1413
+ };
1414
+
1415
+
1416
+ class LCallRuntime: public LTemplateInstruction<1, 0, 0> {
1417
+ public:
1418
+ DECLARE_CONCRETE_INSTRUCTION(CallRuntime, "call-runtime")
1419
+ DECLARE_HYDROGEN_ACCESSOR(CallRuntime)
1420
+
1421
+ Runtime::Function* function() const { return hydrogen()->function(); }
1422
+ int arity() const { return hydrogen()->argument_count(); }
1423
+ };
1424
+
1425
+
1426
+ class LInteger32ToDouble: public LTemplateInstruction<1, 1, 0> {
1427
+ public:
1428
+ explicit LInteger32ToDouble(LOperand* value) {
1429
+ inputs_[0] = value;
1430
+ }
1431
+
1432
+ DECLARE_CONCRETE_INSTRUCTION(Integer32ToDouble, "int32-to-double")
1433
+ };
1434
+
1435
+
1436
+ class LNumberTagI: public LTemplateInstruction<1, 1, 0> {
1437
+ public:
1438
+ explicit LNumberTagI(LOperand* value) {
1439
+ inputs_[0] = value;
1440
+ }
1441
+
1442
+ DECLARE_CONCRETE_INSTRUCTION(NumberTagI, "number-tag-i")
1443
+ };
1444
+
1445
+
1446
+ class LNumberTagD: public LTemplateInstruction<1, 1, 2> {
1447
+ public:
1448
+ LNumberTagD(LOperand* value, LOperand* temp1, LOperand* temp2) {
1449
+ inputs_[0] = value;
1450
+ temps_[0] = temp1;
1451
+ temps_[1] = temp2;
1452
+ }
1453
+
1454
+ DECLARE_CONCRETE_INSTRUCTION(NumberTagD, "number-tag-d")
1455
+ };
1456
+
1457
+
1458
+ // Sometimes truncating conversion from a tagged value to an int32.
1459
+ class LDoubleToI: public LTemplateInstruction<1, 1, 1> {
1460
+ public:
1461
+ explicit LDoubleToI(LOperand* value, LOperand* temp1) {
1462
+ inputs_[0] = value;
1463
+ temps_[0] = temp1;
1464
+ }
1465
+
1466
+ DECLARE_CONCRETE_INSTRUCTION(DoubleToI, "double-to-i")
1467
+ DECLARE_HYDROGEN_ACCESSOR(Change)
1468
+
1469
+ bool truncating() { return hydrogen()->CanTruncateToInt32(); }
1470
+ };
1471
+
1472
+
1473
+ // Truncating conversion from a tagged value to an int32.
1474
+ class LTaggedToI: public LTemplateInstruction<1, 1, 1> {
1475
+ public:
1476
+ LTaggedToI(LOperand* value, LOperand* temp) {
1477
+ inputs_[0] = value;
1478
+ temps_[0] = temp;
1479
+ }
1480
+
1481
+ DECLARE_CONCRETE_INSTRUCTION(TaggedToI, "tagged-to-i")
1482
+ DECLARE_HYDROGEN_ACCESSOR(Change)
1483
+
1484
+ bool truncating() { return hydrogen()->CanTruncateToInt32(); }
1485
+ };
1486
+
1487
+
1488
+ class LSmiTag: public LTemplateInstruction<1, 1, 0> {
1489
+ public:
1490
+ explicit LSmiTag(LOperand* value) {
1491
+ inputs_[0] = value;
1492
+ }
1493
+
1494
+ DECLARE_CONCRETE_INSTRUCTION(SmiTag, "smi-tag")
1495
+ };
1496
+
1497
+
1498
+ class LNumberUntagD: public LTemplateInstruction<1, 1, 0> {
1499
+ public:
1500
+ explicit LNumberUntagD(LOperand* value) {
1501
+ inputs_[0] = value;
1502
+ }
1503
+
1504
+ DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag")
1505
+ };
1506
+
1507
+
1508
+ class LSmiUntag: public LTemplateInstruction<1, 1, 0> {
1509
+ public:
1510
+ LSmiUntag(LOperand* value, bool needs_check)
1511
+ : needs_check_(needs_check) {
1512
+ inputs_[0] = value;
1513
+ }
1514
+
1515
+ DECLARE_CONCRETE_INSTRUCTION(SmiUntag, "smi-untag")
1516
+
1517
+ bool needs_check() const { return needs_check_; }
1518
+
1519
+ private:
1520
+ bool needs_check_;
1521
+ };
1522
+
1523
+
1524
+ class LStoreNamedField: public LTemplateInstruction<0, 2, 0> {
1525
+ public:
1526
+ LStoreNamedField(LOperand* obj, LOperand* val) {
1527
+ inputs_[0] = obj;
1528
+ inputs_[1] = val;
1529
+ }
1530
+
1531
+ DECLARE_CONCRETE_INSTRUCTION(StoreNamedField, "store-named-field")
1532
+ DECLARE_HYDROGEN_ACCESSOR(StoreNamedField)
1533
+
1534
+ virtual void PrintDataTo(StringStream* stream);
1535
+
1536
+ LOperand* object() { return inputs_[0]; }
1537
+ LOperand* value() { return inputs_[1]; }
1538
+
1539
+ Handle<Object> name() const { return hydrogen()->name(); }
1540
+ bool is_in_object() { return hydrogen()->is_in_object(); }
1541
+ int offset() { return hydrogen()->offset(); }
1542
+ bool needs_write_barrier() { return hydrogen()->NeedsWriteBarrier(); }
1543
+ Handle<Map> transition() const { return hydrogen()->transition(); }
1544
+ };
1545
+
1546
+
1547
+ class LStoreNamedGeneric: public LTemplateInstruction<0, 2, 0> {
1548
+ public:
1549
+ LStoreNamedGeneric(LOperand* obj, LOperand* val) {
1550
+ inputs_[0] = obj;
1551
+ inputs_[1] = val;
1552
+ }
1553
+
1554
+ DECLARE_CONCRETE_INSTRUCTION(StoreNamedGeneric, "store-named-generic")
1555
+ DECLARE_HYDROGEN_ACCESSOR(StoreNamedGeneric)
1556
+
1557
+ virtual void PrintDataTo(StringStream* stream);
1558
+
1559
+ LOperand* object() { return inputs_[0]; }
1560
+ LOperand* value() { return inputs_[1]; }
1561
+ Handle<Object> name() const { return hydrogen()->name(); }
1562
+ };
1563
+
1564
+
1565
+ class LStoreKeyedFastElement: public LTemplateInstruction<0, 3, 0> {
1566
+ public:
1567
+ LStoreKeyedFastElement(LOperand* obj, LOperand* key, LOperand* val) {
1568
+ inputs_[0] = obj;
1569
+ inputs_[1] = key;
1570
+ inputs_[2] = val;
1571
+ }
1572
+
1573
+ DECLARE_CONCRETE_INSTRUCTION(StoreKeyedFastElement,
1574
+ "store-keyed-fast-element")
1575
+ DECLARE_HYDROGEN_ACCESSOR(StoreKeyedFastElement)
1576
+
1577
+ virtual void PrintDataTo(StringStream* stream);
1578
+
1579
+ LOperand* object() { return inputs_[0]; }
1580
+ LOperand* key() { return inputs_[1]; }
1581
+ LOperand* value() { return inputs_[2]; }
1582
+ };
1583
+
1584
+
1585
+ class LStoreKeyedGeneric: public LTemplateInstruction<0, 3, 0> {
1586
+ public:
1587
+ LStoreKeyedGeneric(LOperand* obj, LOperand* key, LOperand* val) {
1588
+ inputs_[0] = obj;
1589
+ inputs_[1] = key;
1590
+ inputs_[2] = val;
1591
+ }
1592
+
1593
+ DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric, "store-keyed-generic")
1594
+
1595
+ virtual void PrintDataTo(StringStream* stream);
1596
+
1597
+ LOperand* object() { return inputs_[0]; }
1598
+ LOperand* key() { return inputs_[1]; }
1599
+ LOperand* value() { return inputs_[2]; }
1600
+ };
1601
+
1602
+
1603
+ class LStringCharCodeAt: public LTemplateInstruction<1, 2, 0> {
1604
+ public:
1605
+ LStringCharCodeAt(LOperand* string, LOperand* index) {
1606
+ inputs_[0] = string;
1607
+ inputs_[1] = index;
1608
+ }
1609
+
1610
+ DECLARE_CONCRETE_INSTRUCTION(StringCharCodeAt, "string-char-code-at")
1611
+ DECLARE_HYDROGEN_ACCESSOR(StringCharCodeAt)
1612
+
1613
+ LOperand* string() { return inputs_[0]; }
1614
+ LOperand* index() { return inputs_[1]; }
1615
+ };
1616
+
1617
+
1618
+ class LStringLength: public LTemplateInstruction<1, 1, 0> {
1619
+ public:
1620
+ explicit LStringLength(LOperand* string) {
1621
+ inputs_[0] = string;
1622
+ }
1623
+
1624
+ DECLARE_CONCRETE_INSTRUCTION(StringLength, "string-length")
1625
+ DECLARE_HYDROGEN_ACCESSOR(StringLength)
1626
+
1627
+ LOperand* string() { return inputs_[0]; }
1628
+ };
1629
+
1630
+
1631
+ class LCheckFunction: public LTemplateInstruction<0, 1, 0> {
1632
+ public:
1633
+ explicit LCheckFunction(LOperand* value) {
1634
+ inputs_[0] = value;
1635
+ }
1636
+
1637
+ DECLARE_CONCRETE_INSTRUCTION(CheckFunction, "check-function")
1638
+ DECLARE_HYDROGEN_ACCESSOR(CheckFunction)
1639
+ };
1640
+
1641
+
1642
+ class LCheckInstanceType: public LTemplateInstruction<0, 1, 0> {
1643
+ public:
1644
+ explicit LCheckInstanceType(LOperand* value) {
1645
+ inputs_[0] = value;
1646
+ }
1647
+
1648
+ DECLARE_CONCRETE_INSTRUCTION(CheckInstanceType, "check-instance-type")
1649
+ DECLARE_HYDROGEN_ACCESSOR(CheckInstanceType)
1650
+ };
1651
+
1652
+
1653
+ class LCheckMap: public LTemplateInstruction<0, 1, 0> {
1654
+ public:
1655
+ explicit LCheckMap(LOperand* value) {
1656
+ inputs_[0] = value;
1657
+ }
1658
+
1659
+ DECLARE_CONCRETE_INSTRUCTION(CheckMap, "check-map")
1660
+ DECLARE_HYDROGEN_ACCESSOR(CheckMap)
1661
+ };
1662
+
1663
+
1664
+ class LCheckPrototypeMaps: public LTemplateInstruction<0, 0, 2> {
1665
+ public:
1666
+ LCheckPrototypeMaps(LOperand* temp1, LOperand* temp2) {
1667
+ temps_[0] = temp1;
1668
+ temps_[1] = temp2;
1669
+ }
1670
+
1671
+ DECLARE_CONCRETE_INSTRUCTION(CheckPrototypeMaps, "check-prototype-maps")
1672
+ DECLARE_HYDROGEN_ACCESSOR(CheckPrototypeMaps)
1673
+
1674
+ Handle<JSObject> prototype() const { return hydrogen()->prototype(); }
1675
+ Handle<JSObject> holder() const { return hydrogen()->holder(); }
1676
+ };
1677
+
1678
+
1679
+ class LCheckSmi: public LTemplateInstruction<0, 1, 0> {
1680
+ public:
1681
+ LCheckSmi(LOperand* value, Condition condition)
1682
+ : condition_(condition) {
1683
+ inputs_[0] = value;
1684
+ }
1685
+
1686
+ Condition condition() const { return condition_; }
1687
+
1688
+ virtual void CompileToNative(LCodeGen* generator);
1689
+ virtual const char* Mnemonic() const {
1690
+ return (condition_ == eq) ? "check-non-smi" : "check-smi";
1691
+ }
1692
+
1693
+ private:
1694
+ Condition condition_;
1695
+ };
1696
+
1697
+
1698
+ class LArrayLiteral: public LTemplateInstruction<1, 0, 0> {
1699
+ public:
1700
+ DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal")
1701
+ DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral)
1702
+ };
1703
+
1704
+
1705
+ class LObjectLiteral: public LTemplateInstruction<1, 0, 0> {
1706
+ public:
1707
+ DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal")
1708
+ DECLARE_HYDROGEN_ACCESSOR(ObjectLiteral)
1709
+ };
1710
+
1711
+
1712
+ class LRegExpLiteral: public LTemplateInstruction<1, 0, 0> {
1713
+ public:
1714
+ DECLARE_CONCRETE_INSTRUCTION(RegExpLiteral, "regexp-literal")
1715
+ DECLARE_HYDROGEN_ACCESSOR(RegExpLiteral)
1716
+ };
1717
+
1718
+
1719
+ class LFunctionLiteral: public LTemplateInstruction<1, 0, 0> {
1720
+ public:
1721
+ DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
1722
+ DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
1723
+
1724
+ Handle<SharedFunctionInfo> shared_info() { return hydrogen()->shared_info(); }
1725
+ };
1726
+
1727
+
1728
+ class LTypeof: public LTemplateInstruction<1, 1, 0> {
1729
+ public:
1730
+ explicit LTypeof(LOperand* value) {
1731
+ inputs_[0] = value;
1732
+ }
1733
+
1734
+ DECLARE_CONCRETE_INSTRUCTION(Typeof, "typeof")
1735
+ };
1736
+
1737
+
1738
+ class LTypeofIs: public LTemplateInstruction<1, 1, 0> {
1739
+ public:
1740
+ explicit LTypeofIs(LOperand* value) {
1741
+ inputs_[0] = value;
1742
+ }
1743
+
1744
+ DECLARE_CONCRETE_INSTRUCTION(TypeofIs, "typeof-is")
1745
+ DECLARE_HYDROGEN_ACCESSOR(TypeofIs)
1746
+
1747
+ Handle<String> type_literal() { return hydrogen()->type_literal(); }
1748
+
1749
+ virtual void PrintDataTo(StringStream* stream);
1750
+ };
1751
+
1752
+
1753
+ class LTypeofIsAndBranch: public LControlInstruction<1, 0> {
1754
+ public:
1755
+ explicit LTypeofIsAndBranch(LOperand* value) {
1756
+ inputs_[0] = value;
1757
+ }
1758
+
1759
+ DECLARE_CONCRETE_INSTRUCTION(TypeofIsAndBranch, "typeof-is-and-branch")
1760
+ DECLARE_HYDROGEN_ACCESSOR(TypeofIs)
1761
+
1762
+ Handle<String> type_literal() { return hydrogen()->type_literal(); }
1763
+
1764
+ virtual void PrintDataTo(StringStream* stream);
1765
+ };
1766
+
1767
+
1768
+ class LIsConstructCall: public LTemplateInstruction<1, 0, 0> {
1769
+ public:
1770
+ DECLARE_CONCRETE_INSTRUCTION(IsConstructCall, "is-construct-call")
1771
+ DECLARE_HYDROGEN_ACCESSOR(IsConstructCall)
1772
+ };
1773
+
1774
+
1775
+ class LIsConstructCallAndBranch: public LControlInstruction<0, 1> {
1776
+ public:
1777
+ explicit LIsConstructCallAndBranch(LOperand* temp) {
1778
+ temps_[0] = temp;
1779
+ }
1780
+
1781
+ DECLARE_CONCRETE_INSTRUCTION(IsConstructCallAndBranch,
1782
+ "is-construct-call-and-branch")
1783
+ };
1784
+
1785
+
1786
+ class LDeleteProperty: public LTemplateInstruction<1, 2, 0> {
1787
+ public:
1788
+ LDeleteProperty(LOperand* obj, LOperand* key) {
1789
+ inputs_[0] = obj;
1790
+ inputs_[1] = key;
1791
+ }
1792
+
1793
+ DECLARE_CONCRETE_INSTRUCTION(DeleteProperty, "delete-property")
1794
+
1795
+ LOperand* object() { return inputs_[0]; }
1796
+ LOperand* key() { return inputs_[1]; }
1797
+ };
1798
+
1799
+
1800
+ class LOsrEntry: public LTemplateInstruction<0, 0, 0> {
1801
+ public:
1802
+ LOsrEntry();
1803
+
1804
+ DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry")
1805
+
1806
+ LOperand** SpilledRegisterArray() { return register_spills_; }
1807
+ LOperand** SpilledDoubleRegisterArray() { return double_register_spills_; }
1808
+
1809
+ void MarkSpilledRegister(int allocation_index, LOperand* spill_operand);
1810
+ void MarkSpilledDoubleRegister(int allocation_index,
1811
+ LOperand* spill_operand);
1812
+
1813
+ private:
1814
+ // Arrays of spill slot operands for registers with an assigned spill
1815
+ // slot, i.e., that must also be restored to the spill slot on OSR entry.
1816
+ // NULL if the register has no assigned spill slot. Indexed by allocation
1817
+ // index.
1818
+ LOperand* register_spills_[Register::kNumAllocatableRegisters];
1819
+ LOperand* double_register_spills_[DoubleRegister::kNumAllocatableRegisters];
1820
+ };
1821
+
1822
+
1823
+ class LStackCheck: public LTemplateInstruction<0, 0, 0> {
1824
+ public:
1825
+ DECLARE_CONCRETE_INSTRUCTION(StackCheck, "stack-check")
1826
+ };
1827
+
1828
+
1829
+ class LChunkBuilder;
1830
+ class LChunk: public ZoneObject {
1831
+ public:
1832
+ explicit LChunk(HGraph* graph);
1833
+
1834
+ void AddInstruction(LInstruction* instruction, HBasicBlock* block);
1835
+ LConstantOperand* DefineConstantOperand(HConstant* constant);
1836
+ Handle<Object> LookupLiteral(LConstantOperand* operand) const;
1837
+ Representation LookupLiteralRepresentation(LConstantOperand* operand) const;
1838
+
1839
+ int GetNextSpillIndex(bool is_double);
1840
+ LOperand* GetNextSpillSlot(bool is_double);
1841
+
1842
+ int ParameterAt(int index);
1843
+ int GetParameterStackSlot(int index) const;
1844
+ int spill_slot_count() const { return spill_slot_count_; }
1845
+ HGraph* graph() const { return graph_; }
1846
+ const ZoneList<LInstruction*>* instructions() const { return &instructions_; }
1847
+ void AddGapMove(int index, LOperand* from, LOperand* to);
1848
+ LGap* GetGapAt(int index) const;
1849
+ bool IsGapAt(int index) const;
1850
+ int NearestGapPos(int index) const;
1851
+ void MarkEmptyBlocks();
1852
+ const ZoneList<LPointerMap*>* pointer_maps() const { return &pointer_maps_; }
1853
+ LLabel* GetLabel(int block_id) const {
1854
+ HBasicBlock* block = graph_->blocks()->at(block_id);
1855
+ int first_instruction = block->first_instruction_index();
1856
+ return LLabel::cast(instructions_[first_instruction]);
1857
+ }
1858
+ int LookupDestination(int block_id) const {
1859
+ LLabel* cur = GetLabel(block_id);
1860
+ while (cur->replacement() != NULL) {
1861
+ cur = cur->replacement();
1862
+ }
1863
+ return cur->block_id();
1864
+ }
1865
+ Label* GetAssemblyLabel(int block_id) const {
1866
+ LLabel* label = GetLabel(block_id);
1867
+ ASSERT(!label->HasReplacement());
1868
+ return label->label();
1869
+ }
1870
+
1871
+ const ZoneList<Handle<JSFunction> >* inlined_closures() const {
1872
+ return &inlined_closures_;
1873
+ }
1874
+
1875
+ void AddInlinedClosure(Handle<JSFunction> closure) {
1876
+ inlined_closures_.Add(closure);
1877
+ }
1878
+
1879
+ private:
1880
+ int spill_slot_count_;
1881
+ HGraph* const graph_;
1882
+ ZoneList<LInstruction*> instructions_;
1883
+ ZoneList<LPointerMap*> pointer_maps_;
1884
+ ZoneList<Handle<JSFunction> > inlined_closures_;
1885
+ };
1886
+
1887
+
1888
+ class LChunkBuilder BASE_EMBEDDED {
1889
+ public:
1890
+ LChunkBuilder(HGraph* graph, LAllocator* allocator)
1891
+ : chunk_(NULL),
1892
+ graph_(graph),
1893
+ status_(UNUSED),
1894
+ current_instruction_(NULL),
1895
+ current_block_(NULL),
1896
+ next_block_(NULL),
1897
+ argument_count_(0),
1898
+ allocator_(allocator),
1899
+ position_(RelocInfo::kNoPosition),
1900
+ instruction_pending_deoptimization_environment_(NULL),
1901
+ pending_deoptimization_ast_id_(AstNode::kNoNumber) { }
1902
+
1903
+ // Build the sequence for the graph.
1904
+ LChunk* Build();
1905
+
1906
+ // Declare methods that deal with the individual node types.
1907
+ #define DECLARE_DO(type) LInstruction* Do##type(H##type* node);
1908
+ HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
1909
+ #undef DECLARE_DO
1910
+
1911
+ private:
1912
+ enum Status {
1913
+ UNUSED,
1914
+ BUILDING,
1915
+ DONE,
1916
+ ABORTED
1917
+ };
1918
+
1919
+ LChunk* chunk() const { return chunk_; }
1920
+ HGraph* graph() const { return graph_; }
1921
+
1922
+ bool is_unused() const { return status_ == UNUSED; }
1923
+ bool is_building() const { return status_ == BUILDING; }
1924
+ bool is_done() const { return status_ == DONE; }
1925
+ bool is_aborted() const { return status_ == ABORTED; }
1926
+
1927
+ void Abort(const char* format, ...);
1928
+
1929
+ // Methods for getting operands for Use / Define / Temp.
1930
+ LRegister* ToOperand(Register reg);
1931
+ LUnallocated* ToUnallocated(Register reg);
1932
+ LUnallocated* ToUnallocated(DoubleRegister reg);
1933
+
1934
+ // Methods for setting up define-use relationships.
1935
+ MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand);
1936
+ MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register);
1937
+ MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value,
1938
+ DoubleRegister fixed_register);
1939
+
1940
+ // A value that is guaranteed to be allocated to a register.
1941
+ // Operand created by UseRegister is guaranteed to be live until the end of
1942
+ // instruction. This means that register allocator will not reuse it's
1943
+ // register for any other operand inside instruction.
1944
+ // Operand created by UseRegisterAtStart is guaranteed to be live only at
1945
+ // instruction start. Register allocator is free to assign the same register
1946
+ // to some other operand used inside instruction (i.e. temporary or
1947
+ // output).
1948
+ MUST_USE_RESULT LOperand* UseRegister(HValue* value);
1949
+ MUST_USE_RESULT LOperand* UseRegisterAtStart(HValue* value);
1950
+
1951
+ // An input operand in a register that may be trashed.
1952
+ MUST_USE_RESULT LOperand* UseTempRegister(HValue* value);
1953
+
1954
+ // An input operand in a register or stack slot.
1955
+ MUST_USE_RESULT LOperand* Use(HValue* value);
1956
+ MUST_USE_RESULT LOperand* UseAtStart(HValue* value);
1957
+
1958
+ // An input operand in a register, stack slot or a constant operand.
1959
+ MUST_USE_RESULT LOperand* UseOrConstant(HValue* value);
1960
+ MUST_USE_RESULT LOperand* UseOrConstantAtStart(HValue* value);
1961
+
1962
+ // An input operand in a register or a constant operand.
1963
+ MUST_USE_RESULT LOperand* UseRegisterOrConstant(HValue* value);
1964
+ MUST_USE_RESULT LOperand* UseRegisterOrConstantAtStart(HValue* value);
1965
+
1966
+ // An input operand in register, stack slot or a constant operand.
1967
+ // Will not be moved to a register even if one is freely available.
1968
+ MUST_USE_RESULT LOperand* UseAny(HValue* value);
1969
+
1970
+ // Temporary operand that must be in a register.
1971
+ MUST_USE_RESULT LUnallocated* TempRegister();
1972
+ MUST_USE_RESULT LOperand* FixedTemp(Register reg);
1973
+ MUST_USE_RESULT LOperand* FixedTemp(DoubleRegister reg);
1974
+
1975
+ // Methods for setting up define-use relationships.
1976
+ // Return the same instruction that they are passed.
1977
+ template<int I, int T>
1978
+ LInstruction* Define(LTemplateInstruction<1, I, T>* instr,
1979
+ LUnallocated* result);
1980
+ template<int I, int T>
1981
+ LInstruction* Define(LTemplateInstruction<1, I, T>* instr);
1982
+ template<int I, int T>
1983
+ LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr);
1984
+ template<int I, int T>
1985
+ LInstruction* DefineAsSpilled(LTemplateInstruction<1, I, T>* instr,
1986
+ int index);
1987
+ template<int I, int T>
1988
+ LInstruction* DefineSameAsFirst(LTemplateInstruction<1, I, T>* instr);
1989
+ template<int I, int T>
1990
+ LInstruction* DefineFixed(LTemplateInstruction<1, I, T>* instr,
1991
+ Register reg);
1992
+ template<int I, int T>
1993
+ LInstruction* DefineFixedDouble(LTemplateInstruction<1, I, T>* instr,
1994
+ DoubleRegister reg);
1995
+ LInstruction* AssignEnvironment(LInstruction* instr);
1996
+ LInstruction* AssignPointerMap(LInstruction* instr);
1997
+
1998
+ enum CanDeoptimize { CAN_DEOPTIMIZE_EAGERLY, CANNOT_DEOPTIMIZE_EAGERLY };
1999
+
2000
+ // By default we assume that instruction sequences generated for calls
2001
+ // cannot deoptimize eagerly and we do not attach environment to this
2002
+ // instruction.
2003
+ LInstruction* MarkAsCall(
2004
+ LInstruction* instr,
2005
+ HInstruction* hinstr,
2006
+ CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY);
2007
+ LInstruction* MarkAsSaveDoubles(LInstruction* instr);
2008
+
2009
+ LInstruction* SetInstructionPendingDeoptimizationEnvironment(
2010
+ LInstruction* instr, int ast_id);
2011
+ void ClearInstructionPendingDeoptimizationEnvironment();
2012
+
2013
+ LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env);
2014
+
2015
+ void VisitInstruction(HInstruction* current);
2016
+
2017
+ void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block);
2018
+ LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr);
2019
+ LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2020
+ LInstruction* DoArithmeticD(Token::Value op,
2021
+ HArithmeticBinaryOperation* instr);
2022
+ LInstruction* DoArithmeticT(Token::Value op,
2023
+ HArithmeticBinaryOperation* instr);
2024
+
2025
+ LChunk* chunk_;
2026
+ HGraph* const graph_;
2027
+ Status status_;
2028
+ HInstruction* current_instruction_;
2029
+ HBasicBlock* current_block_;
2030
+ HBasicBlock* next_block_;
2031
+ int argument_count_;
2032
+ LAllocator* allocator_;
2033
+ int position_;
2034
+ LInstruction* instruction_pending_deoptimization_environment_;
2035
+ int pending_deoptimization_ast_id_;
2036
+
2037
+ DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2038
+ };
2039
+
2040
+ #undef DECLARE_HYDROGEN_ACCESSOR
2041
+ #undef DECLARE_INSTRUCTION
2042
+ #undef DECLARE_CONCRETE_INSTRUCTION
2043
+
2044
+ } } // namespace v8::internal
2045
+
2046
+ #endif // V8_ARM_LITHIUM_ARM_H_