therubyracer 0.6.3 → 0.7.0.pre

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 (520) hide show
  1. data/Rakefile +10 -9
  2. data/ext/v8/callbacks.cpp +15 -8
  3. data/ext/v8/converters.cpp +7 -8
  4. data/ext/v8/converters.h +0 -2
  5. data/ext/v8/extconf.rb +2 -0
  6. data/ext/v8/rr.cpp +169 -0
  7. data/ext/v8/rr.h +34 -0
  8. data/ext/v8/upstream/{2.0.6 → 2.1.10}/AUTHORS +8 -1
  9. data/ext/v8/upstream/{2.0.6 → 2.1.10}/ChangeLog +198 -0
  10. data/ext/v8/upstream/{2.0.6 → 2.1.10}/LICENSE +0 -0
  11. data/ext/v8/upstream/{2.0.6 → 2.1.10}/SConstruct +152 -38
  12. data/ext/v8/upstream/{2.0.6 → 2.1.10}/include/v8-debug.h +52 -4
  13. data/ext/v8/upstream/2.1.10/include/v8-profiler.h +176 -0
  14. data/ext/v8/upstream/{2.0.6 → 2.1.10}/include/v8.h +227 -48
  15. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/SConscript +60 -10
  16. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/accessors.cc +5 -39
  17. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/accessors.h +0 -0
  18. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/allocation.cc +0 -0
  19. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/allocation.h +0 -0
  20. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/api.cc +477 -57
  21. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/api.h +8 -4
  22. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/apinatives.js +1 -1
  23. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/apiutils.h +0 -0
  24. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arguments.h +5 -6
  25. data/ext/v8/upstream/{2.0.6/src/arm/assembler-thumb2-inl.h → 2.1.10/src/arm/assembler-arm-inl.h} +42 -27
  26. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-arm.cc +430 -216
  27. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-arm.h +199 -110
  28. data/ext/v8/upstream/{2.0.6/src/arm/assembler-arm-inl.h → 2.1.10/src/arm/assembler-thumb2-inl.h} +4 -18
  29. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-thumb2.cc +142 -85
  30. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-thumb2.h +18 -9
  31. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/builtins-arm.cc +127 -87
  32. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/codegen-arm-inl.h +3 -5
  33. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/codegen-arm.cc +4634 -1427
  34. data/ext/v8/upstream/2.1.10/src/arm/codegen-arm.h +946 -0
  35. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/constants-arm.cc +21 -3
  36. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/constants-arm.h +39 -13
  37. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/cpu-arm.cc +9 -3
  38. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/debug-arm.cc +34 -8
  39. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/disasm-arm.cc +262 -117
  40. data/ext/v8/upstream/2.1.10/src/arm/fast-codegen-arm.cc +238 -0
  41. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/frames-arm.cc +0 -0
  42. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/frames-arm.h +0 -0
  43. data/ext/v8/upstream/{2.0.6/src/arm/fast-codegen-arm.cc → 2.1.10/src/arm/full-codegen-arm.cc} +453 -283
  44. data/ext/v8/upstream/2.1.10/src/arm/ic-arm.cc +1833 -0
  45. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/jump-target-arm.cc +3 -29
  46. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/macro-assembler-arm.cc +564 -104
  47. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/macro-assembler-arm.h +255 -46
  48. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/regexp-macro-assembler-arm.cc +78 -104
  49. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/regexp-macro-assembler-arm.h +6 -22
  50. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/register-allocator-arm-inl.h +0 -3
  51. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/register-allocator-arm.cc +0 -0
  52. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/register-allocator-arm.h +2 -1
  53. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/simulator-arm.cc +557 -180
  54. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/simulator-arm.h +52 -4
  55. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/stub-cache-arm.cc +904 -240
  56. data/ext/v8/upstream/2.1.10/src/arm/virtual-frame-arm.cc +668 -0
  57. data/ext/v8/upstream/2.1.10/src/arm/virtual-frame-arm.h +503 -0
  58. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/array.js +82 -109
  59. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/assembler.cc +49 -13
  60. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/assembler.h +27 -5
  61. data/ext/v8/upstream/2.1.10/src/ast.cc +1138 -0
  62. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ast.h +354 -53
  63. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/bootstrapper.cc +609 -501
  64. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/bootstrapper.h +27 -8
  65. data/ext/v8/upstream/2.1.10/src/builtins.cc +1512 -0
  66. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/builtins.h +41 -25
  67. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/bytecodes-irregexp.h +0 -0
  68. data/ext/v8/upstream/2.1.10/src/cached-powers.h +119 -0
  69. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/char-predicates-inl.h +0 -0
  70. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/char-predicates.h +0 -0
  71. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/checks.cc +0 -0
  72. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/checks.h +25 -1
  73. data/ext/v8/upstream/2.1.10/src/circular-queue-inl.h +101 -0
  74. data/ext/v8/upstream/2.1.10/src/circular-queue.cc +121 -0
  75. data/ext/v8/upstream/2.1.10/src/circular-queue.h +129 -0
  76. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/code-stubs.cc +23 -8
  77. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/code-stubs.h +16 -4
  78. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/code.h +0 -0
  79. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/codegen-inl.h +6 -34
  80. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/codegen.cc +73 -92
  81. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/codegen.h +164 -68
  82. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/compilation-cache.cc +117 -73
  83. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/compilation-cache.h +18 -17
  84. data/ext/v8/upstream/2.1.10/src/compiler.cc +623 -0
  85. data/ext/v8/upstream/2.1.10/src/compiler.h +299 -0
  86. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/contexts.cc +0 -0
  87. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/contexts.h +8 -11
  88. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/conversions-inl.h +28 -13
  89. data/ext/v8/upstream/2.1.10/src/conversions.cc +1105 -0
  90. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/conversions.h +9 -4
  91. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/counters.cc +0 -0
  92. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/counters.h +1 -1
  93. data/ext/v8/upstream/2.1.10/src/cpu-profiler-inl.h +99 -0
  94. data/ext/v8/upstream/2.1.10/src/cpu-profiler.cc +494 -0
  95. data/ext/v8/upstream/2.1.10/src/cpu-profiler.h +277 -0
  96. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/cpu.h +0 -0
  97. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-debug.cc +15 -4
  98. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-debug.h +0 -0
  99. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-posix.cc +18 -0
  100. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-readline.cc +2 -2
  101. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-windows.cc +0 -0
  102. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8.cc +10 -6
  103. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8.h +2 -0
  104. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8.js +43 -38
  105. data/ext/v8/upstream/2.1.10/src/data-flow.cc +755 -0
  106. data/ext/v8/upstream/2.1.10/src/data-flow.h +278 -0
  107. data/ext/v8/upstream/{2.0.6/src/date-delay.js → 2.1.10/src/date.js} +100 -110
  108. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dateparser-inl.h +11 -2
  109. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dateparser.cc +24 -26
  110. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dateparser.h +8 -4
  111. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug-agent.cc +3 -1
  112. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug-agent.h +0 -0
  113. data/ext/v8/upstream/{2.0.6/src/debug-delay.js → 2.1.10/src/debug-debugger.js} +111 -15
  114. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug.cc +156 -96
  115. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug.h +53 -5
  116. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/disasm.h +0 -0
  117. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/disassembler.cc +2 -8
  118. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/disassembler.h +0 -0
  119. data/ext/v8/upstream/2.1.10/src/diy-fp.cc +58 -0
  120. data/ext/v8/upstream/2.1.10/src/diy-fp.h +117 -0
  121. data/ext/v8/upstream/2.1.10/src/double.h +169 -0
  122. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dtoa-config.c +4 -3
  123. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/execution.cc +22 -22
  124. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/execution.h +17 -4
  125. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/factory.cc +70 -46
  126. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/factory.h +27 -17
  127. data/ext/v8/upstream/2.1.10/src/fast-codegen.cc +746 -0
  128. data/ext/v8/upstream/2.1.10/src/fast-codegen.h +161 -0
  129. data/ext/v8/upstream/2.1.10/src/fast-dtoa.cc +512 -0
  130. data/ext/v8/upstream/2.1.10/src/fast-dtoa.h +59 -0
  131. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/flag-definitions.h +32 -11
  132. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/flags.cc +0 -0
  133. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/flags.h +0 -0
  134. data/ext/v8/upstream/2.1.10/src/flow-graph.cc +763 -0
  135. data/ext/v8/upstream/2.1.10/src/flow-graph.h +180 -0
  136. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frame-element.cc +1 -4
  137. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frame-element.h +49 -11
  138. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frames-inl.h +2 -0
  139. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frames.cc +91 -17
  140. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frames.h +24 -2
  141. data/ext/v8/upstream/{2.0.6/src/fast-codegen.cc → 2.1.10/src/full-codegen.cc} +549 -198
  142. data/ext/v8/upstream/{2.0.6/src/fast-codegen.h → 2.1.10/src/full-codegen.h} +109 -29
  143. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/func-name-inferrer.cc +0 -0
  144. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/func-name-inferrer.h +0 -0
  145. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/global-handles.cc +0 -0
  146. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/global-handles.h +0 -0
  147. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/globals.h +67 -43
  148. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/handles-inl.h +0 -0
  149. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/handles.cc +124 -129
  150. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/handles.h +33 -15
  151. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/hashmap.cc +0 -0
  152. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/hashmap.h +0 -0
  153. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap-inl.h +56 -12
  154. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap-profiler.cc +2 -2
  155. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap-profiler.h +2 -0
  156. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap.cc +413 -221
  157. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap.h +192 -67
  158. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/assembler-ia32-inl.h +6 -0
  159. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/assembler-ia32.cc +187 -32
  160. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/assembler-ia32.h +31 -4
  161. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/builtins-ia32.cc +160 -133
  162. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/codegen-ia32-inl.h +0 -0
  163. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/codegen-ia32.cc +5533 -2177
  164. data/ext/v8/upstream/{2.0.6/src/x64/codegen-x64.h → 2.1.10/src/ia32/codegen-ia32.h} +453 -134
  165. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/cpu-ia32.cc +0 -0
  166. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/debug-ia32.cc +63 -8
  167. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/disasm-ia32.cc +99 -16
  168. data/ext/v8/upstream/2.1.10/src/ia32/fast-codegen-ia32.cc +950 -0
  169. data/ext/v8/upstream/2.1.10/src/ia32/fast-codegen-ia32.h +155 -0
  170. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/frames-ia32.cc +0 -0
  171. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/frames-ia32.h +0 -0
  172. data/ext/v8/upstream/{2.0.6/src/ia32/fast-codegen-ia32.cc → 2.1.10/src/ia32/full-codegen-ia32.cc} +454 -253
  173. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/ic-ia32.cc +545 -390
  174. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/jump-target-ia32.cc +1 -0
  175. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/macro-assembler-ia32.cc +330 -139
  176. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/macro-assembler-ia32.h +96 -30
  177. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/regexp-macro-assembler-ia32.cc +73 -89
  178. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/regexp-macro-assembler-ia32.h +6 -21
  179. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/register-allocator-ia32-inl.h +0 -0
  180. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/register-allocator-ia32.cc +59 -5
  181. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/register-allocator-ia32.h +0 -0
  182. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/simulator-ia32.cc +0 -0
  183. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/simulator-ia32.h +2 -2
  184. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/stub-cache-ia32.cc +745 -303
  185. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/virtual-frame-ia32.cc +278 -71
  186. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/virtual-frame-ia32.h +78 -22
  187. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ic-inl.h +0 -0
  188. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ic.cc +172 -89
  189. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ic.h +51 -20
  190. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/interpreter-irregexp.cc +0 -0
  191. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/interpreter-irregexp.h +0 -0
  192. data/ext/v8/upstream/{2.0.6/src/json-delay.js → 2.1.10/src/json.js} +26 -12
  193. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jsregexp.cc +151 -118
  194. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jsregexp.h +31 -7
  195. data/ext/v8/upstream/2.1.10/src/jump-target-heavy-inl.h +51 -0
  196. data/ext/v8/upstream/{2.0.6/src/jump-target.cc → 2.1.10/src/jump-target-heavy.cc} +164 -184
  197. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jump-target-inl.h +8 -9
  198. data/ext/v8/upstream/{2.0.6/src/usage-analyzer.h → 2.1.10/src/jump-target-light-inl.h} +9 -7
  199. data/ext/v8/upstream/2.1.10/src/jump-target-light.cc +86 -0
  200. data/ext/v8/upstream/2.1.10/src/jump-target.cc +155 -0
  201. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jump-target.h +6 -0
  202. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/list-inl.h +0 -0
  203. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/list.h +2 -1
  204. data/ext/v8/upstream/2.1.10/src/liveedit-debugger.js +944 -0
  205. data/ext/v8/upstream/2.1.10/src/liveedit.cc +1468 -0
  206. data/ext/v8/upstream/2.1.10/src/liveedit.h +170 -0
  207. data/ext/v8/upstream/2.1.10/src/log-inl.h +59 -0
  208. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log-utils.cc +3 -9
  209. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log-utils.h +1 -4
  210. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log.cc +198 -95
  211. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log.h +50 -49
  212. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/macro-assembler.h +9 -0
  213. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/macros.py +30 -11
  214. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/mark-compact.cc +464 -152
  215. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/mark-compact.h +41 -20
  216. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/math.js +9 -8
  217. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/memory.h +0 -0
  218. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/messages.cc +1 -0
  219. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/messages.h +0 -0
  220. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/messages.js +46 -9
  221. data/ext/v8/upstream/2.1.10/src/mips/assembler-mips-inl.h +215 -0
  222. data/ext/v8/upstream/2.1.10/src/mips/assembler-mips.cc +1208 -0
  223. data/ext/v8/upstream/2.1.10/src/mips/assembler-mips.h +665 -0
  224. data/ext/v8/upstream/2.1.10/src/mips/builtins-mips.cc +202 -0
  225. data/ext/v8/upstream/2.1.10/src/mips/codegen-mips-inl.h +70 -0
  226. data/ext/v8/upstream/2.1.10/src/mips/codegen-mips.cc +1428 -0
  227. data/ext/v8/upstream/{2.0.6/src/arm/codegen-arm.h → 2.1.10/src/mips/codegen-mips.h} +103 -205
  228. data/ext/v8/upstream/2.1.10/src/mips/constants-mips.cc +323 -0
  229. data/ext/v8/upstream/2.1.10/src/mips/constants-mips.h +525 -0
  230. data/ext/v8/upstream/2.1.10/src/mips/cpu-mips.cc +69 -0
  231. data/ext/v8/upstream/2.1.10/src/mips/debug-mips.cc +128 -0
  232. data/ext/v8/upstream/2.1.10/src/mips/disasm-mips.cc +784 -0
  233. data/ext/v8/upstream/2.1.10/src/mips/fast-codegen-mips.cc +74 -0
  234. data/ext/v8/upstream/2.1.10/src/mips/frames-mips.cc +99 -0
  235. data/ext/v8/upstream/2.1.10/src/mips/frames-mips.h +164 -0
  236. data/ext/v8/upstream/2.1.10/src/mips/full-codegen-mips.cc +273 -0
  237. data/ext/v8/upstream/2.1.10/src/mips/ic-mips.cc +217 -0
  238. data/ext/v8/upstream/2.1.10/src/mips/jump-target-mips.cc +172 -0
  239. data/ext/v8/upstream/2.1.10/src/mips/macro-assembler-mips.cc +1323 -0
  240. data/ext/v8/upstream/2.1.10/src/mips/macro-assembler-mips.h +461 -0
  241. data/ext/v8/upstream/2.1.10/src/mips/register-allocator-mips-inl.h +137 -0
  242. data/ext/v8/upstream/2.1.10/src/mips/register-allocator-mips.cc +60 -0
  243. data/ext/v8/upstream/2.1.10/src/mips/register-allocator-mips.h +46 -0
  244. data/ext/v8/upstream/2.1.10/src/mips/simulator-mips.cc +1648 -0
  245. data/ext/v8/upstream/2.1.10/src/mips/simulator-mips.h +311 -0
  246. data/ext/v8/upstream/2.1.10/src/mips/stub-cache-mips.cc +400 -0
  247. data/ext/v8/upstream/2.1.10/src/mips/virtual-frame-mips.cc +316 -0
  248. data/ext/v8/upstream/{2.0.6/src/arm/virtual-frame-arm.h → 2.1.10/src/mips/virtual-frame-mips.h} +87 -71
  249. data/ext/v8/upstream/{2.0.6/src/mirror-delay.js → 2.1.10/src/mirror-debugger.js} +51 -45
  250. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/mksnapshot.cc +97 -10
  251. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/natives.h +6 -6
  252. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects-debug.cc +47 -5
  253. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects-inl.h +154 -38
  254. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects.cc +528 -280
  255. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects.h +302 -95
  256. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/oprofile-agent.cc +25 -33
  257. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/oprofile-agent.h +9 -1
  258. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/parser.cc +444 -72
  259. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/parser.h +4 -2
  260. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-freebsd.cc +32 -13
  261. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-linux.cc +59 -25
  262. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-macos.cc +30 -13
  263. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-nullos.cc +0 -0
  264. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-openbsd.cc +21 -2
  265. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-posix.cc +0 -18
  266. data/ext/v8/upstream/2.1.10/src/platform-solaris.cc +607 -0
  267. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-win32.cc +16 -17
  268. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform.h +25 -8
  269. data/ext/v8/upstream/2.1.10/src/powers-ten.h +2461 -0
  270. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/prettyprinter.cc +49 -29
  271. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/prettyprinter.h +3 -1
  272. data/ext/v8/upstream/2.1.10/src/profile-generator-inl.h +124 -0
  273. data/ext/v8/upstream/2.1.10/src/profile-generator.cc +583 -0
  274. data/ext/v8/upstream/2.1.10/src/profile-generator.h +364 -0
  275. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/property.cc +1 -1
  276. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/property.h +12 -24
  277. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-irregexp-inl.h +2 -2
  278. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-irregexp.cc +2 -2
  279. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-irregexp.h +2 -2
  280. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-tracer.cc +2 -2
  281. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-tracer.h +0 -0
  282. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler.cc +33 -10
  283. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler.h +12 -4
  284. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-stack.cc +0 -0
  285. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-stack.h +0 -0
  286. data/ext/v8/upstream/{2.0.6/src/regexp-delay.js → 2.1.10/src/regexp.js} +180 -58
  287. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/register-allocator-inl.h +68 -1
  288. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/register-allocator.cc +5 -2
  289. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/register-allocator.h +42 -17
  290. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/rewriter.cc +110 -4
  291. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/rewriter.h +0 -0
  292. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/runtime.cc +2733 -623
  293. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/runtime.h +43 -20
  294. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/runtime.js +46 -35
  295. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scanner.cc +278 -36
  296. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scanner.h +97 -26
  297. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopeinfo.cc +3 -3
  298. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopeinfo.h +1 -0
  299. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopes.cc +11 -12
  300. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopes.h +0 -1
  301. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/serialize.cc +298 -175
  302. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/serialize.h +184 -40
  303. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/shell.h +0 -0
  304. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/simulator.h +2 -0
  305. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/smart-pointer.h +0 -0
  306. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/snapshot-common.cc +16 -31
  307. data/ext/v8/upstream/2.1.10/src/snapshot-empty.cc +50 -0
  308. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/snapshot.h +13 -1
  309. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/spaces-inl.h +35 -27
  310. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/spaces.cc +256 -42
  311. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/spaces.h +136 -42
  312. data/ext/v8/upstream/{2.0.6/src/zone-inl.h → 2.1.10/src/splay-tree-inl.h} +102 -89
  313. data/ext/v8/upstream/2.1.10/src/splay-tree.h +203 -0
  314. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/string-stream.cc +0 -0
  315. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/string-stream.h +0 -0
  316. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/string.js +260 -149
  317. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/stub-cache.cc +195 -69
  318. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/stub-cache.h +127 -12
  319. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/third_party/dtoa/COPYING +0 -0
  320. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/third_party/dtoa/dtoa.c +0 -0
  321. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/third_party/valgrind/valgrind.h +0 -0
  322. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/token.cc +0 -0
  323. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/token.h +0 -0
  324. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/top.cc +26 -31
  325. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/top.h +3 -4
  326. data/ext/v8/upstream/2.1.10/src/type-info.cc +53 -0
  327. data/ext/v8/upstream/2.1.10/src/type-info.h +244 -0
  328. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/unicode-inl.h +0 -0
  329. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/unicode.cc +0 -0
  330. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/unicode.h +0 -0
  331. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/uri.js +6 -6
  332. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/utils.cc +0 -37
  333. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/utils.h +121 -50
  334. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8-counters.cc +0 -0
  335. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8-counters.h +130 -98
  336. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8.cc +42 -11
  337. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8.h +4 -2
  338. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8natives.js +202 -37
  339. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8threads.cc +11 -0
  340. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8threads.h +15 -0
  341. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/variables.cc +7 -51
  342. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/variables.h +5 -35
  343. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/version.cc +3 -3
  344. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/version.h +0 -0
  345. data/ext/v8/upstream/2.1.10/src/virtual-frame-heavy-inl.h +152 -0
  346. data/ext/v8/upstream/{2.0.6/src/virtual-frame.cc → 2.1.10/src/virtual-frame-heavy.cc} +107 -176
  347. data/ext/v8/upstream/2.1.10/src/virtual-frame-inl.h +39 -0
  348. data/ext/v8/upstream/2.1.10/src/virtual-frame-light-inl.h +69 -0
  349. data/ext/v8/upstream/2.1.10/src/virtual-frame-light.cc +49 -0
  350. data/ext/v8/upstream/2.1.10/src/virtual-frame.cc +49 -0
  351. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/virtual-frame.h +2 -0
  352. data/ext/v8/upstream/{2.0.6/src/log-inl.h → 2.1.10/src/vm-state-inl.h} +28 -20
  353. data/ext/v8/upstream/{2.0.6/src/snapshot-empty.cc → 2.1.10/src/vm-state.cc} +5 -6
  354. data/ext/v8/upstream/2.1.10/src/vm-state.h +75 -0
  355. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/assembler-x64-inl.h +11 -0
  356. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/assembler-x64.cc +285 -93
  357. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/assembler-x64.h +81 -78
  358. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/builtins-x64.cc +130 -87
  359. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/codegen-x64-inl.h +0 -0
  360. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/codegen-x64.cc +4520 -1317
  361. data/ext/v8/upstream/{2.0.6/src/ia32/codegen-ia32.h → 2.1.10/src/x64/codegen-x64.h} +362 -141
  362. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/cpu-x64.cc +0 -0
  363. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/debug-x64.cc +20 -4
  364. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/disasm-x64.cc +121 -44
  365. data/ext/v8/upstream/2.1.10/src/x64/fast-codegen-x64.cc +246 -0
  366. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/frames-x64.cc +0 -0
  367. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/frames-x64.h +0 -0
  368. data/ext/v8/upstream/{2.0.6/src/x64/fast-codegen-x64.cc → 2.1.10/src/x64/full-codegen-x64.cc} +404 -231
  369. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/ic-x64.cc +346 -117
  370. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/jump-target-x64.cc +1 -0
  371. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/macro-assembler-x64.cc +537 -181
  372. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/macro-assembler-x64.h +140 -34
  373. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/regexp-macro-assembler-x64.cc +74 -96
  374. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/regexp-macro-assembler-x64.h +8 -25
  375. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/register-allocator-x64-inl.h +1 -1
  376. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/register-allocator-x64.cc +3 -0
  377. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/register-allocator-x64.h +0 -0
  378. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/simulator-x64.cc +0 -0
  379. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/simulator-x64.h +2 -2
  380. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/stub-cache-x64.cc +785 -288
  381. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/virtual-frame-x64.cc +128 -52
  382. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/virtual-frame-x64.h +40 -19
  383. data/ext/v8/upstream/2.1.10/src/zone-inl.h +82 -0
  384. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/zone.cc +1 -0
  385. data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/zone.h +6 -90
  386. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/codemap.js +12 -0
  387. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/consarray.js +0 -0
  388. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/csvparser.js +22 -37
  389. data/ext/v8/upstream/2.1.10/tools/generate-ten-powers.scm +286 -0
  390. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/gyp/v8.gyp +86 -24
  391. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/js2c.py +22 -22
  392. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/jsmin.py +0 -0
  393. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/linux-tick-processor +10 -1
  394. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/linux-tick-processor.py +0 -0
  395. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/logreader.js +34 -16
  396. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/mac-nm +0 -0
  397. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/mac-tick-processor +0 -0
  398. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/annotate +0 -0
  399. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/common +0 -0
  400. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/dump +0 -0
  401. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/report +0 -0
  402. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/reset +0 -0
  403. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/run +0 -0
  404. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/shutdown +0 -0
  405. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/start +0 -0
  406. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/presubmit.py +0 -0
  407. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/process-heap-prof.py +0 -0
  408. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/profile.js +70 -0
  409. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/profile_view.js +0 -0
  410. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/run-valgrind.py +0 -0
  411. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/splaytree.js +0 -0
  412. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/splaytree.py +0 -0
  413. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/stats-viewer.py +0 -0
  414. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/test.py +7 -7
  415. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/tickprocessor-driver.js +7 -1
  416. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/tickprocessor.js +140 -9
  417. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/tickprocessor.py +40 -4
  418. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/utils.py +6 -0
  419. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/README.txt +0 -0
  420. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/arm.vsprops +1 -1
  421. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/common.vsprops +1 -2
  422. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8.vcproj +0 -6
  423. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8_arm.vcproj +193 -199
  424. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8_x64.vcproj +16 -8
  425. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8js2c.cmd +0 -0
  426. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/debug.vsprops +0 -0
  427. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/ia32.vsprops +5 -1
  428. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/js2c.cmd +1 -1
  429. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/release.vsprops +0 -0
  430. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8.sln +0 -0
  431. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8.vcproj +11 -7
  432. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_arm.sln +0 -0
  433. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_arm.vcproj +227 -223
  434. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_base.vcproj +137 -5
  435. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_base_arm.vcproj +116 -4
  436. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_base_x64.vcproj +125 -4
  437. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_cctest.vcproj +12 -6
  438. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_cctest_arm.vcproj +12 -6
  439. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_cctest_x64.vcproj +11 -11
  440. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_mksnapshot.vcproj +0 -6
  441. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -6
  442. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_process_sample.vcproj +0 -6
  443. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_process_sample_arm.vcproj +145 -151
  444. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_process_sample_x64.vcproj +16 -6
  445. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_shell_sample.vcproj +0 -6
  446. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_shell_sample_arm.vcproj +145 -151
  447. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_shell_sample_x64.vcproj +16 -8
  448. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot.vcproj +0 -0
  449. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
  450. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
  451. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
  452. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_x64.sln +0 -0
  453. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_x64.vcproj +11 -7
  454. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/x64.vsprops +5 -1
  455. data/ext/v8/upstream/2.1.10/tools/windows-tick-processor.bat +29 -0
  456. data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/windows-tick-processor.py +0 -0
  457. data/ext/v8/upstream/Makefile +8 -2
  458. data/ext/v8/v8.cpp +21 -73
  459. data/ext/v8/v8_array.cpp +56 -0
  460. data/ext/v8/v8_array.h +8 -0
  461. data/ext/v8/v8_callbacks.cpp +121 -0
  462. data/ext/v8/v8_callbacks.h +8 -0
  463. data/ext/v8/v8_cxt.cpp +74 -77
  464. data/ext/v8/v8_cxt.h +2 -9
  465. data/ext/v8/v8_date.cpp +26 -0
  466. data/ext/v8/v8_date.h +6 -0
  467. data/ext/v8/v8_exception.cpp +55 -0
  468. data/ext/v8/v8_exception.h +6 -0
  469. data/ext/v8/v8_external.cpp +50 -0
  470. data/ext/v8/v8_external.h +8 -0
  471. data/ext/v8/v8_func.cpp +76 -18
  472. data/ext/v8/v8_func.h +5 -4
  473. data/ext/v8/v8_msg.cpp +55 -46
  474. data/ext/v8/v8_msg.h +3 -11
  475. data/ext/v8/v8_obj.cpp +67 -36
  476. data/ext/v8/v8_obj.h +6 -8
  477. data/ext/v8/v8_ref.cpp +25 -9
  478. data/ext/v8/v8_ref.h +3 -5
  479. data/ext/v8/v8_script.cpp +17 -10
  480. data/ext/v8/v8_script.h +3 -3
  481. data/ext/v8/v8_str.cpp +34 -6
  482. data/ext/v8/v8_str.h +4 -2
  483. data/ext/v8/v8_template.cpp +195 -33
  484. data/ext/v8/v8_template.h +4 -5
  485. data/ext/v8/v8_try_catch.cpp +99 -0
  486. data/ext/v8/v8_try_catch.h +5 -0
  487. data/ext/v8/v8_value.cpp +164 -0
  488. data/ext/v8/v8_value.h +10 -0
  489. data/lib/v8.rb +3 -1
  490. data/lib/v8/access.rb +60 -0
  491. data/lib/v8/array.rb +15 -0
  492. data/lib/v8/callbacks.rb +88 -0
  493. data/lib/v8/cli.rb +1 -1
  494. data/lib/v8/context.rb +55 -66
  495. data/lib/v8/function.rb +20 -2
  496. data/lib/v8/object.rb +14 -12
  497. data/lib/v8/ruby_error.rb +3 -0
  498. data/lib/v8/to.rb +59 -7
  499. data/spec/ext/cxt_spec.rb +2 -15
  500. data/spec/ext/func_spec.rb +17 -10
  501. data/spec/ext/try_catch_spec.rb +32 -0
  502. data/spec/foo.rb +17 -0
  503. data/spec/redjs/jsapi_spec.rb +173 -96
  504. data/spec/spec_helper.rb +7 -0
  505. data/spec/v8/to_spec.rb +0 -1
  506. data/therubyracer.gemspec +6 -6
  507. metadata +493 -386
  508. data/ext/v8/upstream/2.0.6/src/arm/ic-arm.cc +0 -849
  509. data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.cc +0 -412
  510. data/ext/v8/upstream/2.0.6/src/ast.cc +0 -512
  511. data/ext/v8/upstream/2.0.6/src/builtins.cc +0 -851
  512. data/ext/v8/upstream/2.0.6/src/compiler.cc +0 -1132
  513. data/ext/v8/upstream/2.0.6/src/compiler.h +0 -107
  514. data/ext/v8/upstream/2.0.6/src/conversions.cc +0 -709
  515. data/ext/v8/upstream/2.0.6/src/usage-analyzer.cc +0 -426
  516. data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat +0 -5
  517. data/ext/v8/upstream/no-strict-aliasing.patch +0 -13
  518. data/ext/v8/v8_standalone.cpp +0 -69
  519. data/ext/v8/v8_standalone.h +0 -31
  520. data/spec/ext/obj_spec.rb +0 -13
