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,1093 @@
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 are
6
+ // 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 distribution.
14
+ //
15
+ // - Neither the name of Sun Microsystems or the names of contributors may
16
+ // be used to endorse or promote products derived from this software without
17
+ // specific prior written permission.
18
+ //
19
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20
+ // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21
+ // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22
+ // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23
+ // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24
+ // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25
+ // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26
+ // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27
+ // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28
+ // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29
+ // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+
31
+ // The original source code covered by the above license above has been
32
+ // modified significantly by Google Inc.
33
+ // Copyright 2011 the V8 project authors. All rights reserved.
34
+
35
+ // A light-weight IA32 Assembler.
36
+
37
+ #ifndef V8_IA32_ASSEMBLER_IA32_H_
38
+ #define V8_IA32_ASSEMBLER_IA32_H_
39
+
40
+ #include "serialize.h"
41
+
42
+ namespace v8 {
43
+ namespace internal {
44
+
45
+ // CPU Registers.
46
+ //
47
+ // 1) We would prefer to use an enum, but enum values are assignment-
48
+ // compatible with int, which has caused code-generation bugs.
49
+ //
50
+ // 2) We would prefer to use a class instead of a struct but we don't like
51
+ // the register initialization to depend on the particular initialization
52
+ // order (which appears to be different on OS X, Linux, and Windows for the
53
+ // installed versions of C++ we tried). Using a struct permits C-style
54
+ // "initialization". Also, the Register objects cannot be const as this
55
+ // forces initialization stubs in MSVC, making us dependent on initialization
56
+ // order.
57
+ //
58
+ // 3) By not using an enum, we are possibly preventing the compiler from
59
+ // doing certain constant folds, which may significantly reduce the
60
+ // code generated for some assembly instructions (because they boil down
61
+ // to a few constants). If this is a problem, we could change the code
62
+ // such that we use an enum in optimized mode, and the struct in debug
63
+ // mode. This way we get the compile-time error checking in debug mode
64
+ // and best performance in optimized code.
65
+ //
66
+ struct Register {
67
+ static const int kNumAllocatableRegisters = 6;
68
+ static const int kNumRegisters = 8;
69
+
70
+ static inline const char* AllocationIndexToString(int index);
71
+
72
+ static inline int ToAllocationIndex(Register reg);
73
+
74
+ static inline Register FromAllocationIndex(int index);
75
+
76
+ static Register from_code(int code) {
77
+ Register r = { code };
78
+ return r;
79
+ }
80
+ bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
81
+ bool is(Register reg) const { return code_ == reg.code_; }
82
+ // eax, ebx, ecx and edx are byte registers, the rest are not.
83
+ bool is_byte_register() const { return code_ <= 3; }
84
+ int code() const {
85
+ ASSERT(is_valid());
86
+ return code_;
87
+ }
88
+ int bit() const {
89
+ ASSERT(is_valid());
90
+ return 1 << code_;
91
+ }
92
+
93
+ // Unfortunately we can't make this private in a struct.
94
+ int code_;
95
+ };
96
+
97
+
98
+ const Register eax = { 0 };
99
+ const Register ecx = { 1 };
100
+ const Register edx = { 2 };
101
+ const Register ebx = { 3 };
102
+ const Register esp = { 4 };
103
+ const Register ebp = { 5 };
104
+ const Register esi = { 6 };
105
+ const Register edi = { 7 };
106
+ const Register no_reg = { -1 };
107
+
108
+
109
+ inline const char* Register::AllocationIndexToString(int index) {
110
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
111
+ // This is the mapping of allocation indices to registers.
112
+ const char* const kNames[] = { "eax", "ecx", "edx", "ebx", "esi", "edi" };
113
+ return kNames[index];
114
+ }
115
+
116
+
117
+ inline int Register::ToAllocationIndex(Register reg) {
118
+ ASSERT(reg.is_valid() && !reg.is(esp) && !reg.is(ebp));
119
+ return (reg.code() >= 6) ? reg.code() - 2 : reg.code();
120
+ }
121
+
122
+
123
+ inline Register Register::FromAllocationIndex(int index) {
124
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
125
+ return (index >= 4) ? from_code(index + 2) : from_code(index);
126
+ }
127
+
128
+
129
+ struct XMMRegister {
130
+ static const int kNumAllocatableRegisters = 7;
131
+ static const int kNumRegisters = 8;
132
+
133
+ static int ToAllocationIndex(XMMRegister reg) {
134
+ ASSERT(reg.code() != 0);
135
+ return reg.code() - 1;
136
+ }
137
+
138
+ static XMMRegister FromAllocationIndex(int index) {
139
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
140
+ return from_code(index + 1);
141
+ }
142
+
143
+ static const char* AllocationIndexToString(int index) {
144
+ ASSERT(index >= 0 && index < kNumAllocatableRegisters);
145
+ const char* const names[] = {
146
+ "xmm1",
147
+ "xmm2",
148
+ "xmm3",
149
+ "xmm4",
150
+ "xmm5",
151
+ "xmm6",
152
+ "xmm7"
153
+ };
154
+ return names[index];
155
+ }
156
+
157
+ static XMMRegister from_code(int code) {
158
+ XMMRegister r = { code };
159
+ return r;
160
+ }
161
+
162
+ bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
163
+ bool is(XMMRegister reg) const { return code_ == reg.code_; }
164
+ int code() const {
165
+ ASSERT(is_valid());
166
+ return code_;
167
+ }
168
+
169
+ int code_;
170
+ };
171
+
172
+
173
+ const XMMRegister xmm0 = { 0 };
174
+ const XMMRegister xmm1 = { 1 };
175
+ const XMMRegister xmm2 = { 2 };
176
+ const XMMRegister xmm3 = { 3 };
177
+ const XMMRegister xmm4 = { 4 };
178
+ const XMMRegister xmm5 = { 5 };
179
+ const XMMRegister xmm6 = { 6 };
180
+ const XMMRegister xmm7 = { 7 };
181
+
182
+
183
+ typedef XMMRegister DoubleRegister;
184
+
185
+
186
+ enum Condition {
187
+ // any value < 0 is considered no_condition
188
+ no_condition = -1,
189
+
190
+ overflow = 0,
191
+ no_overflow = 1,
192
+ below = 2,
193
+ above_equal = 3,
194
+ equal = 4,
195
+ not_equal = 5,
196
+ below_equal = 6,
197
+ above = 7,
198
+ negative = 8,
199
+ positive = 9,
200
+ parity_even = 10,
201
+ parity_odd = 11,
202
+ less = 12,
203
+ greater_equal = 13,
204
+ less_equal = 14,
205
+ greater = 15,
206
+
207
+ // aliases
208
+ carry = below,
209
+ not_carry = above_equal,
210
+ zero = equal,
211
+ not_zero = not_equal,
212
+ sign = negative,
213
+ not_sign = positive
214
+ };
215
+
216
+
217
+ // Returns the equivalent of !cc.
218
+ // Negation of the default no_condition (-1) results in a non-default
219
+ // no_condition value (-2). As long as tests for no_condition check
220
+ // for condition < 0, this will work as expected.
221
+ inline Condition NegateCondition(Condition cc) {
222
+ return static_cast<Condition>(cc ^ 1);
223
+ }
224
+
225
+
226
+ // Corresponds to transposing the operands of a comparison.
227
+ inline Condition ReverseCondition(Condition cc) {
228
+ switch (cc) {
229
+ case below:
230
+ return above;
231
+ case above:
232
+ return below;
233
+ case above_equal:
234
+ return below_equal;
235
+ case below_equal:
236
+ return above_equal;
237
+ case less:
238
+ return greater;
239
+ case greater:
240
+ return less;
241
+ case greater_equal:
242
+ return less_equal;
243
+ case less_equal:
244
+ return greater_equal;
245
+ default:
246
+ return cc;
247
+ };
248
+ }
249
+
250
+
251
+ enum Hint {
252
+ no_hint = 0,
253
+ not_taken = 0x2e,
254
+ taken = 0x3e
255
+ };
256
+
257
+
258
+ // The result of negating a hint is as if the corresponding condition
259
+ // were negated by NegateCondition. That is, no_hint is mapped to
260
+ // itself and not_taken and taken are mapped to each other.
261
+ inline Hint NegateHint(Hint hint) {
262
+ return (hint == no_hint)
263
+ ? no_hint
264
+ : ((hint == not_taken) ? taken : not_taken);
265
+ }
266
+
267
+
268
+ // -----------------------------------------------------------------------------
269
+ // Machine instruction Immediates
270
+
271
+ class Immediate BASE_EMBEDDED {
272
+ public:
273
+ inline explicit Immediate(int x);
274
+ inline explicit Immediate(const ExternalReference& ext);
275
+ inline explicit Immediate(Handle<Object> handle);
276
+ inline explicit Immediate(Smi* value);
277
+ inline explicit Immediate(Address addr);
278
+
279
+ static Immediate CodeRelativeOffset(Label* label) {
280
+ return Immediate(label);
281
+ }
282
+
283
+ bool is_zero() const { return x_ == 0 && rmode_ == RelocInfo::NONE; }
284
+ bool is_int8() const {
285
+ return -128 <= x_ && x_ < 128 && rmode_ == RelocInfo::NONE;
286
+ }
287
+ bool is_int16() const {
288
+ return -32768 <= x_ && x_ < 32768 && rmode_ == RelocInfo::NONE;
289
+ }
290
+
291
+ private:
292
+ inline explicit Immediate(Label* value);
293
+
294
+ int x_;
295
+ RelocInfo::Mode rmode_;
296
+
297
+ friend class Assembler;
298
+ };
299
+
300
+
301
+ // -----------------------------------------------------------------------------
302
+ // Machine instruction Operands
303
+
304
+ enum ScaleFactor {
305
+ times_1 = 0,
306
+ times_2 = 1,
307
+ times_4 = 2,
308
+ times_8 = 3,
309
+ times_int_size = times_4,
310
+ times_half_pointer_size = times_2,
311
+ times_pointer_size = times_4,
312
+ times_twice_pointer_size = times_8
313
+ };
314
+
315
+
316
+ class Operand BASE_EMBEDDED {
317
+ public:
318
+ // reg
319
+ INLINE(explicit Operand(Register reg));
320
+
321
+ // XMM reg
322
+ INLINE(explicit Operand(XMMRegister xmm_reg));
323
+
324
+ // [disp/r]
325
+ INLINE(explicit Operand(int32_t disp, RelocInfo::Mode rmode));
326
+ // disp only must always be relocated
327
+
328
+ // [base + disp/r]
329
+ explicit Operand(Register base, int32_t disp,
330
+ RelocInfo::Mode rmode = RelocInfo::NONE);
331
+
332
+ // [base + index*scale + disp/r]
333
+ explicit Operand(Register base,
334
+ Register index,
335
+ ScaleFactor scale,
336
+ int32_t disp,
337
+ RelocInfo::Mode rmode = RelocInfo::NONE);
338
+
339
+ // [index*scale + disp/r]
340
+ explicit Operand(Register index,
341
+ ScaleFactor scale,
342
+ int32_t disp,
343
+ RelocInfo::Mode rmode = RelocInfo::NONE);
344
+
345
+ static Operand StaticVariable(const ExternalReference& ext) {
346
+ return Operand(reinterpret_cast<int32_t>(ext.address()),
347
+ RelocInfo::EXTERNAL_REFERENCE);
348
+ }
349
+
350
+ static Operand StaticArray(Register index,
351
+ ScaleFactor scale,
352
+ const ExternalReference& arr) {
353
+ return Operand(index, scale, reinterpret_cast<int32_t>(arr.address()),
354
+ RelocInfo::EXTERNAL_REFERENCE);
355
+ }
356
+
357
+ static Operand Cell(Handle<JSGlobalPropertyCell> cell) {
358
+ return Operand(reinterpret_cast<int32_t>(cell.location()),
359
+ RelocInfo::GLOBAL_PROPERTY_CELL);
360
+ }
361
+
362
+ // Returns true if this Operand is a wrapper for the specified register.
363
+ bool is_reg(Register reg) const;
364
+
365
+ private:
366
+ byte buf_[6];
367
+ // The number of bytes in buf_.
368
+ unsigned int len_;
369
+ // Only valid if len_ > 4.
370
+ RelocInfo::Mode rmode_;
371
+
372
+ // Set the ModRM byte without an encoded 'reg' register. The
373
+ // register is encoded later as part of the emit_operand operation.
374
+ inline void set_modrm(int mod, Register rm);
375
+
376
+ inline void set_sib(ScaleFactor scale, Register index, Register base);
377
+ inline void set_disp8(int8_t disp);
378
+ inline void set_dispr(int32_t disp, RelocInfo::Mode rmode);
379
+
380
+ friend class Assembler;
381
+ };
382
+
383
+
384
+ // -----------------------------------------------------------------------------
385
+ // A Displacement describes the 32bit immediate field of an instruction which
386
+ // may be used together with a Label in order to refer to a yet unknown code
387
+ // position. Displacements stored in the instruction stream are used to describe
388
+ // the instruction and to chain a list of instructions using the same Label.
389
+ // A Displacement contains 2 different fields:
390
+ //
391
+ // next field: position of next displacement in the chain (0 = end of list)
392
+ // type field: instruction type
393
+ //
394
+ // A next value of null (0) indicates the end of a chain (note that there can
395
+ // be no displacement at position zero, because there is always at least one
396
+ // instruction byte before the displacement).
397
+ //
398
+ // Displacement _data field layout
399
+ //
400
+ // |31.....2|1......0|
401
+ // [ next | type |
402
+
403
+ class Displacement BASE_EMBEDDED {
404
+ public:
405
+ enum Type {
406
+ UNCONDITIONAL_JUMP,
407
+ CODE_RELATIVE,
408
+ OTHER
409
+ };
410
+
411
+ int data() const { return data_; }
412
+ Type type() const { return TypeField::decode(data_); }
413
+ void next(Label* L) const {
414
+ int n = NextField::decode(data_);
415
+ n > 0 ? L->link_to(n) : L->Unuse();
416
+ }
417
+ void link_to(Label* L) { init(L, type()); }
418
+
419
+ explicit Displacement(int data) { data_ = data; }
420
+
421
+ Displacement(Label* L, Type type) { init(L, type); }
422
+
423
+ void print() {
424
+ PrintF("%s (%x) ", (type() == UNCONDITIONAL_JUMP ? "jmp" : "[other]"),
425
+ NextField::decode(data_));
426
+ }
427
+
428
+ private:
429
+ int data_;
430
+
431
+ class TypeField: public BitField<Type, 0, 2> {};
432
+ class NextField: public BitField<int, 2, 32-2> {};
433
+
434
+ void init(Label* L, Type type);
435
+ };
436
+
437
+
438
+
439
+ // CpuFeatures keeps track of which features are supported by the target CPU.
440
+ // Supported features must be enabled by a Scope before use.
441
+ // Example:
442
+ // if (CpuFeatures::IsSupported(SSE2)) {
443
+ // CpuFeatures::Scope fscope(SSE2);
444
+ // // Generate SSE2 floating point code.
445
+ // } else {
446
+ // // Generate standard x87 floating point code.
447
+ // }
448
+ class CpuFeatures : public AllStatic {
449
+ public:
450
+ // Detect features of the target CPU. If the portable flag is set,
451
+ // the method sets safe defaults if the serializer is enabled
452
+ // (snapshots must be portable).
453
+ static void Probe(bool portable);
454
+ static void Clear() { supported_ = 0; }
455
+
456
+ // Check whether a feature is supported by the target CPU.
457
+ static bool IsSupported(CpuFeature f) {
458
+ if (f == SSE2 && !FLAG_enable_sse2) return false;
459
+ if (f == SSE3 && !FLAG_enable_sse3) return false;
460
+ if (f == SSE4_1 && !FLAG_enable_sse4_1) return false;
461
+ if (f == CMOV && !FLAG_enable_cmov) return false;
462
+ if (f == RDTSC && !FLAG_enable_rdtsc) return false;
463
+ return (supported_ & (static_cast<uint64_t>(1) << f)) != 0;
464
+ }
465
+ // Check whether a feature is currently enabled.
466
+ static bool IsEnabled(CpuFeature f) {
467
+ return (enabled_ & (static_cast<uint64_t>(1) << f)) != 0;
468
+ }
469
+ // Enable a specified feature within a scope.
470
+ class Scope BASE_EMBEDDED {
471
+ #ifdef DEBUG
472
+ public:
473
+ explicit Scope(CpuFeature f) {
474
+ uint64_t mask = static_cast<uint64_t>(1) << f;
475
+ ASSERT(CpuFeatures::IsSupported(f));
476
+ ASSERT(!Serializer::enabled() || (found_by_runtime_probing_ & mask) == 0);
477
+ old_enabled_ = CpuFeatures::enabled_;
478
+ CpuFeatures::enabled_ |= mask;
479
+ }
480
+ ~Scope() { CpuFeatures::enabled_ = old_enabled_; }
481
+ private:
482
+ uint64_t old_enabled_;
483
+ #else
484
+ public:
485
+ explicit Scope(CpuFeature f) {}
486
+ #endif
487
+ };
488
+ private:
489
+ static uint64_t supported_;
490
+ static uint64_t enabled_;
491
+ static uint64_t found_by_runtime_probing_;
492
+ };
493
+
494
+
495
+ class Assembler : public Malloced {
496
+ private:
497
+ // We check before assembling an instruction that there is sufficient
498
+ // space to write an instruction and its relocation information.
499
+ // The relocation writer's position must be kGap bytes above the end of
500
+ // the generated instructions. This leaves enough space for the
501
+ // longest possible ia32 instruction, 15 bytes, and the longest possible
502
+ // relocation information encoding, RelocInfoWriter::kMaxLength == 16.
503
+ // (There is a 15 byte limit on ia32 instruction length that rules out some
504
+ // otherwise valid instructions.)
505
+ // This allows for a single, fast space check per instruction.
506
+ static const int kGap = 32;
507
+
508
+ public:
509
+ // Create an assembler. Instructions and relocation information are emitted
510
+ // into a buffer, with the instructions starting from the beginning and the
511
+ // relocation information starting from the end of the buffer. See CodeDesc
512
+ // for a detailed comment on the layout (globals.h).
513
+ //
514
+ // If the provided buffer is NULL, the assembler allocates and grows its own
515
+ // buffer, and buffer_size determines the initial buffer size. The buffer is
516
+ // owned by the assembler and deallocated upon destruction of the assembler.
517
+ //
518
+ // If the provided buffer is not NULL, the assembler uses the provided buffer
519
+ // for code generation and assumes its size to be buffer_size. If the buffer
520
+ // is too small, a fatal error occurs. No deallocation of the buffer is done
521
+ // upon destruction of the assembler.
522
+ Assembler(void* buffer, int buffer_size);
523
+ ~Assembler();
524
+
525
+ // GetCode emits any pending (non-emitted) code and fills the descriptor
526
+ // desc. GetCode() is idempotent; it returns the same result if no other
527
+ // Assembler functions are invoked in between GetCode() calls.
528
+ void GetCode(CodeDesc* desc);
529
+
530
+ // Read/Modify the code target in the branch/call instruction at pc.
531
+ inline static Address target_address_at(Address pc);
532
+ inline static void set_target_address_at(Address pc, Address target);
533
+
534
+ // This sets the branch destination (which is in the instruction on x86).
535
+ // This is for calls and branches within generated code.
536
+ inline static void set_target_at(Address instruction_payload,
537
+ Address target) {
538
+ set_target_address_at(instruction_payload, target);
539
+ }
540
+
541
+ // This sets the branch destination (which is in the instruction on x86).
542
+ // This is for calls and branches to runtime code.
543
+ inline static void set_external_target_at(Address instruction_payload,
544
+ Address target) {
545
+ set_target_address_at(instruction_payload, target);
546
+ }
547
+
548
+ static const int kCallTargetSize = kPointerSize;
549
+ static const int kExternalTargetSize = kPointerSize;
550
+
551
+ // Distance between the address of the code target in the call instruction
552
+ // and the return address
553
+ static const int kCallTargetAddressOffset = kPointerSize;
554
+ // Distance between start of patched return sequence and the emitted address
555
+ // to jump to.
556
+ static const int kPatchReturnSequenceAddressOffset = 1; // JMP imm32.
557
+
558
+ // Distance between start of patched debug break slot and the emitted address
559
+ // to jump to.
560
+ static const int kPatchDebugBreakSlotAddressOffset = 1; // JMP imm32.
561
+
562
+ static const int kCallInstructionLength = 5;
563
+ static const int kJSReturnSequenceLength = 6;
564
+
565
+ // The debug break slot must be able to contain a call instruction.
566
+ static const int kDebugBreakSlotLength = kCallInstructionLength;
567
+
568
+ // One byte opcode for test eax,0xXXXXXXXX.
569
+ static const byte kTestEaxByte = 0xA9;
570
+ // One byte opcode for test al, 0xXX.
571
+ static const byte kTestAlByte = 0xA8;
572
+ // One byte opcode for nop.
573
+ static const byte kNopByte = 0x90;
574
+
575
+ // One byte opcode for a short unconditional jump.
576
+ static const byte kJmpShortOpcode = 0xEB;
577
+ // One byte prefix for a short conditional jump.
578
+ static const byte kJccShortPrefix = 0x70;
579
+ static const byte kJncShortOpcode = kJccShortPrefix | not_carry;
580
+ static const byte kJcShortOpcode = kJccShortPrefix | carry;
581
+
582
+ // ---------------------------------------------------------------------------
583
+ // Code generation
584
+ //
585
+ // - function names correspond one-to-one to ia32 instruction mnemonics
586
+ // - unless specified otherwise, instructions operate on 32bit operands
587
+ // - instructions on 8bit (byte) operands/registers have a trailing '_b'
588
+ // - instructions on 16bit (word) operands/registers have a trailing '_w'
589
+ // - naming conflicts with C++ keywords are resolved via a trailing '_'
590
+
591
+ // NOTE ON INTERFACE: Currently, the interface is not very consistent
592
+ // in the sense that some operations (e.g. mov()) can be called in more
593
+ // the one way to generate the same instruction: The Register argument
594
+ // can in some cases be replaced with an Operand(Register) argument.
595
+ // This should be cleaned up and made more orthogonal. The questions
596
+ // is: should we always use Operands instead of Registers where an
597
+ // Operand is possible, or should we have a Register (overloaded) form
598
+ // instead? We must be careful to make sure that the selected instruction
599
+ // is obvious from the parameters to avoid hard-to-find code generation
600
+ // bugs.
601
+
602
+ // Insert the smallest number of nop instructions
603
+ // possible to align the pc offset to a multiple
604
+ // of m. m must be a power of 2.
605
+ void Align(int m);
606
+ // Aligns code to something that's optimal for a jump target for the platform.
607
+ void CodeTargetAlign();
608
+
609
+ // Stack
610
+ void pushad();
611
+ void popad();
612
+
613
+ void pushfd();
614
+ void popfd();
615
+
616
+ void push(const Immediate& x);
617
+ void push_imm32(int32_t imm32);
618
+ void push(Register src);
619
+ void push(const Operand& src);
620
+
621
+ void pop(Register dst);
622
+ void pop(const Operand& dst);
623
+
624
+ void enter(const Immediate& size);
625
+ void leave();
626
+
627
+ // Moves
628
+ void mov_b(Register dst, const Operand& src);
629
+ void mov_b(const Operand& dst, int8_t imm8);
630
+ void mov_b(const Operand& dst, Register src);
631
+
632
+ void mov_w(Register dst, const Operand& src);
633
+ void mov_w(const Operand& dst, Register src);
634
+
635
+ void mov(Register dst, int32_t imm32);
636
+ void mov(Register dst, const Immediate& x);
637
+ void mov(Register dst, Handle<Object> handle);
638
+ void mov(Register dst, const Operand& src);
639
+ void mov(Register dst, Register src);
640
+ void mov(const Operand& dst, const Immediate& x);
641
+ void mov(const Operand& dst, Handle<Object> handle);
642
+ void mov(const Operand& dst, Register src);
643
+
644
+ void movsx_b(Register dst, const Operand& src);
645
+
646
+ void movsx_w(Register dst, const Operand& src);
647
+
648
+ void movzx_b(Register dst, const Operand& src);
649
+
650
+ void movzx_w(Register dst, const Operand& src);
651
+
652
+ // Conditional moves
653
+ void cmov(Condition cc, Register dst, int32_t imm32);
654
+ void cmov(Condition cc, Register dst, Handle<Object> handle);
655
+ void cmov(Condition cc, Register dst, const Operand& src);
656
+
657
+ // Flag management.
658
+ void cld();
659
+
660
+ // Repetitive string instructions.
661
+ void rep_movs();
662
+ void rep_stos();
663
+ void stos();
664
+
665
+ // Exchange two registers
666
+ void xchg(Register dst, Register src);
667
+
668
+ // Arithmetics
669
+ void adc(Register dst, int32_t imm32);
670
+ void adc(Register dst, const Operand& src);
671
+
672
+ void add(Register dst, const Operand& src);
673
+ void add(const Operand& dst, const Immediate& x);
674
+
675
+ void and_(Register dst, int32_t imm32);
676
+ void and_(Register dst, const Immediate& x);
677
+ void and_(Register dst, const Operand& src);
678
+ void and_(const Operand& src, Register dst);
679
+ void and_(const Operand& dst, const Immediate& x);
680
+
681
+ void cmpb(const Operand& op, int8_t imm8);
682
+ void cmpb(Register src, const Operand& dst);
683
+ void cmpb(const Operand& dst, Register src);
684
+ void cmpb_al(const Operand& op);
685
+ void cmpw_ax(const Operand& op);
686
+ void cmpw(const Operand& op, Immediate imm16);
687
+ void cmp(Register reg, int32_t imm32);
688
+ void cmp(Register reg, Handle<Object> handle);
689
+ void cmp(Register reg, const Operand& op);
690
+ void cmp(const Operand& op, const Immediate& imm);
691
+ void cmp(const Operand& op, Handle<Object> handle);
692
+
693
+ void dec_b(Register dst);
694
+ void dec_b(const Operand& dst);
695
+
696
+ void dec(Register dst);
697
+ void dec(const Operand& dst);
698
+
699
+ void cdq();
700
+
701
+ void idiv(Register src);
702
+
703
+ // Signed multiply instructions.
704
+ void imul(Register src); // edx:eax = eax * src.
705
+ void imul(Register dst, const Operand& src); // dst = dst * src.
706
+ void imul(Register dst, Register src, int32_t imm32); // dst = src * imm32.
707
+
708
+ void inc(Register dst);
709
+ void inc(const Operand& dst);
710
+
711
+ void lea(Register dst, const Operand& src);
712
+
713
+ // Unsigned multiply instruction.
714
+ void mul(Register src); // edx:eax = eax * reg.
715
+
716
+ void neg(Register dst);
717
+
718
+ void not_(Register dst);
719
+
720
+ void or_(Register dst, int32_t imm32);
721
+ void or_(Register dst, const Operand& src);
722
+ void or_(const Operand& dst, Register src);
723
+ void or_(const Operand& dst, const Immediate& x);
724
+
725
+ void rcl(Register dst, uint8_t imm8);
726
+ void rcr(Register dst, uint8_t imm8);
727
+
728
+ void sar(Register dst, uint8_t imm8);
729
+ void sar_cl(Register dst);
730
+
731
+ void sbb(Register dst, const Operand& src);
732
+
733
+ void shld(Register dst, const Operand& src);
734
+
735
+ void shl(Register dst, uint8_t imm8);
736
+ void shl_cl(Register dst);
737
+
738
+ void shrd(Register dst, const Operand& src);
739
+
740
+ void shr(Register dst, uint8_t imm8);
741
+ void shr_cl(Register dst);
742
+
743
+ void subb(const Operand& dst, int8_t imm8);
744
+ void subb(Register dst, const Operand& src);
745
+ void sub(const Operand& dst, const Immediate& x);
746
+ void sub(Register dst, const Operand& src);
747
+ void sub(const Operand& dst, Register src);
748
+
749
+ void test(Register reg, const Immediate& imm);
750
+ void test(Register reg, const Operand& op);
751
+ void test_b(Register reg, const Operand& op);
752
+ void test(const Operand& op, const Immediate& imm);
753
+ void test_b(const Operand& op, uint8_t imm8);
754
+
755
+ void xor_(Register dst, int32_t imm32);
756
+ void xor_(Register dst, const Operand& src);
757
+ void xor_(const Operand& src, Register dst);
758
+ void xor_(const Operand& dst, const Immediate& x);
759
+
760
+ // Bit operations.
761
+ void bt(const Operand& dst, Register src);
762
+ void bts(const Operand& dst, Register src);
763
+
764
+ // Miscellaneous
765
+ void hlt();
766
+ void int3();
767
+ void nop();
768
+ void rdtsc();
769
+ void ret(int imm16);
770
+
771
+ // Label operations & relative jumps (PPUM Appendix D)
772
+ //
773
+ // Takes a branch opcode (cc) and a label (L) and generates
774
+ // either a backward branch or a forward branch and links it
775
+ // to the label fixup chain. Usage:
776
+ //
777
+ // Label L; // unbound label
778
+ // j(cc, &L); // forward branch to unbound label
779
+ // bind(&L); // bind label to the current pc
780
+ // j(cc, &L); // backward branch to bound label
781
+ // bind(&L); // illegal: a label may be bound only once
782
+ //
783
+ // Note: The same Label can be used for forward and backward branches
784
+ // but it may be bound only once.
785
+
786
+ void bind(Label* L); // binds an unbound label L to the current code position
787
+ void bind(NearLabel* L);
788
+
789
+ // Calls
790
+ void call(Label* L);
791
+ void call(byte* entry, RelocInfo::Mode rmode);
792
+ void call(const Operand& adr);
793
+ void call(Handle<Code> code, RelocInfo::Mode rmode);
794
+
795
+ // Jumps
796
+ void jmp(Label* L); // unconditional jump to L
797
+ void jmp(byte* entry, RelocInfo::Mode rmode);
798
+ void jmp(const Operand& adr);
799
+ void jmp(Handle<Code> code, RelocInfo::Mode rmode);
800
+
801
+ // Short jump
802
+ void jmp(NearLabel* L);
803
+
804
+ // Conditional jumps
805
+ void j(Condition cc, Label* L, Hint hint = no_hint);
806
+ void j(Condition cc, byte* entry, RelocInfo::Mode rmode, Hint hint = no_hint);
807
+ void j(Condition cc, Handle<Code> code, Hint hint = no_hint);
808
+
809
+ // Conditional short jump
810
+ void j(Condition cc, NearLabel* L, Hint hint = no_hint);
811
+
812
+ // Floating-point operations
813
+ void fld(int i);
814
+ void fstp(int i);
815
+
816
+ void fld1();
817
+ void fldz();
818
+ void fldpi();
819
+ void fldln2();
820
+
821
+ void fld_s(const Operand& adr);
822
+ void fld_d(const Operand& adr);
823
+
824
+ void fstp_s(const Operand& adr);
825
+ void fstp_d(const Operand& adr);
826
+ void fst_d(const Operand& adr);
827
+
828
+ void fild_s(const Operand& adr);
829
+ void fild_d(const Operand& adr);
830
+
831
+ void fist_s(const Operand& adr);
832
+
833
+ void fistp_s(const Operand& adr);
834
+ void fistp_d(const Operand& adr);
835
+
836
+ // The fisttp instructions require SSE3.
837
+ void fisttp_s(const Operand& adr);
838
+ void fisttp_d(const Operand& adr);
839
+
840
+ void fabs();
841
+ void fchs();
842
+ void fcos();
843
+ void fsin();
844
+ void fyl2x();
845
+
846
+ void fadd(int i);
847
+ void fsub(int i);
848
+ void fmul(int i);
849
+ void fdiv(int i);
850
+
851
+ void fisub_s(const Operand& adr);
852
+
853
+ void faddp(int i = 1);
854
+ void fsubp(int i = 1);
855
+ void fsubrp(int i = 1);
856
+ void fmulp(int i = 1);
857
+ void fdivp(int i = 1);
858
+ void fprem();
859
+ void fprem1();
860
+
861
+ void fxch(int i = 1);
862
+ void fincstp();
863
+ void ffree(int i = 0);
864
+
865
+ void ftst();
866
+ void fucomp(int i);
867
+ void fucompp();
868
+ void fucomi(int i);
869
+ void fucomip();
870
+ void fcompp();
871
+ void fnstsw_ax();
872
+ void fwait();
873
+ void fnclex();
874
+
875
+ void frndint();
876
+
877
+ void sahf();
878
+ void setcc(Condition cc, Register reg);
879
+
880
+ void cpuid();
881
+
882
+ // SSE2 instructions
883
+ void cvttss2si(Register dst, const Operand& src);
884
+ void cvttsd2si(Register dst, const Operand& src);
885
+
886
+ void cvtsi2sd(XMMRegister dst, const Operand& src);
887
+ void cvtss2sd(XMMRegister dst, XMMRegister src);
888
+
889
+ void addsd(XMMRegister dst, XMMRegister src);
890
+ void subsd(XMMRegister dst, XMMRegister src);
891
+ void mulsd(XMMRegister dst, XMMRegister src);
892
+ void divsd(XMMRegister dst, XMMRegister src);
893
+ void xorpd(XMMRegister dst, XMMRegister src);
894
+ void sqrtsd(XMMRegister dst, XMMRegister src);
895
+
896
+ void andpd(XMMRegister dst, XMMRegister src);
897
+
898
+ void ucomisd(XMMRegister dst, XMMRegister src);
899
+ void movmskpd(Register dst, XMMRegister src);
900
+
901
+ void cmpltsd(XMMRegister dst, XMMRegister src);
902
+
903
+ void movaps(XMMRegister dst, XMMRegister src);
904
+
905
+ void movdqa(XMMRegister dst, const Operand& src);
906
+ void movdqa(const Operand& dst, XMMRegister src);
907
+ void movdqu(XMMRegister dst, const Operand& src);
908
+ void movdqu(const Operand& dst, XMMRegister src);
909
+
910
+ // Use either movsd or movlpd.
911
+ void movdbl(XMMRegister dst, const Operand& src);
912
+ void movdbl(const Operand& dst, XMMRegister src);
913
+
914
+ void movd(XMMRegister dst, const Operand& src);
915
+ void movd(const Operand& src, XMMRegister dst);
916
+ void movsd(XMMRegister dst, XMMRegister src);
917
+
918
+ void pand(XMMRegister dst, XMMRegister src);
919
+ void pxor(XMMRegister dst, XMMRegister src);
920
+ void por(XMMRegister dst, XMMRegister src);
921
+ void ptest(XMMRegister dst, XMMRegister src);
922
+
923
+ void psllq(XMMRegister reg, int8_t shift);
924
+ void psllq(XMMRegister dst, XMMRegister src);
925
+ void psrlq(XMMRegister reg, int8_t shift);
926
+ void psrlq(XMMRegister dst, XMMRegister src);
927
+ void pshufd(XMMRegister dst, XMMRegister src, int8_t shuffle);
928
+ void pextrd(const Operand& dst, XMMRegister src, int8_t offset);
929
+ void pinsrd(XMMRegister dst, const Operand& src, int8_t offset);
930
+
931
+ // Parallel XMM operations.
932
+ void movntdqa(XMMRegister src, const Operand& dst);
933
+ void movntdq(const Operand& dst, XMMRegister src);
934
+ // Prefetch src position into cache level.
935
+ // Level 1, 2 or 3 specifies CPU cache level. Level 0 specifies a
936
+ // non-temporal
937
+ void prefetch(const Operand& src, int level);
938
+ // TODO(lrn): Need SFENCE for movnt?
939
+
940
+ // Debugging
941
+ void Print();
942
+
943
+ // Check the code size generated from label to here.
944
+ int SizeOfCodeGeneratedSince(Label* l) { return pc_offset() - l->pos(); }
945
+
946
+ // Mark address of the ExitJSFrame code.
947
+ void RecordJSReturn();
948
+
949
+ // Mark address of a debug break slot.
950
+ void RecordDebugBreakSlot();
951
+
952
+ // Record a comment relocation entry that can be used by a disassembler.
953
+ // Use --code-comments to enable, or provide "force = true" flag to always
954
+ // write a comment.
955
+ void RecordComment(const char* msg, bool force = false);
956
+
957
+ // Writes a single byte or word of data in the code stream. Used for
958
+ // inline tables, e.g., jump-tables.
959
+ void db(uint8_t data);
960
+ void dd(uint32_t data);
961
+
962
+ int pc_offset() const { return pc_ - buffer_; }
963
+
964
+ // Check if there is less than kGap bytes available in the buffer.
965
+ // If this is the case, we need to grow the buffer before emitting
966
+ // an instruction or relocation information.
967
+ inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; }
968
+
969
+ // Get the number of bytes available in the buffer.
970
+ inline int available_space() const { return reloc_info_writer.pos() - pc_; }
971
+
972
+ static bool IsNop(Address addr) { return *addr == 0x90; }
973
+
974
+ PositionsRecorder* positions_recorder() { return &positions_recorder_; }
975
+
976
+ int relocation_writer_size() {
977
+ return (buffer_ + buffer_size_) - reloc_info_writer.pos();
978
+ }
979
+
980
+ // Avoid overflows for displacements etc.
981
+ static const int kMaximalBufferSize = 512*MB;
982
+ static const int kMinimalBufferSize = 4*KB;
983
+
984
+ protected:
985
+ void movsd(XMMRegister dst, const Operand& src);
986
+ void movsd(const Operand& dst, XMMRegister src);
987
+
988
+ void emit_sse_operand(XMMRegister reg, const Operand& adr);
989
+ void emit_sse_operand(XMMRegister dst, XMMRegister src);
990
+ void emit_sse_operand(Register dst, XMMRegister src);
991
+
992
+ byte* addr_at(int pos) { return buffer_ + pos; }
993
+ private:
994
+ byte byte_at(int pos) { return buffer_[pos]; }
995
+ void set_byte_at(int pos, byte value) { buffer_[pos] = value; }
996
+ uint32_t long_at(int pos) {
997
+ return *reinterpret_cast<uint32_t*>(addr_at(pos));
998
+ }
999
+ void long_at_put(int pos, uint32_t x) {
1000
+ *reinterpret_cast<uint32_t*>(addr_at(pos)) = x;
1001
+ }
1002
+
1003
+ // code emission
1004
+ void GrowBuffer();
1005
+ inline void emit(uint32_t x);
1006
+ inline void emit(Handle<Object> handle);
1007
+ inline void emit(uint32_t x, RelocInfo::Mode rmode);
1008
+ inline void emit(const Immediate& x);
1009
+ inline void emit_w(const Immediate& x);
1010
+
1011
+ // Emit the code-object-relative offset of the label's position
1012
+ inline void emit_code_relative_offset(Label* label);
1013
+
1014
+ // instruction generation
1015
+ void emit_arith_b(int op1, int op2, Register dst, int imm8);
1016
+
1017
+ // Emit a basic arithmetic instruction (i.e. first byte of the family is 0x81)
1018
+ // with a given destination expression and an immediate operand. It attempts
1019
+ // to use the shortest encoding possible.
1020
+ // sel specifies the /n in the modrm byte (see the Intel PRM).
1021
+ void emit_arith(int sel, Operand dst, const Immediate& x);
1022
+
1023
+ void emit_operand(Register reg, const Operand& adr);
1024
+
1025
+ void emit_farith(int b1, int b2, int i);
1026
+
1027
+ // labels
1028
+ void print(Label* L);
1029
+ void bind_to(Label* L, int pos);
1030
+
1031
+ // displacements
1032
+ inline Displacement disp_at(Label* L);
1033
+ inline void disp_at_put(Label* L, Displacement disp);
1034
+ inline void emit_disp(Label* L, Displacement::Type type);
1035
+
1036
+ // record reloc info for current pc_
1037
+ void RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data = 0);
1038
+
1039
+ friend class CodePatcher;
1040
+ friend class EnsureSpace;
1041
+
1042
+ // Code buffer:
1043
+ // The buffer into which code and relocation info are generated.
1044
+ byte* buffer_;
1045
+ int buffer_size_;
1046
+ // True if the assembler owns the buffer, false if buffer is external.
1047
+ bool own_buffer_;
1048
+ // A previously allocated buffer of kMinimalBufferSize bytes, or NULL.
1049
+ static byte* spare_buffer_;
1050
+
1051
+ // code generation
1052
+ byte* pc_; // the program counter; moves forward
1053
+ RelocInfoWriter reloc_info_writer;
1054
+
1055
+ // push-pop elimination
1056
+ byte* last_pc_;
1057
+
1058
+ PositionsRecorder positions_recorder_;
1059
+
1060
+ friend class PositionsRecorder;
1061
+ };
1062
+
1063
+
1064
+ // Helper class that ensures that there is enough space for generating
1065
+ // instructions and relocation information. The constructor makes
1066
+ // sure that there is enough space and (in debug mode) the destructor
1067
+ // checks that we did not generate too much.
1068
+ class EnsureSpace BASE_EMBEDDED {
1069
+ public:
1070
+ explicit EnsureSpace(Assembler* assembler) : assembler_(assembler) {
1071
+ if (assembler_->overflow()) assembler_->GrowBuffer();
1072
+ #ifdef DEBUG
1073
+ space_before_ = assembler_->available_space();
1074
+ #endif
1075
+ }
1076
+
1077
+ #ifdef DEBUG
1078
+ ~EnsureSpace() {
1079
+ int bytes_generated = space_before_ - assembler_->available_space();
1080
+ ASSERT(bytes_generated < assembler_->kGap);
1081
+ }
1082
+ #endif
1083
+
1084
+ private:
1085
+ Assembler* assembler_;
1086
+ #ifdef DEBUG
1087
+ int space_before_;
1088
+ #endif
1089
+ };
1090
+
1091
+ } } // namespace v8::internal
1092
+
1093
+ #endif // V8_IA32_ASSEMBLER_IA32_H_