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
@@ -0,0 +1,946 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_ARM_CODEGEN_ARM_H_
29
+ #define V8_ARM_CODEGEN_ARM_H_
30
+
31
+ #include "ic-inl.h"
32
+
33
+ namespace v8 {
34
+ namespace internal {
35
+
36
+ // Forward declarations
37
+ class CompilationInfo;
38
+ class DeferredCode;
39
+ class RegisterAllocator;
40
+ class RegisterFile;
41
+
42
+ enum InitState { CONST_INIT, NOT_CONST_INIT };
43
+ enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF };
44
+
45
+
46
+ // -------------------------------------------------------------------------
47
+ // Reference support
48
+
49
+ // A reference is a C++ stack-allocated object that puts a
50
+ // reference on the virtual frame. The reference may be consumed
51
+ // by GetValue, TakeValue, SetValue, and Codegen::UnloadReference.
52
+ // When the lifetime (scope) of a valid reference ends, it must have
53
+ // been consumed, and be in state UNLOADED.
54
+ class Reference BASE_EMBEDDED {
55
+ public:
56
+ // The values of the types is important, see size().
57
+ enum Type { UNLOADED = -2, ILLEGAL = -1, SLOT = 0, NAMED = 1, KEYED = 2 };
58
+ Reference(CodeGenerator* cgen,
59
+ Expression* expression,
60
+ bool persist_after_get = false);
61
+ ~Reference();
62
+
63
+ Expression* expression() const { return expression_; }
64
+ Type type() const { return type_; }
65
+ void set_type(Type value) {
66
+ ASSERT_EQ(ILLEGAL, type_);
67
+ type_ = value;
68
+ }
69
+
70
+ void set_unloaded() {
71
+ ASSERT_NE(ILLEGAL, type_);
72
+ ASSERT_NE(UNLOADED, type_);
73
+ type_ = UNLOADED;
74
+ }
75
+ // The size the reference takes up on the stack.
76
+ int size() const {
77
+ return (type_ < SLOT) ? 0 : type_;
78
+ }
79
+
80
+ bool is_illegal() const { return type_ == ILLEGAL; }
81
+ bool is_slot() const { return type_ == SLOT; }
82
+ bool is_property() const { return type_ == NAMED || type_ == KEYED; }
83
+ bool is_unloaded() const { return type_ == UNLOADED; }
84
+
85
+ // Return the name. Only valid for named property references.
86
+ Handle<String> GetName();
87
+
88
+ // Generate code to push the value of the reference on top of the
89
+ // expression stack. The reference is expected to be already on top of
90
+ // the expression stack, and it is consumed by the call unless the
91
+ // reference is for a compound assignment.
92
+ // If the reference is not consumed, it is left in place under its value.
93
+ void GetValue();
94
+
95
+ // Generate code to store the value on top of the expression stack in the
96
+ // reference. The reference is expected to be immediately below the value
97
+ // on the expression stack. The value is stored in the location specified
98
+ // by the reference, and is left on top of the stack, after the reference
99
+ // is popped from beneath it (unloaded).
100
+ void SetValue(InitState init_state);
101
+
102
+ private:
103
+ CodeGenerator* cgen_;
104
+ Expression* expression_;
105
+ Type type_;
106
+ // Keep the reference on the stack after get, so it can be used by set later.
107
+ bool persist_after_get_;
108
+ };
109
+
110
+
111
+ // -------------------------------------------------------------------------
112
+ // Code generation state
113
+
114
+ // The state is passed down the AST by the code generator (and back up, in
115
+ // the form of the state of the label pair). It is threaded through the
116
+ // call stack. Constructing a state implicitly pushes it on the owning code
117
+ // generator's stack of states, and destroying one implicitly pops it.
118
+
119
+ class CodeGenState BASE_EMBEDDED {
120
+ public:
121
+ // Create an initial code generator state. Destroying the initial state
122
+ // leaves the code generator with a NULL state.
123
+ explicit CodeGenState(CodeGenerator* owner);
124
+
125
+ // Create a code generator state based on a code generator's current
126
+ // state. The new state has its own pair of branch labels.
127
+ CodeGenState(CodeGenerator* owner,
128
+ JumpTarget* true_target,
129
+ JumpTarget* false_target);
130
+
131
+ // Destroy a code generator state and restore the owning code generator's
132
+ // previous state.
133
+ ~CodeGenState();
134
+
135
+ JumpTarget* true_target() const { return true_target_; }
136
+ JumpTarget* false_target() const { return false_target_; }
137
+
138
+ private:
139
+ CodeGenerator* owner_;
140
+ JumpTarget* true_target_;
141
+ JumpTarget* false_target_;
142
+ CodeGenState* previous_;
143
+ };
144
+
145
+
146
+ // -------------------------------------------------------------------------
147
+ // Arguments allocation mode
148
+
149
+ enum ArgumentsAllocationMode {
150
+ NO_ARGUMENTS_ALLOCATION,
151
+ EAGER_ARGUMENTS_ALLOCATION,
152
+ LAZY_ARGUMENTS_ALLOCATION
153
+ };
154
+
155
+
156
+ // Different nop operations are used by the code generator to detect certain
157
+ // states of the generated code.
158
+ enum NopMarkerTypes {
159
+ NON_MARKING_NOP = 0,
160
+ PROPERTY_ACCESS_INLINED
161
+ };
162
+
163
+
164
+ // -------------------------------------------------------------------------
165
+ // CodeGenerator
166
+
167
+ class CodeGenerator: public AstVisitor {
168
+ public:
169
+ // Takes a function literal, generates code for it. This function should only
170
+ // be called by compiler.cc.
171
+ static Handle<Code> MakeCode(CompilationInfo* info);
172
+
173
+ // Printing of AST, etc. as requested by flags.
174
+ static void MakeCodePrologue(CompilationInfo* info);
175
+
176
+ // Allocate and install the code.
177
+ static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
178
+ Code::Flags flags,
179
+ CompilationInfo* info);
180
+
181
+ #ifdef ENABLE_LOGGING_AND_PROFILING
182
+ static bool ShouldGenerateLog(Expression* type);
183
+ #endif
184
+
185
+ static void SetFunctionInfo(Handle<JSFunction> fun,
186
+ FunctionLiteral* lit,
187
+ bool is_toplevel,
188
+ Handle<Script> script);
189
+
190
+ static void RecordPositions(MacroAssembler* masm, int pos);
191
+
192
+ // Accessors
193
+ MacroAssembler* masm() { return masm_; }
194
+ VirtualFrame* frame() const { return frame_; }
195
+ inline Handle<Script> script();
196
+
197
+ bool has_valid_frame() const { return frame_ != NULL; }
198
+
199
+ // Set the virtual frame to be new_frame, with non-frame register
200
+ // reference counts given by non_frame_registers. The non-frame
201
+ // register reference counts of the old frame are returned in
202
+ // non_frame_registers.
203
+ void SetFrame(VirtualFrame* new_frame, RegisterFile* non_frame_registers);
204
+
205
+ void DeleteFrame();
206
+
207
+ RegisterAllocator* allocator() const { return allocator_; }
208
+
209
+ CodeGenState* state() { return state_; }
210
+ void set_state(CodeGenState* state) { state_ = state; }
211
+
212
+ void AddDeferred(DeferredCode* code) { deferred_.Add(code); }
213
+
214
+ static const int kUnknownIntValue = -1;
215
+
216
+ // If the name is an inline runtime function call return the number of
217
+ // expected arguments. Otherwise return -1.
218
+ static int InlineRuntimeCallArgumentsCount(Handle<String> name);
219
+
220
+ private:
221
+ // Construction/Destruction
222
+ explicit CodeGenerator(MacroAssembler* masm);
223
+
224
+ // Accessors
225
+ inline bool is_eval();
226
+ inline Scope* scope();
227
+
228
+ // Generating deferred code.
229
+ void ProcessDeferred();
230
+
231
+ // State
232
+ bool has_cc() const { return cc_reg_ != al; }
233
+ JumpTarget* true_target() const { return state_->true_target(); }
234
+ JumpTarget* false_target() const { return state_->false_target(); }
235
+
236
+ // Track loop nesting level.
237
+ int loop_nesting() const { return loop_nesting_; }
238
+ void IncrementLoopNesting() { loop_nesting_++; }
239
+ void DecrementLoopNesting() { loop_nesting_--; }
240
+
241
+ // Node visitors.
242
+ void VisitStatements(ZoneList<Statement*>* statements);
243
+
244
+ #define DEF_VISIT(type) \
245
+ void Visit##type(type* node);
246
+ AST_NODE_LIST(DEF_VISIT)
247
+ #undef DEF_VISIT
248
+
249
+ // Visit a statement and then spill the virtual frame if control flow can
250
+ // reach the end of the statement (ie, it does not exit via break,
251
+ // continue, return, or throw). This function is used temporarily while
252
+ // the code generator is being transformed.
253
+ inline void VisitAndSpill(Statement* statement);
254
+
255
+ // Visit a list of statements and then spill the virtual frame if control
256
+ // flow can reach the end of the list.
257
+ inline void VisitStatementsAndSpill(ZoneList<Statement*>* statements);
258
+
259
+ // Main code generation function
260
+ void Generate(CompilationInfo* info);
261
+
262
+ // Returns the arguments allocation mode.
263
+ ArgumentsAllocationMode ArgumentsMode();
264
+
265
+ // Store the arguments object and allocate it if necessary.
266
+ void StoreArgumentsObject(bool initial);
267
+
268
+ // The following are used by class Reference.
269
+ void LoadReference(Reference* ref);
270
+ void UnloadReference(Reference* ref);
271
+
272
+ static MemOperand ContextOperand(Register context, int index) {
273
+ return MemOperand(context, Context::SlotOffset(index));
274
+ }
275
+
276
+ MemOperand SlotOperand(Slot* slot, Register tmp);
277
+
278
+ MemOperand ContextSlotOperandCheckExtensions(Slot* slot,
279
+ Register tmp,
280
+ Register tmp2,
281
+ JumpTarget* slow);
282
+
283
+ // Expressions
284
+ static MemOperand GlobalObject() {
285
+ return ContextOperand(cp, Context::GLOBAL_INDEX);
286
+ }
287
+
288
+ void LoadCondition(Expression* x,
289
+ JumpTarget* true_target,
290
+ JumpTarget* false_target,
291
+ bool force_cc);
292
+ void Load(Expression* expr);
293
+ void LoadGlobal();
294
+ void LoadGlobalReceiver(Register scratch);
295
+
296
+ // Generate code to push the value of an expression on top of the frame
297
+ // and then spill the frame fully to memory. This function is used
298
+ // temporarily while the code generator is being transformed.
299
+ inline void LoadAndSpill(Expression* expression);
300
+
301
+ // Call LoadCondition and then spill the virtual frame unless control flow
302
+ // cannot reach the end of the expression (ie, by emitting only
303
+ // unconditional jumps to the control targets).
304
+ inline void LoadConditionAndSpill(Expression* expression,
305
+ JumpTarget* true_target,
306
+ JumpTarget* false_target,
307
+ bool force_control);
308
+
309
+ // Read a value from a slot and leave it on top of the expression stack.
310
+ void LoadFromSlot(Slot* slot, TypeofState typeof_state);
311
+ void LoadFromSlotCheckForArguments(Slot* slot, TypeofState state);
312
+ // Store the value on top of the stack to a slot.
313
+ void StoreToSlot(Slot* slot, InitState init_state);
314
+
315
+ // Support for compiling assignment expressions.
316
+ void EmitSlotAssignment(Assignment* node);
317
+ void EmitNamedPropertyAssignment(Assignment* node);
318
+ void EmitKeyedPropertyAssignment(Assignment* node);
319
+
320
+ // Load a named property, returning it in r0. The receiver is passed on the
321
+ // stack, and remains there.
322
+ void EmitNamedLoad(Handle<String> name, bool is_contextual);
323
+
324
+ // Store to a named property. If the store is contextual, value is passed on
325
+ // the frame and consumed. Otherwise, receiver and value are passed on the
326
+ // frame and consumed. The result is returned in r0.
327
+ void EmitNamedStore(Handle<String> name, bool is_contextual);
328
+
329
+ // Load a keyed property, leaving it in r0. The receiver and key are
330
+ // passed on the stack, and remain there.
331
+ void EmitKeyedLoad();
332
+
333
+ // Store a keyed property. Key and receiver are on the stack and the value is
334
+ // in r0. Result is returned in r0.
335
+ void EmitKeyedStore(StaticType* key_type);
336
+
337
+ void LoadFromGlobalSlotCheckExtensions(Slot* slot,
338
+ TypeofState typeof_state,
339
+ JumpTarget* slow);
340
+
341
+ // Special code for typeof expressions: Unfortunately, we must
342
+ // be careful when loading the expression in 'typeof'
343
+ // expressions. We are not allowed to throw reference errors for
344
+ // non-existing properties of the global object, so we must make it
345
+ // look like an explicit property access, instead of an access
346
+ // through the context chain.
347
+ void LoadTypeofExpression(Expression* x);
348
+
349
+ void ToBoolean(JumpTarget* true_target, JumpTarget* false_target);
350
+
351
+ // Generate code that computes a shortcutting logical operation.
352
+ void GenerateLogicalBooleanOperation(BinaryOperation* node);
353
+
354
+ void GenericBinaryOperation(Token::Value op,
355
+ OverwriteMode overwrite_mode,
356
+ int known_rhs = kUnknownIntValue);
357
+ void VirtualFrameBinaryOperation(Token::Value op,
358
+ OverwriteMode overwrite_mode,
359
+ int known_rhs = kUnknownIntValue);
360
+ void Comparison(Condition cc,
361
+ Expression* left,
362
+ Expression* right,
363
+ bool strict = false);
364
+
365
+ void SmiOperation(Token::Value op,
366
+ Handle<Object> value,
367
+ bool reversed,
368
+ OverwriteMode mode);
369
+
370
+ void CallWithArguments(ZoneList<Expression*>* arguments,
371
+ CallFunctionFlags flags,
372
+ int position);
373
+
374
+ // An optimized implementation of expressions of the form
375
+ // x.apply(y, arguments). We call x the applicand and y the receiver.
376
+ // The optimization avoids allocating an arguments object if possible.
377
+ void CallApplyLazy(Expression* applicand,
378
+ Expression* receiver,
379
+ VariableProxy* arguments,
380
+ int position);
381
+
382
+ // Control flow
383
+ void Branch(bool if_true, JumpTarget* target);
384
+ void CheckStack();
385
+
386
+ struct InlineRuntimeLUT {
387
+ void (CodeGenerator::*method)(ZoneList<Expression*>*);
388
+ const char* name;
389
+ int nargs;
390
+ };
391
+
392
+ static InlineRuntimeLUT* FindInlineRuntimeLUT(Handle<String> name);
393
+ bool CheckForInlineRuntimeCall(CallRuntime* node);
394
+ static bool PatchInlineRuntimeEntry(Handle<String> name,
395
+ const InlineRuntimeLUT& new_entry,
396
+ InlineRuntimeLUT* old_entry);
397
+
398
+ static Handle<Code> ComputeLazyCompile(int argc);
399
+ void ProcessDeclarations(ZoneList<Declaration*>* declarations);
400
+
401
+ static Handle<Code> ComputeCallInitialize(int argc, InLoopFlag in_loop);
402
+
403
+ // Declare global variables and functions in the given array of
404
+ // name/value pairs.
405
+ void DeclareGlobals(Handle<FixedArray> pairs);
406
+
407
+ // Instantiate the function based on the shared function info.
408
+ void InstantiateFunction(Handle<SharedFunctionInfo> function_info);
409
+
410
+ // Support for type checks.
411
+ void GenerateIsSmi(ZoneList<Expression*>* args);
412
+ void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args);
413
+ void GenerateIsArray(ZoneList<Expression*>* args);
414
+ void GenerateIsRegExp(ZoneList<Expression*>* args);
415
+ void GenerateIsObject(ZoneList<Expression*>* args);
416
+ void GenerateIsFunction(ZoneList<Expression*>* args);
417
+ void GenerateIsUndetectableObject(ZoneList<Expression*>* args);
418
+
419
+ // Support for construct call checks.
420
+ void GenerateIsConstructCall(ZoneList<Expression*>* args);
421
+
422
+ // Support for arguments.length and arguments[?].
423
+ void GenerateArgumentsLength(ZoneList<Expression*>* args);
424
+ void GenerateArguments(ZoneList<Expression*>* args);
425
+
426
+ // Support for accessing the class and value fields of an object.
427
+ void GenerateClassOf(ZoneList<Expression*>* args);
428
+ void GenerateValueOf(ZoneList<Expression*>* args);
429
+ void GenerateSetValueOf(ZoneList<Expression*>* args);
430
+
431
+ // Fast support for charCodeAt(n).
432
+ void GenerateFastCharCodeAt(ZoneList<Expression*>* args);
433
+
434
+ // Fast support for string.charAt(n) and string[n].
435
+ void GenerateCharFromCode(ZoneList<Expression*>* args);
436
+
437
+ // Fast support for object equality testing.
438
+ void GenerateObjectEquals(ZoneList<Expression*>* args);
439
+
440
+ void GenerateLog(ZoneList<Expression*>* args);
441
+
442
+ // Fast support for Math.random().
443
+ void GenerateRandomHeapNumber(ZoneList<Expression*>* args);
444
+
445
+ // Fast support for StringAdd.
446
+ void GenerateStringAdd(ZoneList<Expression*>* args);
447
+
448
+ // Fast support for SubString.
449
+ void GenerateSubString(ZoneList<Expression*>* args);
450
+
451
+ // Fast support for StringCompare.
452
+ void GenerateStringCompare(ZoneList<Expression*>* args);
453
+
454
+ // Support for direct calls from JavaScript to native RegExp code.
455
+ void GenerateRegExpExec(ZoneList<Expression*>* args);
456
+
457
+ void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
458
+
459
+ // Support for fast native caches.
460
+ void GenerateGetFromCache(ZoneList<Expression*>* args);
461
+
462
+ // Fast support for number to string.
463
+ void GenerateNumberToString(ZoneList<Expression*>* args);
464
+
465
+ // Fast swapping of elements.
466
+ void GenerateSwapElements(ZoneList<Expression*>* args);
467
+
468
+ // Fast call for custom callbacks.
469
+ void GenerateCallFunction(ZoneList<Expression*>* args);
470
+
471
+ // Fast call to math functions.
472
+ void GenerateMathPow(ZoneList<Expression*>* args);
473
+ void GenerateMathSin(ZoneList<Expression*>* args);
474
+ void GenerateMathCos(ZoneList<Expression*>* args);
475
+ void GenerateMathSqrt(ZoneList<Expression*>* args);
476
+
477
+ // Simple condition analysis.
478
+ enum ConditionAnalysis {
479
+ ALWAYS_TRUE,
480
+ ALWAYS_FALSE,
481
+ DONT_KNOW
482
+ };
483
+ ConditionAnalysis AnalyzeCondition(Expression* cond);
484
+
485
+ // Methods used to indicate which source code is generated for. Source
486
+ // positions are collected by the assembler and emitted with the relocation
487
+ // information.
488
+ void CodeForFunctionPosition(FunctionLiteral* fun);
489
+ void CodeForReturnPosition(FunctionLiteral* fun);
490
+ void CodeForStatementPosition(Statement* node);
491
+ void CodeForDoWhileConditionPosition(DoWhileStatement* stmt);
492
+ void CodeForSourcePosition(int pos);
493
+
494
+ #ifdef DEBUG
495
+ // True if the registers are valid for entry to a block.
496
+ bool HasValidEntryRegisters();
497
+ #endif
498
+
499
+ List<DeferredCode*> deferred_;
500
+
501
+ // Assembler
502
+ MacroAssembler* masm_; // to generate code
503
+
504
+ CompilationInfo* info_;
505
+
506
+ // Code generation state
507
+ VirtualFrame* frame_;
508
+ RegisterAllocator* allocator_;
509
+ Condition cc_reg_;
510
+ CodeGenState* state_;
511
+ int loop_nesting_;
512
+
513
+ // Jump targets
514
+ BreakTarget function_return_;
515
+
516
+ // True if the function return is shadowed (ie, jumping to the target
517
+ // function_return_ does not jump to the true function return, but rather
518
+ // to some unlinking code).
519
+ bool function_return_is_shadowed_;
520
+
521
+ static InlineRuntimeLUT kInlineRuntimeLUT[];
522
+
523
+ friend class VirtualFrame;
524
+ friend class JumpTarget;
525
+ friend class Reference;
526
+ friend class FastCodeGenerator;
527
+ friend class FullCodeGenerator;
528
+ friend class FullCodeGenSyntaxChecker;
529
+
530
+ DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
531
+ };
532
+
533
+
534
+ class GenericBinaryOpStub : public CodeStub {
535
+ public:
536
+ GenericBinaryOpStub(Token::Value op,
537
+ OverwriteMode mode,
538
+ Register lhs,
539
+ Register rhs,
540
+ int constant_rhs = CodeGenerator::kUnknownIntValue)
541
+ : op_(op),
542
+ mode_(mode),
543
+ lhs_(lhs),
544
+ rhs_(rhs),
545
+ constant_rhs_(constant_rhs),
546
+ specialized_on_rhs_(RhsIsOneWeWantToOptimizeFor(op, constant_rhs)),
547
+ runtime_operands_type_(BinaryOpIC::DEFAULT),
548
+ name_(NULL) { }
549
+
550
+ GenericBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info)
551
+ : op_(OpBits::decode(key)),
552
+ mode_(ModeBits::decode(key)),
553
+ lhs_(LhsRegister(RegisterBits::decode(key))),
554
+ rhs_(RhsRegister(RegisterBits::decode(key))),
555
+ constant_rhs_(KnownBitsForMinorKey(KnownIntBits::decode(key))),
556
+ specialized_on_rhs_(RhsIsOneWeWantToOptimizeFor(op_, constant_rhs_)),
557
+ runtime_operands_type_(type_info),
558
+ name_(NULL) { }
559
+
560
+ private:
561
+ Token::Value op_;
562
+ OverwriteMode mode_;
563
+ Register lhs_;
564
+ Register rhs_;
565
+ int constant_rhs_;
566
+ bool specialized_on_rhs_;
567
+ BinaryOpIC::TypeInfo runtime_operands_type_;
568
+ char* name_;
569
+
570
+ static const int kMaxKnownRhs = 0x40000000;
571
+ static const int kKnownRhsKeyBits = 6;
572
+
573
+ // Minor key encoding in 17 bits.
574
+ class ModeBits: public BitField<OverwriteMode, 0, 2> {};
575
+ class OpBits: public BitField<Token::Value, 2, 6> {};
576
+ class TypeInfoBits: public BitField<int, 8, 2> {};
577
+ class RegisterBits: public BitField<bool, 10, 1> {};
578
+ class KnownIntBits: public BitField<int, 11, kKnownRhsKeyBits> {};
579
+
580
+ Major MajorKey() { return GenericBinaryOp; }
581
+ int MinorKey() {
582
+ ASSERT((lhs_.is(r0) && rhs_.is(r1)) ||
583
+ (lhs_.is(r1) && rhs_.is(r0)));
584
+ // Encode the parameters in a unique 18 bit value.
585
+ return OpBits::encode(op_)
586
+ | ModeBits::encode(mode_)
587
+ | KnownIntBits::encode(MinorKeyForKnownInt())
588
+ | TypeInfoBits::encode(runtime_operands_type_)
589
+ | RegisterBits::encode(lhs_.is(r0));
590
+ }
591
+
592
+ void Generate(MacroAssembler* masm);
593
+ void HandleNonSmiBitwiseOp(MacroAssembler* masm, Register lhs, Register rhs);
594
+ void HandleBinaryOpSlowCases(MacroAssembler* masm,
595
+ Label* not_smi,
596
+ Register lhs,
597
+ Register rhs,
598
+ const Builtins::JavaScript& builtin);
599
+ void GenerateTypeTransition(MacroAssembler* masm);
600
+
601
+ static bool RhsIsOneWeWantToOptimizeFor(Token::Value op, int constant_rhs) {
602
+ if (constant_rhs == CodeGenerator::kUnknownIntValue) return false;
603
+ if (op == Token::DIV) return constant_rhs >= 2 && constant_rhs <= 3;
604
+ if (op == Token::MOD) {
605
+ if (constant_rhs <= 1) return false;
606
+ if (constant_rhs <= 10) return true;
607
+ if (constant_rhs <= kMaxKnownRhs && IsPowerOf2(constant_rhs)) return true;
608
+ return false;
609
+ }
610
+ return false;
611
+ }
612
+
613
+ int MinorKeyForKnownInt() {
614
+ if (!specialized_on_rhs_) return 0;
615
+ if (constant_rhs_ <= 10) return constant_rhs_ + 1;
616
+ ASSERT(IsPowerOf2(constant_rhs_));
617
+ int key = 12;
618
+ int d = constant_rhs_;
619
+ while ((d & 1) == 0) {
620
+ key++;
621
+ d >>= 1;
622
+ }
623
+ ASSERT(key >= 0 && key < (1 << kKnownRhsKeyBits));
624
+ return key;
625
+ }
626
+
627
+ int KnownBitsForMinorKey(int key) {
628
+ if (!key) return 0;
629
+ if (key <= 11) return key - 1;
630
+ int d = 1;
631
+ while (key != 12) {
632
+ key--;
633
+ d <<= 1;
634
+ }
635
+ return d;
636
+ }
637
+
638
+ Register LhsRegister(bool lhs_is_r0) {
639
+ return lhs_is_r0 ? r0 : r1;
640
+ }
641
+
642
+ Register RhsRegister(bool lhs_is_r0) {
643
+ return lhs_is_r0 ? r1 : r0;
644
+ }
645
+
646
+ bool ShouldGenerateSmiCode() {
647
+ return ((op_ != Token::DIV && op_ != Token::MOD) || specialized_on_rhs_) &&
648
+ runtime_operands_type_ != BinaryOpIC::HEAP_NUMBERS &&
649
+ runtime_operands_type_ != BinaryOpIC::STRINGS;
650
+ }
651
+
652
+ bool ShouldGenerateFPCode() {
653
+ return runtime_operands_type_ != BinaryOpIC::STRINGS;
654
+ }
655
+
656
+ virtual int GetCodeKind() { return Code::BINARY_OP_IC; }
657
+
658
+ virtual InlineCacheState GetICState() {
659
+ return BinaryOpIC::ToState(runtime_operands_type_);
660
+ }
661
+
662
+ const char* GetName();
663
+
664
+ #ifdef DEBUG
665
+ void Print() {
666
+ if (!specialized_on_rhs_) {
667
+ PrintF("GenericBinaryOpStub (%s)\n", Token::String(op_));
668
+ } else {
669
+ PrintF("GenericBinaryOpStub (%s by %d)\n",
670
+ Token::String(op_),
671
+ constant_rhs_);
672
+ }
673
+ }
674
+ #endif
675
+ };
676
+
677
+
678
+ class StringHelper : public AllStatic {
679
+ public:
680
+ // Generates fast code for getting a char code out of a string
681
+ // object at the given index. May bail out for four reasons (in the
682
+ // listed order):
683
+ // * Receiver is not a string (receiver_not_string label).
684
+ // * Index is not a smi (index_not_smi label).
685
+ // * Index is out of range (index_out_of_range).
686
+ // * Some other reason (slow_case label). In this case it's
687
+ // guaranteed that the above conditions are not violated,
688
+ // e.g. it's safe to assume the receiver is a string and the
689
+ // index is a non-negative smi < length.
690
+ // When successful, object, index, and scratch are clobbered.
691
+ // Otherwise, scratch and result are clobbered.
692
+ static void GenerateFastCharCodeAt(MacroAssembler* masm,
693
+ Register object,
694
+ Register index,
695
+ Register scratch,
696
+ Register result,
697
+ Label* receiver_not_string,
698
+ Label* index_not_smi,
699
+ Label* index_out_of_range,
700
+ Label* slow_case);
701
+
702
+ // Generates code for creating a one-char string from the given char
703
+ // code. May do a runtime call, so any register can be clobbered
704
+ // and, if the given invoke flag specifies a call, an internal frame
705
+ // is required. In tail call mode the result must be r0 register.
706
+ static void GenerateCharFromCode(MacroAssembler* masm,
707
+ Register code,
708
+ Register scratch,
709
+ Register result,
710
+ InvokeFlag flag);
711
+
712
+ // Generate code for copying characters using a simple loop. This should only
713
+ // be used in places where the number of characters is small and the
714
+ // additional setup and checking in GenerateCopyCharactersLong adds too much
715
+ // overhead. Copying of overlapping regions is not supported.
716
+ // Dest register ends at the position after the last character written.
717
+ static void GenerateCopyCharacters(MacroAssembler* masm,
718
+ Register dest,
719
+ Register src,
720
+ Register count,
721
+ Register scratch,
722
+ bool ascii);
723
+
724
+ // Generate code for copying a large number of characters. This function
725
+ // is allowed to spend extra time setting up conditions to make copying
726
+ // faster. Copying of overlapping regions is not supported.
727
+ // Dest register ends at the position after the last character written.
728
+ static void GenerateCopyCharactersLong(MacroAssembler* masm,
729
+ Register dest,
730
+ Register src,
731
+ Register count,
732
+ Register scratch1,
733
+ Register scratch2,
734
+ Register scratch3,
735
+ Register scratch4,
736
+ Register scratch5,
737
+ int flags);
738
+
739
+
740
+ // Probe the symbol table for a two character string. If the string is
741
+ // not found by probing a jump to the label not_found is performed. This jump
742
+ // does not guarantee that the string is not in the symbol table. If the
743
+ // string is found the code falls through with the string in register r0.
744
+ // Contents of both c1 and c2 registers are modified. At the exit c1 is
745
+ // guaranteed to contain halfword with low and high bytes equal to
746
+ // initial contents of c1 and c2 respectively.
747
+ static void GenerateTwoCharacterSymbolTableProbe(MacroAssembler* masm,
748
+ Register c1,
749
+ Register c2,
750
+ Register scratch1,
751
+ Register scratch2,
752
+ Register scratch3,
753
+ Register scratch4,
754
+ Register scratch5,
755
+ Label* not_found);
756
+
757
+ // Generate string hash.
758
+ static void GenerateHashInit(MacroAssembler* masm,
759
+ Register hash,
760
+ Register character);
761
+
762
+ static void GenerateHashAddCharacter(MacroAssembler* masm,
763
+ Register hash,
764
+ Register character);
765
+
766
+ static void GenerateHashGetHash(MacroAssembler* masm,
767
+ Register hash);
768
+
769
+ private:
770
+ DISALLOW_IMPLICIT_CONSTRUCTORS(StringHelper);
771
+ };
772
+
773
+
774
+ // Flag that indicates how to generate code for the stub StringAddStub.
775
+ enum StringAddFlags {
776
+ NO_STRING_ADD_FLAGS = 0,
777
+ NO_STRING_CHECK_IN_STUB = 1 << 0 // Omit string check in stub.
778
+ };
779
+
780
+
781
+ class StringAddStub: public CodeStub {
782
+ public:
783
+ explicit StringAddStub(StringAddFlags flags) {
784
+ string_check_ = ((flags & NO_STRING_CHECK_IN_STUB) == 0);
785
+ }
786
+
787
+ private:
788
+ Major MajorKey() { return StringAdd; }
789
+ int MinorKey() { return string_check_ ? 0 : 1; }
790
+
791
+ void Generate(MacroAssembler* masm);
792
+
793
+ // Should the stub check whether arguments are strings?
794
+ bool string_check_;
795
+ };
796
+
797
+
798
+ class SubStringStub: public CodeStub {
799
+ public:
800
+ SubStringStub() {}
801
+
802
+ private:
803
+ Major MajorKey() { return SubString; }
804
+ int MinorKey() { return 0; }
805
+
806
+ void Generate(MacroAssembler* masm);
807
+ };
808
+
809
+
810
+
811
+ class StringCompareStub: public CodeStub {
812
+ public:
813
+ StringCompareStub() { }
814
+
815
+ // Compare two flat ASCII strings and returns result in r0.
816
+ // Does not use the stack.
817
+ static void GenerateCompareFlatAsciiStrings(MacroAssembler* masm,
818
+ Register left,
819
+ Register right,
820
+ Register scratch1,
821
+ Register scratch2,
822
+ Register scratch3,
823
+ Register scratch4);
824
+
825
+ private:
826
+ Major MajorKey() { return StringCompare; }
827
+ int MinorKey() { return 0; }
828
+
829
+ void Generate(MacroAssembler* masm);
830
+ };
831
+
832
+
833
+ // This stub can convert a signed int32 to a heap number (double). It does
834
+ // not work for int32s that are in Smi range! No GC occurs during this stub
835
+ // so you don't have to set up the frame.
836
+ class WriteInt32ToHeapNumberStub : public CodeStub {
837
+ public:
838
+ WriteInt32ToHeapNumberStub(Register the_int,
839
+ Register the_heap_number,
840
+ Register scratch)
841
+ : the_int_(the_int),
842
+ the_heap_number_(the_heap_number),
843
+ scratch_(scratch) { }
844
+
845
+ private:
846
+ Register the_int_;
847
+ Register the_heap_number_;
848
+ Register scratch_;
849
+
850
+ // Minor key encoding in 16 bits.
851
+ class IntRegisterBits: public BitField<int, 0, 4> {};
852
+ class HeapNumberRegisterBits: public BitField<int, 4, 4> {};
853
+ class ScratchRegisterBits: public BitField<int, 8, 4> {};
854
+
855
+ Major MajorKey() { return WriteInt32ToHeapNumber; }
856
+ int MinorKey() {
857
+ // Encode the parameters in a unique 16 bit value.
858
+ return IntRegisterBits::encode(the_int_.code())
859
+ | HeapNumberRegisterBits::encode(the_heap_number_.code())
860
+ | ScratchRegisterBits::encode(scratch_.code());
861
+ }
862
+
863
+ void Generate(MacroAssembler* masm);
864
+
865
+ const char* GetName() { return "WriteInt32ToHeapNumberStub"; }
866
+
867
+ #ifdef DEBUG
868
+ void Print() { PrintF("WriteInt32ToHeapNumberStub\n"); }
869
+ #endif
870
+ };
871
+
872
+
873
+ class NumberToStringStub: public CodeStub {
874
+ public:
875
+ NumberToStringStub() { }
876
+
877
+ // Generate code to do a lookup in the number string cache. If the number in
878
+ // the register object is found in the cache the generated code falls through
879
+ // with the result in the result register. The object and the result register
880
+ // can be the same. If the number is not found in the cache the code jumps to
881
+ // the label not_found with only the content of register object unchanged.
882
+ static void GenerateLookupNumberStringCache(MacroAssembler* masm,
883
+ Register object,
884
+ Register result,
885
+ Register scratch1,
886
+ Register scratch2,
887
+ Register scratch3,
888
+ bool object_is_smi,
889
+ Label* not_found);
890
+
891
+ private:
892
+ Major MajorKey() { return NumberToString; }
893
+ int MinorKey() { return 0; }
894
+
895
+ void Generate(MacroAssembler* masm);
896
+
897
+ const char* GetName() { return "NumberToStringStub"; }
898
+
899
+ #ifdef DEBUG
900
+ void Print() {
901
+ PrintF("NumberToStringStub\n");
902
+ }
903
+ #endif
904
+ };
905
+
906
+
907
+ class RecordWriteStub : public CodeStub {
908
+ public:
909
+ RecordWriteStub(Register object, Register offset, Register scratch)
910
+ : object_(object), offset_(offset), scratch_(scratch) { }
911
+
912
+ void Generate(MacroAssembler* masm);
913
+
914
+ private:
915
+ Register object_;
916
+ Register offset_;
917
+ Register scratch_;
918
+
919
+ #ifdef DEBUG
920
+ void Print() {
921
+ PrintF("RecordWriteStub (object reg %d), (offset reg %d),"
922
+ " (scratch reg %d)\n",
923
+ object_.code(), offset_.code(), scratch_.code());
924
+ }
925
+ #endif
926
+
927
+ // Minor key encoding in 12 bits. 4 bits for each of the three
928
+ // registers (object, offset and scratch) OOOOAAAASSSS.
929
+ class ScratchBits: public BitField<uint32_t, 0, 4> {};
930
+ class OffsetBits: public BitField<uint32_t, 4, 4> {};
931
+ class ObjectBits: public BitField<uint32_t, 8, 4> {};
932
+
933
+ Major MajorKey() { return RecordWrite; }
934
+
935
+ int MinorKey() {
936
+ // Encode the registers.
937
+ return ObjectBits::encode(object_.code()) |
938
+ OffsetBits::encode(offset_.code()) |
939
+ ScratchBits::encode(scratch_.code());
940
+ }
941
+ };
942
+
943
+
944
+ } } // namespace v8::internal
945
+
946
+ #endif // V8_ARM_CODEGEN_ARM_H_