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,64 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_EXTENSIONS_EXPERIMENTAL_I18N_EXTENSION_H_
29
+ #define V8_EXTENSIONS_EXPERIMENTAL_I18N_EXTENSION_H_
30
+
31
+ #include <v8.h>
32
+
33
+ namespace v8 {
34
+ namespace internal {
35
+
36
+
37
+ class I18NExtension : public v8::Extension {
38
+ public:
39
+ I18NExtension() : v8::Extension("v8/i18n", kSource) {}
40
+ virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
41
+ v8::Handle<v8::String> name);
42
+
43
+ // Implementations of window.Locale methods.
44
+ static v8::Handle<v8::Value> JSLocale(const v8::Arguments& args);
45
+ static v8::Handle<v8::Value> JSAvailableLocales(const v8::Arguments& args);
46
+ static v8::Handle<v8::Value> JSMaximizedLocale(const v8::Arguments& args);
47
+ static v8::Handle<v8::Value> JSMinimizedLocale(const v8::Arguments& args);
48
+ static v8::Handle<v8::Value> JSDisplayLanguage(const v8::Arguments& args);
49
+ static v8::Handle<v8::Value> JSDisplayScript(const v8::Arguments& args);
50
+ static v8::Handle<v8::Value> JSDisplayRegion(const v8::Arguments& args);
51
+ static v8::Handle<v8::Value> JSDisplayName(const v8::Arguments& args);
52
+
53
+ // V8 code prefers Register, while Chrome and WebKit use get kind of methods.
54
+ static void Register();
55
+ static I18NExtension* get();
56
+
57
+ private:
58
+ static const char* const kSource;
59
+ static I18NExtension* extension_;
60
+ };
61
+
62
+ } } // namespace v8::internal
63
+
64
+ #endif // V8_EXTENSIONS_EXPERIMENTAL_I18N_EXTENSION_H_
@@ -0,0 +1,141 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "externalize-string-extension.h"
29
+
30
+ namespace v8 {
31
+ namespace internal {
32
+
33
+ template <typename Char, typename Base>
34
+ class SimpleStringResource : public Base {
35
+ public:
36
+ // Takes ownership of |data|.
37
+ SimpleStringResource(Char* data, size_t length)
38
+ : data_(data),
39
+ length_(length) {}
40
+
41
+ virtual ~SimpleStringResource() { delete[] data_; }
42
+
43
+ virtual const Char* data() const { return data_; }
44
+
45
+ virtual size_t length() const { return length_; }
46
+
47
+ private:
48
+ Char* const data_;
49
+ const size_t length_;
50
+ };
51
+
52
+
53
+ typedef SimpleStringResource<char, v8::String::ExternalAsciiStringResource>
54
+ SimpleAsciiStringResource;
55
+ typedef SimpleStringResource<uc16, v8::String::ExternalStringResource>
56
+ SimpleTwoByteStringResource;
57
+
58
+
59
+ const char* const ExternalizeStringExtension::kSource =
60
+ "native function externalizeString();"
61
+ "native function isAsciiString();";
62
+
63
+
64
+ v8::Handle<v8::FunctionTemplate> ExternalizeStringExtension::GetNativeFunction(
65
+ v8::Handle<v8::String> str) {
66
+ if (strcmp(*v8::String::AsciiValue(str), "externalizeString") == 0) {
67
+ return v8::FunctionTemplate::New(ExternalizeStringExtension::Externalize);
68
+ } else {
69
+ ASSERT(strcmp(*v8::String::AsciiValue(str), "isAsciiString") == 0);
70
+ return v8::FunctionTemplate::New(ExternalizeStringExtension::IsAscii);
71
+ }
72
+ }
73
+
74
+
75
+ v8::Handle<v8::Value> ExternalizeStringExtension::Externalize(
76
+ const v8::Arguments& args) {
77
+ if (args.Length() < 1 || !args[0]->IsString()) {
78
+ return v8::ThrowException(v8::String::New(
79
+ "First parameter to externalizeString() must be a string."));
80
+ }
81
+ bool force_two_byte = false;
82
+ if (args.Length() >= 2) {
83
+ if (args[1]->IsBoolean()) {
84
+ force_two_byte = args[1]->BooleanValue();
85
+ } else {
86
+ return v8::ThrowException(v8::String::New(
87
+ "Second parameter to externalizeString() must be a boolean."));
88
+ }
89
+ }
90
+ bool result = false;
91
+ Handle<String> string = Utils::OpenHandle(*args[0].As<v8::String>());
92
+ if (string->IsExternalString()) {
93
+ return v8::ThrowException(v8::String::New(
94
+ "externalizeString() can't externalize twice."));
95
+ }
96
+ if (string->IsAsciiRepresentation() && !force_two_byte) {
97
+ char* data = new char[string->length()];
98
+ String::WriteToFlat(*string, data, 0, string->length());
99
+ SimpleAsciiStringResource* resource = new SimpleAsciiStringResource(
100
+ data, string->length());
101
+ result = string->MakeExternal(resource);
102
+ if (result && !string->IsSymbol()) {
103
+ i::ExternalStringTable::AddString(*string);
104
+ }
105
+ if (!result) delete resource;
106
+ } else {
107
+ uc16* data = new uc16[string->length()];
108
+ String::WriteToFlat(*string, data, 0, string->length());
109
+ SimpleTwoByteStringResource* resource = new SimpleTwoByteStringResource(
110
+ data, string->length());
111
+ result = string->MakeExternal(resource);
112
+ if (result && !string->IsSymbol()) {
113
+ i::ExternalStringTable::AddString(*string);
114
+ }
115
+ if (!result) delete resource;
116
+ }
117
+ if (!result) {
118
+ return v8::ThrowException(v8::String::New("externalizeString() failed."));
119
+ }
120
+ return v8::Undefined();
121
+ }
122
+
123
+
124
+ v8::Handle<v8::Value> ExternalizeStringExtension::IsAscii(
125
+ const v8::Arguments& args) {
126
+ if (args.Length() != 1 || !args[0]->IsString()) {
127
+ return v8::ThrowException(v8::String::New(
128
+ "isAsciiString() requires a single string argument."));
129
+ }
130
+ return Utils::OpenHandle(*args[0].As<v8::String>())->IsAsciiRepresentation() ?
131
+ v8::True() : v8::False();
132
+ }
133
+
134
+
135
+ void ExternalizeStringExtension::Register() {
136
+ static ExternalizeStringExtension externalize_extension;
137
+ static v8::DeclareExtension externalize_extension_declaration(
138
+ &externalize_extension);
139
+ }
140
+
141
+ } } // namespace v8::internal
@@ -0,0 +1,50 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_EXTENSIONS_EXTERNALIZE_STRING_EXTENSION_H_
29
+ #define V8_EXTENSIONS_EXTERNALIZE_STRING_EXTENSION_H_
30
+
31
+ #include "v8.h"
32
+
33
+ namespace v8 {
34
+ namespace internal {
35
+
36
+ class ExternalizeStringExtension : public v8::Extension {
37
+ public:
38
+ ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
39
+ virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40
+ v8::Handle<v8::String> name);
41
+ static v8::Handle<v8::Value> Externalize(const v8::Arguments& args);
42
+ static v8::Handle<v8::Value> IsAscii(const v8::Arguments& args);
43
+ static void Register();
44
+ private:
45
+ static const char* const kSource;
46
+ };
47
+
48
+ } } // namespace v8::internal
49
+
50
+ #endif // V8_EXTENSIONS_EXTERNALIZE_STRING_EXTENSION_H_
@@ -0,0 +1,58 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "gc-extension.h"
29
+
30
+ namespace v8 {
31
+ namespace internal {
32
+
33
+ const char* const GCExtension::kSource = "native function gc();";
34
+
35
+
36
+ v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunction(
37
+ v8::Handle<v8::String> str) {
38
+ return v8::FunctionTemplate::New(GCExtension::GC);
39
+ }
40
+
41
+
42
+ v8::Handle<v8::Value> GCExtension::GC(const v8::Arguments& args) {
43
+ bool compact = false;
44
+ // All allocation spaces other than NEW_SPACE have the same effect.
45
+ if (args.Length() >= 1 && args[0]->IsBoolean()) {
46
+ compact = args[0]->BooleanValue();
47
+ }
48
+ Heap::CollectAllGarbage(compact);
49
+ return v8::Undefined();
50
+ }
51
+
52
+
53
+ void GCExtension::Register() {
54
+ static GCExtension gc_extension;
55
+ static v8::DeclareExtension gc_extension_declaration(&gc_extension);
56
+ }
57
+
58
+ } } // namespace v8::internal
@@ -0,0 +1,49 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_EXTENSIONS_GC_EXTENSION_H_
29
+ #define V8_EXTENSIONS_GC_EXTENSION_H_
30
+
31
+ #include "v8.h"
32
+
33
+ namespace v8 {
34
+ namespace internal {
35
+
36
+ class GCExtension : public v8::Extension {
37
+ public:
38
+ GCExtension() : v8::Extension("v8/gc", kSource) {}
39
+ virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40
+ v8::Handle<v8::String> name);
41
+ static v8::Handle<v8::Value> GC(const v8::Arguments& args);
42
+ static void Register();
43
+ private:
44
+ static const char* const kSource;
45
+ };
46
+
47
+ } } // namespace v8::internal
48
+
49
+ #endif // V8_EXTENSIONS_GC_EXTENSION_H_
@@ -0,0 +1,1087 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "v8.h"
29
+
30
+ #include "api.h"
31
+ #include "debug.h"
32
+ #include "execution.h"
33
+ #include "factory.h"
34
+ #include "macro-assembler.h"
35
+ #include "objects.h"
36
+ #include "objects-visiting.h"
37
+
38
+ namespace v8 {
39
+ namespace internal {
40
+
41
+
42
+ Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
43
+ ASSERT(0 <= size);
44
+ CALL_HEAP_FUNCTION(Heap::AllocateFixedArray(size, pretenure), FixedArray);
45
+ }
46
+
47
+
48
+ Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
49
+ PretenureFlag pretenure) {
50
+ ASSERT(0 <= size);
51
+ CALL_HEAP_FUNCTION(Heap::AllocateFixedArrayWithHoles(size, pretenure),
52
+ FixedArray);
53
+ }
54
+
55
+
56
+ Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
57
+ ASSERT(0 <= at_least_space_for);
58
+ CALL_HEAP_FUNCTION(StringDictionary::Allocate(at_least_space_for),
59
+ StringDictionary);
60
+ }
61
+
62
+
63
+ Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) {
64
+ ASSERT(0 <= at_least_space_for);
65
+ CALL_HEAP_FUNCTION(NumberDictionary::Allocate(at_least_space_for),
66
+ NumberDictionary);
67
+ }
68
+
69
+
70
+ Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
71
+ ASSERT(0 <= number_of_descriptors);
72
+ CALL_HEAP_FUNCTION(DescriptorArray::Allocate(number_of_descriptors),
73
+ DescriptorArray);
74
+ }
75
+
76
+
77
+ Handle<DeoptimizationInputData> Factory::NewDeoptimizationInputData(
78
+ int deopt_entry_count,
79
+ PretenureFlag pretenure) {
80
+ ASSERT(deopt_entry_count > 0);
81
+ CALL_HEAP_FUNCTION(DeoptimizationInputData::Allocate(deopt_entry_count,
82
+ pretenure),
83
+ DeoptimizationInputData);
84
+ }
85
+
86
+
87
+ Handle<DeoptimizationOutputData> Factory::NewDeoptimizationOutputData(
88
+ int deopt_entry_count,
89
+ PretenureFlag pretenure) {
90
+ ASSERT(deopt_entry_count > 0);
91
+ CALL_HEAP_FUNCTION(DeoptimizationOutputData::Allocate(deopt_entry_count,
92
+ pretenure),
93
+ DeoptimizationOutputData);
94
+ }
95
+
96
+
97
+ // Symbols are created in the old generation (data space).
98
+ Handle<String> Factory::LookupSymbol(Vector<const char> string) {
99
+ CALL_HEAP_FUNCTION(Heap::LookupSymbol(string), String);
100
+ }
101
+
102
+ Handle<String> Factory::LookupAsciiSymbol(Vector<const char> string) {
103
+ CALL_HEAP_FUNCTION(Heap::LookupAsciiSymbol(string), String);
104
+ }
105
+
106
+ Handle<String> Factory::LookupTwoByteSymbol(Vector<const uc16> string) {
107
+ CALL_HEAP_FUNCTION(Heap::LookupTwoByteSymbol(string), String);
108
+ }
109
+
110
+
111
+ Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
112
+ PretenureFlag pretenure) {
113
+ CALL_HEAP_FUNCTION(Heap::AllocateStringFromAscii(string, pretenure), String);
114
+ }
115
+
116
+ Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
117
+ PretenureFlag pretenure) {
118
+ CALL_HEAP_FUNCTION(Heap::AllocateStringFromUtf8(string, pretenure), String);
119
+ }
120
+
121
+
122
+ Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
123
+ PretenureFlag pretenure) {
124
+ CALL_HEAP_FUNCTION(Heap::AllocateStringFromTwoByte(string, pretenure),
125
+ String);
126
+ }
127
+
128
+
129
+ Handle<String> Factory::NewRawAsciiString(int length,
130
+ PretenureFlag pretenure) {
131
+ CALL_HEAP_FUNCTION(Heap::AllocateRawAsciiString(length, pretenure), String);
132
+ }
133
+
134
+
135
+ Handle<String> Factory::NewRawTwoByteString(int length,
136
+ PretenureFlag pretenure) {
137
+ CALL_HEAP_FUNCTION(Heap::AllocateRawTwoByteString(length, pretenure), String);
138
+ }
139
+
140
+
141
+ Handle<String> Factory::NewConsString(Handle<String> first,
142
+ Handle<String> second) {
143
+ CALL_HEAP_FUNCTION(Heap::AllocateConsString(*first, *second), String);
144
+ }
145
+
146
+
147
+ Handle<String> Factory::NewSubString(Handle<String> str,
148
+ int begin,
149
+ int end) {
150
+ CALL_HEAP_FUNCTION(str->SubString(begin, end), String);
151
+ }
152
+
153
+
154
+ Handle<String> Factory::NewExternalStringFromAscii(
155
+ ExternalAsciiString::Resource* resource) {
156
+ CALL_HEAP_FUNCTION(Heap::AllocateExternalStringFromAscii(resource), String);
157
+ }
158
+
159
+
160
+ Handle<String> Factory::NewExternalStringFromTwoByte(
161
+ ExternalTwoByteString::Resource* resource) {
162
+ CALL_HEAP_FUNCTION(Heap::AllocateExternalStringFromTwoByte(resource), String);
163
+ }
164
+
165
+
166
+ Handle<Context> Factory::NewGlobalContext() {
167
+ CALL_HEAP_FUNCTION(Heap::AllocateGlobalContext(), Context);
168
+ }
169
+
170
+
171
+ Handle<Context> Factory::NewFunctionContext(int length,
172
+ Handle<JSFunction> closure) {
173
+ CALL_HEAP_FUNCTION(Heap::AllocateFunctionContext(length, *closure), Context);
174
+ }
175
+
176
+
177
+ Handle<Context> Factory::NewWithContext(Handle<Context> previous,
178
+ Handle<JSObject> extension,
179
+ bool is_catch_context) {
180
+ CALL_HEAP_FUNCTION(Heap::AllocateWithContext(*previous,
181
+ *extension,
182
+ is_catch_context),
183
+ Context);
184
+ }
185
+
186
+
187
+ Handle<Struct> Factory::NewStruct(InstanceType type) {
188
+ CALL_HEAP_FUNCTION(Heap::AllocateStruct(type), Struct);
189
+ }
190
+
191
+
192
+ Handle<AccessorInfo> Factory::NewAccessorInfo() {
193
+ Handle<AccessorInfo> info =
194
+ Handle<AccessorInfo>::cast(NewStruct(ACCESSOR_INFO_TYPE));
195
+ info->set_flag(0); // Must clear the flag, it was initialized as undefined.
196
+ return info;
197
+ }
198
+
199
+
200
+ Handle<Script> Factory::NewScript(Handle<String> source) {
201
+ // Generate id for this script.
202
+ int id;
203
+ if (Heap::last_script_id()->IsUndefined()) {
204
+ // Script ids start from one.
205
+ id = 1;
206
+ } else {
207
+ // Increment id, wrap when positive smi is exhausted.
208
+ id = Smi::cast(Heap::last_script_id())->value();
209
+ id++;
210
+ if (!Smi::IsValid(id)) {
211
+ id = 0;
212
+ }
213
+ }
214
+ Heap::SetLastScriptId(Smi::FromInt(id));
215
+
216
+ // Create and initialize script object.
217
+ Handle<Proxy> wrapper = Factory::NewProxy(0, TENURED);
218
+ Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE));
219
+ script->set_source(*source);
220
+ script->set_name(Heap::undefined_value());
221
+ script->set_id(Heap::last_script_id());
222
+ script->set_line_offset(Smi::FromInt(0));
223
+ script->set_column_offset(Smi::FromInt(0));
224
+ script->set_data(Heap::undefined_value());
225
+ script->set_context_data(Heap::undefined_value());
226
+ script->set_type(Smi::FromInt(Script::TYPE_NORMAL));
227
+ script->set_compilation_type(Smi::FromInt(Script::COMPILATION_TYPE_HOST));
228
+ script->set_wrapper(*wrapper);
229
+ script->set_line_ends(Heap::undefined_value());
230
+ script->set_eval_from_shared(Heap::undefined_value());
231
+ script->set_eval_from_instructions_offset(Smi::FromInt(0));
232
+
233
+ return script;
234
+ }
235
+
236
+
237
+ Handle<Proxy> Factory::NewProxy(Address addr, PretenureFlag pretenure) {
238
+ CALL_HEAP_FUNCTION(Heap::AllocateProxy(addr, pretenure), Proxy);
239
+ }
240
+
241
+
242
+ Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) {
243
+ return NewProxy((Address) desc, TENURED);
244
+ }
245
+
246
+
247
+ Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
248
+ ASSERT(0 <= length);
249
+ CALL_HEAP_FUNCTION(Heap::AllocateByteArray(length, pretenure), ByteArray);
250
+ }
251
+
252
+
253
+ Handle<PixelArray> Factory::NewPixelArray(int length,
254
+ uint8_t* external_pointer,
255
+ PretenureFlag pretenure) {
256
+ ASSERT(0 <= length);
257
+ CALL_HEAP_FUNCTION(Heap::AllocatePixelArray(length,
258
+ external_pointer,
259
+ pretenure), PixelArray);
260
+ }
261
+
262
+
263
+ Handle<ExternalArray> Factory::NewExternalArray(int length,
264
+ ExternalArrayType array_type,
265
+ void* external_pointer,
266
+ PretenureFlag pretenure) {
267
+ ASSERT(0 <= length);
268
+ CALL_HEAP_FUNCTION(Heap::AllocateExternalArray(length,
269
+ array_type,
270
+ external_pointer,
271
+ pretenure), ExternalArray);
272
+ }
273
+
274
+
275
+ Handle<JSGlobalPropertyCell> Factory::NewJSGlobalPropertyCell(
276
+ Handle<Object> value) {
277
+ CALL_HEAP_FUNCTION(Heap::AllocateJSGlobalPropertyCell(*value),
278
+ JSGlobalPropertyCell);
279
+ }
280
+
281
+
282
+ Handle<Map> Factory::NewMap(InstanceType type, int instance_size) {
283
+ CALL_HEAP_FUNCTION(Heap::AllocateMap(type, instance_size), Map);
284
+ }
285
+
286
+
287
+ Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) {
288
+ CALL_HEAP_FUNCTION(Heap::AllocateFunctionPrototype(*function), JSObject);
289
+ }
290
+
291
+
292
+ Handle<Map> Factory::CopyMapDropDescriptors(Handle<Map> src) {
293
+ CALL_HEAP_FUNCTION(src->CopyDropDescriptors(), Map);
294
+ }
295
+
296
+
297
+ Handle<Map> Factory::CopyMap(Handle<Map> src,
298
+ int extra_inobject_properties) {
299
+ Handle<Map> copy = CopyMapDropDescriptors(src);
300
+ // Check that we do not overflow the instance size when adding the
301
+ // extra inobject properties.
302
+ int instance_size_delta = extra_inobject_properties * kPointerSize;
303
+ int max_instance_size_delta =
304
+ JSObject::kMaxInstanceSize - copy->instance_size();
305
+ if (instance_size_delta > max_instance_size_delta) {
306
+ // If the instance size overflows, we allocate as many properties
307
+ // as we can as inobject properties.
308
+ instance_size_delta = max_instance_size_delta;
309
+ extra_inobject_properties = max_instance_size_delta >> kPointerSizeLog2;
310
+ }
311
+ // Adjust the map with the extra inobject properties.
312
+ int inobject_properties =
313
+ copy->inobject_properties() + extra_inobject_properties;
314
+ copy->set_inobject_properties(inobject_properties);
315
+ copy->set_unused_property_fields(inobject_properties);
316
+ copy->set_instance_size(copy->instance_size() + instance_size_delta);
317
+ copy->set_visitor_id(StaticVisitorBase::GetVisitorId(*copy));
318
+ return copy;
319
+ }
320
+
321
+
322
+ Handle<Map> Factory::CopyMapDropTransitions(Handle<Map> src) {
323
+ CALL_HEAP_FUNCTION(src->CopyDropTransitions(), Map);
324
+ }
325
+
326
+
327
+ Handle<Map> Factory::GetFastElementsMap(Handle<Map> src) {
328
+ CALL_HEAP_FUNCTION(src->GetFastElementsMap(), Map);
329
+ }
330
+
331
+
332
+ Handle<Map> Factory::GetSlowElementsMap(Handle<Map> src) {
333
+ CALL_HEAP_FUNCTION(src->GetSlowElementsMap(), Map);
334
+ }
335
+
336
+
337
+ Handle<Map> Factory::GetPixelArrayElementsMap(Handle<Map> src) {
338
+ CALL_HEAP_FUNCTION(src->GetPixelArrayElementsMap(), Map);
339
+ }
340
+
341
+
342
+ Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
343
+ CALL_HEAP_FUNCTION(array->Copy(), FixedArray);
344
+ }
345
+
346
+
347
+ Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo(
348
+ Handle<SharedFunctionInfo> function_info,
349
+ Handle<Map> function_map,
350
+ PretenureFlag pretenure) {
351
+ CALL_HEAP_FUNCTION(Heap::AllocateFunction(*function_map,
352
+ *function_info,
353
+ Heap::the_hole_value(),
354
+ pretenure),
355
+ JSFunction);
356
+ }
357
+
358
+
359
+ Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo(
360
+ Handle<SharedFunctionInfo> function_info,
361
+ Handle<Context> context,
362
+ PretenureFlag pretenure) {
363
+ Handle<JSFunction> result = BaseNewFunctionFromSharedFunctionInfo(
364
+ function_info, Top::function_map(), pretenure);
365
+ result->set_context(*context);
366
+ int number_of_literals = function_info->num_literals();
367
+ Handle<FixedArray> literals =
368
+ Factory::NewFixedArray(number_of_literals, pretenure);
369
+ if (number_of_literals > 0) {
370
+ // Store the object, regexp and array functions in the literals
371
+ // array prefix. These functions will be used when creating
372
+ // object, regexp and array literals in this function.
373
+ literals->set(JSFunction::kLiteralGlobalContextIndex,
374
+ context->global_context());
375
+ }
376
+ result->set_literals(*literals);
377
+ result->set_next_function_link(Heap::undefined_value());
378
+
379
+ if (V8::UseCrankshaft() &&
380
+ FLAG_always_opt &&
381
+ result->is_compiled() &&
382
+ !function_info->is_toplevel() &&
383
+ function_info->allows_lazy_compilation()) {
384
+ result->MarkForLazyRecompilation();
385
+ }
386
+ return result;
387
+ }
388
+
389
+
390
+ Handle<Object> Factory::NewNumber(double value,
391
+ PretenureFlag pretenure) {
392
+ CALL_HEAP_FUNCTION(Heap::NumberFromDouble(value, pretenure), Object);
393
+ }
394
+
395
+
396
+ Handle<Object> Factory::NewNumberFromInt(int value) {
397
+ CALL_HEAP_FUNCTION(Heap::NumberFromInt32(value), Object);
398
+ }
399
+
400
+
401
+ Handle<Object> Factory::NewNumberFromUint(uint32_t value) {
402
+ CALL_HEAP_FUNCTION(Heap::NumberFromUint32(value), Object);
403
+ }
404
+
405
+
406
+ Handle<JSObject> Factory::NewNeanderObject() {
407
+ CALL_HEAP_FUNCTION(Heap::AllocateJSObjectFromMap(Heap::neander_map()),
408
+ JSObject);
409
+ }
410
+
411
+
412
+ Handle<Object> Factory::NewTypeError(const char* type,
413
+ Vector< Handle<Object> > args) {
414
+ return NewError("MakeTypeError", type, args);
415
+ }
416
+
417
+
418
+ Handle<Object> Factory::NewTypeError(Handle<String> message) {
419
+ return NewError("$TypeError", message);
420
+ }
421
+
422
+
423
+ Handle<Object> Factory::NewRangeError(const char* type,
424
+ Vector< Handle<Object> > args) {
425
+ return NewError("MakeRangeError", type, args);
426
+ }
427
+
428
+
429
+ Handle<Object> Factory::NewRangeError(Handle<String> message) {
430
+ return NewError("$RangeError", message);
431
+ }
432
+
433
+
434
+ Handle<Object> Factory::NewSyntaxError(const char* type, Handle<JSArray> args) {
435
+ return NewError("MakeSyntaxError", type, args);
436
+ }
437
+
438
+
439
+ Handle<Object> Factory::NewSyntaxError(Handle<String> message) {
440
+ return NewError("$SyntaxError", message);
441
+ }
442
+
443
+
444
+ Handle<Object> Factory::NewReferenceError(const char* type,
445
+ Vector< Handle<Object> > args) {
446
+ return NewError("MakeReferenceError", type, args);
447
+ }
448
+
449
+
450
+ Handle<Object> Factory::NewReferenceError(Handle<String> message) {
451
+ return NewError("$ReferenceError", message);
452
+ }
453
+
454
+
455
+ Handle<Object> Factory::NewError(const char* maker, const char* type,
456
+ Vector< Handle<Object> > args) {
457
+ v8::HandleScope scope; // Instantiate a closeable HandleScope for EscapeFrom.
458
+ Handle<FixedArray> array = Factory::NewFixedArray(args.length());
459
+ for (int i = 0; i < args.length(); i++) {
460
+ array->set(i, *args[i]);
461
+ }
462
+ Handle<JSArray> object = Factory::NewJSArrayWithElements(array);
463
+ Handle<Object> result = NewError(maker, type, object);
464
+ return result.EscapeFrom(&scope);
465
+ }
466
+
467
+
468
+ Handle<Object> Factory::NewEvalError(const char* type,
469
+ Vector< Handle<Object> > args) {
470
+ return NewError("MakeEvalError", type, args);
471
+ }
472
+
473
+
474
+ Handle<Object> Factory::NewError(const char* type,
475
+ Vector< Handle<Object> > args) {
476
+ return NewError("MakeError", type, args);
477
+ }
478
+
479
+
480
+ Handle<Object> Factory::NewError(const char* maker,
481
+ const char* type,
482
+ Handle<JSArray> args) {
483
+ Handle<String> make_str = Factory::LookupAsciiSymbol(maker);
484
+ Handle<Object> fun_obj(Top::builtins()->GetPropertyNoExceptionThrown(
485
+ *make_str));
486
+ // If the builtins haven't been properly configured yet this error
487
+ // constructor may not have been defined. Bail out.
488
+ if (!fun_obj->IsJSFunction())
489
+ return Factory::undefined_value();
490
+ Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
491
+ Handle<Object> type_obj = Factory::LookupAsciiSymbol(type);
492
+ Object** argv[2] = { type_obj.location(),
493
+ Handle<Object>::cast(args).location() };
494
+
495
+ // Invoke the JavaScript factory method. If an exception is thrown while
496
+ // running the factory method, use the exception as the result.
497
+ bool caught_exception;
498
+ Handle<Object> result = Execution::TryCall(fun,
499
+ Top::builtins(),
500
+ 2,
501
+ argv,
502
+ &caught_exception);
503
+ return result;
504
+ }
505
+
506
+
507
+ Handle<Object> Factory::NewError(Handle<String> message) {
508
+ return NewError("$Error", message);
509
+ }
510
+
511
+
512
+ Handle<Object> Factory::NewError(const char* constructor,
513
+ Handle<String> message) {
514
+ Handle<String> constr = Factory::LookupAsciiSymbol(constructor);
515
+ Handle<JSFunction> fun =
516
+ Handle<JSFunction>(
517
+ JSFunction::cast(
518
+ Top::builtins()->GetPropertyNoExceptionThrown(*constr)));
519
+ Object** argv[1] = { Handle<Object>::cast(message).location() };
520
+
521
+ // Invoke the JavaScript factory method. If an exception is thrown while
522
+ // running the factory method, use the exception as the result.
523
+ bool caught_exception;
524
+ Handle<Object> result = Execution::TryCall(fun,
525
+ Top::builtins(),
526
+ 1,
527
+ argv,
528
+ &caught_exception);
529
+ return result;
530
+ }
531
+
532
+
533
+ Handle<JSFunction> Factory::NewFunction(Handle<String> name,
534
+ InstanceType type,
535
+ int instance_size,
536
+ Handle<Code> code,
537
+ bool force_initial_map) {
538
+ // Allocate the function
539
+ Handle<JSFunction> function = NewFunction(name, the_hole_value());
540
+
541
+ // Setup the code pointer in both the shared function info and in
542
+ // the function itself.
543
+ function->shared()->set_code(*code);
544
+ function->set_code(*code);
545
+
546
+ if (force_initial_map ||
547
+ type != JS_OBJECT_TYPE ||
548
+ instance_size != JSObject::kHeaderSize) {
549
+ Handle<Map> initial_map = NewMap(type, instance_size);
550
+ Handle<JSObject> prototype = NewFunctionPrototype(function);
551
+ initial_map->set_prototype(*prototype);
552
+ function->set_initial_map(*initial_map);
553
+ initial_map->set_constructor(*function);
554
+ } else {
555
+ ASSERT(!function->has_initial_map());
556
+ ASSERT(!function->has_prototype());
557
+ }
558
+
559
+ return function;
560
+ }
561
+
562
+
563
+ Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
564
+ InstanceType type,
565
+ int instance_size,
566
+ Handle<JSObject> prototype,
567
+ Handle<Code> code,
568
+ bool force_initial_map) {
569
+ // Allocate the function.
570
+ Handle<JSFunction> function = NewFunction(name, prototype);
571
+
572
+ // Setup the code pointer in both the shared function info and in
573
+ // the function itself.
574
+ function->shared()->set_code(*code);
575
+ function->set_code(*code);
576
+
577
+ if (force_initial_map ||
578
+ type != JS_OBJECT_TYPE ||
579
+ instance_size != JSObject::kHeaderSize) {
580
+ Handle<Map> initial_map = NewMap(type, instance_size);
581
+ function->set_initial_map(*initial_map);
582
+ initial_map->set_constructor(*function);
583
+ }
584
+
585
+ // Set function.prototype and give the prototype a constructor
586
+ // property that refers to the function.
587
+ SetPrototypeProperty(function, prototype);
588
+ // Currently safe because it is only invoked from Genesis.
589
+ SetLocalPropertyNoThrow(
590
+ prototype, Factory::constructor_symbol(), function, DONT_ENUM);
591
+ return function;
592
+ }
593
+
594
+
595
+ Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name,
596
+ Handle<Code> code) {
597
+ Handle<JSFunction> function = NewFunctionWithoutPrototype(name);
598
+ function->shared()->set_code(*code);
599
+ function->set_code(*code);
600
+ ASSERT(!function->has_initial_map());
601
+ ASSERT(!function->has_prototype());
602
+ return function;
603
+ }
604
+
605
+
606
+ Handle<Code> Factory::NewCode(const CodeDesc& desc,
607
+ Code::Flags flags,
608
+ Handle<Object> self_ref) {
609
+ CALL_HEAP_FUNCTION(Heap::CreateCode(desc, flags, self_ref), Code);
610
+ }
611
+
612
+
613
+ Handle<Code> Factory::CopyCode(Handle<Code> code) {
614
+ CALL_HEAP_FUNCTION(Heap::CopyCode(*code), Code);
615
+ }
616
+
617
+
618
+ Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
619
+ CALL_HEAP_FUNCTION(Heap::CopyCode(*code, reloc_info), Code);
620
+ }
621
+
622
+
623
+ MUST_USE_RESULT static inline MaybeObject* DoCopyInsert(
624
+ DescriptorArray* array,
625
+ String* key,
626
+ Object* value,
627
+ PropertyAttributes attributes) {
628
+ CallbacksDescriptor desc(key, value, attributes);
629
+ MaybeObject* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
630
+ return obj;
631
+ }
632
+
633
+
634
+ // Allocate the new array.
635
+ Handle<DescriptorArray> Factory::CopyAppendProxyDescriptor(
636
+ Handle<DescriptorArray> array,
637
+ Handle<String> key,
638
+ Handle<Object> value,
639
+ PropertyAttributes attributes) {
640
+ CALL_HEAP_FUNCTION(DoCopyInsert(*array, *key, *value, attributes),
641
+ DescriptorArray);
642
+ }
643
+
644
+
645
+ Handle<String> Factory::SymbolFromString(Handle<String> value) {
646
+ CALL_HEAP_FUNCTION(Heap::LookupSymbol(*value), String);
647
+ }
648
+
649
+
650
+ Handle<DescriptorArray> Factory::CopyAppendCallbackDescriptors(
651
+ Handle<DescriptorArray> array,
652
+ Handle<Object> descriptors) {
653
+ v8::NeanderArray callbacks(descriptors);
654
+ int nof_callbacks = callbacks.length();
655
+ Handle<DescriptorArray> result =
656
+ NewDescriptorArray(array->number_of_descriptors() + nof_callbacks);
657
+
658
+ // Number of descriptors added to the result so far.
659
+ int descriptor_count = 0;
660
+
661
+ // Copy the descriptors from the array.
662
+ for (int i = 0; i < array->number_of_descriptors(); i++) {
663
+ if (array->GetType(i) != NULL_DESCRIPTOR) {
664
+ result->CopyFrom(descriptor_count++, *array, i);
665
+ }
666
+ }
667
+
668
+ // Number of duplicates detected.
669
+ int duplicates = 0;
670
+
671
+ // Fill in new callback descriptors. Process the callbacks from
672
+ // back to front so that the last callback with a given name takes
673
+ // precedence over previously added callbacks with that name.
674
+ for (int i = nof_callbacks - 1; i >= 0; i--) {
675
+ Handle<AccessorInfo> entry =
676
+ Handle<AccessorInfo>(AccessorInfo::cast(callbacks.get(i)));
677
+ // Ensure the key is a symbol before writing into the instance descriptor.
678
+ Handle<String> key =
679
+ SymbolFromString(Handle<String>(String::cast(entry->name())));
680
+ // Check if a descriptor with this name already exists before writing.
681
+ if (result->LinearSearch(*key, descriptor_count) ==
682
+ DescriptorArray::kNotFound) {
683
+ CallbacksDescriptor desc(*key, *entry, entry->property_attributes());
684
+ result->Set(descriptor_count, &desc);
685
+ descriptor_count++;
686
+ } else {
687
+ duplicates++;
688
+ }
689
+ }
690
+
691
+ // If duplicates were detected, allocate a result of the right size
692
+ // and transfer the elements.
693
+ if (duplicates > 0) {
694
+ int number_of_descriptors = result->number_of_descriptors() - duplicates;
695
+ Handle<DescriptorArray> new_result =
696
+ NewDescriptorArray(number_of_descriptors);
697
+ for (int i = 0; i < number_of_descriptors; i++) {
698
+ new_result->CopyFrom(i, *result, i);
699
+ }
700
+ result = new_result;
701
+ }
702
+
703
+ // Sort the result before returning.
704
+ result->Sort();
705
+ return result;
706
+ }
707
+
708
+
709
+ Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
710
+ PretenureFlag pretenure) {
711
+ CALL_HEAP_FUNCTION(Heap::AllocateJSObject(*constructor, pretenure), JSObject);
712
+ }
713
+
714
+
715
+ Handle<GlobalObject> Factory::NewGlobalObject(
716
+ Handle<JSFunction> constructor) {
717
+ CALL_HEAP_FUNCTION(Heap::AllocateGlobalObject(*constructor),
718
+ GlobalObject);
719
+ }
720
+
721
+
722
+
723
+ Handle<JSObject> Factory::NewJSObjectFromMap(Handle<Map> map) {
724
+ CALL_HEAP_FUNCTION(Heap::AllocateJSObjectFromMap(*map, NOT_TENURED),
725
+ JSObject);
726
+ }
727
+
728
+
729
+ Handle<JSArray> Factory::NewJSArray(int length,
730
+ PretenureFlag pretenure) {
731
+ Handle<JSObject> obj = NewJSObject(Top::array_function(), pretenure);
732
+ CALL_HEAP_FUNCTION(Handle<JSArray>::cast(obj)->Initialize(length), JSArray);
733
+ }
734
+
735
+
736
+ Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArray> elements,
737
+ PretenureFlag pretenure) {
738
+ Handle<JSArray> result =
739
+ Handle<JSArray>::cast(NewJSObject(Top::array_function(), pretenure));
740
+ result->SetContent(*elements);
741
+ return result;
742
+ }
743
+
744
+
745
+ Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
746
+ Handle<String> name,
747
+ int number_of_literals,
748
+ Handle<Code> code,
749
+ Handle<SerializedScopeInfo> scope_info) {
750
+ Handle<SharedFunctionInfo> shared = NewSharedFunctionInfo(name);
751
+ shared->set_code(*code);
752
+ shared->set_scope_info(*scope_info);
753
+ int literals_array_size = number_of_literals;
754
+ // If the function contains object, regexp or array literals,
755
+ // allocate extra space for a literals array prefix containing the
756
+ // context.
757
+ if (number_of_literals > 0) {
758
+ literals_array_size += JSFunction::kLiteralsPrefixSize;
759
+ }
760
+ shared->set_num_literals(literals_array_size);
761
+ return shared;
762
+ }
763
+
764
+
765
+ Handle<JSMessageObject> Factory::NewJSMessageObject(
766
+ Handle<String> type,
767
+ Handle<JSArray> arguments,
768
+ int start_position,
769
+ int end_position,
770
+ Handle<Object> script,
771
+ Handle<Object> stack_trace,
772
+ Handle<Object> stack_frames) {
773
+ CALL_HEAP_FUNCTION(Heap::AllocateJSMessageObject(*type,
774
+ *arguments,
775
+ start_position,
776
+ end_position,
777
+ *script,
778
+ *stack_trace,
779
+ *stack_frames),
780
+ JSMessageObject);
781
+ }
782
+
783
+ Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
784
+ CALL_HEAP_FUNCTION(Heap::AllocateSharedFunctionInfo(*name),
785
+ SharedFunctionInfo);
786
+ }
787
+
788
+
789
+ Handle<String> Factory::NumberToString(Handle<Object> number) {
790
+ CALL_HEAP_FUNCTION(Heap::NumberToString(*number), String);
791
+ }
792
+
793
+
794
+ Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
795
+ Handle<NumberDictionary> dictionary,
796
+ uint32_t key,
797
+ Handle<Object> value) {
798
+ CALL_HEAP_FUNCTION(dictionary->AtNumberPut(key, *value), NumberDictionary);
799
+ }
800
+
801
+
802
+ Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
803
+ Handle<Object> prototype) {
804
+ Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
805
+ CALL_HEAP_FUNCTION(Heap::AllocateFunction(*Top::function_map(),
806
+ *function_share,
807
+ *prototype),
808
+ JSFunction);
809
+ }
810
+
811
+
812
+ Handle<JSFunction> Factory::NewFunction(Handle<String> name,
813
+ Handle<Object> prototype) {
814
+ Handle<JSFunction> fun = NewFunctionHelper(name, prototype);
815
+ fun->set_context(Top::context()->global_context());
816
+ return fun;
817
+ }
818
+
819
+
820
+ Handle<JSFunction> Factory::NewFunctionWithoutPrototypeHelper(
821
+ Handle<String> name) {
822
+ Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
823
+ CALL_HEAP_FUNCTION(Heap::AllocateFunction(
824
+ *Top::function_without_prototype_map(),
825
+ *function_share,
826
+ *the_hole_value()),
827
+ JSFunction);
828
+ }
829
+
830
+
831
+ Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name) {
832
+ Handle<JSFunction> fun = NewFunctionWithoutPrototypeHelper(name);
833
+ fun->set_context(Top::context()->global_context());
834
+ return fun;
835
+ }
836
+
837
+
838
+ Handle<Object> Factory::ToObject(Handle<Object> object) {
839
+ CALL_HEAP_FUNCTION(object->ToObject(), Object);
840
+ }
841
+
842
+
843
+ Handle<Object> Factory::ToObject(Handle<Object> object,
844
+ Handle<Context> global_context) {
845
+ CALL_HEAP_FUNCTION(object->ToObject(*global_context), Object);
846
+ }
847
+
848
+
849
+ #ifdef ENABLE_DEBUGGER_SUPPORT
850
+ Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
851
+ // Get the original code of the function.
852
+ Handle<Code> code(shared->code());
853
+
854
+ // Create a copy of the code before allocating the debug info object to avoid
855
+ // allocation while setting up the debug info object.
856
+ Handle<Code> original_code(*Factory::CopyCode(code));
857
+
858
+ // Allocate initial fixed array for active break points before allocating the
859
+ // debug info object to avoid allocation while setting up the debug info
860
+ // object.
861
+ Handle<FixedArray> break_points(
862
+ Factory::NewFixedArray(Debug::kEstimatedNofBreakPointsInFunction));
863
+
864
+ // Create and set up the debug info object. Debug info contains function, a
865
+ // copy of the original code, the executing code and initial fixed array for
866
+ // active break points.
867
+ Handle<DebugInfo> debug_info =
868
+ Handle<DebugInfo>::cast(Factory::NewStruct(DEBUG_INFO_TYPE));
869
+ debug_info->set_shared(*shared);
870
+ debug_info->set_original_code(*original_code);
871
+ debug_info->set_code(*code);
872
+ debug_info->set_break_points(*break_points);
873
+
874
+ // Link debug info to function.
875
+ shared->set_debug_info(*debug_info);
876
+
877
+ return debug_info;
878
+ }
879
+ #endif
880
+
881
+
882
+ Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
883
+ int length) {
884
+ CALL_HEAP_FUNCTION(Heap::AllocateArgumentsObject(*callee, length), JSObject);
885
+ }
886
+
887
+
888
+ Handle<JSFunction> Factory::CreateApiFunction(
889
+ Handle<FunctionTemplateInfo> obj, ApiInstanceType instance_type) {
890
+ Handle<Code> code = Handle<Code>(Builtins::builtin(Builtins::HandleApiCall));
891
+ Handle<Code> construct_stub =
892
+ Handle<Code>(Builtins::builtin(Builtins::JSConstructStubApi));
893
+
894
+ int internal_field_count = 0;
895
+ if (!obj->instance_template()->IsUndefined()) {
896
+ Handle<ObjectTemplateInfo> instance_template =
897
+ Handle<ObjectTemplateInfo>(
898
+ ObjectTemplateInfo::cast(obj->instance_template()));
899
+ internal_field_count =
900
+ Smi::cast(instance_template->internal_field_count())->value();
901
+ }
902
+
903
+ int instance_size = kPointerSize * internal_field_count;
904
+ InstanceType type = INVALID_TYPE;
905
+ switch (instance_type) {
906
+ case JavaScriptObject:
907
+ type = JS_OBJECT_TYPE;
908
+ instance_size += JSObject::kHeaderSize;
909
+ break;
910
+ case InnerGlobalObject:
911
+ type = JS_GLOBAL_OBJECT_TYPE;
912
+ instance_size += JSGlobalObject::kSize;
913
+ break;
914
+ case OuterGlobalObject:
915
+ type = JS_GLOBAL_PROXY_TYPE;
916
+ instance_size += JSGlobalProxy::kSize;
917
+ break;
918
+ default:
919
+ break;
920
+ }
921
+ ASSERT(type != INVALID_TYPE);
922
+
923
+ Handle<JSFunction> result =
924
+ Factory::NewFunction(Factory::empty_symbol(),
925
+ type,
926
+ instance_size,
927
+ code,
928
+ true);
929
+ // Set class name.
930
+ Handle<Object> class_name = Handle<Object>(obj->class_name());
931
+ if (class_name->IsString()) {
932
+ result->shared()->set_instance_class_name(*class_name);
933
+ result->shared()->set_name(*class_name);
934
+ }
935
+
936
+ Handle<Map> map = Handle<Map>(result->initial_map());
937
+
938
+ // Mark as undetectable if needed.
939
+ if (obj->undetectable()) {
940
+ map->set_is_undetectable();
941
+ }
942
+
943
+ // Mark as hidden for the __proto__ accessor if needed.
944
+ if (obj->hidden_prototype()) {
945
+ map->set_is_hidden_prototype();
946
+ }
947
+
948
+ // Mark as needs_access_check if needed.
949
+ if (obj->needs_access_check()) {
950
+ map->set_is_access_check_needed(true);
951
+ }
952
+
953
+ // Set interceptor information in the map.
954
+ if (!obj->named_property_handler()->IsUndefined()) {
955
+ map->set_has_named_interceptor();
956
+ }
957
+ if (!obj->indexed_property_handler()->IsUndefined()) {
958
+ map->set_has_indexed_interceptor();
959
+ }
960
+
961
+ // Set instance call-as-function information in the map.
962
+ if (!obj->instance_call_handler()->IsUndefined()) {
963
+ map->set_has_instance_call_handler();
964
+ }
965
+
966
+ result->shared()->set_function_data(*obj);
967
+ result->shared()->set_construct_stub(*construct_stub);
968
+ result->shared()->DontAdaptArguments();
969
+
970
+ // Recursively copy parent templates' accessors, 'data' may be modified.
971
+ Handle<DescriptorArray> array =
972
+ Handle<DescriptorArray>(map->instance_descriptors());
973
+ while (true) {
974
+ Handle<Object> props = Handle<Object>(obj->property_accessors());
975
+ if (!props->IsUndefined()) {
976
+ array = Factory::CopyAppendCallbackDescriptors(array, props);
977
+ }
978
+ Handle<Object> parent = Handle<Object>(obj->parent_template());
979
+ if (parent->IsUndefined()) break;
980
+ obj = Handle<FunctionTemplateInfo>::cast(parent);
981
+ }
982
+ if (!array->IsEmpty()) {
983
+ map->set_instance_descriptors(*array);
984
+ }
985
+
986
+ ASSERT(result->shared()->IsApiFunction());
987
+ return result;
988
+ }
989
+
990
+
991
+ Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
992
+ CALL_HEAP_FUNCTION(MapCache::Allocate(at_least_space_for), MapCache);
993
+ }
994
+
995
+
996
+ MUST_USE_RESULT static MaybeObject* UpdateMapCacheWith(Context* context,
997
+ FixedArray* keys,
998
+ Map* map) {
999
+ Object* result;
1000
+ { MaybeObject* maybe_result =
1001
+ MapCache::cast(context->map_cache())->Put(keys, map);
1002
+ if (!maybe_result->ToObject(&result)) return maybe_result;
1003
+ }
1004
+ context->set_map_cache(MapCache::cast(result));
1005
+ return result;
1006
+ }
1007
+
1008
+
1009
+ Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
1010
+ Handle<FixedArray> keys,
1011
+ Handle<Map> map) {
1012
+ CALL_HEAP_FUNCTION(UpdateMapCacheWith(*context, *keys, *map), MapCache);
1013
+ }
1014
+
1015
+
1016
+ Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context,
1017
+ Handle<FixedArray> keys) {
1018
+ if (context->map_cache()->IsUndefined()) {
1019
+ // Allocate the new map cache for the global context.
1020
+ Handle<MapCache> new_cache = NewMapCache(24);
1021
+ context->set_map_cache(*new_cache);
1022
+ }
1023
+ // Check to see whether there is a matching element in the cache.
1024
+ Handle<MapCache> cache =
1025
+ Handle<MapCache>(MapCache::cast(context->map_cache()));
1026
+ Handle<Object> result = Handle<Object>(cache->Lookup(*keys));
1027
+ if (result->IsMap()) return Handle<Map>::cast(result);
1028
+ // Create a new map and add it to the cache.
1029
+ Handle<Map> map =
1030
+ CopyMap(Handle<Map>(context->object_function()->initial_map()),
1031
+ keys->length());
1032
+ AddToMapCache(context, keys, map);
1033
+ return Handle<Map>(map);
1034
+ }
1035
+
1036
+
1037
+ void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp,
1038
+ JSRegExp::Type type,
1039
+ Handle<String> source,
1040
+ JSRegExp::Flags flags,
1041
+ Handle<Object> data) {
1042
+ Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize);
1043
+
1044
+ store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1045
+ store->set(JSRegExp::kSourceIndex, *source);
1046
+ store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1047
+ store->set(JSRegExp::kAtomPatternIndex, *data);
1048
+ regexp->set_data(*store);
1049
+ }
1050
+
1051
+ void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp,
1052
+ JSRegExp::Type type,
1053
+ Handle<String> source,
1054
+ JSRegExp::Flags flags,
1055
+ int capture_count) {
1056
+ Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize);
1057
+
1058
+ store->set(JSRegExp::kTagIndex, Smi::FromInt(type));
1059
+ store->set(JSRegExp::kSourceIndex, *source);
1060
+ store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value()));
1061
+ store->set(JSRegExp::kIrregexpASCIICodeIndex, Heap::the_hole_value());
1062
+ store->set(JSRegExp::kIrregexpUC16CodeIndex, Heap::the_hole_value());
1063
+ store->set(JSRegExp::kIrregexpMaxRegisterCountIndex, Smi::FromInt(0));
1064
+ store->set(JSRegExp::kIrregexpCaptureCountIndex,
1065
+ Smi::FromInt(capture_count));
1066
+ regexp->set_data(*store);
1067
+ }
1068
+
1069
+
1070
+
1071
+ void Factory::ConfigureInstance(Handle<FunctionTemplateInfo> desc,
1072
+ Handle<JSObject> instance,
1073
+ bool* pending_exception) {
1074
+ // Configure the instance by adding the properties specified by the
1075
+ // instance template.
1076
+ Handle<Object> instance_template = Handle<Object>(desc->instance_template());
1077
+ if (!instance_template->IsUndefined()) {
1078
+ Execution::ConfigureInstance(instance,
1079
+ instance_template,
1080
+ pending_exception);
1081
+ } else {
1082
+ *pending_exception = false;
1083
+ }
1084
+ }
1085
+
1086
+
1087
+ } } // namespace v8::internal