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,1132 +0,0 @@
1
- // Copyright 2009 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 "bootstrapper.h"
31
- #include "codegen-inl.h"
32
- #include "compilation-cache.h"
33
- #include "compiler.h"
34
- #include "debug.h"
35
- #include "fast-codegen.h"
36
- #include "oprofile-agent.h"
37
- #include "rewriter.h"
38
- #include "scopes.h"
39
- #include "usage-analyzer.h"
40
-
41
- namespace v8 {
42
- namespace internal {
43
-
44
-
45
- class CodeGenSelector: public AstVisitor {
46
- public:
47
- enum CodeGenTag { NORMAL, FAST };
48
-
49
- CodeGenSelector()
50
- : has_supported_syntax_(true),
51
- context_(Expression::kUninitialized) {
52
- }
53
-
54
- CodeGenTag Select(FunctionLiteral* fun);
55
-
56
- private:
57
- // Visit an expression in a given expression context.
58
- void ProcessExpression(Expression* expr, Expression::Context context) {
59
- ASSERT(expr->context() == Expression::kUninitialized ||
60
- expr->context() == context);
61
- Expression::Context saved = context_;
62
- context_ = context;
63
- Visit(expr);
64
- expr->set_context(context);
65
- context_ = saved;
66
- }
67
-
68
- void VisitDeclarations(ZoneList<Declaration*>* decls);
69
- void VisitStatements(ZoneList<Statement*>* stmts);
70
-
71
- // AST node visit functions.
72
- #define DECLARE_VISIT(type) virtual void Visit##type(type* node);
73
- AST_NODE_LIST(DECLARE_VISIT)
74
- #undef DECLARE_VISIT
75
-
76
- bool has_supported_syntax_;
77
-
78
- // The desired expression context of the currently visited expression.
79
- Expression::Context context_;
80
-
81
- DISALLOW_COPY_AND_ASSIGN(CodeGenSelector);
82
- };
83
-
84
-
85
- static Handle<Code> MakeCode(FunctionLiteral* literal,
86
- Handle<Script> script,
87
- Handle<Context> context,
88
- bool is_eval,
89
- Handle<SharedFunctionInfo> shared) {
90
- ASSERT(literal != NULL);
91
-
92
- // Rewrite the AST by introducing .result assignments where needed.
93
- if (!Rewriter::Process(literal) || !AnalyzeVariableUsage(literal)) {
94
- // Signal a stack overflow by returning a null handle. The stack
95
- // overflow exception will be thrown by the caller.
96
- return Handle<Code>::null();
97
- }
98
-
99
- {
100
- // Compute top scope and allocate variables. For lazy compilation
101
- // the top scope only contains the single lazily compiled function,
102
- // so this doesn't re-allocate variables repeatedly.
103
- HistogramTimerScope timer(&Counters::variable_allocation);
104
- Scope* top = literal->scope();
105
- while (top->outer_scope() != NULL) top = top->outer_scope();
106
- top->AllocateVariables(context);
107
- }
108
-
109
- #ifdef DEBUG
110
- if (Bootstrapper::IsActive() ?
111
- FLAG_print_builtin_scopes :
112
- FLAG_print_scopes) {
113
- literal->scope()->Print();
114
- }
115
- #endif
116
-
117
- // Optimize the AST.
118
- if (!Rewriter::Optimize(literal)) {
119
- // Signal a stack overflow by returning a null handle. The stack
120
- // overflow exception will be thrown by the caller.
121
- return Handle<Code>::null();
122
- }
123
-
124
- // Generate code and return it.
125
- if (FLAG_fast_compiler) {
126
- // If there is no shared function info, try the fast code
127
- // generator for code in the global scope. Otherwise obey the
128
- // explicit hint in the shared function info.
129
- // If always_fast_compiler is true, always try the fast compiler.
130
- if (shared.is_null() && !literal->scope()->is_global_scope() &&
131
- !FLAG_always_fast_compiler) {
132
- if (FLAG_trace_bailout) PrintF("Non-global scope\n");
133
- } else if (!shared.is_null() && !shared->try_fast_codegen() &&
134
- !FLAG_always_fast_compiler) {
135
- if (FLAG_trace_bailout) PrintF("No hint to try fast\n");
136
- } else {
137
- CodeGenSelector selector;
138
- CodeGenSelector::CodeGenTag code_gen = selector.Select(literal);
139
- if (code_gen == CodeGenSelector::FAST) {
140
- return FastCodeGenerator::MakeCode(literal, script, is_eval);
141
- }
142
- ASSERT(code_gen == CodeGenSelector::NORMAL);
143
- }
144
- }
145
- return CodeGenerator::MakeCode(literal, script, is_eval);
146
- }
147
-
148
-
149
- static bool IsValidJSON(FunctionLiteral* lit) {
150
- if (lit->body()->length() != 1)
151
- return false;
152
- Statement* stmt = lit->body()->at(0);
153
- if (stmt->AsExpressionStatement() == NULL)
154
- return false;
155
- Expression* expr = stmt->AsExpressionStatement()->expression();
156
- return expr->IsValidJSON();
157
- }
158
-
159
-
160
- static Handle<JSFunction> MakeFunction(bool is_global,
161
- bool is_eval,
162
- Compiler::ValidationState validate,
163
- Handle<Script> script,
164
- Handle<Context> context,
165
- v8::Extension* extension,
166
- ScriptDataImpl* pre_data) {
167
- CompilationZoneScope zone_scope(DELETE_ON_EXIT);
168
-
169
- PostponeInterruptsScope postpone;
170
-
171
- ASSERT(!i::Top::global_context().is_null());
172
- script->set_context_data((*i::Top::global_context())->data());
173
-
174
- #ifdef ENABLE_DEBUGGER_SUPPORT
175
- bool is_json = (validate == Compiler::VALIDATE_JSON);
176
- if (is_eval || is_json) {
177
- script->set_compilation_type(
178
- is_json ? Smi::FromInt(Script::COMPILATION_TYPE_JSON) :
179
- Smi::FromInt(Script::COMPILATION_TYPE_EVAL));
180
- // For eval scripts add information on the function from which eval was
181
- // called.
182
- if (is_eval) {
183
- JavaScriptFrameIterator it;
184
- script->set_eval_from_shared(
185
- JSFunction::cast(it.frame()->function())->shared());
186
- int offset = static_cast<int>(
187
- it.frame()->pc() - it.frame()->code()->instruction_start());
188
- script->set_eval_from_instructions_offset(Smi::FromInt(offset));
189
- }
190
- }
191
-
192
- // Notify debugger
193
- Debugger::OnBeforeCompile(script);
194
- #endif
195
-
196
- // Only allow non-global compiles for eval.
197
- ASSERT(is_eval || is_global);
198
-
199
- // Build AST.
200
- FunctionLiteral* lit = MakeAST(is_global, script, extension, pre_data);
201
-
202
- // Check for parse errors.
203
- if (lit == NULL) {
204
- ASSERT(Top::has_pending_exception());
205
- return Handle<JSFunction>::null();
206
- }
207
-
208
- // When parsing JSON we do an ordinary parse and then afterwards
209
- // check the AST to ensure it was well-formed. If not we give a
210
- // syntax error.
211
- if (validate == Compiler::VALIDATE_JSON && !IsValidJSON(lit)) {
212
- HandleScope scope;
213
- Handle<JSArray> args = Factory::NewJSArray(1);
214
- Handle<Object> source(script->source());
215
- SetElement(args, 0, source);
216
- Handle<Object> result = Factory::NewSyntaxError("invalid_json", args);
217
- Top::Throw(*result, NULL);
218
- return Handle<JSFunction>::null();
219
- }
220
-
221
- // Measure how long it takes to do the compilation; only take the
222
- // rest of the function into account to avoid overlap with the
223
- // parsing statistics.
224
- HistogramTimer* rate = is_eval
225
- ? &Counters::compile_eval
226
- : &Counters::compile;
227
- HistogramTimerScope timer(rate);
228
-
229
- // Compile the code.
230
- Handle<Code> code = MakeCode(lit, script, context, is_eval,
231
- Handle<SharedFunctionInfo>::null());
232
-
233
- // Check for stack-overflow exceptions.
234
- if (code.is_null()) {
235
- Top::StackOverflow();
236
- return Handle<JSFunction>::null();
237
- }
238
-
239
- #if defined ENABLE_LOGGING_AND_PROFILING || defined ENABLE_OPROFILE_AGENT
240
- // Log the code generation for the script. Check explicit whether logging is
241
- // to avoid allocating when not required.
242
- if (Logger::is_logging() || OProfileAgent::is_enabled()) {
243
- if (script->name()->IsString()) {
244
- SmartPointer<char> data =
245
- String::cast(script->name())->ToCString(DISALLOW_NULLS);
246
- LOG(CodeCreateEvent(is_eval ? Logger::EVAL_TAG : Logger::SCRIPT_TAG,
247
- *code, *data));
248
- OProfileAgent::CreateNativeCodeRegion(*data,
249
- code->instruction_start(),
250
- code->instruction_size());
251
- } else {
252
- LOG(CodeCreateEvent(is_eval ? Logger::EVAL_TAG : Logger::SCRIPT_TAG,
253
- *code, ""));
254
- OProfileAgent::CreateNativeCodeRegion(is_eval ? "Eval" : "Script",
255
- code->instruction_start(),
256
- code->instruction_size());
257
- }
258
- }
259
- #endif
260
-
261
- // Allocate function.
262
- Handle<JSFunction> fun =
263
- Factory::NewFunctionBoilerplate(lit->name(),
264
- lit->materialized_literal_count(),
265
- code);
266
-
267
- ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
268
- Compiler::SetFunctionInfo(fun, lit, true, script);
269
-
270
- // Hint to the runtime system used when allocating space for initial
271
- // property space by setting the expected number of properties for
272
- // the instances of the function.
273
- SetExpectedNofPropertiesFromEstimate(fun, lit->expected_property_count());
274
-
275
- #ifdef ENABLE_DEBUGGER_SUPPORT
276
- // Notify debugger
277
- Debugger::OnAfterCompile(script, fun);
278
- #endif
279
-
280
- return fun;
281
- }
282
-
283
-
284
- static StaticResource<SafeStringInputBuffer> safe_string_input_buffer;
285
-
286
-
287
- Handle<JSFunction> Compiler::Compile(Handle<String> source,
288
- Handle<Object> script_name,
289
- int line_offset, int column_offset,
290
- v8::Extension* extension,
291
- ScriptDataImpl* input_pre_data) {
292
- int source_length = source->length();
293
- Counters::total_load_size.Increment(source_length);
294
- Counters::total_compile_size.Increment(source_length);
295
-
296
- // The VM is in the COMPILER state until exiting this function.
297
- VMState state(COMPILER);
298
-
299
- // Do a lookup in the compilation cache but not for extensions.
300
- Handle<JSFunction> result;
301
- if (extension == NULL) {
302
- result = CompilationCache::LookupScript(source,
303
- script_name,
304
- line_offset,
305
- column_offset);
306
- }
307
-
308
- if (result.is_null()) {
309
- // No cache entry found. Do pre-parsing and compile the script.
310
- ScriptDataImpl* pre_data = input_pre_data;
311
- if (pre_data == NULL && source_length >= FLAG_min_preparse_length) {
312
- Access<SafeStringInputBuffer> buf(&safe_string_input_buffer);
313
- buf->Reset(source.location());
314
- pre_data = PreParse(source, buf.value(), extension);
315
- }
316
-
317
- // Create a script object describing the script to be compiled.
318
- Handle<Script> script = Factory::NewScript(source);
319
- if (!script_name.is_null()) {
320
- script->set_name(*script_name);
321
- script->set_line_offset(Smi::FromInt(line_offset));
322
- script->set_column_offset(Smi::FromInt(column_offset));
323
- }
324
-
325
- // Compile the function and add it to the cache.
326
- result = MakeFunction(true,
327
- false,
328
- DONT_VALIDATE_JSON,
329
- script,
330
- Handle<Context>::null(),
331
- extension,
332
- pre_data);
333
- if (extension == NULL && !result.is_null()) {
334
- CompilationCache::PutScript(source, result);
335
- }
336
-
337
- // Get rid of the pre-parsing data (if necessary).
338
- if (input_pre_data == NULL && pre_data != NULL) {
339
- delete pre_data;
340
- }
341
- }
342
-
343
- if (result.is_null()) Top::ReportPendingMessages();
344
- return result;
345
- }
346
-
347
-
348
- Handle<JSFunction> Compiler::CompileEval(Handle<String> source,
349
- Handle<Context> context,
350
- bool is_global,
351
- ValidationState validate) {
352
- // Note that if validation is required then no path through this
353
- // function is allowed to return a value without validating that
354
- // the input is legal json.
355
-
356
- int source_length = source->length();
357
- Counters::total_eval_size.Increment(source_length);
358
- Counters::total_compile_size.Increment(source_length);
359
-
360
- // The VM is in the COMPILER state until exiting this function.
361
- VMState state(COMPILER);
362
-
363
- // Do a lookup in the compilation cache; if the entry is not there,
364
- // invoke the compiler and add the result to the cache. If we're
365
- // evaluating json we bypass the cache since we can't be sure a
366
- // potential value in the cache has been validated.
367
- Handle<JSFunction> result;
368
- if (validate == DONT_VALIDATE_JSON)
369
- result = CompilationCache::LookupEval(source, context, is_global);
370
-
371
- if (result.is_null()) {
372
- // Create a script object describing the script to be compiled.
373
- Handle<Script> script = Factory::NewScript(source);
374
- result = MakeFunction(is_global,
375
- true,
376
- validate,
377
- script,
378
- context,
379
- NULL,
380
- NULL);
381
- if (!result.is_null() && validate != VALIDATE_JSON) {
382
- // For json it's unlikely that we'll ever see exactly the same
383
- // string again so we don't use the compilation cache.
384
- CompilationCache::PutEval(source, context, is_global, result);
385
- }
386
- }
387
-
388
- return result;
389
- }
390
-
391
-
392
- bool Compiler::CompileLazy(Handle<SharedFunctionInfo> shared,
393
- int loop_nesting) {
394
- CompilationZoneScope zone_scope(DELETE_ON_EXIT);
395
-
396
- // The VM is in the COMPILER state until exiting this function.
397
- VMState state(COMPILER);
398
-
399
- PostponeInterruptsScope postpone;
400
-
401
- // Compute name, source code and script data.
402
- Handle<String> name(String::cast(shared->name()));
403
- Handle<Script> script(Script::cast(shared->script()));
404
-
405
- int start_position = shared->start_position();
406
- int end_position = shared->end_position();
407
- bool is_expression = shared->is_expression();
408
- Counters::total_compile_size.Increment(end_position - start_position);
409
-
410
- // Generate the AST for the lazily compiled function. The AST may be
411
- // NULL in case of parser stack overflow.
412
- FunctionLiteral* lit = MakeLazyAST(script, name,
413
- start_position,
414
- end_position,
415
- is_expression);
416
-
417
- // Check for parse errors.
418
- if (lit == NULL) {
419
- ASSERT(Top::has_pending_exception());
420
- return false;
421
- }
422
-
423
- // Update the loop nesting in the function literal.
424
- lit->set_loop_nesting(loop_nesting);
425
-
426
- // Measure how long it takes to do the lazy compilation; only take
427
- // the rest of the function into account to avoid overlap with the
428
- // lazy parsing statistics.
429
- HistogramTimerScope timer(&Counters::compile_lazy);
430
-
431
- // Compile the code.
432
- Handle<Code> code = MakeCode(lit, script, Handle<Context>::null(), false,
433
- shared);
434
-
435
- // Check for stack-overflow exception.
436
- if (code.is_null()) {
437
- Top::StackOverflow();
438
- return false;
439
- }
440
-
441
- #if defined ENABLE_LOGGING_AND_PROFILING || defined ENABLE_OPROFILE_AGENT
442
- // Log the code generation. If source information is available include script
443
- // name and line number. Check explicit whether logging is enabled as finding
444
- // the line number is not for free.
445
- if (Logger::is_logging() || OProfileAgent::is_enabled()) {
446
- Handle<String> func_name(name->length() > 0 ?
447
- *name : shared->inferred_name());
448
- if (script->name()->IsString()) {
449
- int line_num = GetScriptLineNumber(script, start_position) + 1;
450
- LOG(CodeCreateEvent(Logger::LAZY_COMPILE_TAG, *code, *func_name,
451
- String::cast(script->name()), line_num));
452
- OProfileAgent::CreateNativeCodeRegion(*func_name,
453
- String::cast(script->name()),
454
- line_num,
455
- code->instruction_start(),
456
- code->instruction_size());
457
- } else {
458
- LOG(CodeCreateEvent(Logger::LAZY_COMPILE_TAG, *code, *func_name));
459
- OProfileAgent::CreateNativeCodeRegion(*func_name,
460
- code->instruction_start(),
461
- code->instruction_size());
462
- }
463
- }
464
- #endif
465
-
466
- // Update the shared function info with the compiled code.
467
- shared->set_code(*code);
468
-
469
- // Set the expected number of properties for instances.
470
- SetExpectedNofPropertiesFromEstimate(shared, lit->expected_property_count());
471
-
472
- // Set the optimication hints after performing lazy compilation, as these are
473
- // not set when the function is set up as a lazily compiled function.
474
- shared->SetThisPropertyAssignmentsInfo(
475
- lit->has_only_simple_this_property_assignments(),
476
- *lit->this_property_assignments());
477
-
478
- // Check the function has compiled code.
479
- ASSERT(shared->is_compiled());
480
- return true;
481
- }
482
-
483
-
484
- Handle<JSFunction> Compiler::BuildBoilerplate(FunctionLiteral* literal,
485
- Handle<Script> script,
486
- AstVisitor* caller) {
487
- #ifdef DEBUG
488
- // We should not try to compile the same function literal more than
489
- // once.
490
- literal->mark_as_compiled();
491
- #endif
492
-
493
- // Determine if the function can be lazily compiled. This is
494
- // necessary to allow some of our builtin JS files to be lazily
495
- // compiled. These builtins cannot be handled lazily by the parser,
496
- // since we have to know if a function uses the special natives
497
- // syntax, which is something the parser records.
498
- bool allow_lazy = literal->AllowsLazyCompilation();
499
-
500
- // Generate code
501
- Handle<Code> code;
502
- if (FLAG_lazy && allow_lazy) {
503
- code = ComputeLazyCompile(literal->num_parameters());
504
- } else {
505
- // The bodies of function literals have not yet been visited by
506
- // the AST optimizer/analyzer.
507
- if (!Rewriter::Optimize(literal)) {
508
- return Handle<JSFunction>::null();
509
- }
510
-
511
- // Generate code and return it.
512
- bool is_compiled = false;
513
- if (FLAG_fast_compiler && literal->try_fast_codegen()) {
514
- CodeGenSelector selector;
515
- CodeGenSelector::CodeGenTag code_gen = selector.Select(literal);
516
- if (code_gen == CodeGenSelector::FAST) {
517
- code = FastCodeGenerator::MakeCode(literal,
518
- script,
519
- false); // Not eval.
520
- is_compiled = true;
521
- }
522
- }
523
-
524
- if (!is_compiled) {
525
- // We didn't try the fast compiler, or we failed to select it.
526
- code = CodeGenerator::MakeCode(literal,
527
- script,
528
- false); // Not eval.
529
- }
530
-
531
- // Check for stack-overflow exception.
532
- if (code.is_null()) {
533
- caller->SetStackOverflow();
534
- return Handle<JSFunction>::null();
535
- }
536
-
537
- // Function compilation complete.
538
- LOG(CodeCreateEvent(Logger::FUNCTION_TAG, *code, *literal->name()));
539
-
540
- #ifdef ENABLE_OPROFILE_AGENT
541
- OProfileAgent::CreateNativeCodeRegion(*literal->name(),
542
- code->instruction_start(),
543
- code->instruction_size());
544
- #endif
545
- }
546
-
547
- // Create a boilerplate function.
548
- Handle<JSFunction> function =
549
- Factory::NewFunctionBoilerplate(literal->name(),
550
- literal->materialized_literal_count(),
551
- code);
552
- SetFunctionInfo(function, literal, false, script);
553
-
554
- #ifdef ENABLE_DEBUGGER_SUPPORT
555
- // Notify debugger that a new function has been added.
556
- Debugger::OnNewFunction(function);
557
- #endif
558
-
559
- // Set the expected number of properties for instances and return
560
- // the resulting function.
561
- SetExpectedNofPropertiesFromEstimate(function,
562
- literal->expected_property_count());
563
- return function;
564
- }
565
-
566
-
567
- // Sets the function info on a function.
568
- // The start_position points to the first '(' character after the function name
569
- // in the full script source. When counting characters in the script source the
570
- // the first character is number 0 (not 1).
571
- void Compiler::SetFunctionInfo(Handle<JSFunction> fun,
572
- FunctionLiteral* lit,
573
- bool is_toplevel,
574
- Handle<Script> script) {
575
- fun->shared()->set_length(lit->num_parameters());
576
- fun->shared()->set_formal_parameter_count(lit->num_parameters());
577
- fun->shared()->set_script(*script);
578
- fun->shared()->set_function_token_position(lit->function_token_position());
579
- fun->shared()->set_start_position(lit->start_position());
580
- fun->shared()->set_end_position(lit->end_position());
581
- fun->shared()->set_is_expression(lit->is_expression());
582
- fun->shared()->set_is_toplevel(is_toplevel);
583
- fun->shared()->set_inferred_name(*lit->inferred_name());
584
- fun->shared()->SetThisPropertyAssignmentsInfo(
585
- lit->has_only_simple_this_property_assignments(),
586
- *lit->this_property_assignments());
587
- fun->shared()->set_try_fast_codegen(lit->try_fast_codegen());
588
- }
589
-
590
-
591
- CodeGenSelector::CodeGenTag CodeGenSelector::Select(FunctionLiteral* fun) {
592
- Scope* scope = fun->scope();
593
-
594
- if (scope->num_heap_slots() > 0) {
595
- // We support functions with a local context if they do not have
596
- // parameters that need to be copied into the context.
597
- for (int i = 0, len = scope->num_parameters(); i < len; i++) {
598
- Slot* slot = scope->parameter(i)->slot();
599
- if (slot != NULL && slot->type() == Slot::CONTEXT) {
600
- if (FLAG_trace_bailout) {
601
- PrintF("Function has context-allocated parameters.\n");
602
- }
603
- return NORMAL;
604
- }
605
- }
606
- }
607
-
608
- has_supported_syntax_ = true;
609
- VisitDeclarations(scope->declarations());
610
- if (!has_supported_syntax_) return NORMAL;
611
-
612
- VisitStatements(fun->body());
613
- return has_supported_syntax_ ? FAST : NORMAL;
614
- }
615
-
616
-
617
- #define BAILOUT(reason) \
618
- do { \
619
- if (FLAG_trace_bailout) { \
620
- PrintF("%s\n", reason); \
621
- } \
622
- has_supported_syntax_ = false; \
623
- return; \
624
- } while (false)
625
-
626
-
627
- #define CHECK_BAILOUT \
628
- do { \
629
- if (!has_supported_syntax_) return; \
630
- } while (false)
631
-
632
-
633
- void CodeGenSelector::VisitDeclarations(ZoneList<Declaration*>* decls) {
634
- for (int i = 0; i < decls->length(); i++) {
635
- Visit(decls->at(i));
636
- CHECK_BAILOUT;
637
- }
638
- }
639
-
640
-
641
- void CodeGenSelector::VisitStatements(ZoneList<Statement*>* stmts) {
642
- for (int i = 0, len = stmts->length(); i < len; i++) {
643
- Visit(stmts->at(i));
644
- CHECK_BAILOUT;
645
- }
646
- }
647
-
648
-
649
- void CodeGenSelector::VisitDeclaration(Declaration* decl) {
650
- Property* prop = decl->proxy()->AsProperty();
651
- if (prop != NULL) {
652
- ProcessExpression(prop->obj(), Expression::kValue);
653
- ProcessExpression(prop->key(), Expression::kValue);
654
- }
655
-
656
- if (decl->fun() != NULL) {
657
- ProcessExpression(decl->fun(), Expression::kValue);
658
- }
659
- }
660
-
661
-
662
- void CodeGenSelector::VisitBlock(Block* stmt) {
663
- VisitStatements(stmt->statements());
664
- }
665
-
666
-
667
- void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) {
668
- ProcessExpression(stmt->expression(), Expression::kEffect);
669
- }
670
-
671
-
672
- void CodeGenSelector::VisitEmptyStatement(EmptyStatement* stmt) {
673
- // EmptyStatement is supported.
674
- }
675
-
676
-
677
- void CodeGenSelector::VisitIfStatement(IfStatement* stmt) {
678
- ProcessExpression(stmt->condition(), Expression::kTest);
679
- CHECK_BAILOUT;
680
- Visit(stmt->then_statement());
681
- CHECK_BAILOUT;
682
- Visit(stmt->else_statement());
683
- }
684
-
685
-
686
- void CodeGenSelector::VisitContinueStatement(ContinueStatement* stmt) {
687
- }
688
-
689
-
690
- void CodeGenSelector::VisitBreakStatement(BreakStatement* stmt) {
691
- }
692
-
693
-
694
- void CodeGenSelector::VisitReturnStatement(ReturnStatement* stmt) {
695
- ProcessExpression(stmt->expression(), Expression::kValue);
696
- }
697
-
698
-
699
- void CodeGenSelector::VisitWithEnterStatement(WithEnterStatement* stmt) {
700
- ProcessExpression(stmt->expression(), Expression::kValue);
701
- }
702
-
703
-
704
- void CodeGenSelector::VisitWithExitStatement(WithExitStatement* stmt) {
705
- // Supported.
706
- }
707
-
708
-
709
- void CodeGenSelector::VisitSwitchStatement(SwitchStatement* stmt) {
710
- BAILOUT("SwitchStatement");
711
- }
712
-
713
-
714
- void CodeGenSelector::VisitDoWhileStatement(DoWhileStatement* stmt) {
715
- // We do not handle loops with breaks or continue statements in their
716
- // body. We will bailout when we hit those statements in the body.
717
- ProcessExpression(stmt->cond(), Expression::kTest);
718
- CHECK_BAILOUT;
719
- Visit(stmt->body());
720
- }
721
-
722
-
723
- void CodeGenSelector::VisitWhileStatement(WhileStatement* stmt) {
724
- // We do not handle loops with breaks or continue statements in their
725
- // body. We will bailout when we hit those statements in the body.
726
- ProcessExpression(stmt->cond(), Expression::kTest);
727
- CHECK_BAILOUT;
728
- Visit(stmt->body());
729
- }
730
-
731
-
732
- void CodeGenSelector::VisitForStatement(ForStatement* stmt) {
733
- BAILOUT("ForStatement");
734
- }
735
-
736
-
737
- void CodeGenSelector::VisitForInStatement(ForInStatement* stmt) {
738
- BAILOUT("ForInStatement");
739
- }
740
-
741
-
742
- void CodeGenSelector::VisitTryCatchStatement(TryCatchStatement* stmt) {
743
- Visit(stmt->try_block());
744
- CHECK_BAILOUT;
745
- Visit(stmt->catch_block());
746
- }
747
-
748
-
749
- void CodeGenSelector::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
750
- Visit(stmt->try_block());
751
- CHECK_BAILOUT;
752
- Visit(stmt->finally_block());
753
- }
754
-
755
-
756
- void CodeGenSelector::VisitDebuggerStatement(DebuggerStatement* stmt) {
757
- // Debugger statement is supported.
758
- }
759
-
760
-
761
- void CodeGenSelector::VisitFunctionLiteral(FunctionLiteral* expr) {
762
- // Function literal is supported.
763
- }
764
-
765
-
766
- void CodeGenSelector::VisitFunctionBoilerplateLiteral(
767
- FunctionBoilerplateLiteral* expr) {
768
- BAILOUT("FunctionBoilerplateLiteral");
769
- }
770
-
771
-
772
- void CodeGenSelector::VisitConditional(Conditional* expr) {
773
- ProcessExpression(expr->condition(), Expression::kTest);
774
- CHECK_BAILOUT;
775
- ProcessExpression(expr->then_expression(), context_);
776
- CHECK_BAILOUT;
777
- ProcessExpression(expr->else_expression(), context_);
778
- }
779
-
780
-
781
- void CodeGenSelector::VisitSlot(Slot* expr) {
782
- UNREACHABLE();
783
- }
784
-
785
-
786
- void CodeGenSelector::VisitVariableProxy(VariableProxy* expr) {
787
- Expression* rewrite = expr->var()->rewrite();
788
- // A rewrite of NULL indicates a global variable.
789
- if (rewrite != NULL) {
790
- // Non-global.
791
- Slot* slot = rewrite->AsSlot();
792
- if (slot != NULL) {
793
- Slot::Type type = slot->type();
794
- // When LOOKUP slots are enabled, some currently dead code
795
- // implementing unary typeof will become live.
796
- if (type == Slot::LOOKUP) {
797
- BAILOUT("Lookup slot");
798
- }
799
- } else {
800
- #ifdef DEBUG
801
- // Only remaining possibility is a property where the object is
802
- // a slotted variable and the key is a smi.
803
- Property* property = rewrite->AsProperty();
804
- ASSERT_NOT_NULL(property);
805
- Variable* object = property->obj()->AsVariableProxy()->AsVariable();
806
- ASSERT_NOT_NULL(object);
807
- ASSERT_NOT_NULL(object->slot());
808
- ASSERT_NOT_NULL(property->key()->AsLiteral());
809
- ASSERT(property->key()->AsLiteral()->handle()->IsSmi());
810
- #endif
811
- }
812
- }
813
- }
814
-
815
-
816
- void CodeGenSelector::VisitLiteral(Literal* expr) {
817
- /* Nothing to do. */
818
- }
819
-
820
-
821
- void CodeGenSelector::VisitRegExpLiteral(RegExpLiteral* expr) {
822
- /* Nothing to do. */
823
- }
824
-
825
-
826
- void CodeGenSelector::VisitObjectLiteral(ObjectLiteral* expr) {
827
- ZoneList<ObjectLiteral::Property*>* properties = expr->properties();
828
-
829
- for (int i = 0, len = properties->length(); i < len; i++) {
830
- ObjectLiteral::Property* property = properties->at(i);
831
- if (property->IsCompileTimeValue()) continue;
832
-
833
- switch (property->kind()) {
834
- case ObjectLiteral::Property::CONSTANT:
835
- UNREACHABLE();
836
-
837
- // For (non-compile-time) materialized literals and computed
838
- // properties with symbolic keys we will use an IC and therefore not
839
- // generate code for the key.
840
- case ObjectLiteral::Property::COMPUTED: // Fall through.
841
- case ObjectLiteral::Property::MATERIALIZED_LITERAL:
842
- if (property->key()->handle()->IsSymbol()) {
843
- break;
844
- }
845
- // Fall through.
846
-
847
- // In all other cases we need the key's value on the stack
848
- // for a runtime call. (Relies on TEMP meaning STACK.)
849
- case ObjectLiteral::Property::GETTER: // Fall through.
850
- case ObjectLiteral::Property::SETTER: // Fall through.
851
- case ObjectLiteral::Property::PROTOTYPE:
852
- ProcessExpression(property->key(), Expression::kValue);
853
- CHECK_BAILOUT;
854
- break;
855
- }
856
- ProcessExpression(property->value(), Expression::kValue);
857
- CHECK_BAILOUT;
858
- }
859
- }
860
-
861
-
862
- void CodeGenSelector::VisitArrayLiteral(ArrayLiteral* expr) {
863
- ZoneList<Expression*>* subexprs = expr->values();
864
- for (int i = 0, len = subexprs->length(); i < len; i++) {
865
- Expression* subexpr = subexprs->at(i);
866
- if (subexpr->AsLiteral() != NULL) continue;
867
- if (CompileTimeValue::IsCompileTimeValue(subexpr)) continue;
868
- ProcessExpression(subexpr, Expression::kValue);
869
- CHECK_BAILOUT;
870
- }
871
- }
872
-
873
-
874
- void CodeGenSelector::VisitCatchExtensionObject(CatchExtensionObject* expr) {
875
- ProcessExpression(expr->key(), Expression::kValue);
876
- CHECK_BAILOUT;
877
- ProcessExpression(expr->value(), Expression::kValue);
878
- }
879
-
880
-
881
- void CodeGenSelector::VisitAssignment(Assignment* expr) {
882
- // We support plain non-compound assignments to properties, parameters and
883
- // non-context (stack-allocated) locals, and global variables.
884
- Token::Value op = expr->op();
885
- if (op == Token::INIT_CONST) BAILOUT("initialize constant");
886
-
887
- Variable* var = expr->target()->AsVariableProxy()->AsVariable();
888
- Property* prop = expr->target()->AsProperty();
889
- ASSERT(var == NULL || prop == NULL);
890
- if (var != NULL) {
891
- if (var->mode() == Variable::CONST) {
892
- BAILOUT("Assignment to const");
893
- }
894
- // All global variables are supported.
895
- if (!var->is_global()) {
896
- ASSERT(var->slot() != NULL);
897
- Slot::Type type = var->slot()->type();
898
- if (type == Slot::LOOKUP) {
899
- BAILOUT("Lookup slot");
900
- }
901
- }
902
- } else if (prop != NULL) {
903
- ProcessExpression(prop->obj(), Expression::kValue);
904
- CHECK_BAILOUT;
905
- // We will only visit the key during code generation for keyed property
906
- // stores. Leave its expression context uninitialized for named
907
- // property stores.
908
- if (!prop->key()->IsPropertyName()) {
909
- ProcessExpression(prop->key(), Expression::kValue);
910
- CHECK_BAILOUT;
911
- }
912
- } else {
913
- // This is a throw reference error.
914
- BAILOUT("non-variable/non-property assignment");
915
- }
916
-
917
- ProcessExpression(expr->value(), Expression::kValue);
918
- }
919
-
920
-
921
- void CodeGenSelector::VisitThrow(Throw* expr) {
922
- ProcessExpression(expr->exception(), Expression::kValue);
923
- }
924
-
925
-
926
- void CodeGenSelector::VisitProperty(Property* expr) {
927
- ProcessExpression(expr->obj(), Expression::kValue);
928
- CHECK_BAILOUT;
929
- ProcessExpression(expr->key(), Expression::kValue);
930
- }
931
-
932
-
933
- void CodeGenSelector::VisitCall(Call* expr) {
934
- Expression* fun = expr->expression();
935
- ZoneList<Expression*>* args = expr->arguments();
936
- Variable* var = fun->AsVariableProxy()->AsVariable();
937
-
938
- // Check for supported calls
939
- if (var != NULL && var->is_possibly_eval()) {
940
- BAILOUT("call to the identifier 'eval'");
941
- } else if (var != NULL && !var->is_this() && var->is_global()) {
942
- // Calls to global variables are supported.
943
- } else if (var != NULL && var->slot() != NULL &&
944
- var->slot()->type() == Slot::LOOKUP) {
945
- BAILOUT("call to a lookup slot");
946
- } else if (fun->AsProperty() != NULL) {
947
- Property* prop = fun->AsProperty();
948
- Literal* literal_key = prop->key()->AsLiteral();
949
- if (literal_key != NULL && literal_key->handle()->IsSymbol()) {
950
- ProcessExpression(prop->obj(), Expression::kValue);
951
- CHECK_BAILOUT;
952
- } else {
953
- ProcessExpression(prop->obj(), Expression::kValue);
954
- CHECK_BAILOUT;
955
- ProcessExpression(prop->key(), Expression::kValue);
956
- CHECK_BAILOUT;
957
- }
958
- } else {
959
- // Otherwise the call is supported if the function expression is.
960
- ProcessExpression(fun, Expression::kValue);
961
- }
962
- // Check all arguments to the call.
963
- for (int i = 0; i < args->length(); i++) {
964
- ProcessExpression(args->at(i), Expression::kValue);
965
- CHECK_BAILOUT;
966
- }
967
- }
968
-
969
-
970
- void CodeGenSelector::VisitCallNew(CallNew* expr) {
971
- ProcessExpression(expr->expression(), Expression::kValue);
972
- CHECK_BAILOUT;
973
- ZoneList<Expression*>* args = expr->arguments();
974
- // Check all arguments to the call
975
- for (int i = 0; i < args->length(); i++) {
976
- ProcessExpression(args->at(i), Expression::kValue);
977
- CHECK_BAILOUT;
978
- }
979
- }
980
-
981
-
982
- void CodeGenSelector::VisitCallRuntime(CallRuntime* expr) {
983
- // Check for inline runtime call
984
- if (expr->name()->Get(0) == '_' &&
985
- CodeGenerator::FindInlineRuntimeLUT(expr->name()) != NULL) {
986
- BAILOUT("inlined runtime call");
987
- }
988
- // Check all arguments to the call. (Relies on TEMP meaning STACK.)
989
- for (int i = 0; i < expr->arguments()->length(); i++) {
990
- ProcessExpression(expr->arguments()->at(i), Expression::kValue);
991
- CHECK_BAILOUT;
992
- }
993
- }
994
-
995
-
996
- void CodeGenSelector::VisitUnaryOperation(UnaryOperation* expr) {
997
- switch (expr->op()) {
998
- case Token::VOID:
999
- ProcessExpression(expr->expression(), Expression::kEffect);
1000
- break;
1001
- case Token::NOT:
1002
- ProcessExpression(expr->expression(), Expression::kTest);
1003
- break;
1004
- case Token::TYPEOF:
1005
- ProcessExpression(expr->expression(), Expression::kValue);
1006
- break;
1007
- default:
1008
- BAILOUT("UnaryOperation");
1009
- }
1010
- }
1011
-
1012
-
1013
- void CodeGenSelector::VisitCountOperation(CountOperation* expr) {
1014
- Variable* var = expr->expression()->AsVariableProxy()->AsVariable();
1015
- Property* prop = expr->expression()->AsProperty();
1016
- ASSERT(var == NULL || prop == NULL);
1017
- if (var != NULL) {
1018
- // All global variables are supported.
1019
- if (!var->is_global()) {
1020
- ASSERT(var->slot() != NULL);
1021
- Slot::Type type = var->slot()->type();
1022
- if (type == Slot::LOOKUP) {
1023
- BAILOUT("CountOperation with lookup slot");
1024
- }
1025
- }
1026
- } else if (prop != NULL) {
1027
- ProcessExpression(prop->obj(), Expression::kValue);
1028
- CHECK_BAILOUT;
1029
- // We will only visit the key during code generation for keyed property
1030
- // stores. Leave its expression context uninitialized for named
1031
- // property stores.
1032
- if (!prop->key()->IsPropertyName()) {
1033
- ProcessExpression(prop->key(), Expression::kValue);
1034
- CHECK_BAILOUT;
1035
- }
1036
- } else {
1037
- // This is a throw reference error.
1038
- BAILOUT("CountOperation non-variable/non-property expression");
1039
- }
1040
- }
1041
-
1042
-
1043
- void CodeGenSelector::VisitBinaryOperation(BinaryOperation* expr) {
1044
- switch (expr->op()) {
1045
- case Token::COMMA:
1046
- ProcessExpression(expr->left(), Expression::kEffect);
1047
- CHECK_BAILOUT;
1048
- ProcessExpression(expr->right(), context_);
1049
- break;
1050
-
1051
- case Token::OR:
1052
- switch (context_) {
1053
- case Expression::kUninitialized:
1054
- UNREACHABLE();
1055
- case Expression::kEffect: // Fall through.
1056
- case Expression::kTest: // Fall through.
1057
- case Expression::kTestValue:
1058
- // The left subexpression's value is not needed, it is in a pure
1059
- // test context.
1060
- ProcessExpression(expr->left(), Expression::kTest);
1061
- break;
1062
- case Expression::kValue: // Fall through.
1063
- case Expression::kValueTest:
1064
- // The left subexpression's value is needed, it is in a hybrid
1065
- // value/test context.
1066
- ProcessExpression(expr->left(), Expression::kValueTest);
1067
- break;
1068
- }
1069
- CHECK_BAILOUT;
1070
- ProcessExpression(expr->right(), context_);
1071
- break;
1072
-
1073
- case Token::AND:
1074
- switch (context_) {
1075
- case Expression::kUninitialized:
1076
- UNREACHABLE();
1077
- case Expression::kEffect: // Fall through.
1078
- case Expression::kTest: // Fall through.
1079
- case Expression::kValueTest:
1080
- // The left subexpression's value is not needed, it is in a pure
1081
- // test context.
1082
- ProcessExpression(expr->left(), Expression::kTest);
1083
- break;
1084
- case Expression::kValue: // Fall through.
1085
- case Expression::kTestValue:
1086
- // The left subexpression's value is needed, it is in a hybrid
1087
- // test/value context.
1088
- ProcessExpression(expr->left(), Expression::kTestValue);
1089
- break;
1090
- }
1091
- CHECK_BAILOUT;
1092
- ProcessExpression(expr->right(), context_);
1093
- break;
1094
-
1095
- case Token::ADD:
1096
- case Token::SUB:
1097
- case Token::DIV:
1098
- case Token::MOD:
1099
- case Token::MUL:
1100
- case Token::BIT_OR:
1101
- case Token::BIT_AND:
1102
- case Token::BIT_XOR:
1103
- case Token::SHL:
1104
- case Token::SHR:
1105
- case Token::SAR:
1106
- ProcessExpression(expr->left(), Expression::kValue);
1107
- CHECK_BAILOUT;
1108
- ProcessExpression(expr->right(), Expression::kValue);
1109
- break;
1110
-
1111
- default:
1112
- BAILOUT("Unsupported binary operation");
1113
- }
1114
- }
1115
-
1116
-
1117
- void CodeGenSelector::VisitCompareOperation(CompareOperation* expr) {
1118
- ProcessExpression(expr->left(), Expression::kValue);
1119
- CHECK_BAILOUT;
1120
- ProcessExpression(expr->right(), Expression::kValue);
1121
- }
1122
-
1123
-
1124
- void CodeGenSelector::VisitThisFunction(ThisFunction* expr) {
1125
- // ThisFunction is supported.
1126
- }
1127
-
1128
- #undef BAILOUT
1129
- #undef CHECK_BAILOUT
1130
-
1131
-
1132
- } } // namespace v8::internal