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,1252 @@
1
+ // Copyright 2006-2008 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ // This file relies on the fact that the following declarations have been made
29
+ //
30
+ // in runtime.js:
31
+ // const $Object = global.Object;
32
+ // const $Boolean = global.Boolean;
33
+ // const $Number = global.Number;
34
+ // const $Function = global.Function;
35
+ // const $Array = global.Array;
36
+ // const $NaN = 0/0;
37
+ //
38
+ // in math.js:
39
+ // const $floor = MathFloor
40
+
41
+ const $isNaN = GlobalIsNaN;
42
+ const $isFinite = GlobalIsFinite;
43
+
44
+
45
+ // ----------------------------------------------------------------------------
46
+
47
+
48
+ // Helper function used to install functions on objects.
49
+ function InstallFunctions(object, attributes, functions) {
50
+ if (functions.length >= 8) {
51
+ %OptimizeObjectForAddingMultipleProperties(object, functions.length >> 1);
52
+ }
53
+ for (var i = 0; i < functions.length; i += 2) {
54
+ var key = functions[i];
55
+ var f = functions[i + 1];
56
+ %FunctionSetName(f, key);
57
+ %FunctionRemovePrototype(f);
58
+ %SetProperty(object, key, f, attributes);
59
+ }
60
+ %ToFastProperties(object);
61
+ }
62
+
63
+ // Emulates JSC by installing functions on a hidden prototype that
64
+ // lies above the current object/prototype. This lets you override
65
+ // functions on String.prototype etc. and then restore the old function
66
+ // with delete. See http://code.google.com/p/chromium/issues/detail?id=1717
67
+ function InstallFunctionsOnHiddenPrototype(object, attributes, functions) {
68
+ var hidden_prototype = new $Object();
69
+ %SetHiddenPrototype(object, hidden_prototype);
70
+ InstallFunctions(hidden_prototype, attributes, functions);
71
+ }
72
+
73
+
74
+ // ----------------------------------------------------------------------------
75
+
76
+
77
+ // ECMA 262 - 15.1.4
78
+ function GlobalIsNaN(number) {
79
+ var n = ToNumber(number);
80
+ return NUMBER_IS_NAN(n);
81
+ }
82
+
83
+
84
+ // ECMA 262 - 15.1.5
85
+ function GlobalIsFinite(number) {
86
+ if (!IS_NUMBER(number)) number = NonNumberToNumber(number);
87
+
88
+ // NaN - NaN == NaN, Infinity - Infinity == NaN, -Infinity - -Infinity == NaN.
89
+ return %_IsSmi(number) || number - number == 0;
90
+ }
91
+
92
+
93
+ // ECMA-262 - 15.1.2.2
94
+ function GlobalParseInt(string, radix) {
95
+ if (IS_UNDEFINED(radix) || radix === 10 || radix === 0) {
96
+ // Some people use parseInt instead of Math.floor. This
97
+ // optimization makes parseInt on a Smi 12 times faster (60ns
98
+ // vs 800ns). The following optimization makes parseInt on a
99
+ // non-Smi number 9 times faster (230ns vs 2070ns). Together
100
+ // they make parseInt on a string 1.4% slower (274ns vs 270ns).
101
+ if (%_IsSmi(string)) return string;
102
+ if (IS_NUMBER(string) &&
103
+ ((0.01 < string && string < 1e9) ||
104
+ (-1e9 < string && string < -0.01))) {
105
+ // Truncate number.
106
+ return string | 0;
107
+ }
108
+ if (IS_UNDEFINED(radix)) radix = 0;
109
+ } else {
110
+ radix = TO_INT32(radix);
111
+ if (!(radix == 0 || (2 <= radix && radix <= 36)))
112
+ return $NaN;
113
+ }
114
+ string = TO_STRING_INLINE(string);
115
+ if (%_HasCachedArrayIndex(string) &&
116
+ (radix == 0 || radix == 10)) {
117
+ return %_GetCachedArrayIndex(string);
118
+ }
119
+ return %StringParseInt(string, radix);
120
+ }
121
+
122
+
123
+ // ECMA-262 - 15.1.2.3
124
+ function GlobalParseFloat(string) {
125
+ string = TO_STRING_INLINE(string);
126
+ if (%_HasCachedArrayIndex(string)) return %_GetCachedArrayIndex(string);
127
+ return %StringParseFloat(string);
128
+ }
129
+
130
+
131
+ function GlobalEval(x) {
132
+ if (!IS_STRING(x)) return x;
133
+
134
+ var global_receiver = %GlobalReceiver(global);
135
+ var this_is_global_receiver = (this === global_receiver);
136
+ var global_is_detached = (global === global_receiver);
137
+
138
+ if (!this_is_global_receiver || global_is_detached) {
139
+ throw new $EvalError('The "this" object passed to eval must ' +
140
+ 'be the global object from which eval originated');
141
+ }
142
+
143
+ var f = %CompileString(x);
144
+ if (!IS_FUNCTION(f)) return f;
145
+
146
+ return f.call(this);
147
+ }
148
+
149
+
150
+ // execScript for IE compatibility.
151
+ function GlobalExecScript(expr, lang) {
152
+ // NOTE: We don't care about the character casing.
153
+ if (!lang || /javascript/i.test(lang)) {
154
+ var f = %CompileString(ToString(expr));
155
+ f.call(%GlobalReceiver(global));
156
+ }
157
+ return null;
158
+ }
159
+
160
+
161
+ // ----------------------------------------------------------------------------
162
+
163
+
164
+ function SetupGlobal() {
165
+ // ECMA 262 - 15.1.1.1.
166
+ %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE);
167
+
168
+ // ECMA-262 - 15.1.1.2.
169
+ %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE);
170
+
171
+ // ECMA-262 - 15.1.1.3.
172
+ %SetProperty(global, "undefined", void 0, DONT_ENUM | DONT_DELETE);
173
+
174
+ // Setup non-enumerable function on the global object.
175
+ InstallFunctions(global, DONT_ENUM, $Array(
176
+ "isNaN", GlobalIsNaN,
177
+ "isFinite", GlobalIsFinite,
178
+ "parseInt", GlobalParseInt,
179
+ "parseFloat", GlobalParseFloat,
180
+ "eval", GlobalEval,
181
+ "execScript", GlobalExecScript
182
+ ));
183
+ }
184
+
185
+ SetupGlobal();
186
+
187
+
188
+ // ----------------------------------------------------------------------------
189
+ // Boolean (first part of definition)
190
+
191
+
192
+ %SetCode($Boolean, function(x) {
193
+ if (%_IsConstructCall()) {
194
+ %_SetValueOf(this, ToBoolean(x));
195
+ } else {
196
+ return ToBoolean(x);
197
+ }
198
+ });
199
+
200
+ %FunctionSetPrototype($Boolean, new $Boolean(false));
201
+
202
+ %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM);
203
+
204
+ // ----------------------------------------------------------------------------
205
+ // Object
206
+
207
+ $Object.prototype.constructor = $Object;
208
+
209
+ // ECMA-262 - 15.2.4.2
210
+ function ObjectToString() {
211
+ return "[object " + %_ClassOf(ToObject(this)) + "]";
212
+ }
213
+
214
+
215
+ // ECMA-262 - 15.2.4.3
216
+ function ObjectToLocaleString() {
217
+ return this.toString();
218
+ }
219
+
220
+
221
+ // ECMA-262 - 15.2.4.4
222
+ function ObjectValueOf() {
223
+ return ToObject(this);
224
+ }
225
+
226
+
227
+ // ECMA-262 - 15.2.4.5
228
+ function ObjectHasOwnProperty(V) {
229
+ return %HasLocalProperty(ToObject(this), ToString(V));
230
+ }
231
+
232
+
233
+ // ECMA-262 - 15.2.4.6
234
+ function ObjectIsPrototypeOf(V) {
235
+ if (!IS_SPEC_OBJECT(V)) return false;
236
+ return %IsInPrototypeChain(this, V);
237
+ }
238
+
239
+
240
+ // ECMA-262 - 15.2.4.6
241
+ function ObjectPropertyIsEnumerable(V) {
242
+ return %IsPropertyEnumerable(ToObject(this), ToString(V));
243
+ }
244
+
245
+
246
+ // Extensions for providing property getters and setters.
247
+ function ObjectDefineGetter(name, fun) {
248
+ if (this == null && !IS_UNDETECTABLE(this)) {
249
+ throw new $TypeError('Object.prototype.__defineGetter__: this is Null');
250
+ }
251
+ if (!IS_FUNCTION(fun)) {
252
+ throw new $TypeError('Object.prototype.__defineGetter__: Expecting function');
253
+ }
254
+ return %DefineAccessor(ToObject(this), ToString(name), GETTER, fun);
255
+ }
256
+
257
+
258
+ function ObjectLookupGetter(name) {
259
+ if (this == null && !IS_UNDETECTABLE(this)) {
260
+ throw new $TypeError('Object.prototype.__lookupGetter__: this is Null');
261
+ }
262
+ return %LookupAccessor(ToObject(this), ToString(name), GETTER);
263
+ }
264
+
265
+
266
+ function ObjectDefineSetter(name, fun) {
267
+ if (this == null && !IS_UNDETECTABLE(this)) {
268
+ throw new $TypeError('Object.prototype.__defineSetter__: this is Null');
269
+ }
270
+ if (!IS_FUNCTION(fun)) {
271
+ throw new $TypeError(
272
+ 'Object.prototype.__defineSetter__: Expecting function');
273
+ }
274
+ return %DefineAccessor(ToObject(this), ToString(name), SETTER, fun);
275
+ }
276
+
277
+
278
+ function ObjectLookupSetter(name) {
279
+ if (this == null && !IS_UNDETECTABLE(this)) {
280
+ throw new $TypeError('Object.prototype.__lookupSetter__: this is Null');
281
+ }
282
+ return %LookupAccessor(ToObject(this), ToString(name), SETTER);
283
+ }
284
+
285
+
286
+ function ObjectKeys(obj) {
287
+ if (!IS_SPEC_OBJECT(obj))
288
+ throw MakeTypeError("obj_ctor_property_non_object", ["keys"]);
289
+ return %LocalKeys(obj);
290
+ }
291
+
292
+
293
+ // ES5 8.10.1.
294
+ function IsAccessorDescriptor(desc) {
295
+ if (IS_UNDEFINED(desc)) return false;
296
+ return desc.hasGetter_ || desc.hasSetter_;
297
+ }
298
+
299
+
300
+ // ES5 8.10.2.
301
+ function IsDataDescriptor(desc) {
302
+ if (IS_UNDEFINED(desc)) return false;
303
+ return desc.hasValue_ || desc.hasWritable_;
304
+ }
305
+
306
+
307
+ // ES5 8.10.3.
308
+ function IsGenericDescriptor(desc) {
309
+ return !(IsAccessorDescriptor(desc) || IsDataDescriptor(desc));
310
+ }
311
+
312
+
313
+ function IsInconsistentDescriptor(desc) {
314
+ return IsAccessorDescriptor(desc) && IsDataDescriptor(desc);
315
+ }
316
+
317
+ // ES5 8.10.4
318
+ function FromPropertyDescriptor(desc) {
319
+ if (IS_UNDEFINED(desc)) return desc;
320
+ var obj = new $Object();
321
+ if (IsDataDescriptor(desc)) {
322
+ obj.value = desc.getValue();
323
+ obj.writable = desc.isWritable();
324
+ }
325
+ if (IsAccessorDescriptor(desc)) {
326
+ obj.get = desc.getGet();
327
+ obj.set = desc.getSet();
328
+ }
329
+ obj.enumerable = desc.isEnumerable();
330
+ obj.configurable = desc.isConfigurable();
331
+ return obj;
332
+ }
333
+
334
+ // ES5 8.10.5.
335
+ function ToPropertyDescriptor(obj) {
336
+ if (!IS_SPEC_OBJECT(obj)) {
337
+ throw MakeTypeError("property_desc_object", [obj]);
338
+ }
339
+ var desc = new PropertyDescriptor();
340
+
341
+ if ("enumerable" in obj) {
342
+ desc.setEnumerable(ToBoolean(obj.enumerable));
343
+ }
344
+
345
+ if ("configurable" in obj) {
346
+ desc.setConfigurable(ToBoolean(obj.configurable));
347
+ }
348
+
349
+ if ("value" in obj) {
350
+ desc.setValue(obj.value);
351
+ }
352
+
353
+ if ("writable" in obj) {
354
+ desc.setWritable(ToBoolean(obj.writable));
355
+ }
356
+
357
+ if ("get" in obj) {
358
+ var get = obj.get;
359
+ if (!IS_UNDEFINED(get) && !IS_FUNCTION(get)) {
360
+ throw MakeTypeError("getter_must_be_callable", [get]);
361
+ }
362
+ desc.setGet(get);
363
+ }
364
+
365
+ if ("set" in obj) {
366
+ var set = obj.set;
367
+ if (!IS_UNDEFINED(set) && !IS_FUNCTION(set)) {
368
+ throw MakeTypeError("setter_must_be_callable", [set]);
369
+ }
370
+ desc.setSet(set);
371
+ }
372
+
373
+ if (IsInconsistentDescriptor(desc)) {
374
+ throw MakeTypeError("value_and_accessor", [obj]);
375
+ }
376
+ return desc;
377
+ }
378
+
379
+
380
+ function PropertyDescriptor() {
381
+ // Initialize here so they are all in-object and have the same map.
382
+ // Default values from ES5 8.6.1.
383
+ this.value_ = void 0;
384
+ this.hasValue_ = false;
385
+ this.writable_ = false;
386
+ this.hasWritable_ = false;
387
+ this.enumerable_ = false;
388
+ this.hasEnumerable_ = false;
389
+ this.configurable_ = false;
390
+ this.hasConfigurable_ = false;
391
+ this.get_ = void 0;
392
+ this.hasGetter_ = false;
393
+ this.set_ = void 0;
394
+ this.hasSetter_ = false;
395
+ }
396
+
397
+
398
+ PropertyDescriptor.prototype.setValue = function(value) {
399
+ this.value_ = value;
400
+ this.hasValue_ = true;
401
+ }
402
+
403
+
404
+ PropertyDescriptor.prototype.getValue = function() {
405
+ return this.value_;
406
+ }
407
+
408
+
409
+ PropertyDescriptor.prototype.hasValue = function() {
410
+ return this.hasValue_;
411
+ }
412
+
413
+
414
+ PropertyDescriptor.prototype.setEnumerable = function(enumerable) {
415
+ this.enumerable_ = enumerable;
416
+ this.hasEnumerable_ = true;
417
+ }
418
+
419
+
420
+ PropertyDescriptor.prototype.isEnumerable = function () {
421
+ return this.enumerable_;
422
+ }
423
+
424
+
425
+ PropertyDescriptor.prototype.hasEnumerable = function() {
426
+ return this.hasEnumerable_;
427
+ }
428
+
429
+
430
+ PropertyDescriptor.prototype.setWritable = function(writable) {
431
+ this.writable_ = writable;
432
+ this.hasWritable_ = true;
433
+ }
434
+
435
+
436
+ PropertyDescriptor.prototype.isWritable = function() {
437
+ return this.writable_;
438
+ }
439
+
440
+
441
+ PropertyDescriptor.prototype.hasWritable = function() {
442
+ return this.hasWritable_;
443
+ }
444
+
445
+
446
+ PropertyDescriptor.prototype.setConfigurable = function(configurable) {
447
+ this.configurable_ = configurable;
448
+ this.hasConfigurable_ = true;
449
+ }
450
+
451
+
452
+ PropertyDescriptor.prototype.hasConfigurable = function() {
453
+ return this.hasConfigurable_;
454
+ }
455
+
456
+
457
+ PropertyDescriptor.prototype.isConfigurable = function() {
458
+ return this.configurable_;
459
+ }
460
+
461
+
462
+ PropertyDescriptor.prototype.setGet = function(get) {
463
+ this.get_ = get;
464
+ this.hasGetter_ = true;
465
+ }
466
+
467
+
468
+ PropertyDescriptor.prototype.getGet = function() {
469
+ return this.get_;
470
+ }
471
+
472
+
473
+ PropertyDescriptor.prototype.hasGetter = function() {
474
+ return this.hasGetter_;
475
+ }
476
+
477
+
478
+ PropertyDescriptor.prototype.setSet = function(set) {
479
+ this.set_ = set;
480
+ this.hasSetter_ = true;
481
+ }
482
+
483
+
484
+ PropertyDescriptor.prototype.getSet = function() {
485
+ return this.set_;
486
+ }
487
+
488
+
489
+ PropertyDescriptor.prototype.hasSetter = function() {
490
+ return this.hasSetter_;
491
+ }
492
+
493
+
494
+ // Converts an array returned from Runtime_GetOwnProperty to an actual
495
+ // property descriptor. For a description of the array layout please
496
+ // see the runtime.cc file.
497
+ function ConvertDescriptorArrayToDescriptor(desc_array) {
498
+ if (desc_array == false) {
499
+ throw 'Internal error: invalid desc_array';
500
+ }
501
+
502
+ if (IS_UNDEFINED(desc_array)) {
503
+ return void 0;
504
+ }
505
+
506
+ var desc = new PropertyDescriptor();
507
+ // This is an accessor.
508
+ if (desc_array[IS_ACCESSOR_INDEX]) {
509
+ desc.setGet(desc_array[GETTER_INDEX]);
510
+ desc.setSet(desc_array[SETTER_INDEX]);
511
+ } else {
512
+ desc.setValue(desc_array[VALUE_INDEX]);
513
+ desc.setWritable(desc_array[WRITABLE_INDEX]);
514
+ }
515
+ desc.setEnumerable(desc_array[ENUMERABLE_INDEX]);
516
+ desc.setConfigurable(desc_array[CONFIGURABLE_INDEX]);
517
+
518
+ return desc;
519
+ }
520
+
521
+
522
+ // ES5 section 8.12.2.
523
+ function GetProperty(obj, p) {
524
+ var prop = GetOwnProperty(obj);
525
+ if (!IS_UNDEFINED(prop)) return prop;
526
+ var proto = obj.__proto__;
527
+ if (IS_NULL(proto)) return void 0;
528
+ return GetProperty(proto, p);
529
+ }
530
+
531
+
532
+ // ES5 section 8.12.6
533
+ function HasProperty(obj, p) {
534
+ var desc = GetProperty(obj, p);
535
+ return IS_UNDEFINED(desc) ? false : true;
536
+ }
537
+
538
+
539
+ // ES5 section 8.12.1.
540
+ function GetOwnProperty(obj, p) {
541
+ // GetOwnProperty returns an array indexed by the constants
542
+ // defined in macros.py.
543
+ // If p is not a property on obj undefined is returned.
544
+ var props = %GetOwnProperty(ToObject(obj), ToString(p));
545
+
546
+ // A false value here means that access checks failed.
547
+ if (props == false) return void 0;
548
+
549
+ return ConvertDescriptorArrayToDescriptor(props);
550
+ }
551
+
552
+
553
+ // ES5 8.12.9.
554
+ function DefineOwnProperty(obj, p, desc, should_throw) {
555
+ var current_or_access = %GetOwnProperty(ToObject(obj), ToString(p));
556
+ // A false value here means that access checks failed.
557
+ if (current_or_access == false) return void 0;
558
+
559
+ var current = ConvertDescriptorArrayToDescriptor(current_or_access);
560
+ var extensible = %IsExtensible(ToObject(obj));
561
+
562
+ // Error handling according to spec.
563
+ // Step 3
564
+ if (IS_UNDEFINED(current) && !extensible)
565
+ throw MakeTypeError("define_disallowed", ["defineProperty"]);
566
+
567
+ if (!IS_UNDEFINED(current)) {
568
+ // Step 5 and 6
569
+ if ((IsGenericDescriptor(desc) ||
570
+ IsDataDescriptor(desc) == IsDataDescriptor(current)) &&
571
+ (!desc.hasEnumerable() ||
572
+ SameValue(desc.isEnumerable(), current.isEnumerable())) &&
573
+ (!desc.hasConfigurable() ||
574
+ SameValue(desc.isConfigurable(), current.isConfigurable())) &&
575
+ (!desc.hasWritable() ||
576
+ SameValue(desc.isWritable(), current.isWritable())) &&
577
+ (!desc.hasValue() ||
578
+ SameValue(desc.getValue(), current.getValue())) &&
579
+ (!desc.hasGetter() ||
580
+ SameValue(desc.getGet(), current.getGet())) &&
581
+ (!desc.hasSetter() ||
582
+ SameValue(desc.getSet(), current.getSet()))) {
583
+ return true;
584
+ }
585
+ if (!current.isConfigurable()) {
586
+ // Step 7
587
+ if (desc.isConfigurable() ||
588
+ (desc.hasEnumerable() &&
589
+ desc.isEnumerable() != current.isEnumerable())) {
590
+ throw MakeTypeError("redefine_disallowed", ["defineProperty"]);
591
+ }
592
+ // Step 8
593
+ if (!IsGenericDescriptor(desc)) {
594
+ // Step 9a
595
+ if (IsDataDescriptor(current) != IsDataDescriptor(desc)) {
596
+ throw MakeTypeError("redefine_disallowed", ["defineProperty"]);
597
+ }
598
+ // Step 10a
599
+ if (IsDataDescriptor(current) && IsDataDescriptor(desc)) {
600
+ if (!current.isWritable() && desc.isWritable()) {
601
+ throw MakeTypeError("redefine_disallowed", ["defineProperty"]);
602
+ }
603
+ if (!current.isWritable() && desc.hasValue() &&
604
+ !SameValue(desc.getValue(), current.getValue())) {
605
+ throw MakeTypeError("redefine_disallowed", ["defineProperty"]);
606
+ }
607
+ }
608
+ // Step 11
609
+ if (IsAccessorDescriptor(desc) && IsAccessorDescriptor(current)) {
610
+ if (desc.hasSetter() && !SameValue(desc.getSet(), current.getSet())) {
611
+ throw MakeTypeError("redefine_disallowed", ["defineProperty"]);
612
+ }
613
+ if (desc.hasGetter() && !SameValue(desc.getGet(),current.getGet())) {
614
+ throw MakeTypeError("redefine_disallowed", ["defineProperty"]);
615
+ }
616
+ }
617
+ }
618
+ }
619
+ }
620
+
621
+ // Send flags - enumerable and configurable are common - writable is
622
+ // only send to the data descriptor.
623
+ // Take special care if enumerable and configurable is not defined on
624
+ // desc (we need to preserve the existing values from current).
625
+ var flag = NONE;
626
+ if (desc.hasEnumerable()) {
627
+ flag |= desc.isEnumerable() ? 0 : DONT_ENUM;
628
+ } else if (!IS_UNDEFINED(current)) {
629
+ flag |= current.isEnumerable() ? 0 : DONT_ENUM;
630
+ } else {
631
+ flag |= DONT_ENUM;
632
+ }
633
+
634
+ if (desc.hasConfigurable()) {
635
+ flag |= desc.isConfigurable() ? 0 : DONT_DELETE;
636
+ } else if (!IS_UNDEFINED(current)) {
637
+ flag |= current.isConfigurable() ? 0 : DONT_DELETE;
638
+ } else
639
+ flag |= DONT_DELETE;
640
+
641
+ if (IsDataDescriptor(desc) ||
642
+ (IsGenericDescriptor(desc) &&
643
+ (IS_UNDEFINED(current) || IsDataDescriptor(current)))) {
644
+ // There are 3 cases that lead here:
645
+ // Step 4a - defining a new data property.
646
+ // Steps 9b & 12 - replacing an existing accessor property with a data
647
+ // property.
648
+ // Step 12 - updating an existing data property with a data or generic
649
+ // descriptor.
650
+
651
+ if (desc.hasWritable()) {
652
+ flag |= desc.isWritable() ? 0 : READ_ONLY;
653
+ } else if (!IS_UNDEFINED(current)) {
654
+ flag |= current.isWritable() ? 0 : READ_ONLY;
655
+ } else {
656
+ flag |= READ_ONLY;
657
+ }
658
+
659
+ var value = void 0; // Default value is undefined.
660
+ if (desc.hasValue()) {
661
+ value = desc.getValue();
662
+ } else if (!IS_UNDEFINED(current) && IsDataDescriptor(current)) {
663
+ value = current.getValue();
664
+ }
665
+
666
+ %DefineOrRedefineDataProperty(obj, p, value, flag);
667
+ } else if (IsGenericDescriptor(desc)) {
668
+ // Step 12 - updating an existing accessor property with generic
669
+ // descriptor. Changing flags only.
670
+ %DefineOrRedefineAccessorProperty(obj, p, GETTER, current.getGet(), flag);
671
+ } else {
672
+ // There are 3 cases that lead here:
673
+ // Step 4b - defining a new accessor property.
674
+ // Steps 9c & 12 - replacing an existing data property with an accessor
675
+ // property.
676
+ // Step 12 - updating an existing accessor property with an accessor
677
+ // descriptor.
678
+ if (desc.hasGetter()) {
679
+ %DefineOrRedefineAccessorProperty(obj, p, GETTER, desc.getGet(), flag);
680
+ }
681
+ if (desc.hasSetter()) {
682
+ %DefineOrRedefineAccessorProperty(obj, p, SETTER, desc.getSet(), flag);
683
+ }
684
+ }
685
+ return true;
686
+ }
687
+
688
+
689
+ // ES5 section 15.2.3.2.
690
+ function ObjectGetPrototypeOf(obj) {
691
+ if (!IS_SPEC_OBJECT(obj))
692
+ throw MakeTypeError("obj_ctor_property_non_object", ["getPrototypeOf"]);
693
+ return obj.__proto__;
694
+ }
695
+
696
+
697
+ // ES5 section 15.2.3.3
698
+ function ObjectGetOwnPropertyDescriptor(obj, p) {
699
+ if (!IS_SPEC_OBJECT(obj))
700
+ throw MakeTypeError("obj_ctor_property_non_object", ["getOwnPropertyDescriptor"]);
701
+ var desc = GetOwnProperty(obj, p);
702
+ return FromPropertyDescriptor(desc);
703
+ }
704
+
705
+
706
+ // ES5 section 15.2.3.4.
707
+ function ObjectGetOwnPropertyNames(obj) {
708
+ if (!IS_SPEC_OBJECT(obj))
709
+ throw MakeTypeError("obj_ctor_property_non_object", ["getOwnPropertyNames"]);
710
+
711
+ // Find all the indexed properties.
712
+
713
+ // Get the local element names.
714
+ var propertyNames = %GetLocalElementNames(obj);
715
+
716
+ // Get names for indexed interceptor properties.
717
+ if (%GetInterceptorInfo(obj) & 1) {
718
+ var indexedInterceptorNames =
719
+ %GetIndexedInterceptorElementNames(obj);
720
+ if (indexedInterceptorNames)
721
+ propertyNames = propertyNames.concat(indexedInterceptorNames);
722
+ }
723
+
724
+ // Find all the named properties.
725
+
726
+ // Get the local property names.
727
+ propertyNames = propertyNames.concat(%GetLocalPropertyNames(obj));
728
+
729
+ // Get names for named interceptor properties if any.
730
+
731
+ if (%GetInterceptorInfo(obj) & 2) {
732
+ var namedInterceptorNames =
733
+ %GetNamedInterceptorPropertyNames(obj);
734
+ if (namedInterceptorNames) {
735
+ propertyNames = propertyNames.concat(namedInterceptorNames);
736
+ }
737
+ }
738
+
739
+ // Property names are expected to be unique strings.
740
+ var propertySet = {};
741
+ var j = 0;
742
+ for (var i = 0; i < propertyNames.length; ++i) {
743
+ var name = ToString(propertyNames[i]);
744
+ // We need to check for the exact property value since for intrinsic
745
+ // properties like toString if(propertySet["toString"]) will always
746
+ // succeed.
747
+ if (propertySet[name] === true)
748
+ continue;
749
+ propertySet[name] = true;
750
+ propertyNames[j++] = name;
751
+ }
752
+ propertyNames.length = j;
753
+
754
+ return propertyNames;
755
+ }
756
+
757
+
758
+ // ES5 section 15.2.3.5.
759
+ function ObjectCreate(proto, properties) {
760
+ if (!IS_SPEC_OBJECT(proto) && proto !== null) {
761
+ throw MakeTypeError("proto_object_or_null", [proto]);
762
+ }
763
+ var obj = new $Object();
764
+ obj.__proto__ = proto;
765
+ if (!IS_UNDEFINED(properties)) ObjectDefineProperties(obj, properties);
766
+ return obj;
767
+ }
768
+
769
+
770
+ // ES5 section 15.2.3.6.
771
+ function ObjectDefineProperty(obj, p, attributes) {
772
+ if (!IS_SPEC_OBJECT(obj)) {
773
+ throw MakeTypeError("obj_ctor_property_non_object", ["defineProperty"]);
774
+ }
775
+ var name = ToString(p);
776
+ var desc = ToPropertyDescriptor(attributes);
777
+ DefineOwnProperty(obj, name, desc, true);
778
+ return obj;
779
+ }
780
+
781
+
782
+ // ES5 section 15.2.3.7.
783
+ function ObjectDefineProperties(obj, properties) {
784
+ if (!IS_SPEC_OBJECT(obj))
785
+ throw MakeTypeError("obj_ctor_property_non_object", ["defineProperties"]);
786
+ var props = ToObject(properties);
787
+ var key_values = [];
788
+ for (var key in props) {
789
+ if (%HasLocalProperty(props, key)) {
790
+ key_values.push(key);
791
+ var value = props[key];
792
+ var desc = ToPropertyDescriptor(value);
793
+ key_values.push(desc);
794
+ }
795
+ }
796
+ for (var i = 0; i < key_values.length; i += 2) {
797
+ var key = key_values[i];
798
+ var desc = key_values[i + 1];
799
+ DefineOwnProperty(obj, key, desc, true);
800
+ }
801
+ return obj;
802
+ }
803
+
804
+
805
+ // ES5 section 15.2.3.8.
806
+ function ObjectSeal(obj) {
807
+ if (!IS_SPEC_OBJECT(obj)) {
808
+ throw MakeTypeError("obj_ctor_property_non_object", ["seal"]);
809
+ }
810
+ var names = ObjectGetOwnPropertyNames(obj);
811
+ for (var i = 0; i < names.length; i++) {
812
+ var name = names[i];
813
+ var desc = GetOwnProperty(obj, name);
814
+ if (desc.isConfigurable()) desc.setConfigurable(false);
815
+ DefineOwnProperty(obj, name, desc, true);
816
+ }
817
+ return ObjectPreventExtension(obj);
818
+ }
819
+
820
+
821
+ // ES5 section 15.2.3.9.
822
+ function ObjectFreeze(obj) {
823
+ if (!IS_SPEC_OBJECT(obj)) {
824
+ throw MakeTypeError("obj_ctor_property_non_object", ["freeze"]);
825
+ }
826
+ var names = ObjectGetOwnPropertyNames(obj);
827
+ for (var i = 0; i < names.length; i++) {
828
+ var name = names[i];
829
+ var desc = GetOwnProperty(obj, name);
830
+ if (IsDataDescriptor(desc)) desc.setWritable(false);
831
+ if (desc.isConfigurable()) desc.setConfigurable(false);
832
+ DefineOwnProperty(obj, name, desc, true);
833
+ }
834
+ return ObjectPreventExtension(obj);
835
+ }
836
+
837
+
838
+ // ES5 section 15.2.3.10
839
+ function ObjectPreventExtension(obj) {
840
+ if (!IS_SPEC_OBJECT(obj)) {
841
+ throw MakeTypeError("obj_ctor_property_non_object", ["preventExtension"]);
842
+ }
843
+ %PreventExtensions(obj);
844
+ return obj;
845
+ }
846
+
847
+
848
+ // ES5 section 15.2.3.11
849
+ function ObjectIsSealed(obj) {
850
+ if (!IS_SPEC_OBJECT(obj)) {
851
+ throw MakeTypeError("obj_ctor_property_non_object", ["isSealed"]);
852
+ }
853
+ var names = ObjectGetOwnPropertyNames(obj);
854
+ for (var i = 0; i < names.length; i++) {
855
+ var name = names[i];
856
+ var desc = GetOwnProperty(obj, name);
857
+ if (desc.isConfigurable()) return false;
858
+ }
859
+ if (!ObjectIsExtensible(obj)) {
860
+ return true;
861
+ }
862
+ return false;
863
+ }
864
+
865
+
866
+ // ES5 section 15.2.3.12
867
+ function ObjectIsFrozen(obj) {
868
+ if (!IS_SPEC_OBJECT(obj)) {
869
+ throw MakeTypeError("obj_ctor_property_non_object", ["isFrozen"]);
870
+ }
871
+ var names = ObjectGetOwnPropertyNames(obj);
872
+ for (var i = 0; i < names.length; i++) {
873
+ var name = names[i];
874
+ var desc = GetOwnProperty(obj, name);
875
+ if (IsDataDescriptor(desc) && desc.isWritable()) return false;
876
+ if (desc.isConfigurable()) return false;
877
+ }
878
+ if (!ObjectIsExtensible(obj)) {
879
+ return true;
880
+ }
881
+ return false;
882
+ }
883
+
884
+
885
+ // ES5 section 15.2.3.13
886
+ function ObjectIsExtensible(obj) {
887
+ if (!IS_SPEC_OBJECT(obj)) {
888
+ throw MakeTypeError("obj_ctor_property_non_object", ["preventExtension"]);
889
+ }
890
+ return %IsExtensible(obj);
891
+ }
892
+
893
+
894
+ %SetCode($Object, function(x) {
895
+ if (%_IsConstructCall()) {
896
+ if (x == null) return this;
897
+ return ToObject(x);
898
+ } else {
899
+ if (x == null) return { };
900
+ return ToObject(x);
901
+ }
902
+ });
903
+
904
+ %SetExpectedNumberOfProperties($Object, 4);
905
+
906
+ // ----------------------------------------------------------------------------
907
+
908
+
909
+ function SetupObject() {
910
+ // Setup non-enumerable functions on the Object.prototype object.
911
+ InstallFunctions($Object.prototype, DONT_ENUM, $Array(
912
+ "toString", ObjectToString,
913
+ "toLocaleString", ObjectToLocaleString,
914
+ "valueOf", ObjectValueOf,
915
+ "hasOwnProperty", ObjectHasOwnProperty,
916
+ "isPrototypeOf", ObjectIsPrototypeOf,
917
+ "propertyIsEnumerable", ObjectPropertyIsEnumerable,
918
+ "__defineGetter__", ObjectDefineGetter,
919
+ "__lookupGetter__", ObjectLookupGetter,
920
+ "__defineSetter__", ObjectDefineSetter,
921
+ "__lookupSetter__", ObjectLookupSetter
922
+ ));
923
+ InstallFunctions($Object, DONT_ENUM, $Array(
924
+ "keys", ObjectKeys,
925
+ "create", ObjectCreate,
926
+ "defineProperty", ObjectDefineProperty,
927
+ "defineProperties", ObjectDefineProperties,
928
+ "freeze", ObjectFreeze,
929
+ "getPrototypeOf", ObjectGetPrototypeOf,
930
+ "getOwnPropertyDescriptor", ObjectGetOwnPropertyDescriptor,
931
+ "getOwnPropertyNames", ObjectGetOwnPropertyNames,
932
+ "isExtensible", ObjectIsExtensible,
933
+ "isFrozen", ObjectIsFrozen,
934
+ "isSealed", ObjectIsSealed,
935
+ "preventExtensions", ObjectPreventExtension,
936
+ "seal", ObjectSeal
937
+ ));
938
+ }
939
+
940
+ SetupObject();
941
+
942
+
943
+ // ----------------------------------------------------------------------------
944
+ // Boolean
945
+
946
+ function BooleanToString() {
947
+ // NOTE: Both Boolean objects and values can enter here as
948
+ // 'this'. This is not as dictated by ECMA-262.
949
+ var b = this;
950
+ if (!IS_BOOLEAN(b)) {
951
+ if (!IS_BOOLEAN_WRAPPER(b)) {
952
+ throw new $TypeError('Boolean.prototype.toString is not generic');
953
+ }
954
+ b = %_ValueOf(b);
955
+ }
956
+ return b ? 'true' : 'false';
957
+ }
958
+
959
+
960
+ function BooleanValueOf() {
961
+ // NOTE: Both Boolean objects and values can enter here as
962
+ // 'this'. This is not as dictated by ECMA-262.
963
+ if (!IS_BOOLEAN(this) && !IS_BOOLEAN_WRAPPER(this))
964
+ throw new $TypeError('Boolean.prototype.valueOf is not generic');
965
+ return %_ValueOf(this);
966
+ }
967
+
968
+
969
+ // ----------------------------------------------------------------------------
970
+
971
+
972
+ function SetupBoolean() {
973
+ InstallFunctions($Boolean.prototype, DONT_ENUM, $Array(
974
+ "toString", BooleanToString,
975
+ "valueOf", BooleanValueOf
976
+ ));
977
+ }
978
+
979
+ SetupBoolean();
980
+
981
+ // ----------------------------------------------------------------------------
982
+ // Number
983
+
984
+ // Set the Number function and constructor.
985
+ %SetCode($Number, function(x) {
986
+ var value = %_ArgumentsLength() == 0 ? 0 : ToNumber(x);
987
+ if (%_IsConstructCall()) {
988
+ %_SetValueOf(this, value);
989
+ } else {
990
+ return value;
991
+ }
992
+ });
993
+
994
+ %FunctionSetPrototype($Number, new $Number(0));
995
+
996
+ // ECMA-262 section 15.7.4.2.
997
+ function NumberToString(radix) {
998
+ // NOTE: Both Number objects and values can enter here as
999
+ // 'this'. This is not as dictated by ECMA-262.
1000
+ var number = this;
1001
+ if (!IS_NUMBER(this)) {
1002
+ if (!IS_NUMBER_WRAPPER(this))
1003
+ throw new $TypeError('Number.prototype.toString is not generic');
1004
+ // Get the value of this number in case it's an object.
1005
+ number = %_ValueOf(this);
1006
+ }
1007
+ // Fast case: Convert number in radix 10.
1008
+ if (IS_UNDEFINED(radix) || radix === 10) {
1009
+ return %_NumberToString(number);
1010
+ }
1011
+
1012
+ // Convert the radix to an integer and check the range.
1013
+ radix = TO_INTEGER(radix);
1014
+ if (radix < 2 || radix > 36) {
1015
+ throw new $RangeError('toString() radix argument must be between 2 and 36');
1016
+ }
1017
+ // Convert the number to a string in the given radix.
1018
+ return %NumberToRadixString(number, radix);
1019
+ }
1020
+
1021
+
1022
+ // ECMA-262 section 15.7.4.3
1023
+ function NumberToLocaleString() {
1024
+ return this.toString();
1025
+ }
1026
+
1027
+
1028
+ // ECMA-262 section 15.7.4.4
1029
+ function NumberValueOf() {
1030
+ // NOTE: Both Number objects and values can enter here as
1031
+ // 'this'. This is not as dictated by ECMA-262.
1032
+ if (!IS_NUMBER(this) && !IS_NUMBER_WRAPPER(this))
1033
+ throw new $TypeError('Number.prototype.valueOf is not generic');
1034
+ return %_ValueOf(this);
1035
+ }
1036
+
1037
+
1038
+ // ECMA-262 section 15.7.4.5
1039
+ function NumberToFixed(fractionDigits) {
1040
+ var f = TO_INTEGER(fractionDigits);
1041
+ if (f < 0 || f > 20) {
1042
+ throw new $RangeError("toFixed() digits argument must be between 0 and 20");
1043
+ }
1044
+ var x = ToNumber(this);
1045
+ return %NumberToFixed(x, f);
1046
+ }
1047
+
1048
+
1049
+ // ECMA-262 section 15.7.4.6
1050
+ function NumberToExponential(fractionDigits) {
1051
+ var f = -1;
1052
+ if (!IS_UNDEFINED(fractionDigits)) {
1053
+ f = TO_INTEGER(fractionDigits);
1054
+ if (f < 0 || f > 20) {
1055
+ throw new $RangeError("toExponential() argument must be between 0 and 20");
1056
+ }
1057
+ }
1058
+ var x = ToNumber(this);
1059
+ return %NumberToExponential(x, f);
1060
+ }
1061
+
1062
+
1063
+ // ECMA-262 section 15.7.4.7
1064
+ function NumberToPrecision(precision) {
1065
+ if (IS_UNDEFINED(precision)) return ToString(%_ValueOf(this));
1066
+ var p = TO_INTEGER(precision);
1067
+ if (p < 1 || p > 21) {
1068
+ throw new $RangeError("toPrecision() argument must be between 1 and 21");
1069
+ }
1070
+ var x = ToNumber(this);
1071
+ return %NumberToPrecision(x, p);
1072
+ }
1073
+
1074
+
1075
+ // ----------------------------------------------------------------------------
1076
+
1077
+ function SetupNumber() {
1078
+ %OptimizeObjectForAddingMultipleProperties($Number.prototype, 8);
1079
+ // Setup the constructor property on the Number prototype object.
1080
+ %SetProperty($Number.prototype, "constructor", $Number, DONT_ENUM);
1081
+
1082
+ %OptimizeObjectForAddingMultipleProperties($Number, 5);
1083
+ // ECMA-262 section 15.7.3.1.
1084
+ %SetProperty($Number,
1085
+ "MAX_VALUE",
1086
+ 1.7976931348623157e+308,
1087
+ DONT_ENUM | DONT_DELETE | READ_ONLY);
1088
+
1089
+ // ECMA-262 section 15.7.3.2.
1090
+ %SetProperty($Number, "MIN_VALUE", 5e-324, DONT_ENUM | DONT_DELETE | READ_ONLY);
1091
+
1092
+ // ECMA-262 section 15.7.3.3.
1093
+ %SetProperty($Number, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY);
1094
+
1095
+ // ECMA-262 section 15.7.3.4.
1096
+ %SetProperty($Number,
1097
+ "NEGATIVE_INFINITY",
1098
+ -1/0,
1099
+ DONT_ENUM | DONT_DELETE | READ_ONLY);
1100
+
1101
+ // ECMA-262 section 15.7.3.5.
1102
+ %SetProperty($Number,
1103
+ "POSITIVE_INFINITY",
1104
+ 1/0,
1105
+ DONT_ENUM | DONT_DELETE | READ_ONLY);
1106
+ %ToFastProperties($Number);
1107
+
1108
+ // Setup non-enumerable functions on the Number prototype object.
1109
+ InstallFunctions($Number.prototype, DONT_ENUM, $Array(
1110
+ "toString", NumberToString,
1111
+ "toLocaleString", NumberToLocaleString,
1112
+ "valueOf", NumberValueOf,
1113
+ "toFixed", NumberToFixed,
1114
+ "toExponential", NumberToExponential,
1115
+ "toPrecision", NumberToPrecision
1116
+ ));
1117
+ }
1118
+
1119
+ SetupNumber();
1120
+
1121
+
1122
+ // ----------------------------------------------------------------------------
1123
+ // Function
1124
+
1125
+ $Function.prototype.constructor = $Function;
1126
+
1127
+ function FunctionSourceString(func) {
1128
+ if (!IS_FUNCTION(func)) {
1129
+ throw new $TypeError('Function.prototype.toString is not generic');
1130
+ }
1131
+
1132
+ var source = %FunctionGetSourceCode(func);
1133
+ if (!IS_STRING(source) || %FunctionIsBuiltin(func)) {
1134
+ var name = %FunctionGetName(func);
1135
+ if (name) {
1136
+ // Mimic what KJS does.
1137
+ return 'function ' + name + '() { [native code] }';
1138
+ } else {
1139
+ return 'function () { [native code] }';
1140
+ }
1141
+ }
1142
+
1143
+ var name = %FunctionGetName(func);
1144
+ return 'function ' + name + source;
1145
+ }
1146
+
1147
+
1148
+ function FunctionToString() {
1149
+ return FunctionSourceString(this);
1150
+ }
1151
+
1152
+
1153
+ // ES5 15.3.4.5
1154
+ function FunctionBind(this_arg) { // Length is 1.
1155
+ if (!IS_FUNCTION(this)) {
1156
+ throw new $TypeError('Bind must be called on a function');
1157
+ }
1158
+ // this_arg is not an argument that should be bound.
1159
+ var argc_bound = (%_ArgumentsLength() || 1) - 1;
1160
+ var fn = this;
1161
+ if (argc_bound == 0) {
1162
+ var result = function() {
1163
+ if (%_IsConstructCall()) {
1164
+ // %NewObjectFromBound implicitly uses arguments passed to this
1165
+ // function. We do not pass the arguments object explicitly to avoid
1166
+ // materializing it and guarantee that this function will be optimized.
1167
+ return %NewObjectFromBound(fn, null);
1168
+ }
1169
+
1170
+ return fn.apply(this_arg, arguments);
1171
+ };
1172
+ } else {
1173
+ var bound_args = new $Array(argc_bound);
1174
+ for(var i = 0; i < argc_bound; i++) {
1175
+ bound_args[i] = %_Arguments(i+1);
1176
+ }
1177
+
1178
+ var result = function() {
1179
+ // If this is a construct call we use a special runtime method
1180
+ // to generate the actual object using the bound function.
1181
+ if (%_IsConstructCall()) {
1182
+ // %NewObjectFromBound implicitly uses arguments passed to this
1183
+ // function. We do not pass the arguments object explicitly to avoid
1184
+ // materializing it and guarantee that this function will be optimized.
1185
+ return %NewObjectFromBound(fn, bound_args);
1186
+ }
1187
+
1188
+ // Combine the args we got from the bind call with the args
1189
+ // given as argument to the invocation.
1190
+ var argc = %_ArgumentsLength();
1191
+ var args = new $Array(argc + argc_bound);
1192
+ // Add bound arguments.
1193
+ for (var i = 0; i < argc_bound; i++) {
1194
+ args[i] = bound_args[i];
1195
+ }
1196
+ // Add arguments from call.
1197
+ for (var i = 0; i < argc; i++) {
1198
+ args[argc_bound + i] = %_Arguments(i);
1199
+ }
1200
+ return fn.apply(this_arg, args);
1201
+ };
1202
+ }
1203
+
1204
+ // We already have caller and arguments properties on functions,
1205
+ // which are non-configurable. It therefore makes no sence to
1206
+ // try to redefine these as defined by the spec. The spec says
1207
+ // that bind should make these throw a TypeError if get or set
1208
+ // is called and make them non-enumerable and non-configurable.
1209
+ // To be consistent with our normal functions we leave this as it is.
1210
+
1211
+ // Set the correct length.
1212
+ var length = (this.length - argc_bound) > 0 ? this.length - argc_bound : 0;
1213
+ %FunctionSetLength(result, length);
1214
+
1215
+ return result;
1216
+ }
1217
+
1218
+
1219
+ function NewFunction(arg1) { // length == 1
1220
+ var n = %_ArgumentsLength();
1221
+ var p = '';
1222
+ if (n > 1) {
1223
+ p = new $Array(n - 1);
1224
+ for (var i = 0; i < n - 1; i++) p[i] = %_Arguments(i);
1225
+ p = Join(p, n - 1, ',', NonStringToString);
1226
+ // If the formal parameters string include ) - an illegal
1227
+ // character - it may make the combined function expression
1228
+ // compile. We avoid this problem by checking for this early on.
1229
+ if (p.indexOf(')') != -1) throw MakeSyntaxError('unable_to_parse',[]);
1230
+ }
1231
+ var body = (n > 0) ? ToString(%_Arguments(n - 1)) : '';
1232
+ var source = '(function(' + p + ') {\n' + body + '\n})';
1233
+
1234
+ // The call to SetNewFunctionAttributes will ensure the prototype
1235
+ // property of the resulting function is enumerable (ECMA262, 15.3.5.2).
1236
+ var f = %CompileString(source)();
1237
+ %FunctionSetName(f, "anonymous");
1238
+ return %SetNewFunctionAttributes(f);
1239
+ }
1240
+
1241
+ %SetCode($Function, NewFunction);
1242
+
1243
+ // ----------------------------------------------------------------------------
1244
+
1245
+ function SetupFunction() {
1246
+ InstallFunctions($Function.prototype, DONT_ENUM, $Array(
1247
+ "bind", FunctionBind,
1248
+ "toString", FunctionToString
1249
+ ));
1250
+ }
1251
+
1252
+ SetupFunction();