@@ -32,6 +32,24 @@
32
32
  namespace v8 {
33
33
  namespace internal {
34
34
 
35
+
36
+ class BootstrapperActive BASE_EMBEDDED {
37
+ public:
38
+ BootstrapperActive() { nesting_++; }
39
+ ~BootstrapperActive() { nesting_--; }
40
+
41
+ // Support for thread preemption.
42
+ static int ArchiveSpacePerThread();
43
+ static char* ArchiveState(char* to);
44
+ static char* RestoreState(char* from);
45
+
46
+ private:
47
+ static bool IsActive() { return nesting_ != 0; }
48
+ static int nesting_;
49
+ friend class Bootstrapper;
50
+ };
51
+
52
+
35
53
  // The Boostrapper is the public interface for creating a JavaScript global
36
54
  // context.
37
55
  class Bootstrapper : public AllStatic {
@@ -50,20 +68,17 @@ class Bootstrapper : public AllStatic {
50
68
  // Detach the environment from its outer global object.
51
69
  static void DetachGlobal(Handle<Context> env);
52
70
 
71
+ // Reattach an outer global object to an environment.
72
+ static void ReattachGlobal(Handle<Context> env, Handle<Object> global_object);
73
+
53
74
  // Traverses the pointers for memory management.
54
75
  static void Iterate(ObjectVisitor* v);
55
76
 
56
- // Accessors for the native scripts cache. Used in lazy loading.
77
+ // Accessor for the native scripts source code.
57
78
  static Handle<String> NativesSourceLookup(int index);
58
- static bool NativesCacheLookup(Vector<const char> name,
59
- Handle<JSFunction>* handle);
60
- static void NativesCacheAdd(Vector<const char> name, Handle<JSFunction> fun);
61
-
62
- // Append code that needs fixup at the end of boot strapping.
63
- static void AddFixup(Code* code, MacroAssembler* masm);
64
79
 
65
80
  // Tells whether bootstrapping is active.
66
- static bool IsActive();
81
+ static bool IsActive() { return BootstrapperActive::IsActive(); }
67
82
 
68
83
  // Encoding/decoding support for fixup flags.
69
84
  class FixupFlagsUseCodeObject: public BitField<bool, 0, 1> {};
@@ -78,6 +93,10 @@ class Bootstrapper : public AllStatic {
78
93
  // This will allocate a char array that is deleted when V8 is shut down.
79
94
  // It should only be used for strictly finite allocations.
80
95
  static char* AllocateAutoDeletedArray(int bytes);
96
+
97
+ // Used for new context creation.
98
+ static bool InstallExtensions(Handle<Context> global_context,
99
+ v8::ExtensionConfiguration* extensions);
81
100
  };
82
101
 
83
102
 
@@ -0,0 +1,1512 @@
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
+ #include "v8.h"
29
+
30
+ #include "api.h"
31
+ #include "arguments.h"
32
+ #include "bootstrapper.h"
33
+ #include "builtins.h"
34
+ #include "ic-inl.h"
35
+
36
+ namespace v8 {
37
+ namespace internal {
38
+
39
+ namespace {
40
+
41
+ // Arguments object passed to C++ builtins.
42
+ template <BuiltinExtraArguments extra_args>
43
+ class BuiltinArguments : public Arguments {
44
+ public:
45
+ BuiltinArguments(int length, Object** arguments)
46
+ : Arguments(length, arguments) { }
47
+
48
+ Object*& operator[] (int index) {
49
+ ASSERT(index < length());
50
+ return Arguments::operator[](index);
51
+ }
52
+
53
+ template <class S> Handle<S> at(int index) {
54
+ ASSERT(index < length());
55
+ return Arguments::at<S>(index);
56
+ }
57
+
58
+ Handle<Object> receiver() {
59
+ return Arguments::at<Object>(0);
60
+ }
61
+
62
+ Handle<JSFunction> called_function() {
63
+ STATIC_ASSERT(extra_args == NEEDS_CALLED_FUNCTION);
64
+ return Arguments::at<JSFunction>(Arguments::length() - 1);
65
+ }
66
+
67
+ // Gets the total number of arguments including the receiver (but
68
+ // excluding extra arguments).
69
+ int length() const {
70
+ STATIC_ASSERT(extra_args == NO_EXTRA_ARGUMENTS);
71
+ return Arguments::length();
72
+ }
73
+
74
+ #ifdef DEBUG
75
+ void Verify() {
76
+ // Check we have at least the receiver.
77
+ ASSERT(Arguments::length() >= 1);
78
+ }
79
+ #endif
80
+ };
81
+
82
+
83
+ // Specialize BuiltinArguments for the called function extra argument.
84
+
85
+ template <>
86
+ int BuiltinArguments<NEEDS_CALLED_FUNCTION>::length() const {
87
+ return Arguments::length() - 1;
88
+ }
89
+
90
+ #ifdef DEBUG
91
+ template <>
92
+ void BuiltinArguments<NEEDS_CALLED_FUNCTION>::Verify() {
93
+ // Check we have at least the receiver and the called function.
94
+ ASSERT(Arguments::length() >= 2);
95
+ // Make sure cast to JSFunction succeeds.
96
+ called_function();
97
+ }
98
+ #endif
99
+
100
+
101
+ #define DEF_ARG_TYPE(name, spec) \
102
+ typedef BuiltinArguments<spec> name##ArgumentsType;
103
+ BUILTIN_LIST_C(DEF_ARG_TYPE)
104
+ #undef DEF_ARG_TYPE
105
+
106
+ } // namespace
107
+
108
+
109
+ // ----------------------------------------------------------------------------
110
+ // Support macro for defining builtins in C++.
111
+ // ----------------------------------------------------------------------------
112
+ //
113
+ // A builtin function is defined by writing:
114
+ //
115
+ // BUILTIN(name) {
116
+ // ...
117
+ // }
118
+ //
119
+ // In the body of the builtin function the arguments can be accessed
120
+ // through the BuiltinArguments object args.
121
+
122
+ #ifdef DEBUG
123
+
124
+ #define BUILTIN(name) \
125
+ static Object* Builtin_Impl_##name(name##ArgumentsType args); \
126
+ static Object* Builtin_##name(name##ArgumentsType args) { \
127
+ args.Verify(); \
128
+ return Builtin_Impl_##name(args); \
129
+ } \
130
+ static Object* Builtin_Impl_##name(name##ArgumentsType args)
131
+
132
+ #else // For release mode.
133
+
134
+ #define BUILTIN(name) \
135
+ static Object* Builtin_##name(name##ArgumentsType args)
136
+
137
+ #endif
138
+
139
+
140
+ static inline bool CalledAsConstructor() {
141
+ #ifdef DEBUG
142
+ // Calculate the result using a full stack frame iterator and check
143
+ // that the state of the stack is as we assume it to be in the
144
+ // code below.
145
+ StackFrameIterator it;
146
+ ASSERT(it.frame()->is_exit());
147
+ it.Advance();
148
+ StackFrame* frame = it.frame();
149
+ bool reference_result = frame->is_construct();
150
+ #endif
151
+ Address fp = Top::c_entry_fp(Top::GetCurrentThread());
152
+ // Because we know fp points to an exit frame we can use the relevant
153
+ // part of ExitFrame::ComputeCallerState directly.
154
+ const int kCallerOffset = ExitFrameConstants::kCallerFPOffset;
155
+ Address caller_fp = Memory::Address_at(fp + kCallerOffset);
156
+ // This inlines the part of StackFrame::ComputeType that grabs the
157
+ // type of the current frame. Note that StackFrame::ComputeType
158
+ // has been specialized for each architecture so if any one of them
159
+ // changes this code has to be changed as well.
160
+ const int kMarkerOffset = StandardFrameConstants::kMarkerOffset;
161
+ const Smi* kConstructMarker = Smi::FromInt(StackFrame::CONSTRUCT);
162
+ Object* marker = Memory::Object_at(caller_fp + kMarkerOffset);
163
+ bool result = (marker == kConstructMarker);
164
+ ASSERT_EQ(result, reference_result);
165
+ return result;
166
+ }
167
+
168
+ // ----------------------------------------------------------------------------
169
+
170
+
171
+ BUILTIN(Illegal) {
172
+ UNREACHABLE();
173
+ return Heap::undefined_value(); // Make compiler happy.
174
+ }
175
+
176
+
177
+ BUILTIN(EmptyFunction) {
178
+ return Heap::undefined_value();
179
+ }
180
+
181
+
182
+ BUILTIN(ArrayCodeGeneric) {
183
+ Counters::array_function_runtime.Increment();
184
+
185
+ JSArray* array;
186
+ if (CalledAsConstructor()) {
187
+ array = JSArray::cast(*args.receiver());
188
+ } else {
189
+ // Allocate the JS Array
190
+ JSFunction* constructor =
191
+ Top::context()->global_context()->array_function();
192
+ Object* obj = Heap::AllocateJSObject(constructor);
193
+ if (obj->IsFailure()) return obj;
194
+ array = JSArray::cast(obj);
195
+ }
196
+
197
+ // 'array' now contains the JSArray we should initialize.
198
+
199
+ // Optimize the case where there is one argument and the argument is a
200
+ // small smi.
201
+ if (args.length() == 2) {
202
+ Object* obj = args[1];
203
+ if (obj->IsSmi()) {
204
+ int len = Smi::cast(obj)->value();
205
+ if (len >= 0 && len < JSObject::kInitialMaxFastElementArray) {
206
+ Object* obj = Heap::AllocateFixedArrayWithHoles(len);
207
+ if (obj->IsFailure()) return obj;
208
+ array->SetContent(FixedArray::cast(obj));
209
+ return array;
210
+ }
211
+ }
212
+ // Take the argument as the length.
213
+ obj = array->Initialize(0);
214
+ if (obj->IsFailure()) return obj;
215
+ return array->SetElementsLength(args[1]);
216
+ }
217
+
218
+ // Optimize the case where there are no parameters passed.
219
+ if (args.length() == 1) {
220
+ return array->Initialize(JSArray::kPreallocatedArrayElements);
221
+ }
222
+
223
+ // Take the arguments as elements.
224
+ int number_of_elements = args.length() - 1;
225
+ Smi* len = Smi::FromInt(number_of_elements);
226
+ Object* obj = Heap::AllocateFixedArrayWithHoles(len->value());
227
+ if (obj->IsFailure()) return obj;
228
+
229
+ AssertNoAllocation no_gc;
230
+ FixedArray* elms = FixedArray::cast(obj);
231
+ WriteBarrierMode mode = elms->GetWriteBarrierMode(no_gc);
232
+ // Fill in the content
233
+ for (int index = 0; index < number_of_elements; index++) {
234
+ elms->set(index, args[index+1], mode);
235
+ }
236
+
237
+ // Set length and elements on the array.
238
+ array->set_elements(FixedArray::cast(obj));
239
+ array->set_length(len);
240
+
241
+ return array;
242
+ }
243
+
244
+
245
+ static Object* AllocateJSArray() {
246
+ JSFunction* array_function =
247
+ Top::context()->global_context()->array_function();
248
+ Object* result = Heap::AllocateJSObject(array_function);
249
+ if (result->IsFailure()) return result;
250
+ return result;
251
+ }
252
+
253
+
254
+ static Object* AllocateEmptyJSArray() {
255
+ Object* result = AllocateJSArray();
256
+ if (result->IsFailure()) return result;
257
+ JSArray* result_array = JSArray::cast(result);
258
+ result_array->set_length(Smi::FromInt(0));
259
+ result_array->set_elements(Heap::empty_fixed_array());
260
+ return result_array;
261
+ }
262
+
263
+
264
+ static void CopyElements(AssertNoAllocation* no_gc,
265
+ FixedArray* dst,
266
+ int dst_index,
267
+ FixedArray* src,
268
+ int src_index,
269
+ int len) {
270
+ ASSERT(dst != src); // Use MoveElements instead.
271
+ ASSERT(len > 0);
272
+ CopyWords(dst->data_start() + dst_index,
273
+ src->data_start() + src_index,
274
+ len);
275
+ WriteBarrierMode mode = dst->GetWriteBarrierMode(*no_gc);
276
+ if (mode == UPDATE_WRITE_BARRIER) {
277
+ Heap::RecordWrites(dst->address(), dst->OffsetOfElementAt(dst_index), len);
278
+ }
279
+ }
280
+
281
+
282
+ static void MoveElements(AssertNoAllocation* no_gc,
283
+ FixedArray* dst,
284
+ int dst_index,
285
+ FixedArray* src,
286
+ int src_index,
287
+ int len) {
288
+ memmove(dst->data_start() + dst_index,
289
+ src->data_start() + src_index,
290
+ len * kPointerSize);
291
+ WriteBarrierMode mode = dst->GetWriteBarrierMode(*no_gc);
292
+ if (mode == UPDATE_WRITE_BARRIER) {
293
+ Heap::RecordWrites(dst->address(), dst->OffsetOfElementAt(dst_index), len);
294
+ }
295
+ }
296
+
297
+
298
+ static void FillWithHoles(FixedArray* dst, int from, int to) {
299
+ MemsetPointer(dst->data_start() + from, Heap::the_hole_value(), to - from);
300
+ }
301
+
302
+
303
+ static FixedArray* LeftTrimFixedArray(FixedArray* elms, int to_trim) {
304
+ // For now this trick is only applied to fixed arrays in new space.
305
+ // In large object space the object's start must coincide with chunk
306
+ // and thus the trick is just not applicable.
307
+ // In old space we do not use this trick to avoid dealing with
308
+ // remembered sets.
309
+ ASSERT(Heap::new_space()->Contains(elms));
310
+
311
+ STATIC_ASSERT(FixedArray::kMapOffset == 0);
312
+ STATIC_ASSERT(FixedArray::kLengthOffset == kPointerSize);
313
+ STATIC_ASSERT(FixedArray::kHeaderSize == 2 * kPointerSize);
314
+
315
+ Object** former_start = HeapObject::RawField(elms, 0);
316
+
317
+ const int len = elms->length();
318
+
319
+ // Technically in new space this write might be omitted (except for
320
+ // debug mode which iterates through the heap), but to play safer
321
+ // we still do it.
322
+ Heap::CreateFillerObjectAt(elms->address(), to_trim * kPointerSize);
323
+
324
+ former_start[to_trim] = Heap::fixed_array_map();
325
+ former_start[to_trim + 1] = reinterpret_cast<Object*>(len - to_trim);
326
+
327
+ ASSERT_EQ(elms->address() + to_trim * kPointerSize,
328
+ (elms + to_trim * kPointerSize)->address());
329
+ return elms + to_trim * kPointerSize;
330
+ }
331
+
332
+
333
+ static bool ArrayPrototypeHasNoElements() {
334
+ // This method depends on non writability of Object and Array prototype
335
+ // fields.
336
+ Context* global_context = Top::context()->global_context();
337
+ // Array.prototype
338
+ JSObject* proto =
339
+ JSObject::cast(global_context->array_function()->prototype());
340
+ if (proto->elements() != Heap::empty_fixed_array()) return false;
341
+ // Hidden prototype
342
+ proto = JSObject::cast(proto->GetPrototype());
343
+ ASSERT(proto->elements() == Heap::empty_fixed_array());
344
+ // Object.prototype
345
+ proto = JSObject::cast(proto->GetPrototype());
346
+ if (proto != global_context->initial_object_prototype()) return false;
347
+ if (proto->elements() != Heap::empty_fixed_array()) return false;
348
+ ASSERT(proto->GetPrototype()->IsNull());
349
+ return true;
350
+ }
351
+
352
+
353
+ static bool IsJSArrayWithFastElements(Object* receiver,
354
+ FixedArray** elements) {
355
+ if (!receiver->IsJSArray()) {
356
+ return false;
357
+ }
358
+
359
+ JSArray* array = JSArray::cast(receiver);
360
+
361
+ HeapObject* elms = HeapObject::cast(array->elements());
362
+ if (elms->map() != Heap::fixed_array_map()) {
363
+ return false;
364
+ }
365
+
366
+ *elements = FixedArray::cast(elms);
367
+ return true;
368
+ }
369
+
370
+
371
+ static Object* CallJsBuiltin(const char* name,
372
+ BuiltinArguments<NO_EXTRA_ARGUMENTS> args) {
373
+ HandleScope handleScope;
374
+
375
+ Handle<Object> js_builtin =
376
+ GetProperty(Handle<JSObject>(Top::global_context()->builtins()),
377
+ name);
378
+ ASSERT(js_builtin->IsJSFunction());
379
+ Handle<JSFunction> function(Handle<JSFunction>::cast(js_builtin));
380
+ Vector<Object**> argv(Vector<Object**>::New(args.length() - 1));
381
+ int n_args = args.length() - 1;
382
+ for (int i = 0; i < n_args; i++) {
383
+ argv[i] = args.at<Object>(i + 1).location();
384
+ }
385
+ bool pending_exception = false;
386
+ Handle<Object> result = Execution::Call(function,
387
+ args.receiver(),
388
+ n_args,
389
+ argv.start(),
390
+ &pending_exception);
391
+ argv.Dispose();
392
+ if (pending_exception) return Failure::Exception();
393
+ return *result;
394
+ }
395
+
396
+
397
+ BUILTIN(ArrayPush) {
398
+ Object* receiver = *args.receiver();
399
+ FixedArray* elms = NULL;
400
+ if (!IsJSArrayWithFastElements(receiver, &elms)) {
401
+ return CallJsBuiltin("ArrayPush", args);
402
+ }
403
+ JSArray* array = JSArray::cast(receiver);
404
+
405
+ int len = Smi::cast(array->length())->value();
406
+ int to_add = args.length() - 1;
407
+ if (to_add == 0) {
408
+ return Smi::FromInt(len);
409
+ }
410
+ // Currently fixed arrays cannot grow too big, so
411
+ // we should never hit this case.
412
+ ASSERT(to_add <= (Smi::kMaxValue - len));
413
+
414
+ int new_length = len + to_add;
415
+
416
+ if (new_length > elms->length()) {
417
+ // New backing storage is needed.
418
+ int capacity = new_length + (new_length >> 1) + 16;
419
+ Object* obj = Heap::AllocateUninitializedFixedArray(capacity);
420
+ if (obj->IsFailure()) return obj;
421
+ FixedArray* new_elms = FixedArray::cast(obj);
422
+
423
+ AssertNoAllocation no_gc;
424
+ if (len > 0) {
425
+ CopyElements(&no_gc, new_elms, 0, elms, 0, len);
426
+ }
427
+ FillWithHoles(new_elms, new_length, capacity);
428
+
429
+ elms = new_elms;
430
+ array->set_elements(elms);
431
+ }
432
+
433
+ // Add the provided values.
434
+ AssertNoAllocation no_gc;
435
+ WriteBarrierMode mode = elms->GetWriteBarrierMode(no_gc);
436
+ for (int index = 0; index < to_add; index++) {
437
+ elms->set(index + len, args[index + 1], mode);
438
+ }
439
+
440
+ // Set the length.
441
+ array->set_length(Smi::FromInt(new_length));
442
+ return Smi::FromInt(new_length);
443
+ }
444
+
445
+
446
+ BUILTIN(ArrayPop) {
447
+ Object* receiver = *args.receiver();
448
+ FixedArray* elms = NULL;
449
+ if (!IsJSArrayWithFastElements(receiver, &elms)) {
450
+ return CallJsBuiltin("ArrayPop", args);
451
+ }
452
+ JSArray* array = JSArray::cast(receiver);
453
+
454
+ int len = Smi::cast(array->length())->value();
455
+ if (len == 0) return Heap::undefined_value();
456
+
457
+ // Get top element
458
+ Object* top = elms->get(len - 1);
459
+
460
+ // Set the length.
461
+ array->set_length(Smi::FromInt(len - 1));
462
+
463
+ if (!top->IsTheHole()) {
464
+ // Delete the top element.
465
+ elms->set_the_hole(len - 1);
466
+ return top;
467
+ }
468
+
469
+ // Remember to check the prototype chain.
470
+ JSFunction* array_function =
471
+ Top::context()->global_context()->array_function();
472
+ JSObject* prototype = JSObject::cast(array_function->prototype());
473
+ top = prototype->GetElement(len - 1);
474
+
475
+ return top;
476
+ }
477
+
478
+
479
+ BUILTIN(ArrayShift) {
480
+ Object* receiver = *args.receiver();
481
+ FixedArray* elms = NULL;
482
+ if (!IsJSArrayWithFastElements(receiver, &elms)
483
+ || !ArrayPrototypeHasNoElements()) {
484
+ return CallJsBuiltin("ArrayShift", args);
485
+ }
486
+ JSArray* array = JSArray::cast(receiver);
487
+ ASSERT(array->HasFastElements());
488
+
489
+ int len = Smi::cast(array->length())->value();
490
+ if (len == 0) return Heap::undefined_value();
491
+
492
+ // Get first element
493
+ Object* first = elms->get(0);
494
+ if (first->IsTheHole()) {
495
+ first = Heap::undefined_value();
496
+ }
497
+
498
+ if (Heap::new_space()->Contains(elms)) {
499
+ // As elms still in the same space they used to be (new space),
500
+ // there is no need to update remembered set.
501
+ array->set_elements(LeftTrimFixedArray(elms, 1), SKIP_WRITE_BARRIER);
502
+ } else {
503
+ // Shift the elements.
504
+ AssertNoAllocation no_gc;
505
+ MoveElements(&no_gc, elms, 0, elms, 1, len - 1);
506
+ elms->set(len - 1, Heap::the_hole_value());
507
+ }
508
+
509
+ // Set the length.
510
+ array->set_length(Smi::FromInt(len - 1));
511
+
512
+ return first;
513
+ }
514
+
515
+
516
+ BUILTIN(ArrayUnshift) {
517
+ Object* receiver = *args.receiver();
518
+ FixedArray* elms = NULL;
519
+ if (!IsJSArrayWithFastElements(receiver, &elms)
520
+ || !ArrayPrototypeHasNoElements()) {
521
+ return CallJsBuiltin("ArrayUnshift", args);
522
+ }
523
+ JSArray* array = JSArray::cast(receiver);
524
+ ASSERT(array->HasFastElements());
525
+
526
+ int len = Smi::cast(array->length())->value();
527
+ int to_add = args.length() - 1;
528
+ int new_length = len + to_add;
529
+ // Currently fixed arrays cannot grow too big, so
530
+ // we should never hit this case.
531
+ ASSERT(to_add <= (Smi::kMaxValue - len));
532
+
533
+ if (new_length > elms->length()) {
534
+ // New backing storage is needed.
535
+ int capacity = new_length + (new_length >> 1) + 16;
536
+ Object* obj = Heap::AllocateUninitializedFixedArray(capacity);
537
+ if (obj->IsFailure()) return obj;
538
+ FixedArray* new_elms = FixedArray::cast(obj);
539
+
540
+ AssertNoAllocation no_gc;
541
+ if (len > 0) {
542
+ CopyElements(&no_gc, new_elms, to_add, elms, 0, len);
543
+ }
544
+ FillWithHoles(new_elms, new_length, capacity);
545
+
546
+ elms = new_elms;
547
+ array->set_elements(elms);
548
+ } else {
549
+ AssertNoAllocation no_gc;
550
+ MoveElements(&no_gc, elms, to_add, elms, 0, len);
551
+ }
552
+
553
+ // Add the provided values.
554
+ AssertNoAllocation no_gc;
555
+ WriteBarrierMode mode = elms->GetWriteBarrierMode(no_gc);
556
+ for (int i = 0; i < to_add; i++) {
557
+ elms->set(i, args[i + 1], mode);
558
+ }
559
+
560
+ // Set the length.
561
+ array->set_length(Smi::FromInt(new_length));
562
+ return Smi::FromInt(new_length);
563
+ }
564
+
565
+
566
+ BUILTIN(ArraySlice) {
567
+ Object* receiver = *args.receiver();
568
+ FixedArray* elms = NULL;
569
+ if (!IsJSArrayWithFastElements(receiver, &elms)
570
+ || !ArrayPrototypeHasNoElements()) {
571
+ return CallJsBuiltin("ArraySlice", args);
572
+ }
573
+ JSArray* array = JSArray::cast(receiver);
574
+ ASSERT(array->HasFastElements());
575
+
576
+ int len = Smi::cast(array->length())->value();
577
+
578
+ int n_arguments = args.length() - 1;
579
+
580
+ // Note carefully choosen defaults---if argument is missing,
581
+ // it's undefined which gets converted to 0 for relative_start
582
+ // and to len for relative_end.
583
+ int relative_start = 0;
584
+ int relative_end = len;
585
+ if (n_arguments > 0) {
586
+ Object* arg1 = args[1];
587
+ if (arg1->IsSmi()) {
588
+ relative_start = Smi::cast(arg1)->value();
589
+ } else if (!arg1->IsUndefined()) {
590
+ return CallJsBuiltin("ArraySlice", args);
591
+ }
592
+ if (n_arguments > 1) {
593
+ Object* arg2 = args[2];
594
+ if (arg2->IsSmi()) {
595
+ relative_end = Smi::cast(arg2)->value();
596
+ } else if (!arg2->IsUndefined()) {
597
+ return CallJsBuiltin("ArraySlice", args);
598
+ }
599
+ }
600
+ }
601
+
602
+ // ECMAScript 232, 3rd Edition, Section 15.4.4.10, step 6.
603
+ int k = (relative_start < 0) ? Max(len + relative_start, 0)
604
+ : Min(relative_start, len);
605
+
606
+ // ECMAScript 232, 3rd Edition, Section 15.4.4.10, step 8.
607
+ int final = (relative_end < 0) ? Max(len + relative_end, 0)
608
+ : Min(relative_end, len);
609
+
610
+ // Calculate the length of result array.
611
+ int result_len = final - k;
612
+ if (result_len <= 0) {
613
+ return AllocateEmptyJSArray();
614
+ }
615
+
616
+ Object* result = AllocateJSArray();
617
+ if (result->IsFailure()) return result;
618
+ JSArray* result_array = JSArray::cast(result);
619
+
620
+ result = Heap::AllocateUninitializedFixedArray(result_len);
621
+ if (result->IsFailure()) return result;
622
+ FixedArray* result_elms = FixedArray::cast(result);
623
+
624
+ AssertNoAllocation no_gc;
625
+ CopyElements(&no_gc, result_elms, 0, elms, k, result_len);
626
+
627
+ // Set elements.
628
+ result_array->set_elements(result_elms);
629
+
630
+ // Set the length.
631
+ result_array->set_length(Smi::FromInt(result_len));
632
+ return result_array;
633
+ }
634
+
635
+
636
+ BUILTIN(ArraySplice) {
637
+ Object* receiver = *args.receiver();
638
+ FixedArray* elms = NULL;
639
+ if (!IsJSArrayWithFastElements(receiver, &elms)
640
+ || !ArrayPrototypeHasNoElements()) {
641
+ return CallJsBuiltin("ArraySplice", args);
642
+ }
643
+ JSArray* array = JSArray::cast(receiver);
644
+ ASSERT(array->HasFastElements());
645
+
646
+ int len = Smi::cast(array->length())->value();
647
+
648
+ int n_arguments = args.length() - 1;
649
+
650
+ // SpiderMonkey and JSC return undefined in the case where no
651
+ // arguments are given instead of using the implicit undefined
652
+ // arguments. This does not follow ECMA-262, but we do the same for
653
+ // compatibility.
654
+ // TraceMonkey follows ECMA-262 though.
655
+ if (n_arguments == 0) {
656
+ return Heap::undefined_value();
657
+ }
658
+
659
+ int relative_start = 0;
660
+ Object* arg1 = args[1];
661
+ if (arg1->IsSmi()) {
662
+ relative_start = Smi::cast(arg1)->value();
663
+ } else if (!arg1->IsUndefined()) {
664
+ return CallJsBuiltin("ArraySplice", args);
665
+ }
666
+ int actual_start = (relative_start < 0) ? Max(len + relative_start, 0)
667
+ : Min(relative_start, len);
668
+
669
+ // SpiderMonkey, TraceMonkey and JSC treat the case where no delete count is
670
+ // given differently from when an undefined delete count is given.
671
+ // This does not follow ECMA-262, but we do the same for
672
+ // compatibility.
673
+ int delete_count = len;
674
+ if (n_arguments > 1) {
675
+ Object* arg2 = args[2];
676
+ if (arg2->IsSmi()) {
677
+ delete_count = Smi::cast(arg2)->value();
678
+ } else {
679
+ return CallJsBuiltin("ArraySplice", args);
680
+ }
681
+ }
682
+ int actual_delete_count = Min(Max(delete_count, 0), len - actual_start);
683
+
684
+ JSArray* result_array = NULL;
685
+ if (actual_delete_count == 0) {
686
+ Object* result = AllocateEmptyJSArray();
687
+ if (result->IsFailure()) return result;
688
+ result_array = JSArray::cast(result);
689
+ } else {
690
+ // Allocate result array.
691
+ Object* result = AllocateJSArray();
692
+ if (result->IsFailure()) return result;
693
+ result_array = JSArray::cast(result);
694
+
695
+ result = Heap::AllocateUninitializedFixedArray(actual_delete_count);
696
+ if (result->IsFailure()) return result;
697
+ FixedArray* result_elms = FixedArray::cast(result);
698
+
699
+ AssertNoAllocation no_gc;
700
+ // Fill newly created array.
701
+ CopyElements(&no_gc,
702
+ result_elms, 0,
703
+ elms, actual_start,
704
+ actual_delete_count);
705
+
706
+ // Set elements.
707
+ result_array->set_elements(result_elms);
708
+
709
+ // Set the length.
710
+ result_array->set_length(Smi::FromInt(actual_delete_count));
711
+ }
712
+
713
+ int item_count = (n_arguments > 1) ? (n_arguments - 2) : 0;
714
+
715
+ int new_length = len - actual_delete_count + item_count;
716
+
717
+ if (item_count < actual_delete_count) {
718
+ // Shrink the array.
719
+ const bool trim_array = Heap::new_space()->Contains(elms) &&
720
+ ((actual_start + item_count) <
721
+ (len - actual_delete_count - actual_start));
722
+ if (trim_array) {
723
+ const int delta = actual_delete_count - item_count;
724
+
725
+ if (actual_start > 0) {
726
+ Object** start = elms->data_start();
727
+ memmove(start + delta, start, actual_start * kPointerSize);
728
+ }
729
+
730
+ elms = LeftTrimFixedArray(elms, delta);
731
+ array->set_elements(elms, SKIP_WRITE_BARRIER);
732
+ } else {
733
+ AssertNoAllocation no_gc;
734
+ MoveElements(&no_gc,
735
+ elms, actual_start + item_count,
736
+ elms, actual_start + actual_delete_count,
737
+ (len - actual_delete_count - actual_start));
738
+ FillWithHoles(elms, new_length, len);
739
+ }
740
+ } else if (item_count > actual_delete_count) {
741
+ // Currently fixed arrays cannot grow too big, so
742
+ // we should never hit this case.
743
+ ASSERT((item_count - actual_delete_count) <= (Smi::kMaxValue - len));
744
+
745
+ // Check if array need to grow.
746
+ if (new_length > elms->length()) {
747
+ // New backing storage is needed.
748
+ int capacity = new_length + (new_length >> 1) + 16;
749
+ Object* obj = Heap::AllocateUninitializedFixedArray(capacity);
750
+ if (obj->IsFailure()) return obj;
751
+ FixedArray* new_elms = FixedArray::cast(obj);
752
+
753
+ AssertNoAllocation no_gc;
754
+ // Copy the part before actual_start as is.
755
+ if (actual_start > 0) {
756
+ CopyElements(&no_gc, new_elms, 0, elms, 0, actual_start);
757
+ }
758
+ const int to_copy = len - actual_delete_count - actual_start;
759
+ if (to_copy > 0) {
760
+ CopyElements(&no_gc,
761
+ new_elms, actual_start + item_count,
762
+ elms, actual_start + actual_delete_count,
763
+ to_copy);
764
+ }
765
+ FillWithHoles(new_elms, new_length, capacity);
766
+
767
+ elms = new_elms;
768
+ array->set_elements(elms);
769
+ } else {
770
+ AssertNoAllocation no_gc;
771
+ MoveElements(&no_gc,
772
+ elms, actual_start + item_count,
773
+ elms, actual_start + actual_delete_count,
774
+ (len - actual_delete_count - actual_start));
775
+ }
776
+ }
777
+
778
+ AssertNoAllocation no_gc;
779
+ WriteBarrierMode mode = elms->GetWriteBarrierMode(no_gc);
780
+ for (int k = actual_start; k < actual_start + item_count; k++) {
781
+ elms->set(k, args[3 + k - actual_start], mode);
782
+ }
783
+
784
+ // Set the length.
785
+ array->set_length(Smi::FromInt(new_length));
786
+
787
+ return result_array;
788
+ }
789
+
790
+
791
+ BUILTIN(ArrayConcat) {
792
+ if (!ArrayPrototypeHasNoElements()) {
793
+ return CallJsBuiltin("ArrayConcat", args);
794
+ }
795
+
796
+ // Iterate through all the arguments performing checks
797
+ // and calculating total length.
798
+ int n_arguments = args.length();
799
+ int result_len = 0;
800
+ for (int i = 0; i < n_arguments; i++) {
801
+ Object* arg = args[i];
802
+ if (!arg->IsJSArray() || !JSArray::cast(arg)->HasFastElements()) {
803
+ return CallJsBuiltin("ArrayConcat", args);
804
+ }
805
+
806
+ int len = Smi::cast(JSArray::cast(arg)->length())->value();
807
+
808
+ // We shouldn't overflow when adding another len.
809
+ const int kHalfOfMaxInt = 1 << (kBitsPerInt - 2);
810
+ STATIC_ASSERT(FixedArray::kMaxLength < kHalfOfMaxInt);
811
+ USE(kHalfOfMaxInt);
812
+ result_len += len;
813
+ ASSERT(result_len >= 0);
814
+
815
+ if (result_len > FixedArray::kMaxLength) {
816
+ return CallJsBuiltin("ArrayConcat", args);
817
+ }
818
+ }
819
+
820
+ if (result_len == 0) {
821
+ return AllocateEmptyJSArray();
822
+ }
823
+
824
+ // Allocate result.
825
+ Object* result = AllocateJSArray();
826
+ if (result->IsFailure()) return result;
827
+ JSArray* result_array = JSArray::cast(result);
828
+
829
+ result = Heap::AllocateUninitializedFixedArray(result_len);
830
+ if (result->IsFailure()) return result;
831
+ FixedArray* result_elms = FixedArray::cast(result);
832
+
833
+ // Copy data.
834
+ AssertNoAllocation no_gc;
835
+ int start_pos = 0;
836
+ for (int i = 0; i < n_arguments; i++) {
837
+ JSArray* array = JSArray::cast(args[i]);
838
+ int len = Smi::cast(array->length())->value();
839
+ if (len > 0) {
840
+ FixedArray* elms = FixedArray::cast(array->elements());
841
+ CopyElements(&no_gc, result_elms, start_pos, elms, 0, len);
842
+ start_pos += len;
843
+ }
844
+ }
845
+ ASSERT(start_pos == result_len);
846
+
847
+ // Set the length and elements.
848
+ result_array->set_length(Smi::FromInt(result_len));
849
+ result_array->set_elements(result_elms);
850
+
851
+ return result_array;
852
+ }
853
+
854
+
855
+ // -----------------------------------------------------------------------------
856
+ //
857
+
858
+
859
+ // Returns the holder JSObject if the function can legally be called
860
+ // with this receiver. Returns Heap::null_value() if the call is
861
+ // illegal. Any arguments that don't fit the expected type is
862
+ // overwritten with undefined. Arguments that do fit the expected
863
+ // type is overwritten with the object in the prototype chain that
864
+ // actually has that type.
865
+ static inline Object* TypeCheck(int argc,
866
+ Object** argv,
867
+ FunctionTemplateInfo* info) {
868
+ Object* recv = argv[0];
869
+ Object* sig_obj = info->signature();
870
+ if (sig_obj->IsUndefined()) return recv;
871
+ SignatureInfo* sig = SignatureInfo::cast(sig_obj);
872
+ // If necessary, check the receiver
873
+ Object* recv_type = sig->receiver();
874
+
875
+ Object* holder = recv;
876
+ if (!recv_type->IsUndefined()) {
877
+ for (; holder != Heap::null_value(); holder = holder->GetPrototype()) {
878
+ if (holder->IsInstanceOf(FunctionTemplateInfo::cast(recv_type))) {
879
+ break;
880
+ }
881
+ }
882
+ if (holder == Heap::null_value()) return holder;
883
+ }
884
+ Object* args_obj = sig->args();
885
+ // If there is no argument signature we're done
886
+ if (args_obj->IsUndefined()) return holder;
887
+ FixedArray* args = FixedArray::cast(args_obj);
888
+ int length = args->length();
889
+ if (argc <= length) length = argc - 1;
890
+ for (int i = 0; i < length; i++) {
891
+ Object* argtype = args->get(i);
892
+ if (argtype->IsUndefined()) continue;
893
+ Object** arg = &argv[-1 - i];
894
+ Object* current = *arg;
895
+ for (; current != Heap::null_value(); current = current->GetPrototype()) {
896
+ if (current->IsInstanceOf(FunctionTemplateInfo::cast(argtype))) {
897
+ *arg = current;
898
+ break;
899
+ }
900
+ }
901
+ if (current == Heap::null_value()) *arg = Heap::undefined_value();
902
+ }
903
+ return holder;
904
+ }
905
+
906
+
907
+ template <bool is_construct>
908
+ static Object* HandleApiCallHelper(
909
+ BuiltinArguments<NEEDS_CALLED_FUNCTION> args) {
910
+ ASSERT(is_construct == CalledAsConstructor());
911
+
912
+ HandleScope scope;
913
+ Handle<JSFunction> function = args.called_function();
914
+ ASSERT(function->shared()->IsApiFunction());
915
+
916
+ FunctionTemplateInfo* fun_data = function->shared()->get_api_func_data();
917
+ if (is_construct) {
918
+ Handle<FunctionTemplateInfo> desc(fun_data);
919
+ bool pending_exception = false;
920
+ Factory::ConfigureInstance(desc, Handle<JSObject>::cast(args.receiver()),
921
+ &pending_exception);
922
+ ASSERT(Top::has_pending_exception() == pending_exception);
923
+ if (pending_exception) return Failure::Exception();
924
+ fun_data = *desc;
925
+ }
926
+
927
+ Object* raw_holder = TypeCheck(args.length(), &args[0], fun_data);
928
+
929
+ if (raw_holder->IsNull()) {
930
+ // This function cannot be called with the given receiver. Abort!
931
+ Handle<Object> obj =
932
+ Factory::NewTypeError("illegal_invocation", HandleVector(&function, 1));
933
+ return Top::Throw(*obj);
934
+ }
935
+
936
+ Object* raw_call_data = fun_data->call_code();
937
+ if (!raw_call_data->IsUndefined()) {
938
+ CallHandlerInfo* call_data = CallHandlerInfo::cast(raw_call_data);
939
+ Object* callback_obj = call_data->callback();
940
+ v8::InvocationCallback callback =
941
+ v8::ToCData<v8::InvocationCallback>(callback_obj);
942
+ Object* data_obj = call_data->data();
943
+ Object* result;
944
+
945
+ Handle<Object> data_handle(data_obj);
946
+ v8::Local<v8::Value> data = v8::Utils::ToLocal(data_handle);
947
+ ASSERT(raw_holder->IsJSObject());
948
+ v8::Local<v8::Function> callee = v8::Utils::ToLocal(function);
949
+ Handle<JSObject> holder_handle(JSObject::cast(raw_holder));
950
+ v8::Local<v8::Object> holder = v8::Utils::ToLocal(holder_handle);
951
+ LOG(ApiObjectAccess("call", JSObject::cast(*args.receiver())));
952
+ v8::Arguments new_args = v8::ImplementationUtilities::NewArguments(
953
+ data,
954
+ holder,
955
+ callee,
956
+ is_construct,
957
+ reinterpret_cast<void**>(&args[0] - 1),
958
+ args.length() - 1);
959
+
960
+ v8::Handle<v8::Value> value;
961
+ {
962
+ // Leaving JavaScript.
963
+ VMState state(EXTERNAL);
964
+ #ifdef ENABLE_LOGGING_AND_PROFILING
965
+ state.set_external_callback(v8::ToCData<Address>(callback_obj));
966
+ #endif
967
+ value = callback(new_args);
968
+ }
969
+ if (value.IsEmpty()) {
970
+ result = Heap::undefined_value();
971
+ } else {
972
+ result = *reinterpret_cast<Object**>(*value);
973
+ }
974
+
975
+ RETURN_IF_SCHEDULED_EXCEPTION();
976
+ if (!is_construct || result->IsJSObject()) return result;
977
+ }
978
+
979
+ return *args.receiver();
980
+ }
981
+
982
+
983
+ BUILTIN(HandleApiCall) {
984
+ return HandleApiCallHelper<false>(args);
985
+ }
986
+
987
+
988
+ BUILTIN(HandleApiCallConstruct) {
989
+ return HandleApiCallHelper<true>(args);
990
+ }
991
+
992
+
993
+ #ifdef DEBUG
994
+
995
+ static void VerifyTypeCheck(Handle<JSObject> object,
996
+ Handle<JSFunction> function) {
997
+ ASSERT(function->shared()->IsApiFunction());
998
+ FunctionTemplateInfo* info = function->shared()->get_api_func_data();
999
+ if (info->signature()->IsUndefined()) return;
1000
+ SignatureInfo* signature = SignatureInfo::cast(info->signature());
1001
+ Object* receiver_type = signature->receiver();
1002
+ if (receiver_type->IsUndefined()) return;
1003
+ FunctionTemplateInfo* type = FunctionTemplateInfo::cast(receiver_type);
1004
+ ASSERT(object->IsInstanceOf(type));
1005
+ }
1006
+
1007
+ #endif
1008
+
1009
+
1010
+ BUILTIN(FastHandleApiCall) {
1011
+ ASSERT(!CalledAsConstructor());
1012
+ const bool is_construct = false;
1013
+
1014
+ // We expect four more arguments: function, callback, call data, and holder.
1015
+ const int args_length = args.length() - 4;
1016
+ ASSERT(args_length >= 0);
1017
+
1018
+ Handle<JSFunction> function = args.at<JSFunction>(args_length);
1019
+ Object* callback_obj = args[args_length + 1];
1020
+ Handle<Object> data_handle = args.at<Object>(args_length + 2);
1021
+ Handle<JSObject> checked_holder = args.at<JSObject>(args_length + 3);
1022
+
1023
+ #ifdef DEBUG
1024
+ VerifyTypeCheck(checked_holder, function);
1025
+ #endif
1026
+
1027
+ v8::Local<v8::Object> holder = v8::Utils::ToLocal(checked_holder);
1028
+ v8::Local<v8::Function> callee = v8::Utils::ToLocal(function);
1029
+ v8::InvocationCallback callback =
1030
+ v8::ToCData<v8::InvocationCallback>(callback_obj);
1031
+ v8::Local<v8::Value> data = v8::Utils::ToLocal(data_handle);
1032
+
1033
+ v8::Arguments new_args = v8::ImplementationUtilities::NewArguments(
1034
+ data,
1035
+ holder,
1036
+ callee,
1037
+ is_construct,
1038
+ reinterpret_cast<void**>(&args[0] - 1),
1039
+ args_length - 1);
1040
+
1041
+ HandleScope scope;
1042
+ Object* result;
1043
+ v8::Handle<v8::Value> value;
1044
+ {
1045
+ // Leaving JavaScript.
1046
+ VMState state(EXTERNAL);
1047
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1048
+ state.set_external_callback(v8::ToCData<Address>(callback_obj));
1049
+ #endif
1050
+ value = callback(new_args);
1051
+ }
1052
+ if (value.IsEmpty()) {
1053
+ result = Heap::undefined_value();
1054
+ } else {
1055
+ result = *reinterpret_cast<Object**>(*value);
1056
+ }
1057
+
1058
+ RETURN_IF_SCHEDULED_EXCEPTION();
1059
+ return result;
1060
+ }
1061
+
1062
+
1063
+ // Helper function to handle calls to non-function objects created through the
1064
+ // API. The object can be called as either a constructor (using new) or just as
1065
+ // a function (without new).
1066
+ static Object* HandleApiCallAsFunctionOrConstructor(
1067
+ bool is_construct_call,
1068
+ BuiltinArguments<NO_EXTRA_ARGUMENTS> args) {
1069
+ // Non-functions are never called as constructors. Even if this is an object
1070
+ // called as a constructor the delegate call is not a construct call.
1071
+ ASSERT(!CalledAsConstructor());
1072
+
1073
+ Handle<Object> receiver = args.at<Object>(0);
1074
+
1075
+ // Get the object called.
1076
+ JSObject* obj = JSObject::cast(*args.receiver());
1077
+
1078
+ // Get the invocation callback from the function descriptor that was
1079
+ // used to create the called object.
1080
+ ASSERT(obj->map()->has_instance_call_handler());
1081
+ JSFunction* constructor = JSFunction::cast(obj->map()->constructor());
1082
+ ASSERT(constructor->shared()->IsApiFunction());
1083
+ Object* handler =
1084
+ constructor->shared()->get_api_func_data()->instance_call_handler();
1085
+ ASSERT(!handler->IsUndefined());
1086
+ CallHandlerInfo* call_data = CallHandlerInfo::cast(handler);
1087
+ Object* callback_obj = call_data->callback();
1088
+ v8::InvocationCallback callback =
1089
+ v8::ToCData<v8::InvocationCallback>(callback_obj);
1090
+
1091
+ // Get the data for the call and perform the callback.
1092
+ Object* data_obj = call_data->data();
1093
+ Object* result;
1094
+ { HandleScope scope;
1095
+ v8::Local<v8::Object> self =
1096
+ v8::Utils::ToLocal(Handle<JSObject>::cast(args.receiver()));
1097
+ Handle<Object> data_handle(data_obj);
1098
+ v8::Local<v8::Value> data = v8::Utils::ToLocal(data_handle);
1099
+ Handle<JSFunction> callee_handle(constructor);
1100
+ v8::Local<v8::Function> callee = v8::Utils::ToLocal(callee_handle);
1101
+ LOG(ApiObjectAccess("call non-function", JSObject::cast(*args.receiver())));
1102
+ v8::Arguments new_args = v8::ImplementationUtilities::NewArguments(
1103
+ data,
1104
+ self,
1105
+ callee,
1106
+ is_construct_call,
1107
+ reinterpret_cast<void**>(&args[0] - 1),
1108
+ args.length() - 1);
1109
+ v8::Handle<v8::Value> value;
1110
+ {
1111
+ // Leaving JavaScript.
1112
+ VMState state(EXTERNAL);
1113
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1114
+ state.set_external_callback(v8::ToCData<Address>(callback_obj));
1115
+ #endif
1116
+ value = callback(new_args);
1117
+ }
1118
+ if (value.IsEmpty()) {
1119
+ result = Heap::undefined_value();
1120
+ } else {
1121
+ result = *reinterpret_cast<Object**>(*value);
1122
+ }
1123
+ }
1124
+ // Check for exceptions and return result.
1125
+ RETURN_IF_SCHEDULED_EXCEPTION();
1126
+ return result;
1127
+ }
1128
+
1129
+
1130
+ // Handle calls to non-function objects created through the API. This delegate
1131
+ // function is used when the call is a normal function call.
1132
+ BUILTIN(HandleApiCallAsFunction) {
1133
+ return HandleApiCallAsFunctionOrConstructor(false, args);
1134
+ }
1135
+
1136
+
1137
+ // Handle calls to non-function objects created through the API. This delegate
1138
+ // function is used when the call is a construct call.
1139
+ BUILTIN(HandleApiCallAsConstructor) {
1140
+ return HandleApiCallAsFunctionOrConstructor(true, args);
1141
+ }
1142
+
1143
+
1144
+ static void Generate_LoadIC_ArrayLength(MacroAssembler* masm) {
1145
+ LoadIC::GenerateArrayLength(masm);
1146
+ }
1147
+
1148
+
1149
+ static void Generate_LoadIC_StringLength(MacroAssembler* masm) {
1150
+ LoadIC::GenerateStringLength(masm);
1151
+ }
1152
+
1153
+
1154
+ static void Generate_LoadIC_FunctionPrototype(MacroAssembler* masm) {
1155
+ LoadIC::GenerateFunctionPrototype(masm);
1156
+ }
1157
+
1158
+
1159
+ static void Generate_LoadIC_Initialize(MacroAssembler* masm) {
1160
+ LoadIC::GenerateInitialize(masm);
1161
+ }
1162
+
1163
+
1164
+ static void Generate_LoadIC_PreMonomorphic(MacroAssembler* masm) {
1165
+ LoadIC::GeneratePreMonomorphic(masm);
1166
+ }
1167
+
1168
+
1169
+ static void Generate_LoadIC_Miss(MacroAssembler* masm) {
1170
+ LoadIC::GenerateMiss(masm);
1171
+ }
1172
+
1173
+
1174
+ static void Generate_LoadIC_Megamorphic(MacroAssembler* masm) {
1175
+ LoadIC::GenerateMegamorphic(masm);
1176
+ }
1177
+
1178
+
1179
+ static void Generate_LoadIC_Normal(MacroAssembler* masm) {
1180
+ LoadIC::GenerateNormal(masm);
1181
+ }
1182
+
1183
+
1184
+ static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) {
1185
+ KeyedLoadIC::GenerateInitialize(masm);
1186
+ }
1187
+
1188
+
1189
+ static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
1190
+ KeyedLoadIC::GenerateMiss(masm);
1191
+ }
1192
+
1193
+
1194
+ static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) {
1195
+ KeyedLoadIC::GenerateGeneric(masm);
1196
+ }
1197
+
1198
+
1199
+ static void Generate_KeyedLoadIC_String(MacroAssembler* masm) {
1200
+ KeyedLoadIC::GenerateString(masm);
1201
+ }
1202
+
1203
+
1204
+ static void Generate_KeyedLoadIC_ExternalByteArray(MacroAssembler* masm) {
1205
+ KeyedLoadIC::GenerateExternalArray(masm, kExternalByteArray);
1206
+ }
1207
+
1208
+
1209
+ static void Generate_KeyedLoadIC_ExternalUnsignedByteArray(
1210
+ MacroAssembler* masm) {
1211
+ KeyedLoadIC::GenerateExternalArray(masm, kExternalUnsignedByteArray);
1212
+ }
1213
+
1214
+
1215
+ static void Generate_KeyedLoadIC_ExternalShortArray(MacroAssembler* masm) {
1216
+ KeyedLoadIC::GenerateExternalArray(masm, kExternalShortArray);
1217
+ }
1218
+
1219
+
1220
+ static void Generate_KeyedLoadIC_ExternalUnsignedShortArray(
1221
+ MacroAssembler* masm) {
1222
+ KeyedLoadIC::GenerateExternalArray(masm, kExternalUnsignedShortArray);
1223
+ }
1224
+
1225
+
1226
+ static void Generate_KeyedLoadIC_ExternalIntArray(MacroAssembler* masm) {
1227
+ KeyedLoadIC::GenerateExternalArray(masm, kExternalIntArray);
1228
+ }
1229
+
1230
+
1231
+ static void Generate_KeyedLoadIC_ExternalUnsignedIntArray(
1232
+ MacroAssembler* masm) {
1233
+ KeyedLoadIC::GenerateExternalArray(masm, kExternalUnsignedIntArray);
1234
+ }
1235
+
1236
+
1237
+ static void Generate_KeyedLoadIC_ExternalFloatArray(MacroAssembler* masm) {
1238
+ KeyedLoadIC::GenerateExternalArray(masm, kExternalFloatArray);
1239
+ }
1240
+
1241
+
1242
+ static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1243
+ KeyedLoadIC::GeneratePreMonomorphic(masm);
1244
+ }
1245
+
1246
+ static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) {
1247
+ KeyedLoadIC::GenerateIndexedInterceptor(masm);
1248
+ }
1249
+
1250
+
1251
+ static void Generate_StoreIC_Initialize(MacroAssembler* masm) {
1252
+ StoreIC::GenerateInitialize(masm);
1253
+ }
1254
+
1255
+
1256
+ static void Generate_StoreIC_Miss(MacroAssembler* masm) {
1257
+ StoreIC::GenerateMiss(masm);
1258
+ }
1259
+
1260
+
1261
+ static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) {
1262
+ StoreIC::GenerateMegamorphic(masm);
1263
+ }
1264
+
1265
+
1266
+ static void Generate_StoreIC_ArrayLength(MacroAssembler* masm) {
1267
+ StoreIC::GenerateArrayLength(masm);
1268
+ }
1269
+
1270
+
1271
+ static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) {
1272
+ KeyedStoreIC::GenerateGeneric(masm);
1273
+ }
1274
+
1275
+
1276
+ static void Generate_KeyedStoreIC_ExternalByteArray(MacroAssembler* masm) {
1277
+ KeyedStoreIC::GenerateExternalArray(masm, kExternalByteArray);
1278
+ }
1279
+
1280
+
1281
+ static void Generate_KeyedStoreIC_ExternalUnsignedByteArray(
1282
+ MacroAssembler* masm) {
1283
+ KeyedStoreIC::GenerateExternalArray(masm, kExternalUnsignedByteArray);
1284
+ }
1285
+
1286
+
1287
+ static void Generate_KeyedStoreIC_ExternalShortArray(MacroAssembler* masm) {
1288
+ KeyedStoreIC::GenerateExternalArray(masm, kExternalShortArray);
1289
+ }
1290
+
1291
+
1292
+ static void Generate_KeyedStoreIC_ExternalUnsignedShortArray(
1293
+ MacroAssembler* masm) {
1294
+ KeyedStoreIC::GenerateExternalArray(masm, kExternalUnsignedShortArray);
1295
+ }
1296
+
1297
+
1298
+ static void Generate_KeyedStoreIC_ExternalIntArray(MacroAssembler* masm) {
1299
+ KeyedStoreIC::GenerateExternalArray(masm, kExternalIntArray);
1300
+ }
1301
+
1302
+
1303
+ static void Generate_KeyedStoreIC_ExternalUnsignedIntArray(
1304
+ MacroAssembler* masm) {
1305
+ KeyedStoreIC::GenerateExternalArray(masm, kExternalUnsignedIntArray);
1306
+ }
1307
+
1308
+
1309
+ static void Generate_KeyedStoreIC_ExternalFloatArray(MacroAssembler* masm) {
1310
+ KeyedStoreIC::GenerateExternalArray(masm, kExternalFloatArray);
1311
+ }
1312
+
1313
+
1314
+ static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) {
1315
+ KeyedStoreIC::GenerateMiss(masm);
1316
+ }
1317
+
1318
+
1319
+ static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) {
1320
+ KeyedStoreIC::GenerateInitialize(masm);
1321
+ }
1322
+
1323
+
1324
+ #ifdef ENABLE_DEBUGGER_SUPPORT
1325
+ static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) {
1326
+ Debug::GenerateLoadICDebugBreak(masm);
1327
+ }
1328
+
1329
+
1330
+ static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) {
1331
+ Debug::GenerateStoreICDebugBreak(masm);
1332
+ }
1333
+
1334
+
1335
+ static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) {
1336
+ Debug::GenerateKeyedLoadICDebugBreak(masm);
1337
+ }
1338
+
1339
+
1340
+ static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) {
1341
+ Debug::GenerateKeyedStoreICDebugBreak(masm);
1342
+ }
1343
+
1344
+
1345
+ static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) {
1346
+ Debug::GenerateConstructCallDebugBreak(masm);
1347
+ }
1348
+
1349
+
1350
+ static void Generate_Return_DebugBreak(MacroAssembler* masm) {
1351
+ Debug::GenerateReturnDebugBreak(masm);
1352
+ }
1353
+
1354
+
1355
+ static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) {
1356
+ Debug::GenerateStubNoRegistersDebugBreak(masm);
1357
+ }
1358
+
1359
+ static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) {
1360
+ Debug::GeneratePlainReturnLiveEdit(masm);
1361
+ }
1362
+
1363
+ static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) {
1364
+ Debug::GenerateFrameDropperLiveEdit(masm);
1365
+ }
1366
+ #endif
1367
+
1368
+ Object* Builtins::builtins_[builtin_count] = { NULL, };
1369
+ const char* Builtins::names_[builtin_count] = { NULL, };
1370
+
1371
+ #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name),
1372
+ Address Builtins::c_functions_[cfunction_count] = {
1373
+ BUILTIN_LIST_C(DEF_ENUM_C)
1374
+ };
1375
+ #undef DEF_ENUM_C
1376
+
1377
+ #define DEF_JS_NAME(name, ignore) #name,
1378
+ #define DEF_JS_ARGC(ignore, argc) argc,
1379
+ const char* Builtins::javascript_names_[id_count] = {
1380
+ BUILTINS_LIST_JS(DEF_JS_NAME)
1381
+ };
1382
+
1383
+ int Builtins::javascript_argc_[id_count] = {
1384
+ BUILTINS_LIST_JS(DEF_JS_ARGC)
1385
+ };
1386
+ #undef DEF_JS_NAME
1387
+ #undef DEF_JS_ARGC
1388
+
1389
+ static bool is_initialized = false;
1390
+ void Builtins::Setup(bool create_heap_objects) {
1391
+ ASSERT(!is_initialized);
1392
+
1393
+ // Create a scope for the handles in the builtins.
1394
+ HandleScope scope;
1395
+
1396
+ struct BuiltinDesc {
1397
+ byte* generator;
1398
+ byte* c_code;
1399
+ const char* s_name; // name is only used for generating log information.
1400
+ int name;
1401
+ Code::Flags flags;
1402
+ BuiltinExtraArguments extra_args;
1403
+ };
1404
+
1405
+ #define DEF_FUNCTION_PTR_C(name, extra_args) \
1406
+ { FUNCTION_ADDR(Generate_Adaptor), \
1407
+ FUNCTION_ADDR(Builtin_##name), \
1408
+ #name, \
1409
+ c_##name, \
1410
+ Code::ComputeFlags(Code::BUILTIN), \
1411
+ extra_args \
1412
+ },
1413
+
1414
+ #define DEF_FUNCTION_PTR_A(name, kind, state) \
1415
+ { FUNCTION_ADDR(Generate_##name), \
1416
+ NULL, \
1417
+ #name, \
1418
+ name, \
1419
+ Code::ComputeFlags(Code::kind, NOT_IN_LOOP, state), \
1420
+ NO_EXTRA_ARGUMENTS \
1421
+ },
1422
+
1423
+ // Define array of pointers to generators and C builtin functions.
1424
+ static BuiltinDesc functions[] = {
1425
+ BUILTIN_LIST_C(DEF_FUNCTION_PTR_C)
1426
+ BUILTIN_LIST_A(DEF_FUNCTION_PTR_A)
1427
+ BUILTIN_LIST_DEBUG_A(DEF_FUNCTION_PTR_A)
1428
+ // Terminator:
1429
+ { NULL, NULL, NULL, builtin_count, static_cast<Code::Flags>(0),
1430
+ NO_EXTRA_ARGUMENTS }
1431
+ };
1432
+
1433
+ #undef DEF_FUNCTION_PTR_C
1434
+ #undef DEF_FUNCTION_PTR_A
1435
+
1436
+ // For now we generate builtin adaptor code into a stack-allocated
1437
+ // buffer, before copying it into individual code objects.
1438
+ byte buffer[4*KB];
1439
+
1440
+ // Traverse the list of builtins and generate an adaptor in a
1441
+ // separate code object for each one.
1442
+ for (int i = 0; i < builtin_count; i++) {
1443
+ if (create_heap_objects) {
1444
+ MacroAssembler masm(buffer, sizeof buffer);
1445
+ // Generate the code/adaptor.
1446
+ typedef void (*Generator)(MacroAssembler*, int, BuiltinExtraArguments);
1447
+ Generator g = FUNCTION_CAST<Generator>(functions[i].generator);
1448
+ // We pass all arguments to the generator, but it may not use all of
1449
+ // them. This works because the first arguments are on top of the
1450
+ // stack.
1451
+ g(&masm, functions[i].name, functions[i].extra_args);
1452
+ // Move the code into the object heap.
1453
+ CodeDesc desc;
1454
+ masm.GetCode(&desc);
1455
+ Code::Flags flags = functions[i].flags;
1456
+ Object* code;
1457
+ {
1458
+ // During startup it's OK to always allocate and defer GC to later.
1459
+ // This simplifies things because we don't need to retry.
1460
+ AlwaysAllocateScope __scope__;
1461
+ code = Heap::CreateCode(desc, NULL, flags, masm.CodeObject());
1462
+ if (code->IsFailure()) {
1463
+ v8::internal::V8::FatalProcessOutOfMemory("CreateCode");
1464
+ }
1465
+ }
1466
+ // Log the event and add the code to the builtins array.
1467
+ PROFILE(CodeCreateEvent(Logger::BUILTIN_TAG,
1468
+ Code::cast(code), functions[i].s_name));
1469
+ builtins_[i] = code;
1470
+ #ifdef ENABLE_DISASSEMBLER
1471
+ if (FLAG_print_builtin_code) {
1472
+ PrintF("Builtin: %s\n", functions[i].s_name);
1473
+ Code::cast(code)->Disassemble(functions[i].s_name);
1474
+ PrintF("\n");
1475
+ }
1476
+ #endif
1477
+ } else {
1478
+ // Deserializing. The values will be filled in during IterateBuiltins.
1479
+ builtins_[i] = NULL;
1480
+ }
1481
+ names_[i] = functions[i].s_name;
1482
+ }
1483
+
1484
+ // Mark as initialized.
1485
+ is_initialized = true;
1486
+ }
1487
+
1488
+
1489
+ void Builtins::TearDown() {
1490
+ is_initialized = false;
1491
+ }
1492
+
1493
+
1494
+ void Builtins::IterateBuiltins(ObjectVisitor* v) {
1495
+ v->VisitPointers(&builtins_[0], &builtins_[0] + builtin_count);
1496
+ }
1497
+
1498
+
1499
+ const char* Builtins::Lookup(byte* pc) {
1500
+ if (is_initialized) { // may be called during initialization (disassembler!)
1501
+ for (int i = 0; i < builtin_count; i++) {
1502
+ Code* entry = Code::cast(builtins_[i]);
1503
+ if (entry->contains(pc)) {
1504
+ return names_[i];
1505
+ }
1506
+ }
1507
+ }
1508
+ return NULL;
1509
+ }
1510
+
1511
+
1512
+ } } // namespace v8::internal