therubyracer 0.5.0-x86-linux → 0.11.0beta5-x86-linux

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 (721) hide show
  1. data/.gitignore +23 -11
  2. data/.travis.yml +10 -0
  3. data/Changelog.md +242 -0
  4. data/Gemfile +16 -0
  5. data/README.md +185 -0
  6. data/Rakefile +42 -51
  7. data/benchmarks.rb +217 -0
  8. data/ext/v8/accessor.cc +181 -0
  9. data/ext/v8/array.cc +26 -0
  10. data/ext/v8/backref.cc +56 -0
  11. data/ext/v8/build.rb +52 -0
  12. data/ext/v8/constants.cc +34 -0
  13. data/ext/v8/constraints.cc +52 -0
  14. data/ext/v8/context.cc +130 -0
  15. data/ext/v8/date.cc +18 -0
  16. data/ext/v8/exception.cc +38 -0
  17. data/ext/v8/extconf.rb +16 -29
  18. data/ext/v8/external.cc +43 -0
  19. data/ext/v8/function.cc +58 -0
  20. data/ext/v8/gc.cc +43 -0
  21. data/ext/v8/handles.cc +34 -0
  22. data/ext/v8/heap.cc +31 -0
  23. data/ext/v8/init.cc +39 -0
  24. data/ext/v8/init.so +0 -0
  25. data/ext/v8/invocation.cc +86 -0
  26. data/ext/v8/locker.cc +77 -0
  27. data/ext/v8/message.cc +51 -0
  28. data/ext/v8/object.cc +334 -0
  29. data/ext/v8/primitive.cc +8 -0
  30. data/ext/v8/rr.cc +83 -0
  31. data/ext/v8/rr.h +883 -0
  32. data/ext/v8/script.cc +80 -0
  33. data/ext/v8/signature.cc +18 -0
  34. data/ext/v8/stack.cc +75 -0
  35. data/ext/v8/string.cc +47 -0
  36. data/ext/v8/template.cc +175 -0
  37. data/ext/v8/trycatch.cc +86 -0
  38. data/ext/v8/v8.cc +87 -0
  39. data/ext/v8/value.cc +239 -0
  40. data/lib/v8.rb +30 -9
  41. data/lib/v8/access.rb +5 -0
  42. data/lib/v8/access/indices.rb +40 -0
  43. data/lib/v8/access/invocation.rb +47 -0
  44. data/lib/v8/access/names.rb +65 -0
  45. data/lib/v8/array.rb +26 -0
  46. data/lib/v8/context.rb +217 -75
  47. data/lib/v8/conversion.rb +35 -0
  48. data/lib/v8/conversion/array.rb +11 -0
  49. data/lib/v8/conversion/class.rb +120 -0
  50. data/lib/v8/conversion/code.rb +38 -0
  51. data/lib/v8/conversion/fundamental.rb +11 -0
  52. data/lib/v8/conversion/hash.rb +11 -0
  53. data/lib/v8/conversion/indentity.rb +31 -0
  54. data/lib/v8/conversion/method.rb +26 -0
  55. data/lib/v8/conversion/object.rb +28 -0
  56. data/lib/v8/conversion/primitive.rb +7 -0
  57. data/lib/v8/conversion/proc.rb +5 -0
  58. data/lib/v8/conversion/reference.rb +16 -0
  59. data/lib/v8/conversion/string.rb +12 -0
  60. data/lib/v8/conversion/symbol.rb +7 -0
  61. data/lib/v8/conversion/time.rb +13 -0
  62. data/lib/v8/error.rb +25 -0
  63. data/lib/v8/error/protect.rb +20 -0
  64. data/lib/v8/error/try.rb +15 -0
  65. data/lib/v8/function.rb +28 -0
  66. data/lib/v8/object.rb +69 -28
  67. data/lib/v8/util/weakcell.rb +29 -0
  68. data/lib/v8/version.rb +3 -0
  69. data/spec/c/array_spec.rb +17 -0
  70. data/spec/c/constants_spec.rb +20 -0
  71. data/spec/c/exception_spec.rb +26 -0
  72. data/spec/c/external_spec.rb +9 -0
  73. data/spec/c/function_spec.rb +46 -0
  74. data/spec/c/handles_spec.rb +35 -0
  75. data/spec/c/locker_spec.rb +38 -0
  76. data/spec/c/object_spec.rb +46 -0
  77. data/spec/c/script_spec.rb +28 -0
  78. data/spec/c/string_spec.rb +16 -0
  79. data/spec/c/template_spec.rb +30 -0
  80. data/spec/c/trycatch_spec.rb +51 -0
  81. data/spec/mem/blunt_spec.rb +42 -0
  82. data/spec/redjs_spec.rb +10 -0
  83. data/spec/spec_helper.rb +43 -12
  84. data/spec/threading_spec.rb +52 -0
  85. data/spec/v8/context_spec.rb +19 -0
  86. data/spec/v8/conversion_spec.rb +9 -0
  87. data/spec/v8/error_spec.rb +21 -0
  88. data/spec/v8/function_spec.rb +9 -0
  89. data/spec/v8/object_spec.rb +15 -0
  90. data/thefrontside.png +0 -0
  91. data/therubyracer.gemspec +15 -676
  92. metadata +146 -680
  93. data/.gitmodules +0 -3
  94. data/Doxyfile +0 -1514
  95. data/History.txt +0 -51
  96. data/README.rdoc +0 -158
  97. data/docs/data_conversion.txt +0 -18
  98. data/ext/v8/callbacks.cpp +0 -160
  99. data/ext/v8/callbacks.h +0 -14
  100. data/ext/v8/convert_ruby.cpp +0 -8
  101. data/ext/v8/convert_ruby.h +0 -99
  102. data/ext/v8/convert_string.cpp +0 -10
  103. data/ext/v8/convert_string.h +0 -73
  104. data/ext/v8/convert_v8.cpp +0 -9
  105. data/ext/v8/convert_v8.h +0 -121
  106. data/ext/v8/converters.cpp +0 -83
  107. data/ext/v8/converters.h +0 -23
  108. data/ext/v8/upstream/2.0.6/.gitignore +0 -26
  109. data/ext/v8/upstream/2.0.6/AUTHORS +0 -23
  110. data/ext/v8/upstream/2.0.6/ChangeLog +0 -1479
  111. data/ext/v8/upstream/2.0.6/LICENSE +0 -55
  112. data/ext/v8/upstream/2.0.6/SConstruct +0 -1028
  113. data/ext/v8/upstream/2.0.6/include/v8-debug.h +0 -275
  114. data/ext/v8/upstream/2.0.6/include/v8.h +0 -3236
  115. data/ext/v8/upstream/2.0.6/src/SConscript +0 -283
  116. data/ext/v8/upstream/2.0.6/src/accessors.cc +0 -695
  117. data/ext/v8/upstream/2.0.6/src/accessors.h +0 -114
  118. data/ext/v8/upstream/2.0.6/src/allocation.cc +0 -198
  119. data/ext/v8/upstream/2.0.6/src/allocation.h +0 -169
  120. data/ext/v8/upstream/2.0.6/src/api.cc +0 -3831
  121. data/ext/v8/upstream/2.0.6/src/api.h +0 -479
  122. data/ext/v8/upstream/2.0.6/src/apinatives.js +0 -110
  123. data/ext/v8/upstream/2.0.6/src/apiutils.h +0 -69
  124. data/ext/v8/upstream/2.0.6/src/arguments.h +0 -97
  125. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm-inl.h +0 -277
  126. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.cc +0 -1821
  127. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.h +0 -1027
  128. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2-inl.h +0 -267
  129. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.cc +0 -1821
  130. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.h +0 -1027
  131. data/ext/v8/upstream/2.0.6/src/arm/builtins-arm.cc +0 -1271
  132. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm-inl.h +0 -74
  133. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.cc +0 -6682
  134. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.h +0 -535
  135. data/ext/v8/upstream/2.0.6/src/arm/constants-arm.cc +0 -112
  136. data/ext/v8/upstream/2.0.6/src/arm/constants-arm.h +0 -347
  137. data/ext/v8/upstream/2.0.6/src/arm/cpu-arm.cc +0 -132
  138. data/ext/v8/upstream/2.0.6/src/arm/debug-arm.cc +0 -213
  139. data/ext/v8/upstream/2.0.6/src/arm/disasm-arm.cc +0 -1166
  140. data/ext/v8/upstream/2.0.6/src/arm/fast-codegen-arm.cc +0 -1698
  141. data/ext/v8/upstream/2.0.6/src/arm/frames-arm.cc +0 -123
  142. data/ext/v8/upstream/2.0.6/src/arm/frames-arm.h +0 -162
  143. data/ext/v8/upstream/2.0.6/src/arm/ic-arm.cc +0 -849
  144. data/ext/v8/upstream/2.0.6/src/arm/jump-target-arm.cc +0 -238
  145. data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.cc +0 -1259
  146. data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.h +0 -423
  147. data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.cc +0 -1266
  148. data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.h +0 -282
  149. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm-inl.h +0 -103
  150. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.cc +0 -59
  151. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.h +0 -43
  152. data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.cc +0 -2264
  153. data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.h +0 -306
  154. data/ext/v8/upstream/2.0.6/src/arm/stub-cache-arm.cc +0 -1516
  155. data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.cc +0 -412
  156. data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.h +0 -532
  157. data/ext/v8/upstream/2.0.6/src/array.js +0 -1154
  158. data/ext/v8/upstream/2.0.6/src/assembler.cc +0 -772
  159. data/ext/v8/upstream/2.0.6/src/assembler.h +0 -525
  160. data/ext/v8/upstream/2.0.6/src/ast.cc +0 -512
  161. data/ext/v8/upstream/2.0.6/src/ast.h +0 -1820
  162. data/ext/v8/upstream/2.0.6/src/bootstrapper.cc +0 -1680
  163. data/ext/v8/upstream/2.0.6/src/bootstrapper.h +0 -103
  164. data/ext/v8/upstream/2.0.6/src/builtins.cc +0 -851
  165. data/ext/v8/upstream/2.0.6/src/builtins.h +0 -245
  166. data/ext/v8/upstream/2.0.6/src/bytecodes-irregexp.h +0 -104
  167. data/ext/v8/upstream/2.0.6/src/char-predicates-inl.h +0 -86
  168. data/ext/v8/upstream/2.0.6/src/char-predicates.h +0 -65
  169. data/ext/v8/upstream/2.0.6/src/checks.cc +0 -100
  170. data/ext/v8/upstream/2.0.6/src/checks.h +0 -284
  171. data/ext/v8/upstream/2.0.6/src/code-stubs.cc +0 -164
  172. data/ext/v8/upstream/2.0.6/src/code-stubs.h +0 -164
  173. data/ext/v8/upstream/2.0.6/src/code.h +0 -68
  174. data/ext/v8/upstream/2.0.6/src/codegen-inl.h +0 -88
  175. data/ext/v8/upstream/2.0.6/src/codegen.cc +0 -504
  176. data/ext/v8/upstream/2.0.6/src/codegen.h +0 -522
  177. data/ext/v8/upstream/2.0.6/src/compilation-cache.cc +0 -490
  178. data/ext/v8/upstream/2.0.6/src/compilation-cache.h +0 -98
  179. data/ext/v8/upstream/2.0.6/src/compiler.cc +0 -1132
  180. data/ext/v8/upstream/2.0.6/src/compiler.h +0 -107
  181. data/ext/v8/upstream/2.0.6/src/contexts.cc +0 -256
  182. data/ext/v8/upstream/2.0.6/src/contexts.h +0 -345
  183. data/ext/v8/upstream/2.0.6/src/conversions-inl.h +0 -95
  184. data/ext/v8/upstream/2.0.6/src/conversions.cc +0 -709
  185. data/ext/v8/upstream/2.0.6/src/conversions.h +0 -118
  186. data/ext/v8/upstream/2.0.6/src/counters.cc +0 -78
  187. data/ext/v8/upstream/2.0.6/src/counters.h +0 -239
  188. data/ext/v8/upstream/2.0.6/src/cpu.h +0 -65
  189. data/ext/v8/upstream/2.0.6/src/d8-debug.cc +0 -345
  190. data/ext/v8/upstream/2.0.6/src/d8-debug.h +0 -155
  191. data/ext/v8/upstream/2.0.6/src/d8-posix.cc +0 -675
  192. data/ext/v8/upstream/2.0.6/src/d8-readline.cc +0 -128
  193. data/ext/v8/upstream/2.0.6/src/d8-windows.cc +0 -42
  194. data/ext/v8/upstream/2.0.6/src/d8.cc +0 -776
  195. data/ext/v8/upstream/2.0.6/src/d8.h +0 -225
  196. data/ext/v8/upstream/2.0.6/src/d8.js +0 -1625
  197. data/ext/v8/upstream/2.0.6/src/date-delay.js +0 -1138
  198. data/ext/v8/upstream/2.0.6/src/dateparser-inl.h +0 -114
  199. data/ext/v8/upstream/2.0.6/src/dateparser.cc +0 -186
  200. data/ext/v8/upstream/2.0.6/src/dateparser.h +0 -240
  201. data/ext/v8/upstream/2.0.6/src/debug-agent.cc +0 -425
  202. data/ext/v8/upstream/2.0.6/src/debug-agent.h +0 -129
  203. data/ext/v8/upstream/2.0.6/src/debug-delay.js +0 -2073
  204. data/ext/v8/upstream/2.0.6/src/debug.cc +0 -2751
  205. data/ext/v8/upstream/2.0.6/src/debug.h +0 -866
  206. data/ext/v8/upstream/2.0.6/src/disasm.h +0 -77
  207. data/ext/v8/upstream/2.0.6/src/disassembler.cc +0 -318
  208. data/ext/v8/upstream/2.0.6/src/disassembler.h +0 -56
  209. data/ext/v8/upstream/2.0.6/src/dtoa-config.c +0 -91
  210. data/ext/v8/upstream/2.0.6/src/execution.cc +0 -701
  211. data/ext/v8/upstream/2.0.6/src/execution.h +0 -312
  212. data/ext/v8/upstream/2.0.6/src/factory.cc +0 -957
  213. data/ext/v8/upstream/2.0.6/src/factory.h +0 -393
  214. data/ext/v8/upstream/2.0.6/src/fast-codegen.cc +0 -725
  215. data/ext/v8/upstream/2.0.6/src/fast-codegen.h +0 -371
  216. data/ext/v8/upstream/2.0.6/src/flag-definitions.h +0 -426
  217. data/ext/v8/upstream/2.0.6/src/flags.cc +0 -555
  218. data/ext/v8/upstream/2.0.6/src/flags.h +0 -81
  219. data/ext/v8/upstream/2.0.6/src/frame-element.cc +0 -45
  220. data/ext/v8/upstream/2.0.6/src/frame-element.h +0 -235
  221. data/ext/v8/upstream/2.0.6/src/frames-inl.h +0 -215
  222. data/ext/v8/upstream/2.0.6/src/frames.cc +0 -749
  223. data/ext/v8/upstream/2.0.6/src/frames.h +0 -659
  224. data/ext/v8/upstream/2.0.6/src/func-name-inferrer.cc +0 -76
  225. data/ext/v8/upstream/2.0.6/src/func-name-inferrer.h +0 -135
  226. data/ext/v8/upstream/2.0.6/src/global-handles.cc +0 -516
  227. data/ext/v8/upstream/2.0.6/src/global-handles.h +0 -180
  228. data/ext/v8/upstream/2.0.6/src/globals.h +0 -608
  229. data/ext/v8/upstream/2.0.6/src/handles-inl.h +0 -76
  230. data/ext/v8/upstream/2.0.6/src/handles.cc +0 -811
  231. data/ext/v8/upstream/2.0.6/src/handles.h +0 -367
  232. data/ext/v8/upstream/2.0.6/src/hashmap.cc +0 -226
  233. data/ext/v8/upstream/2.0.6/src/hashmap.h +0 -120
  234. data/ext/v8/upstream/2.0.6/src/heap-inl.h +0 -407
  235. data/ext/v8/upstream/2.0.6/src/heap-profiler.cc +0 -695
  236. data/ext/v8/upstream/2.0.6/src/heap-profiler.h +0 -277
  237. data/ext/v8/upstream/2.0.6/src/heap.cc +0 -4204
  238. data/ext/v8/upstream/2.0.6/src/heap.h +0 -1704
  239. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32-inl.h +0 -325
  240. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.cc +0 -2375
  241. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.h +0 -914
  242. data/ext/v8/upstream/2.0.6/src/ia32/builtins-ia32.cc +0 -1222
  243. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32-inl.h +0 -46
  244. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.cc +0 -9770
  245. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.h +0 -834
  246. data/ext/v8/upstream/2.0.6/src/ia32/cpu-ia32.cc +0 -79
  247. data/ext/v8/upstream/2.0.6/src/ia32/debug-ia32.cc +0 -208
  248. data/ext/v8/upstream/2.0.6/src/ia32/disasm-ia32.cc +0 -1357
  249. data/ext/v8/upstream/2.0.6/src/ia32/fast-codegen-ia32.cc +0 -1813
  250. data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.cc +0 -111
  251. data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.h +0 -135
  252. data/ext/v8/upstream/2.0.6/src/ia32/ic-ia32.cc +0 -1490
  253. data/ext/v8/upstream/2.0.6/src/ia32/jump-target-ia32.cc +0 -432
  254. data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.cc +0 -1517
  255. data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.h +0 -528
  256. data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.cc +0 -1219
  257. data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.h +0 -230
  258. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32-inl.h +0 -82
  259. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.cc +0 -99
  260. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.h +0 -43
  261. data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.cc +0 -30
  262. data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.h +0 -62
  263. data/ext/v8/upstream/2.0.6/src/ia32/stub-cache-ia32.cc +0 -1961
  264. data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.cc +0 -1105
  265. data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.h +0 -580
  266. data/ext/v8/upstream/2.0.6/src/ic-inl.h +0 -93
  267. data/ext/v8/upstream/2.0.6/src/ic.cc +0 -1426
  268. data/ext/v8/upstream/2.0.6/src/ic.h +0 -443
  269. data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.cc +0 -646
  270. data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.h +0 -48
  271. data/ext/v8/upstream/2.0.6/src/json-delay.js +0 -254
  272. data/ext/v8/upstream/2.0.6/src/jsregexp.cc +0 -5234
  273. data/ext/v8/upstream/2.0.6/src/jsregexp.h +0 -1439
  274. data/ext/v8/upstream/2.0.6/src/jump-target-inl.h +0 -49
  275. data/ext/v8/upstream/2.0.6/src/jump-target.cc +0 -383
  276. data/ext/v8/upstream/2.0.6/src/jump-target.h +0 -280
  277. data/ext/v8/upstream/2.0.6/src/list-inl.h +0 -166
  278. data/ext/v8/upstream/2.0.6/src/list.h +0 -158
  279. data/ext/v8/upstream/2.0.6/src/log-inl.h +0 -126
  280. data/ext/v8/upstream/2.0.6/src/log-utils.cc +0 -503
  281. data/ext/v8/upstream/2.0.6/src/log-utils.h +0 -292
  282. data/ext/v8/upstream/2.0.6/src/log.cc +0 -1457
  283. data/ext/v8/upstream/2.0.6/src/log.h +0 -371
  284. data/ext/v8/upstream/2.0.6/src/macro-assembler.h +0 -93
  285. data/ext/v8/upstream/2.0.6/src/macros.py +0 -137
  286. data/ext/v8/upstream/2.0.6/src/mark-compact.cc +0 -2007
  287. data/ext/v8/upstream/2.0.6/src/mark-compact.h +0 -442
  288. data/ext/v8/upstream/2.0.6/src/math.js +0 -263
  289. data/ext/v8/upstream/2.0.6/src/memory.h +0 -74
  290. data/ext/v8/upstream/2.0.6/src/messages.cc +0 -177
  291. data/ext/v8/upstream/2.0.6/src/messages.h +0 -112
  292. data/ext/v8/upstream/2.0.6/src/messages.js +0 -937
  293. data/ext/v8/upstream/2.0.6/src/mirror-delay.js +0 -2332
  294. data/ext/v8/upstream/2.0.6/src/mksnapshot.cc +0 -169
  295. data/ext/v8/upstream/2.0.6/src/natives.h +0 -63
  296. data/ext/v8/upstream/2.0.6/src/objects-debug.cc +0 -1317
  297. data/ext/v8/upstream/2.0.6/src/objects-inl.h +0 -3044
  298. data/ext/v8/upstream/2.0.6/src/objects.cc +0 -8306
  299. data/ext/v8/upstream/2.0.6/src/objects.h +0 -4960
  300. data/ext/v8/upstream/2.0.6/src/oprofile-agent.cc +0 -116
  301. data/ext/v8/upstream/2.0.6/src/oprofile-agent.h +0 -69
  302. data/ext/v8/upstream/2.0.6/src/parser.cc +0 -4810
  303. data/ext/v8/upstream/2.0.6/src/parser.h +0 -195
  304. data/ext/v8/upstream/2.0.6/src/platform-freebsd.cc +0 -645
  305. data/ext/v8/upstream/2.0.6/src/platform-linux.cc +0 -808
  306. data/ext/v8/upstream/2.0.6/src/platform-macos.cc +0 -643
  307. data/ext/v8/upstream/2.0.6/src/platform-nullos.cc +0 -454
  308. data/ext/v8/upstream/2.0.6/src/platform-openbsd.cc +0 -597
  309. data/ext/v8/upstream/2.0.6/src/platform-posix.cc +0 -380
  310. data/ext/v8/upstream/2.0.6/src/platform-win32.cc +0 -1908
  311. data/ext/v8/upstream/2.0.6/src/platform.h +0 -556
  312. data/ext/v8/upstream/2.0.6/src/prettyprinter.cc +0 -1511
  313. data/ext/v8/upstream/2.0.6/src/prettyprinter.h +0 -219
  314. data/ext/v8/upstream/2.0.6/src/property.cc +0 -96
  315. data/ext/v8/upstream/2.0.6/src/property.h +0 -327
  316. data/ext/v8/upstream/2.0.6/src/regexp-delay.js +0 -406
  317. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp-inl.h +0 -78
  318. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.cc +0 -464
  319. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.h +0 -141
  320. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.cc +0 -356
  321. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.h +0 -103
  322. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.cc +0 -240
  323. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.h +0 -220
  324. data/ext/v8/upstream/2.0.6/src/regexp-stack.cc +0 -103
  325. data/ext/v8/upstream/2.0.6/src/regexp-stack.h +0 -123
  326. data/ext/v8/upstream/2.0.6/src/register-allocator-inl.h +0 -74
  327. data/ext/v8/upstream/2.0.6/src/register-allocator.cc +0 -100
  328. data/ext/v8/upstream/2.0.6/src/register-allocator.h +0 -295
  329. data/ext/v8/upstream/2.0.6/src/rewriter.cc +0 -855
  330. data/ext/v8/upstream/2.0.6/src/rewriter.h +0 -54
  331. data/ext/v8/upstream/2.0.6/src/runtime.cc +0 -8163
  332. data/ext/v8/upstream/2.0.6/src/runtime.h +0 -432
  333. data/ext/v8/upstream/2.0.6/src/runtime.js +0 -626
  334. data/ext/v8/upstream/2.0.6/src/scanner.cc +0 -1098
  335. data/ext/v8/upstream/2.0.6/src/scanner.h +0 -425
  336. data/ext/v8/upstream/2.0.6/src/scopeinfo.cc +0 -649
  337. data/ext/v8/upstream/2.0.6/src/scopeinfo.h +0 -236
  338. data/ext/v8/upstream/2.0.6/src/scopes.cc +0 -963
  339. data/ext/v8/upstream/2.0.6/src/scopes.h +0 -401
  340. data/ext/v8/upstream/2.0.6/src/serialize.cc +0 -1260
  341. data/ext/v8/upstream/2.0.6/src/serialize.h +0 -404
  342. data/ext/v8/upstream/2.0.6/src/shell.h +0 -55
  343. data/ext/v8/upstream/2.0.6/src/simulator.h +0 -41
  344. data/ext/v8/upstream/2.0.6/src/smart-pointer.h +0 -109
  345. data/ext/v8/upstream/2.0.6/src/snapshot-common.cc +0 -97
  346. data/ext/v8/upstream/2.0.6/src/snapshot-empty.cc +0 -40
  347. data/ext/v8/upstream/2.0.6/src/snapshot.h +0 -59
  348. data/ext/v8/upstream/2.0.6/src/spaces-inl.h +0 -372
  349. data/ext/v8/upstream/2.0.6/src/spaces.cc +0 -2864
  350. data/ext/v8/upstream/2.0.6/src/spaces.h +0 -2072
  351. data/ext/v8/upstream/2.0.6/src/string-stream.cc +0 -584
  352. data/ext/v8/upstream/2.0.6/src/string-stream.h +0 -189
  353. data/ext/v8/upstream/2.0.6/src/string.js +0 -901
  354. data/ext/v8/upstream/2.0.6/src/stub-cache.cc +0 -1108
  355. data/ext/v8/upstream/2.0.6/src/stub-cache.h +0 -578
  356. data/ext/v8/upstream/2.0.6/src/third_party/dtoa/COPYING +0 -15
  357. data/ext/v8/upstream/2.0.6/src/third_party/dtoa/dtoa.c +0 -3330
  358. data/ext/v8/upstream/2.0.6/src/third_party/valgrind/valgrind.h +0 -3925
  359. data/ext/v8/upstream/2.0.6/src/token.cc +0 -56
  360. data/ext/v8/upstream/2.0.6/src/token.h +0 -270
  361. data/ext/v8/upstream/2.0.6/src/top.cc +0 -991
  362. data/ext/v8/upstream/2.0.6/src/top.h +0 -459
  363. data/ext/v8/upstream/2.0.6/src/unicode-inl.h +0 -238
  364. data/ext/v8/upstream/2.0.6/src/unicode.cc +0 -749
  365. data/ext/v8/upstream/2.0.6/src/unicode.h +0 -279
  366. data/ext/v8/upstream/2.0.6/src/uri.js +0 -415
  367. data/ext/v8/upstream/2.0.6/src/usage-analyzer.cc +0 -426
  368. data/ext/v8/upstream/2.0.6/src/usage-analyzer.h +0 -40
  369. data/ext/v8/upstream/2.0.6/src/utils.cc +0 -322
  370. data/ext/v8/upstream/2.0.6/src/utils.h +0 -592
  371. data/ext/v8/upstream/2.0.6/src/v8-counters.cc +0 -55
  372. data/ext/v8/upstream/2.0.6/src/v8-counters.h +0 -198
  373. data/ext/v8/upstream/2.0.6/src/v8.cc +0 -193
  374. data/ext/v8/upstream/2.0.6/src/v8.h +0 -119
  375. data/ext/v8/upstream/2.0.6/src/v8natives.js +0 -846
  376. data/ext/v8/upstream/2.0.6/src/v8threads.cc +0 -450
  377. data/ext/v8/upstream/2.0.6/src/v8threads.h +0 -144
  378. data/ext/v8/upstream/2.0.6/src/variables.cc +0 -163
  379. data/ext/v8/upstream/2.0.6/src/variables.h +0 -235
  380. data/ext/v8/upstream/2.0.6/src/version.cc +0 -88
  381. data/ext/v8/upstream/2.0.6/src/version.h +0 -64
  382. data/ext/v8/upstream/2.0.6/src/virtual-frame.cc +0 -381
  383. data/ext/v8/upstream/2.0.6/src/virtual-frame.h +0 -44
  384. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64-inl.h +0 -352
  385. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.cc +0 -2539
  386. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.h +0 -1399
  387. data/ext/v8/upstream/2.0.6/src/x64/builtins-x64.cc +0 -1255
  388. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64-inl.h +0 -46
  389. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.cc +0 -8223
  390. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.h +0 -785
  391. data/ext/v8/upstream/2.0.6/src/x64/cpu-x64.cc +0 -79
  392. data/ext/v8/upstream/2.0.6/src/x64/debug-x64.cc +0 -202
  393. data/ext/v8/upstream/2.0.6/src/x64/disasm-x64.cc +0 -1596
  394. data/ext/v8/upstream/2.0.6/src/x64/fast-codegen-x64.cc +0 -1820
  395. data/ext/v8/upstream/2.0.6/src/x64/frames-x64.cc +0 -109
  396. data/ext/v8/upstream/2.0.6/src/x64/frames-x64.h +0 -121
  397. data/ext/v8/upstream/2.0.6/src/x64/ic-x64.cc +0 -1392
  398. data/ext/v8/upstream/2.0.6/src/x64/jump-target-x64.cc +0 -432
  399. data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.cc +0 -2409
  400. data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.h +0 -765
  401. data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.cc +0 -1337
  402. data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.h +0 -295
  403. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64-inl.h +0 -86
  404. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.cc +0 -84
  405. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.h +0 -43
  406. data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.cc +0 -27
  407. data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.h +0 -63
  408. data/ext/v8/upstream/2.0.6/src/x64/stub-cache-x64.cc +0 -1884
  409. data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.cc +0 -1089
  410. data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.h +0 -560
  411. data/ext/v8/upstream/2.0.6/src/zone-inl.h +0 -297
  412. data/ext/v8/upstream/2.0.6/src/zone.cc +0 -193
  413. data/ext/v8/upstream/2.0.6/src/zone.h +0 -305
  414. data/ext/v8/upstream/2.0.6/tools/codemap.js +0 -258
  415. data/ext/v8/upstream/2.0.6/tools/consarray.js +0 -93
  416. data/ext/v8/upstream/2.0.6/tools/csvparser.js +0 -98
  417. data/ext/v8/upstream/2.0.6/tools/gyp/v8.gyp +0 -620
  418. data/ext/v8/upstream/2.0.6/tools/js2c.py +0 -376
  419. data/ext/v8/upstream/2.0.6/tools/jsmin.py +0 -280
  420. data/ext/v8/upstream/2.0.6/tools/linux-tick-processor +0 -24
  421. data/ext/v8/upstream/2.0.6/tools/linux-tick-processor.py +0 -78
  422. data/ext/v8/upstream/2.0.6/tools/logreader.js +0 -320
  423. data/ext/v8/upstream/2.0.6/tools/mac-nm +0 -18
  424. data/ext/v8/upstream/2.0.6/tools/mac-tick-processor +0 -6
  425. data/ext/v8/upstream/2.0.6/tools/oprofile/annotate +0 -7
  426. data/ext/v8/upstream/2.0.6/tools/oprofile/common +0 -19
  427. data/ext/v8/upstream/2.0.6/tools/oprofile/dump +0 -7
  428. data/ext/v8/upstream/2.0.6/tools/oprofile/report +0 -7
  429. data/ext/v8/upstream/2.0.6/tools/oprofile/reset +0 -7
  430. data/ext/v8/upstream/2.0.6/tools/oprofile/run +0 -14
  431. data/ext/v8/upstream/2.0.6/tools/oprofile/shutdown +0 -7
  432. data/ext/v8/upstream/2.0.6/tools/oprofile/start +0 -7
  433. data/ext/v8/upstream/2.0.6/tools/presubmit.py +0 -299
  434. data/ext/v8/upstream/2.0.6/tools/process-heap-prof.py +0 -120
  435. data/ext/v8/upstream/2.0.6/tools/profile.js +0 -621
  436. data/ext/v8/upstream/2.0.6/tools/profile_view.js +0 -224
  437. data/ext/v8/upstream/2.0.6/tools/run-valgrind.py +0 -77
  438. data/ext/v8/upstream/2.0.6/tools/splaytree.js +0 -322
  439. data/ext/v8/upstream/2.0.6/tools/splaytree.py +0 -226
  440. data/ext/v8/upstream/2.0.6/tools/stats-viewer.py +0 -456
  441. data/ext/v8/upstream/2.0.6/tools/test.py +0 -1370
  442. data/ext/v8/upstream/2.0.6/tools/tickprocessor-driver.js +0 -53
  443. data/ext/v8/upstream/2.0.6/tools/tickprocessor.js +0 -731
  444. data/ext/v8/upstream/2.0.6/tools/tickprocessor.py +0 -535
  445. data/ext/v8/upstream/2.0.6/tools/utils.py +0 -82
  446. data/ext/v8/upstream/2.0.6/tools/visual_studio/README.txt +0 -71
  447. data/ext/v8/upstream/2.0.6/tools/visual_studio/arm.vsprops +0 -14
  448. data/ext/v8/upstream/2.0.6/tools/visual_studio/common.vsprops +0 -35
  449. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8.vcproj +0 -199
  450. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_arm.vcproj +0 -199
  451. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_x64.vcproj +0 -201
  452. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8js2c.cmd +0 -6
  453. data/ext/v8/upstream/2.0.6/tools/visual_studio/debug.vsprops +0 -17
  454. data/ext/v8/upstream/2.0.6/tools/visual_studio/ia32.vsprops +0 -13
  455. data/ext/v8/upstream/2.0.6/tools/visual_studio/js2c.cmd +0 -6
  456. data/ext/v8/upstream/2.0.6/tools/visual_studio/release.vsprops +0 -24
  457. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.sln +0 -101
  458. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.vcproj +0 -223
  459. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.sln +0 -74
  460. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.vcproj +0 -223
  461. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base.vcproj +0 -971
  462. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_arm.vcproj +0 -983
  463. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_x64.vcproj +0 -959
  464. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest.vcproj +0 -255
  465. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_arm.vcproj +0 -243
  466. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_x64.vcproj +0 -257
  467. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot.vcproj +0 -151
  468. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -151
  469. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample.vcproj +0 -151
  470. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_arm.vcproj +0 -151
  471. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_x64.vcproj +0 -151
  472. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample.vcproj +0 -151
  473. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -151
  474. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -153
  475. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot.vcproj +0 -142
  476. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc.vcproj +0 -92
  477. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -92
  478. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_x64.vcproj +0 -142
  479. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.sln +0 -101
  480. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.vcproj +0 -223
  481. data/ext/v8/upstream/2.0.6/tools/visual_studio/x64.vsprops +0 -13
  482. data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat +0 -5
  483. data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.py +0 -137
  484. data/ext/v8/upstream/Makefile +0 -32
  485. data/ext/v8/upstream/fpic-on-linux-amd64.patch +0 -13
  486. data/ext/v8/upstream/no-strict-aliasing.patch +0 -13
  487. data/ext/v8/upstream/scons/CHANGES.txt +0 -5183
  488. data/ext/v8/upstream/scons/LICENSE.txt +0 -20
  489. data/ext/v8/upstream/scons/MANIFEST +0 -202
  490. data/ext/v8/upstream/scons/PKG-INFO +0 -13
  491. data/ext/v8/upstream/scons/README.txt +0 -273
  492. data/ext/v8/upstream/scons/RELEASE.txt +0 -1040
  493. data/ext/v8/upstream/scons/engine/SCons/Action.py +0 -1256
  494. data/ext/v8/upstream/scons/engine/SCons/Builder.py +0 -868
  495. data/ext/v8/upstream/scons/engine/SCons/CacheDir.py +0 -217
  496. data/ext/v8/upstream/scons/engine/SCons/Conftest.py +0 -794
  497. data/ext/v8/upstream/scons/engine/SCons/Debug.py +0 -237
  498. data/ext/v8/upstream/scons/engine/SCons/Defaults.py +0 -485
  499. data/ext/v8/upstream/scons/engine/SCons/Environment.py +0 -2327
  500. data/ext/v8/upstream/scons/engine/SCons/Errors.py +0 -207
  501. data/ext/v8/upstream/scons/engine/SCons/Executor.py +0 -636
  502. data/ext/v8/upstream/scons/engine/SCons/Job.py +0 -435
  503. data/ext/v8/upstream/scons/engine/SCons/Memoize.py +0 -292
  504. data/ext/v8/upstream/scons/engine/SCons/Node/Alias.py +0 -153
  505. data/ext/v8/upstream/scons/engine/SCons/Node/FS.py +0 -3220
  506. data/ext/v8/upstream/scons/engine/SCons/Node/Python.py +0 -128
  507. data/ext/v8/upstream/scons/engine/SCons/Node/__init__.py +0 -1341
  508. data/ext/v8/upstream/scons/engine/SCons/Options/BoolOption.py +0 -50
  509. data/ext/v8/upstream/scons/engine/SCons/Options/EnumOption.py +0 -50
  510. data/ext/v8/upstream/scons/engine/SCons/Options/ListOption.py +0 -50
  511. data/ext/v8/upstream/scons/engine/SCons/Options/PackageOption.py +0 -50
  512. data/ext/v8/upstream/scons/engine/SCons/Options/PathOption.py +0 -76
  513. data/ext/v8/upstream/scons/engine/SCons/Options/__init__.py +0 -74
  514. data/ext/v8/upstream/scons/engine/SCons/PathList.py +0 -232
  515. data/ext/v8/upstream/scons/engine/SCons/Platform/__init__.py +0 -236
  516. data/ext/v8/upstream/scons/engine/SCons/Platform/aix.py +0 -70
  517. data/ext/v8/upstream/scons/engine/SCons/Platform/cygwin.py +0 -55
  518. data/ext/v8/upstream/scons/engine/SCons/Platform/darwin.py +0 -46
  519. data/ext/v8/upstream/scons/engine/SCons/Platform/hpux.py +0 -46
  520. data/ext/v8/upstream/scons/engine/SCons/Platform/irix.py +0 -44
  521. data/ext/v8/upstream/scons/engine/SCons/Platform/os2.py +0 -58
  522. data/ext/v8/upstream/scons/engine/SCons/Platform/posix.py +0 -264
  523. data/ext/v8/upstream/scons/engine/SCons/Platform/sunos.py +0 -50
  524. data/ext/v8/upstream/scons/engine/SCons/Platform/win32.py +0 -386
  525. data/ext/v8/upstream/scons/engine/SCons/SConf.py +0 -1038
  526. data/ext/v8/upstream/scons/engine/SCons/SConsign.py +0 -381
  527. data/ext/v8/upstream/scons/engine/SCons/Scanner/C.py +0 -132
  528. data/ext/v8/upstream/scons/engine/SCons/Scanner/D.py +0 -74
  529. data/ext/v8/upstream/scons/engine/SCons/Scanner/Dir.py +0 -111
  530. data/ext/v8/upstream/scons/engine/SCons/Scanner/Fortran.py +0 -320
  531. data/ext/v8/upstream/scons/engine/SCons/Scanner/IDL.py +0 -48
  532. data/ext/v8/upstream/scons/engine/SCons/Scanner/LaTeX.py +0 -378
  533. data/ext/v8/upstream/scons/engine/SCons/Scanner/Prog.py +0 -103
  534. data/ext/v8/upstream/scons/engine/SCons/Scanner/RC.py +0 -55
  535. data/ext/v8/upstream/scons/engine/SCons/Scanner/__init__.py +0 -415
  536. data/ext/v8/upstream/scons/engine/SCons/Script/Interactive.py +0 -386
  537. data/ext/v8/upstream/scons/engine/SCons/Script/Main.py +0 -1360
  538. data/ext/v8/upstream/scons/engine/SCons/Script/SConsOptions.py +0 -944
  539. data/ext/v8/upstream/scons/engine/SCons/Script/SConscript.py +0 -642
  540. data/ext/v8/upstream/scons/engine/SCons/Script/__init__.py +0 -414
  541. data/ext/v8/upstream/scons/engine/SCons/Sig.py +0 -63
  542. data/ext/v8/upstream/scons/engine/SCons/Subst.py +0 -911
  543. data/ext/v8/upstream/scons/engine/SCons/Taskmaster.py +0 -1030
  544. data/ext/v8/upstream/scons/engine/SCons/Tool/386asm.py +0 -61
  545. data/ext/v8/upstream/scons/engine/SCons/Tool/BitKeeper.py +0 -65
  546. data/ext/v8/upstream/scons/engine/SCons/Tool/CVS.py +0 -73
  547. data/ext/v8/upstream/scons/engine/SCons/Tool/FortranCommon.py +0 -247
  548. data/ext/v8/upstream/scons/engine/SCons/Tool/JavaCommon.py +0 -324
  549. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/__init__.py +0 -56
  550. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/arch.py +0 -61
  551. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/common.py +0 -210
  552. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/netframework.py +0 -84
  553. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/sdk.py +0 -321
  554. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vc.py +0 -367
  555. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vs.py +0 -497
  556. data/ext/v8/upstream/scons/engine/SCons/Tool/Perforce.py +0 -104
  557. data/ext/v8/upstream/scons/engine/SCons/Tool/PharLapCommon.py +0 -138
  558. data/ext/v8/upstream/scons/engine/SCons/Tool/RCS.py +0 -64
  559. data/ext/v8/upstream/scons/engine/SCons/Tool/SCCS.py +0 -64
  560. data/ext/v8/upstream/scons/engine/SCons/Tool/Subversion.py +0 -71
  561. data/ext/v8/upstream/scons/engine/SCons/Tool/__init__.py +0 -675
  562. data/ext/v8/upstream/scons/engine/SCons/Tool/aixc++.py +0 -82
  563. data/ext/v8/upstream/scons/engine/SCons/Tool/aixcc.py +0 -74
  564. data/ext/v8/upstream/scons/engine/SCons/Tool/aixf77.py +0 -80
  565. data/ext/v8/upstream/scons/engine/SCons/Tool/aixlink.py +0 -76
  566. data/ext/v8/upstream/scons/engine/SCons/Tool/applelink.py +0 -71
  567. data/ext/v8/upstream/scons/engine/SCons/Tool/ar.py +0 -63
  568. data/ext/v8/upstream/scons/engine/SCons/Tool/as.py +0 -78
  569. data/ext/v8/upstream/scons/engine/SCons/Tool/bcc32.py +0 -82
  570. data/ext/v8/upstream/scons/engine/SCons/Tool/c++.py +0 -99
  571. data/ext/v8/upstream/scons/engine/SCons/Tool/cc.py +0 -114
  572. data/ext/v8/upstream/scons/engine/SCons/Tool/cvf.py +0 -58
  573. data/ext/v8/upstream/scons/engine/SCons/Tool/default.py +0 -50
  574. data/ext/v8/upstream/scons/engine/SCons/Tool/dmd.py +0 -224
  575. data/ext/v8/upstream/scons/engine/SCons/Tool/dvi.py +0 -64
  576. data/ext/v8/upstream/scons/engine/SCons/Tool/dvipdf.py +0 -125
  577. data/ext/v8/upstream/scons/engine/SCons/Tool/dvips.py +0 -94
  578. data/ext/v8/upstream/scons/engine/SCons/Tool/f77.py +0 -62
  579. data/ext/v8/upstream/scons/engine/SCons/Tool/f90.py +0 -62
  580. data/ext/v8/upstream/scons/engine/SCons/Tool/f95.py +0 -63
  581. data/ext/v8/upstream/scons/engine/SCons/Tool/filesystem.py +0 -98
  582. data/ext/v8/upstream/scons/engine/SCons/Tool/fortran.py +0 -63
  583. data/ext/v8/upstream/scons/engine/SCons/Tool/g++.py +0 -90
  584. data/ext/v8/upstream/scons/engine/SCons/Tool/g77.py +0 -73
  585. data/ext/v8/upstream/scons/engine/SCons/Tool/gas.py +0 -53
  586. data/ext/v8/upstream/scons/engine/SCons/Tool/gcc.py +0 -80
  587. data/ext/v8/upstream/scons/engine/SCons/Tool/gfortran.py +0 -64
  588. data/ext/v8/upstream/scons/engine/SCons/Tool/gnulink.py +0 -63
  589. data/ext/v8/upstream/scons/engine/SCons/Tool/gs.py +0 -81
  590. data/ext/v8/upstream/scons/engine/SCons/Tool/hpc++.py +0 -85
  591. data/ext/v8/upstream/scons/engine/SCons/Tool/hpcc.py +0 -53
  592. data/ext/v8/upstream/scons/engine/SCons/Tool/hplink.py +0 -77
  593. data/ext/v8/upstream/scons/engine/SCons/Tool/icc.py +0 -59
  594. data/ext/v8/upstream/scons/engine/SCons/Tool/icl.py +0 -52
  595. data/ext/v8/upstream/scons/engine/SCons/Tool/ifl.py +0 -72
  596. data/ext/v8/upstream/scons/engine/SCons/Tool/ifort.py +0 -90
  597. data/ext/v8/upstream/scons/engine/SCons/Tool/ilink.py +0 -59
  598. data/ext/v8/upstream/scons/engine/SCons/Tool/ilink32.py +0 -60
  599. data/ext/v8/upstream/scons/engine/SCons/Tool/install.py +0 -229
  600. data/ext/v8/upstream/scons/engine/SCons/Tool/intelc.py +0 -490
  601. data/ext/v8/upstream/scons/engine/SCons/Tool/ipkg.py +0 -71
  602. data/ext/v8/upstream/scons/engine/SCons/Tool/jar.py +0 -110
  603. data/ext/v8/upstream/scons/engine/SCons/Tool/javac.py +0 -234
  604. data/ext/v8/upstream/scons/engine/SCons/Tool/javah.py +0 -138
  605. data/ext/v8/upstream/scons/engine/SCons/Tool/latex.py +0 -79
  606. data/ext/v8/upstream/scons/engine/SCons/Tool/lex.py +0 -99
  607. data/ext/v8/upstream/scons/engine/SCons/Tool/link.py +0 -121
  608. data/ext/v8/upstream/scons/engine/SCons/Tool/linkloc.py +0 -112
  609. data/ext/v8/upstream/scons/engine/SCons/Tool/m4.py +0 -63
  610. data/ext/v8/upstream/scons/engine/SCons/Tool/masm.py +0 -77
  611. data/ext/v8/upstream/scons/engine/SCons/Tool/midl.py +0 -90
  612. data/ext/v8/upstream/scons/engine/SCons/Tool/mingw.py +0 -159
  613. data/ext/v8/upstream/scons/engine/SCons/Tool/mslib.py +0 -64
  614. data/ext/v8/upstream/scons/engine/SCons/Tool/mslink.py +0 -266
  615. data/ext/v8/upstream/scons/engine/SCons/Tool/mssdk.py +0 -50
  616. data/ext/v8/upstream/scons/engine/SCons/Tool/msvc.py +0 -269
  617. data/ext/v8/upstream/scons/engine/SCons/Tool/msvs.py +0 -1439
  618. data/ext/v8/upstream/scons/engine/SCons/Tool/mwcc.py +0 -208
  619. data/ext/v8/upstream/scons/engine/SCons/Tool/mwld.py +0 -107
  620. data/ext/v8/upstream/scons/engine/SCons/Tool/nasm.py +0 -72
  621. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/__init__.py +0 -314
  622. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/ipk.py +0 -185
  623. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/msi.py +0 -526
  624. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/rpm.py +0 -367
  625. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_tarbz2.py +0 -43
  626. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_targz.py +0 -43
  627. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_zip.py +0 -43
  628. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/tarbz2.py +0 -44
  629. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/targz.py +0 -44
  630. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/zip.py +0 -44
  631. data/ext/v8/upstream/scons/engine/SCons/Tool/pdf.py +0 -78
  632. data/ext/v8/upstream/scons/engine/SCons/Tool/pdflatex.py +0 -83
  633. data/ext/v8/upstream/scons/engine/SCons/Tool/pdftex.py +0 -108
  634. data/ext/v8/upstream/scons/engine/SCons/Tool/qt.py +0 -336
  635. data/ext/v8/upstream/scons/engine/SCons/Tool/rmic.py +0 -121
  636. data/ext/v8/upstream/scons/engine/SCons/Tool/rpcgen.py +0 -70
  637. data/ext/v8/upstream/scons/engine/SCons/Tool/rpm.py +0 -132
  638. data/ext/v8/upstream/scons/engine/SCons/Tool/sgiar.py +0 -68
  639. data/ext/v8/upstream/scons/engine/SCons/Tool/sgic++.py +0 -58
  640. data/ext/v8/upstream/scons/engine/SCons/Tool/sgicc.py +0 -53
  641. data/ext/v8/upstream/scons/engine/SCons/Tool/sgilink.py +0 -63
  642. data/ext/v8/upstream/scons/engine/SCons/Tool/sunar.py +0 -67
  643. data/ext/v8/upstream/scons/engine/SCons/Tool/sunc++.py +0 -142
  644. data/ext/v8/upstream/scons/engine/SCons/Tool/suncc.py +0 -58
  645. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf77.py +0 -63
  646. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf90.py +0 -64
  647. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf95.py +0 -64
  648. data/ext/v8/upstream/scons/engine/SCons/Tool/sunlink.py +0 -77
  649. data/ext/v8/upstream/scons/engine/SCons/Tool/swig.py +0 -186
  650. data/ext/v8/upstream/scons/engine/SCons/Tool/tar.py +0 -73
  651. data/ext/v8/upstream/scons/engine/SCons/Tool/tex.py +0 -805
  652. data/ext/v8/upstream/scons/engine/SCons/Tool/textfile.py +0 -175
  653. data/ext/v8/upstream/scons/engine/SCons/Tool/tlib.py +0 -53
  654. data/ext/v8/upstream/scons/engine/SCons/Tool/wix.py +0 -100
  655. data/ext/v8/upstream/scons/engine/SCons/Tool/yacc.py +0 -131
  656. data/ext/v8/upstream/scons/engine/SCons/Tool/zip.py +0 -100
  657. data/ext/v8/upstream/scons/engine/SCons/Util.py +0 -1645
  658. data/ext/v8/upstream/scons/engine/SCons/Variables/BoolVariable.py +0 -91
  659. data/ext/v8/upstream/scons/engine/SCons/Variables/EnumVariable.py +0 -107
  660. data/ext/v8/upstream/scons/engine/SCons/Variables/ListVariable.py +0 -139
  661. data/ext/v8/upstream/scons/engine/SCons/Variables/PackageVariable.py +0 -109
  662. data/ext/v8/upstream/scons/engine/SCons/Variables/PathVariable.py +0 -147
  663. data/ext/v8/upstream/scons/engine/SCons/Variables/__init__.py +0 -317
  664. data/ext/v8/upstream/scons/engine/SCons/Warnings.py +0 -228
  665. data/ext/v8/upstream/scons/engine/SCons/__init__.py +0 -49
  666. data/ext/v8/upstream/scons/engine/SCons/compat/__init__.py +0 -302
  667. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_UserString.py +0 -98
  668. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_hashlib.py +0 -91
  669. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_itertools.py +0 -124
  670. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_optparse.py +0 -1725
  671. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets.py +0 -583
  672. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets15.py +0 -176
  673. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_shlex.py +0 -325
  674. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_subprocess.py +0 -1296
  675. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_textwrap.py +0 -382
  676. data/ext/v8/upstream/scons/engine/SCons/compat/builtins.py +0 -187
  677. data/ext/v8/upstream/scons/engine/SCons/cpp.py +0 -598
  678. data/ext/v8/upstream/scons/engine/SCons/dblite.py +0 -248
  679. data/ext/v8/upstream/scons/engine/SCons/exitfuncs.py +0 -77
  680. data/ext/v8/upstream/scons/os_spawnv_fix.diff +0 -83
  681. data/ext/v8/upstream/scons/scons-time.1 +0 -1017
  682. data/ext/v8/upstream/scons/scons.1 +0 -15179
  683. data/ext/v8/upstream/scons/sconsign.1 +0 -208
  684. data/ext/v8/upstream/scons/script/scons +0 -184
  685. data/ext/v8/upstream/scons/script/scons-time +0 -1529
  686. data/ext/v8/upstream/scons/script/scons.bat +0 -31
  687. data/ext/v8/upstream/scons/script/sconsign +0 -508
  688. data/ext/v8/upstream/scons/setup.cfg +0 -6
  689. data/ext/v8/upstream/scons/setup.py +0 -427
  690. data/ext/v8/v8.cpp +0 -89
  691. data/ext/v8/v8_cxt.cpp +0 -92
  692. data/ext/v8/v8_cxt.h +0 -20
  693. data/ext/v8/v8_func.cpp +0 -10
  694. data/ext/v8/v8_func.h +0 -11
  695. data/ext/v8/v8_msg.cpp +0 -54
  696. data/ext/v8/v8_msg.h +0 -18
  697. data/ext/v8/v8_obj.cpp +0 -52
  698. data/ext/v8/v8_obj.h +0 -13
  699. data/ext/v8/v8_ref.cpp +0 -26
  700. data/ext/v8/v8_ref.h +0 -31
  701. data/ext/v8/v8_script.cpp +0 -20
  702. data/ext/v8/v8_script.h +0 -8
  703. data/ext/v8/v8_standalone.cpp +0 -69
  704. data/ext/v8/v8_standalone.h +0 -31
  705. data/ext/v8/v8_str.cpp +0 -17
  706. data/ext/v8/v8_str.h +0 -9
  707. data/ext/v8/v8_template.cpp +0 -53
  708. data/ext/v8/v8_template.h +0 -13
  709. data/lib/v8/to.rb +0 -33
  710. data/lib/v8/v8.so +0 -0
  711. data/script/console +0 -10
  712. data/script/destroy +0 -14
  713. data/script/generate +0 -14
  714. data/spec/ext/cxt_spec.rb +0 -25
  715. data/spec/ext/obj_spec.rb +0 -13
  716. data/spec/redjs/jsapi_spec.rb +0 -405
  717. data/spec/redjs/tap.rb +0 -8
  718. data/spec/redjs_helper.rb +0 -3
  719. data/spec/spec.opts +0 -1
  720. data/spec/v8/to_spec.rb +0 -15
  721. data/tasks/rspec.rake +0 -21
