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
@@ -1,849 +0,0 @@
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 "codegen-inl.h"
31
- #include "ic-inl.h"
32
- #include "runtime.h"
33
- #include "stub-cache.h"
34
-
35
- namespace v8 {
36
- namespace internal {
37
-
38
-
39
- // ----------------------------------------------------------------------------
40
- // Static IC stub generators.
41
- //
42
-
43
- #define __ ACCESS_MASM(masm)
44
-
45
-
46
- // Helper function used from LoadIC/CallIC GenerateNormal.
47
- static void GenerateDictionaryLoad(MacroAssembler* masm,
48
- Label* miss,
49
- Register t0,
50
- Register t1) {
51
- // Register use:
52
- //
53
- // t0 - used to hold the property dictionary.
54
- //
55
- // t1 - initially the receiver
56
- // - used for the index into the property dictionary
57
- // - holds the result on exit.
58
- //
59
- // r3 - used as temporary and to hold the capacity of the property
60
- // dictionary.
61
- //
62
- // r2 - holds the name of the property and is unchanges.
63
-
64
- Label done;
65
-
66
- // Check for the absence of an interceptor.
67
- // Load the map into t0.
68
- __ ldr(t0, FieldMemOperand(t1, JSObject::kMapOffset));
69
- // Test the has_named_interceptor bit in the map.
70
- __ ldr(r3, FieldMemOperand(t0, Map::kInstanceAttributesOffset));
71
- __ tst(r3, Operand(1 << (Map::kHasNamedInterceptor + (3 * 8))));
72
- // Jump to miss if the interceptor bit is set.
73
- __ b(ne, miss);
74
-
75
- // Bail out if we have a JS global proxy object.
76
- __ ldrb(r3, FieldMemOperand(t0, Map::kInstanceTypeOffset));
77
- __ cmp(r3, Operand(JS_GLOBAL_PROXY_TYPE));
78
- __ b(eq, miss);
79
-
80
- // Possible work-around for http://crbug.com/16276.
81
- // See also: http://codereview.chromium.org/155418.
82
- __ cmp(r3, Operand(JS_GLOBAL_OBJECT_TYPE));
83
- __ b(eq, miss);
84
- __ cmp(r3, Operand(JS_BUILTINS_OBJECT_TYPE));
85
- __ b(eq, miss);
86
-
87
- // Check that the properties array is a dictionary.
88
- __ ldr(t0, FieldMemOperand(t1, JSObject::kPropertiesOffset));
89
- __ ldr(r3, FieldMemOperand(t0, HeapObject::kMapOffset));
90
- __ LoadRoot(ip, Heap::kHashTableMapRootIndex);
91
- __ cmp(r3, ip);
92
- __ b(ne, miss);
93
-
94
- // Compute the capacity mask.
95
- const int kCapacityOffset = StringDictionary::kHeaderSize +
96
- StringDictionary::kCapacityIndex * kPointerSize;
97
- __ ldr(r3, FieldMemOperand(t0, kCapacityOffset));
98
- __ mov(r3, Operand(r3, ASR, kSmiTagSize)); // convert smi to int
99
- __ sub(r3, r3, Operand(1));
100
-
101
- const int kElementsStartOffset = StringDictionary::kHeaderSize +
102
- StringDictionary::kElementsStartIndex * kPointerSize;
103
-
104
- // Generate an unrolled loop that performs a few probes before
105
- // giving up. Measurements done on Gmail indicate that 2 probes
106
- // cover ~93% of loads from dictionaries.
107
- static const int kProbes = 4;
108
- for (int i = 0; i < kProbes; i++) {
109
- // Compute the masked index: (hash + i + i * i) & mask.
110
- __ ldr(t1, FieldMemOperand(r2, String::kHashFieldOffset));
111
- if (i > 0) {
112
- // Add the probe offset (i + i * i) left shifted to avoid right shifting
113
- // the hash in a separate instruction. The value hash + i + i * i is right
114
- // shifted in the following and instruction.
115
- ASSERT(StringDictionary::GetProbeOffset(i) <
116
- 1 << (32 - String::kHashFieldOffset));
117
- __ add(t1, t1, Operand(
118
- StringDictionary::GetProbeOffset(i) << String::kHashShift));
119
- }
120
- __ and_(t1, r3, Operand(t1, LSR, String::kHashShift));
121
-
122
- // Scale the index by multiplying by the element size.
123
- ASSERT(StringDictionary::kEntrySize == 3);
124
- __ add(t1, t1, Operand(t1, LSL, 1)); // t1 = t1 * 3
125
-
126
- // Check if the key is identical to the name.
127
- __ add(t1, t0, Operand(t1, LSL, 2));
128
- __ ldr(ip, FieldMemOperand(t1, kElementsStartOffset));
129
- __ cmp(r2, Operand(ip));
130
- if (i != kProbes - 1) {
131
- __ b(eq, &done);
132
- } else {
133
- __ b(ne, miss);
134
- }
135
- }
136
-
137
- // Check that the value is a normal property.
138
- __ bind(&done); // t1 == t0 + 4*index
139
- __ ldr(r3, FieldMemOperand(t1, kElementsStartOffset + 2 * kPointerSize));
140
- __ tst(r3, Operand(PropertyDetails::TypeField::mask() << kSmiTagSize));
141
- __ b(ne, miss);
142
-
143
- // Get the value at the masked, scaled index and return.
144
- __ ldr(t1, FieldMemOperand(t1, kElementsStartOffset + 1 * kPointerSize));
145
- }
146
-
147
-
148
- // Helper function used to check that a value is either not an object
149
- // or is loaded if it is an object.
150
- static void GenerateCheckNonObjectOrLoaded(MacroAssembler* masm,
151
- Label* miss,
152
- Register value,
153
- Register scratch) {
154
- Label done;
155
- // Check if the value is a Smi.
156
- __ tst(value, Operand(kSmiTagMask));
157
- __ b(eq, &done);
158
- // Check if the object has been loaded.
159
- __ ldr(scratch, FieldMemOperand(value, JSObject::kMapOffset));
160
- __ ldrb(scratch, FieldMemOperand(scratch, Map::kBitField2Offset));
161
- __ tst(scratch, Operand(1 << Map::kNeedsLoading));
162
- __ b(ne, miss);
163
- __ bind(&done);
164
- }
165
-
166
-
167
- void LoadIC::GenerateArrayLength(MacroAssembler* masm) {
168
- // ----------- S t a t e -------------
169
- // -- r2 : name
170
- // -- lr : return address
171
- // -- [sp] : receiver
172
- // -----------------------------------
173
-
174
- Label miss;
175
-
176
- __ ldr(r0, MemOperand(sp, 0));
177
-
178
- StubCompiler::GenerateLoadArrayLength(masm, r0, r3, &miss);
179
- __ bind(&miss);
180
- StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
181
- }
182
-
183
-
184
- void LoadIC::GenerateStringLength(MacroAssembler* masm) {
185
- // ----------- S t a t e -------------
186
- // -- r2 : name
187
- // -- lr : return address
188
- // -- [sp] : receiver
189
- // -----------------------------------
190
- Label miss;
191
-
192
- __ ldr(r0, MemOperand(sp, 0));
193
-
194
- StubCompiler::GenerateLoadStringLength2(masm, r0, r1, r3, &miss);
195
- // Cache miss: Jump to runtime.
196
- __ bind(&miss);
197
- StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
198
- }
199
-
200
-
201
- void LoadIC::GenerateFunctionPrototype(MacroAssembler* masm) {
202
- // ----------- S t a t e -------------
203
- // -- r2 : name
204
- // -- lr : return address
205
- // -- [sp] : receiver
206
- // -----------------------------------
207
-
208
- Label miss;
209
-
210
- // Load receiver.
211
- __ ldr(r0, MemOperand(sp, 0));
212
-
213
- StubCompiler::GenerateLoadFunctionPrototype(masm, r0, r1, r3, &miss);
214
- __ bind(&miss);
215
- StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
216
- }
217
-
218
-
219
- // Defined in ic.cc.
220
- Object* CallIC_Miss(Arguments args);
221
-
222
- void CallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
223
- // ----------- S t a t e -------------
224
- // -- lr: return address
225
- // -----------------------------------
226
- Label number, non_number, non_string, boolean, probe, miss;
227
-
228
- // Get the receiver of the function from the stack into r1.
229
- __ ldr(r1, MemOperand(sp, argc * kPointerSize));
230
- // Get the name of the function from the stack; 1 ~ receiver.
231
- __ ldr(r2, MemOperand(sp, (argc + 1) * kPointerSize));
232
-
233
- // Probe the stub cache.
234
- Code::Flags flags =
235
- Code::ComputeFlags(Code::CALL_IC, NOT_IN_LOOP, MONOMORPHIC, NORMAL, argc);
236
- StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
237
-
238
- // If the stub cache probing failed, the receiver might be a value.
239
- // For value objects, we use the map of the prototype objects for
240
- // the corresponding JSValue for the cache and that is what we need
241
- // to probe.
242
- //
243
- // Check for number.
244
- __ tst(r1, Operand(kSmiTagMask));
245
- __ b(eq, &number);
246
- __ CompareObjectType(r1, r3, r3, HEAP_NUMBER_TYPE);
247
- __ b(ne, &non_number);
248
- __ bind(&number);
249
- StubCompiler::GenerateLoadGlobalFunctionPrototype(
250
- masm, Context::NUMBER_FUNCTION_INDEX, r1);
251
- __ b(&probe);
252
-
253
- // Check for string.
254
- __ bind(&non_number);
255
- __ cmp(r3, Operand(FIRST_NONSTRING_TYPE));
256
- __ b(hs, &non_string);
257
- StubCompiler::GenerateLoadGlobalFunctionPrototype(
258
- masm, Context::STRING_FUNCTION_INDEX, r1);
259
- __ b(&probe);
260
-
261
- // Check for boolean.
262
- __ bind(&non_string);
263
- __ LoadRoot(ip, Heap::kTrueValueRootIndex);
264
- __ cmp(r1, ip);
265
- __ b(eq, &boolean);
266
- __ LoadRoot(ip, Heap::kFalseValueRootIndex);
267
- __ cmp(r1, ip);
268
- __ b(ne, &miss);
269
- __ bind(&boolean);
270
- StubCompiler::GenerateLoadGlobalFunctionPrototype(
271
- masm, Context::BOOLEAN_FUNCTION_INDEX, r1);
272
-
273
- // Probe the stub cache for the value object.
274
- __ bind(&probe);
275
- StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
276
-
277
- // Cache miss: Jump to runtime.
278
- __ bind(&miss);
279
- GenerateMiss(masm, argc);
280
- }
281
-
282
-
283
- static void GenerateNormalHelper(MacroAssembler* masm,
284
- int argc,
285
- bool is_global_object,
286
- Label* miss) {
287
- // Search dictionary - put result in register r1.
288
- GenerateDictionaryLoad(masm, miss, r0, r1);
289
-
290
- // Check that the value isn't a smi.
291
- __ tst(r1, Operand(kSmiTagMask));
292
- __ b(eq, miss);
293
-
294
- // Check that the value is a JSFunction.
295
- __ CompareObjectType(r1, r0, r0, JS_FUNCTION_TYPE);
296
- __ b(ne, miss);
297
-
298
- // Check that the function has been loaded.
299
- __ ldr(r0, FieldMemOperand(r1, JSObject::kMapOffset));
300
- __ ldrb(r0, FieldMemOperand(r0, Map::kBitField2Offset));
301
- __ tst(r0, Operand(1 << Map::kNeedsLoading));
302
- __ b(ne, miss);
303
-
304
- // Patch the receiver with the global proxy if necessary.
305
- if (is_global_object) {
306
- __ ldr(r2, MemOperand(sp, argc * kPointerSize));
307
- __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalReceiverOffset));
308
- __ str(r2, MemOperand(sp, argc * kPointerSize));
309
- }
310
-
311
- // Invoke the function.
312
- ParameterCount actual(argc);
313
- __ InvokeFunction(r1, actual, JUMP_FUNCTION);
314
- }
315
-
316
-
317
- void CallIC::GenerateNormal(MacroAssembler* masm, int argc) {
318
- // ----------- S t a t e -------------
319
- // -- lr: return address
320
- // -----------------------------------
321
-
322
- Label miss, global_object, non_global_object;
323
-
324
- // Get the receiver of the function from the stack into r1.
325
- __ ldr(r1, MemOperand(sp, argc * kPointerSize));
326
- // Get the name of the function from the stack; 1 ~ receiver.
327
- __ ldr(r2, MemOperand(sp, (argc + 1) * kPointerSize));
328
-
329
- // Check that the receiver isn't a smi.
330
- __ tst(r1, Operand(kSmiTagMask));
331
- __ b(eq, &miss);
332
-
333
- // Check that the receiver is a valid JS object. Put the map in r3.
334
- __ CompareObjectType(r1, r3, r0, FIRST_JS_OBJECT_TYPE);
335
- __ b(lt, &miss);
336
-
337
- // If this assert fails, we have to check upper bound too.
338
- ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
339
-
340
- // Check for access to global object.
341
- __ cmp(r0, Operand(JS_GLOBAL_OBJECT_TYPE));
342
- __ b(eq, &global_object);
343
- __ cmp(r0, Operand(JS_BUILTINS_OBJECT_TYPE));
344
- __ b(ne, &non_global_object);
345
-
346
- // Accessing global object: Load and invoke.
347
- __ bind(&global_object);
348
- // Check that the global object does not require access checks.
349
- __ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset));
350
- __ tst(r3, Operand(1 << Map::kIsAccessCheckNeeded));
351
- __ b(ne, &miss);
352
- GenerateNormalHelper(masm, argc, true, &miss);
353
-
354
- // Accessing non-global object: Check for access to global proxy.
355
- Label global_proxy, invoke;
356
- __ bind(&non_global_object);
357
- __ cmp(r0, Operand(JS_GLOBAL_PROXY_TYPE));
358
- __ b(eq, &global_proxy);
359
- // Check that the non-global, non-global-proxy object does not
360
- // require access checks.
361
- __ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset));
362
- __ tst(r3, Operand(1 << Map::kIsAccessCheckNeeded));
363
- __ b(ne, &miss);
364
- __ bind(&invoke);
365
- GenerateNormalHelper(masm, argc, false, &miss);
366
-
367
- // Global object access: Check access rights.
368
- __ bind(&global_proxy);
369
- __ CheckAccessGlobalProxy(r1, r0, &miss);
370
- __ b(&invoke);
371
-
372
- // Cache miss: Jump to runtime.
373
- __ bind(&miss);
374
- GenerateMiss(masm, argc);
375
- }
376
-
377
-
378
- void CallIC::GenerateMiss(MacroAssembler* masm, int argc) {
379
- // ----------- S t a t e -------------
380
- // -- lr: return address
381
- // -----------------------------------
382
-
383
- // Get the receiver of the function from the stack.
384
- __ ldr(r2, MemOperand(sp, argc * kPointerSize));
385
- // Get the name of the function to call from the stack.
386
- __ ldr(r1, MemOperand(sp, (argc + 1) * kPointerSize));
387
-
388
- __ EnterInternalFrame();
389
-
390
- // Push the receiver and the name of the function.
391
- __ stm(db_w, sp, r1.bit() | r2.bit());
392
-
393
- // Call the entry.
394
- __ mov(r0, Operand(2));
395
- __ mov(r1, Operand(ExternalReference(IC_Utility(kCallIC_Miss))));
396
-
397
- CEntryStub stub(1);
398
- __ CallStub(&stub);
399
-
400
- // Move result to r1 and leave the internal frame.
401
- __ mov(r1, Operand(r0));
402
- __ LeaveInternalFrame();
403
-
404
- // Check if the receiver is a global object of some sort.
405
- Label invoke, global;
406
- __ ldr(r2, MemOperand(sp, argc * kPointerSize)); // receiver
407
- __ tst(r2, Operand(kSmiTagMask));
408
- __ b(eq, &invoke);
409
- __ CompareObjectType(r2, r3, r3, JS_GLOBAL_OBJECT_TYPE);
410
- __ b(eq, &global);
411
- __ cmp(r3, Operand(JS_BUILTINS_OBJECT_TYPE));
412
- __ b(ne, &invoke);
413
-
414
- // Patch the receiver on the stack.
415
- __ bind(&global);
416
- __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalReceiverOffset));
417
- __ str(r2, MemOperand(sp, argc * kPointerSize));
418
-
419
- // Invoke the function.
420
- ParameterCount actual(argc);
421
- __ bind(&invoke);
422
- __ InvokeFunction(r1, actual, JUMP_FUNCTION);
423
- }
424
-
425
-
426
- // Defined in ic.cc.
427
- Object* LoadIC_Miss(Arguments args);
428
-
429
- void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
430
- // ----------- S t a t e -------------
431
- // -- r2 : name
432
- // -- lr : return address
433
- // -- [sp] : receiver
434
- // -----------------------------------
435
-
436
- __ ldr(r0, MemOperand(sp, 0));
437
- // Probe the stub cache.
438
- Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
439
- NOT_IN_LOOP,
440
- MONOMORPHIC);
441
- StubCache::GenerateProbe(masm, flags, r0, r2, r3, no_reg);
442
-
443
- // Cache miss: Jump to runtime.
444
- Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
445
- }
446
-
447
-
448
- void LoadIC::GenerateNormal(MacroAssembler* masm) {
449
- // ----------- S t a t e -------------
450
- // -- r2 : name
451
- // -- lr : return address
452
- // -- [sp] : receiver
453
- // -----------------------------------
454
-
455
- Label miss, probe, global;
456
-
457
- __ ldr(r0, MemOperand(sp, 0));
458
- // Check that the receiver isn't a smi.
459
- __ tst(r0, Operand(kSmiTagMask));
460
- __ b(eq, &miss);
461
-
462
- // Check that the receiver is a valid JS object. Put the map in r3.
463
- __ CompareObjectType(r0, r3, r1, FIRST_JS_OBJECT_TYPE);
464
- __ b(lt, &miss);
465
- // If this assert fails, we have to check upper bound too.
466
- ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
467
-
468
- // Check for access to global object (unlikely).
469
- __ cmp(r1, Operand(JS_GLOBAL_PROXY_TYPE));
470
- __ b(eq, &global);
471
-
472
- // Check for non-global object that requires access check.
473
- __ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset));
474
- __ tst(r3, Operand(1 << Map::kIsAccessCheckNeeded));
475
- __ b(ne, &miss);
476
-
477
- __ bind(&probe);
478
- GenerateDictionaryLoad(masm, &miss, r1, r0);
479
- GenerateCheckNonObjectOrLoaded(masm, &miss, r0, r1);
480
- __ Ret();
481
-
482
- // Global object access: Check access rights.
483
- __ bind(&global);
484
- __ CheckAccessGlobalProxy(r0, r1, &miss);
485
- __ b(&probe);
486
-
487
- // Cache miss: Restore receiver from stack and jump to runtime.
488
- __ bind(&miss);
489
- Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
490
- }
491
-
492
-
493
- void LoadIC::GenerateMiss(MacroAssembler* masm) {
494
- Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
495
- }
496
-
497
-
498
- void LoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) {
499
- // ----------- S t a t e -------------
500
- // -- r2 : name
501
- // -- lr : return address
502
- // -- [sp] : receiver
503
- // -----------------------------------
504
-
505
- __ ldr(r3, MemOperand(sp, 0));
506
- __ stm(db_w, sp, r2.bit() | r3.bit());
507
-
508
- // Perform tail call to the entry.
509
- __ TailCallRuntime(f, 2, 1);
510
- }
511
-
512
-
513
- // TODO(181): Implement map patching once loop nesting is tracked on the
514
- // ARM platform so we can generate inlined fast-case code loads in
515
- // loops.
516
- void LoadIC::ClearInlinedVersion(Address address) {}
517
- bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) {
518
- return false;
519
- }
520
-
521
- void KeyedLoadIC::ClearInlinedVersion(Address address) {}
522
- bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) {
523
- return false;
524
- }
525
-
526
- void KeyedStoreIC::ClearInlinedVersion(Address address) {}
527
- void KeyedStoreIC::RestoreInlinedVersion(Address address) {}
528
- bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) {
529
- return false;
530
- }
531
-
532
-
533
- Object* KeyedLoadIC_Miss(Arguments args);
534
-
535
-
536
- void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
537
- Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss)));
538
- }
539
-
540
-
541
- void KeyedLoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) {
542
- // ---------- S t a t e --------------
543
- // -- lr : return address
544
- // -- sp[0] : key
545
- // -- sp[4] : receiver
546
- __ ldm(ia, sp, r2.bit() | r3.bit());
547
- __ stm(db_w, sp, r2.bit() | r3.bit());
548
-
549
- __ TailCallRuntime(f, 2, 1);
550
- }
551
-
552
-
553
- void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
554
- // ---------- S t a t e --------------
555
- // -- lr : return address
556
- // -- sp[0] : key
557
- // -- sp[4] : receiver
558
- Label slow, fast;
559
-
560
- // Get the key and receiver object from the stack.
561
- __ ldm(ia, sp, r0.bit() | r1.bit());
562
- // Check that the key is a smi.
563
- __ tst(r0, Operand(kSmiTagMask));
564
- __ b(ne, &slow);
565
- __ mov(r0, Operand(r0, ASR, kSmiTagSize));
566
- // Check that the object isn't a smi.
567
- __ tst(r1, Operand(kSmiTagMask));
568
- __ b(eq, &slow);
569
-
570
- // Get the map of the receiver.
571
- __ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
572
-
573
- // Check bit field.
574
- __ ldrb(r3, FieldMemOperand(r2, Map::kBitFieldOffset));
575
- __ tst(r3, Operand(kSlowCaseBitFieldMask));
576
- __ b(ne, &slow);
577
- // Check that the object is some kind of JS object EXCEPT JS Value type.
578
- // In the case that the object is a value-wrapper object,
579
- // we enter the runtime system to make sure that indexing into string
580
- // objects work as intended.
581
- ASSERT(JS_OBJECT_TYPE > JS_VALUE_TYPE);
582
- __ ldrb(r2, FieldMemOperand(r2, Map::kInstanceTypeOffset));
583
- __ cmp(r2, Operand(JS_OBJECT_TYPE));
584
- __ b(lt, &slow);
585
-
586
- // Get the elements array of the object.
587
- __ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
588
- // Check that the object is in fast mode (not dictionary).
589
- __ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
590
- __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
591
- __ cmp(r3, ip);
592
- __ b(ne, &slow);
593
- // Check that the key (index) is within bounds.
594
- __ ldr(r3, FieldMemOperand(r1, Array::kLengthOffset));
595
- __ cmp(r0, Operand(r3));
596
- __ b(lo, &fast);
597
-
598
- // Slow case: Push extra copies of the arguments (2).
599
- __ bind(&slow);
600
- __ IncrementCounter(&Counters::keyed_load_generic_slow, 1, r0, r1);
601
- __ ldm(ia, sp, r0.bit() | r1.bit());
602
- __ stm(db_w, sp, r0.bit() | r1.bit());
603
- // Do tail-call to runtime routine.
604
- __ TailCallRuntime(ExternalReference(Runtime::kGetProperty), 2, 1);
605
-
606
- // Fast case: Do the load.
607
- __ bind(&fast);
608
- __ add(r3, r1, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
609
- __ ldr(r0, MemOperand(r3, r0, LSL, kPointerSizeLog2));
610
- __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
611
- __ cmp(r0, ip);
612
- // In case the loaded value is the_hole we have to consult GetProperty
613
- // to ensure the prototype chain is searched.
614
- __ b(eq, &slow);
615
-
616
- __ Ret();
617
- }
618
-
619
-
620
- void KeyedLoadIC::GenerateString(MacroAssembler* masm) {
621
- // ---------- S t a t e --------------
622
- // -- lr : return address
623
- // -- sp[0] : key
624
- // -- sp[4] : receiver
625
- GenerateGeneric(masm);
626
- }
627
-
628
-
629
- void KeyedLoadIC::GenerateExternalArray(MacroAssembler* masm,
630
- ExternalArrayType array_type) {
631
- // TODO(476): port specialized code.
632
- GenerateGeneric(masm);
633
- }
634
-
635
-
636
- void KeyedStoreIC::Generate(MacroAssembler* masm,
637
- const ExternalReference& f) {
638
- // ---------- S t a t e --------------
639
- // -- r0 : value
640
- // -- lr : return address
641
- // -- sp[0] : key
642
- // -- sp[1] : receiver
643
-
644
- __ ldm(ia, sp, r2.bit() | r3.bit());
645
- __ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
646
-
647
- __ TailCallRuntime(f, 3, 1);
648
- }
649
-
650
-
651
- void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) {
652
- // ---------- S t a t e --------------
653
- // -- r0 : value
654
- // -- lr : return address
655
- // -- sp[0] : key
656
- // -- sp[1] : receiver
657
- Label slow, fast, array, extra, exit;
658
- // Get the key and the object from the stack.
659
- __ ldm(ia, sp, r1.bit() | r3.bit()); // r1 = key, r3 = receiver
660
- // Check that the key is a smi.
661
- __ tst(r1, Operand(kSmiTagMask));
662
- __ b(ne, &slow);
663
- // Check that the object isn't a smi.
664
- __ tst(r3, Operand(kSmiTagMask));
665
- __ b(eq, &slow);
666
- // Get the map of the object.
667
- __ ldr(r2, FieldMemOperand(r3, HeapObject::kMapOffset));
668
- // Check that the receiver does not require access checks. We need
669
- // to do this because this generic stub does not perform map checks.
670
- __ ldrb(ip, FieldMemOperand(r2, Map::kBitFieldOffset));
671
- __ tst(ip, Operand(1 << Map::kIsAccessCheckNeeded));
672
- __ b(ne, &slow);
673
- // Check if the object is a JS array or not.
674
- __ ldrb(r2, FieldMemOperand(r2, Map::kInstanceTypeOffset));
675
- __ cmp(r2, Operand(JS_ARRAY_TYPE));
676
- // r1 == key.
677
- __ b(eq, &array);
678
- // Check that the object is some kind of JS object.
679
- __ cmp(r2, Operand(FIRST_JS_OBJECT_TYPE));
680
- __ b(lt, &slow);
681
-
682
-
683
- // Object case: Check key against length in the elements array.
684
- __ ldr(r3, FieldMemOperand(r3, JSObject::kElementsOffset));
685
- // Check that the object is in fast mode (not dictionary).
686
- __ ldr(r2, FieldMemOperand(r3, HeapObject::kMapOffset));
687
- __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
688
- __ cmp(r2, ip);
689
- __ b(ne, &slow);
690
- // Untag the key (for checking against untagged length in the fixed array).
691
- __ mov(r1, Operand(r1, ASR, kSmiTagSize));
692
- // Compute address to store into and check array bounds.
693
- __ add(r2, r3, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
694
- __ add(r2, r2, Operand(r1, LSL, kPointerSizeLog2));
695
- __ ldr(ip, FieldMemOperand(r3, FixedArray::kLengthOffset));
696
- __ cmp(r1, Operand(ip));
697
- __ b(lo, &fast);
698
-
699
-
700
- // Slow case: Push extra copies of the arguments (3).
701
- __ bind(&slow);
702
- __ ldm(ia, sp, r1.bit() | r3.bit()); // r0 == value, r1 == key, r3 == object
703
- __ stm(db_w, sp, r0.bit() | r1.bit() | r3.bit());
704
- // Do tail-call to runtime routine.
705
- __ TailCallRuntime(ExternalReference(Runtime::kSetProperty), 3, 1);
706
-
707
- // Extra capacity case: Check if there is extra capacity to
708
- // perform the store and update the length. Used for adding one
709
- // element to the array by writing to array[array.length].
710
- // r0 == value, r1 == key, r2 == elements, r3 == object
711
- __ bind(&extra);
712
- __ b(ne, &slow); // do not leave holes in the array
713
- __ mov(r1, Operand(r1, ASR, kSmiTagSize)); // untag
714
- __ ldr(ip, FieldMemOperand(r2, Array::kLengthOffset));
715
- __ cmp(r1, Operand(ip));
716
- __ b(hs, &slow);
717
- __ mov(r1, Operand(r1, LSL, kSmiTagSize)); // restore tag
718
- __ add(r1, r1, Operand(1 << kSmiTagSize)); // and increment
719
- __ str(r1, FieldMemOperand(r3, JSArray::kLengthOffset));
720
- __ mov(r3, Operand(r2));
721
- // NOTE: Computing the address to store into must take the fact
722
- // that the key has been incremented into account.
723
- int displacement = FixedArray::kHeaderSize - kHeapObjectTag -
724
- ((1 << kSmiTagSize) * 2);
725
- __ add(r2, r2, Operand(displacement));
726
- __ add(r2, r2, Operand(r1, LSL, kPointerSizeLog2 - kSmiTagSize));
727
- __ b(&fast);
728
-
729
-
730
- // Array case: Get the length and the elements array from the JS
731
- // array. Check that the array is in fast mode; if it is the
732
- // length is always a smi.
733
- // r0 == value, r3 == object
734
- __ bind(&array);
735
- __ ldr(r2, FieldMemOperand(r3, JSObject::kElementsOffset));
736
- __ ldr(r1, FieldMemOperand(r2, HeapObject::kMapOffset));
737
- __ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
738
- __ cmp(r1, ip);
739
- __ b(ne, &slow);
740
-
741
- // Check the key against the length in the array, compute the
742
- // address to store into and fall through to fast case.
743
- __ ldr(r1, MemOperand(sp)); // restore key
744
- // r0 == value, r1 == key, r2 == elements, r3 == object.
745
- __ ldr(ip, FieldMemOperand(r3, JSArray::kLengthOffset));
746
- __ cmp(r1, Operand(ip));
747
- __ b(hs, &extra);
748
- __ mov(r3, Operand(r2));
749
- __ add(r2, r2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
750
- __ add(r2, r2, Operand(r1, LSL, kPointerSizeLog2 - kSmiTagSize));
751
-
752
-
753
- // Fast case: Do the store.
754
- // r0 == value, r2 == address to store into, r3 == elements
755
- __ bind(&fast);
756
- __ str(r0, MemOperand(r2));
757
- // Skip write barrier if the written value is a smi.
758
- __ tst(r0, Operand(kSmiTagMask));
759
- __ b(eq, &exit);
760
- // Update write barrier for the elements array address.
761
- __ sub(r1, r2, Operand(r3));
762
- __ RecordWrite(r3, r1, r2);
763
-
764
- __ bind(&exit);
765
- __ Ret();
766
- }
767
-
768
-
769
- void KeyedStoreIC::GenerateExternalArray(MacroAssembler* masm,
770
- ExternalArrayType array_type) {
771
- // TODO(476): port specialized code.
772
- GenerateGeneric(masm);
773
- }
774
-
775
-
776
- void KeyedStoreIC::GenerateExtendStorage(MacroAssembler* masm) {
777
- // ---------- S t a t e --------------
778
- // -- r0 : value
779
- // -- lr : return address
780
- // -- sp[0] : key
781
- // -- sp[1] : receiver
782
- // ----------- S t a t e -------------
783
-
784
- __ ldm(ia, sp, r2.bit() | r3.bit());
785
- __ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
786
-
787
- // Perform tail call to the entry.
788
- __ TailCallRuntime(
789
- ExternalReference(IC_Utility(kSharedStoreIC_ExtendStorage)), 3, 1);
790
- }
791
-
792
-
793
- void StoreIC::GenerateMegamorphic(MacroAssembler* masm) {
794
- // ----------- S t a t e -------------
795
- // -- r0 : value
796
- // -- r2 : name
797
- // -- lr : return address
798
- // -- [sp] : receiver
799
- // -----------------------------------
800
-
801
- // Get the receiver from the stack and probe the stub cache.
802
- __ ldr(r1, MemOperand(sp));
803
- Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
804
- NOT_IN_LOOP,
805
- MONOMORPHIC);
806
- StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
807
-
808
- // Cache miss: Jump to runtime.
809
- Generate(masm, ExternalReference(IC_Utility(kStoreIC_Miss)));
810
- }
811
-
812
-
813
- void StoreIC::GenerateExtendStorage(MacroAssembler* masm) {
814
- // ----------- S t a t e -------------
815
- // -- r0 : value
816
- // -- r2 : name
817
- // -- lr : return address
818
- // -- [sp] : receiver
819
- // -----------------------------------
820
-
821
- __ ldr(r3, MemOperand(sp)); // copy receiver
822
- __ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
823
-
824
- // Perform tail call to the entry.
825
- __ TailCallRuntime(
826
- ExternalReference(IC_Utility(kSharedStoreIC_ExtendStorage)), 3, 1);
827
- }
828
-
829
-
830
- void StoreIC::Generate(MacroAssembler* masm, const ExternalReference& f) {
831
- // ----------- S t a t e -------------
832
- // -- r0 : value
833
- // -- r2 : name
834
- // -- lr : return address
835
- // -- [sp] : receiver
836
- // -----------------------------------
837
-
838
- __ ldr(r3, MemOperand(sp)); // copy receiver
839
- __ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
840
-
841
- // Perform tail call to the entry.
842
- __ TailCallRuntime(f, 3, 1);
843
- }
844
-
845
-
846
- #undef __
847
-
848
-
849
- } } // namespace v8::internal