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