@@ -1,98 +0,0 @@
1
- // Copyright 2008 the V8 project authors. All rights reserved.
2
- // Redistribution and use in source and binary forms, with or without
3
- // modification, are permitted provided that the following conditions are
4
- // met:
5
- //
6
- // * Redistributions of source code must retain the above copyright
7
- // notice, this list of conditions and the following disclaimer.
8
- // * Redistributions in binary form must reproduce the above
9
- // copyright notice, this list of conditions and the following
10
- // disclaimer in the documentation and/or other materials provided
11
- // with the distribution.
12
- // * Neither the name of Google Inc. nor the names of its
13
- // contributors may be used to endorse or promote products derived
14
- // from this software without specific prior written permission.
15
- //
16
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
-
28
- #ifndef V8_COMPILATION_CACHE_H_
29
- #define V8_COMPILATION_CACHE_H_
30
-
31
- namespace v8 {
32
- namespace internal {
33
-
34
-
35
- // The compilation cache keeps function boilerplates for compiled
36
- // scripts and evals. The boilerplates are looked up using the source
37
- // string as the key. For regular expressions the compilation data is cached.
38
- class CompilationCache {
39
- public:
40
- // Finds the script function boilerplate for a source
41
- // string. Returns an empty handle if the cache doesn't contain a
42
- // script for the given source string with the right origin.
43
- static Handle<JSFunction> LookupScript(Handle<String> source,
44
- Handle<Object> name,
45
- int line_offset,
46
- int column_offset);
47
-
48
- // Finds the function boilerplate for a source string for eval in a
49
- // given context. Returns an empty handle if the cache doesn't
50
- // contain a script for the given source string.
51
- static Handle<JSFunction> LookupEval(Handle<String> source,
52
- Handle<Context> context,
53
- bool is_global);
54
-
55
- // Returns the regexp data associated with the given regexp if it
56
- // is in cache, otherwise an empty handle.
57
- static Handle<FixedArray> LookupRegExp(Handle<String> source,
58
- JSRegExp::Flags flags);
59
-
60
- // Associate the (source, kind) pair to the boilerplate. This may
61
- // overwrite an existing mapping.
62
- static void PutScript(Handle<String> source,
63
- Handle<JSFunction> boilerplate);
64
-
65
- // Associate the (source, context->closure()->shared(), kind) triple
66
- // with the boilerplate. This may overwrite an existing mapping.
67
- static void PutEval(Handle<String> source,
68
- Handle<Context> context,
69
- bool is_global,
70
- Handle<JSFunction> boilerplate);
71
-
72
- // Associate the (source, flags) pair to the given regexp data.
73
- // This may overwrite an existing mapping.
74
- static void PutRegExp(Handle<String> source,
75
- JSRegExp::Flags flags,
76
- Handle<FixedArray> data);
77
-
78
- // Clear the cache - also used to initialize the cache at startup.
79
- static void Clear();
80
-
81
- // GC support.
82
- static void Iterate(ObjectVisitor* v);
83
-
84
- // Notify the cache that a mark-sweep garbage collection is about to
85
- // take place. This is used to retire entries from the cache to
86
- // avoid keeping them alive too long without using them.
87
- static void MarkCompactPrologue();
88
-
89
- // Enable/disable compilation cache. Used by debugger to disable compilation
90
- // cache during debugging to make sure new scripts are always compiled.
91
- static void Enable();
92
- static void Disable();
93
- };
94
-
95
-
96
- } } // namespace v8::internal
97
-
98
- #endif // V8_COMPILATION_CACHE_H_
@@ -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