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,868 +0,0 @@
1
- """SCons.Builder
2
-
3
- Builder object subsystem.
4
-
5
- A Builder object is a callable that encapsulates information about how
6
- to execute actions to create a target Node (file) from source Nodes
7
- (files), and how to create those dependencies for tracking.
8
-
9
- The main entry point here is the Builder() factory method. This provides
10
- a procedural interface that creates the right underlying Builder object
11
- based on the keyword arguments supplied and the types of the arguments.
12
-
13
- The goal is for this external interface to be simple enough that the
14
- vast majority of users can create new Builders as necessary to support
15
- building new types of files in their configurations, without having to
16
- dive any deeper into this subsystem.
17
-
18
- The base class here is BuilderBase. This is a concrete base class which
19
- does, in fact, represent the Builder objects that we (or users) create.
20
-
21
- There is also a proxy that looks like a Builder:
22
-
23
- CompositeBuilder
24
-
25
- This proxies for a Builder with an action that is actually a
26
- dictionary that knows how to map file suffixes to a specific
27
- action. This is so that we can invoke different actions
28
- (compilers, compile options) for different flavors of source
29
- files.
30
-
31
- Builders and their proxies have the following public interface methods
32
- used by other modules:
33
-
34
- __call__()
35
- THE public interface. Calling a Builder object (with the
36
- use of internal helper methods) sets up the target and source
37
- dependencies, appropriate mapping to a specific action, and the
38
- environment manipulation necessary for overridden construction
39
- variable. This also takes care of warning about possible mistakes
40
- in keyword arguments.
41
-
42
- add_emitter()
43
- Adds an emitter for a specific file suffix, used by some Tool
44
- modules to specify that (for example) a yacc invocation on a .y
45
- can create a .h *and* a .c file.
46
-
47
- add_action()
48
- Adds an action for a specific file suffix, heavily used by
49
- Tool modules to add their specific action(s) for turning
50
- a source file into an object file to the global static
51
- and shared object file Builders.
52
-
53
- There are the following methods for internal use within this module:
54
-
55
- _execute()
56
- The internal method that handles the heavily lifting when a
57
- Builder is called. This is used so that the __call__() methods
58
- can set up warning about possible mistakes in keyword-argument
59
- overrides, and *then* execute all of the steps necessary so that
60
- the warnings only occur once.
61
-
62
- get_name()
63
- Returns the Builder's name within a specific Environment,
64
- primarily used to try to return helpful information in error
65
- messages.
66
-
67
- adjust_suffix()
68
- get_prefix()
69
- get_suffix()
70
- get_src_suffix()
71
- set_src_suffix()
72
- Miscellaneous stuff for handling the prefix and suffix
73
- manipulation we use in turning source file names into target
74
- file names.
75
-
76
- """
77
-
78
- #
79
- # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
80
- #
81
- # Permission is hereby granted, free of charge, to any person obtaining
82
- # a copy of this software and associated documentation files (the
83
- # "Software"), to deal in the Software without restriction, including
84
- # without limitation the rights to use, copy, modify, merge, publish,
85
- # distribute, sublicense, and/or sell copies of the Software, and to
86
- # permit persons to whom the Software is furnished to do so, subject to
87
- # the following conditions:
88
- #
89
- # The above copyright notice and this permission notice shall be included
90
- # in all copies or substantial portions of the Software.
91
- #
92
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
93
- # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
94
- # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
95
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
96
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
97
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
98
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
99
- #
100
-
101
- __revision__ = "src/engine/SCons/Builder.py 4629 2010/01/17 22:23:21 scons"
102
-
103
- import UserDict
104
- import UserList
105
-
106
- import SCons.Action
107
- from SCons.Debug import logInstanceCreation
108
- from SCons.Errors import InternalError, UserError
109
- import SCons.Executor
110
- import SCons.Memoize
111
- import SCons.Node
112
- import SCons.Node.FS
113
- import SCons.Util
114
- import SCons.Warnings
115
-
116
- class _Null:
117
- pass
118
-
119
- _null = _Null
120
-
121
- def match_splitext(path, suffixes = []):
122
- if suffixes:
123
- matchsuf = filter(lambda S,path=path: path[-len(S):] == S,
124
- suffixes)
125
- if matchsuf:
126
- suf = max(map(None, map(len, matchsuf), matchsuf))[1]
127
- return [path[:-len(suf)], path[-len(suf):]]
128
- return SCons.Util.splitext(path)
129
-
130
- class DictCmdGenerator(SCons.Util.Selector):
131
- """This is a callable class that can be used as a
132
- command generator function. It holds on to a dictionary
133
- mapping file suffixes to Actions. It uses that dictionary
134
- to return the proper action based on the file suffix of
135
- the source file."""
136
-
137
- def __init__(self, dict=None, source_ext_match=1):
138
- SCons.Util.Selector.__init__(self, dict)
139
- self.source_ext_match = source_ext_match
140
-
141
- def src_suffixes(self):
142
- return self.keys()
143
-
144
- def add_action(self, suffix, action):
145
- """Add a suffix-action pair to the mapping.
146
- """
147
- self[suffix] = action
148
-
149
- def __call__(self, target, source, env, for_signature):
150
- if not source:
151
- return []
152
-
153
- if self.source_ext_match:
154
- suffixes = self.src_suffixes()
155
- ext = None
156
- for src in map(str, source):
157
- my_ext = match_splitext(src, suffixes)[1]
158
- if ext and my_ext != ext:
159
- raise UserError("While building `%s' from `%s': Cannot build multiple sources with different extensions: %s, %s" % (repr(map(str, target)), src, ext, my_ext))
160
- ext = my_ext
161
- else:
162
- ext = match_splitext(str(source[0]), self.src_suffixes())[1]
163
-
164
- if not ext:
165
- #return ext
166
- raise UserError("While building `%s': Cannot deduce file extension from source files: %s" % (repr(map(str, target)), repr(map(str, source))))
167
-
168
- try:
169
- ret = SCons.Util.Selector.__call__(self, env, source, ext)
170
- except KeyError, e:
171
- raise UserError("Ambiguous suffixes after environment substitution: %s == %s == %s" % (e[0], e[1], e[2]))
172
- if ret is None:
173
- raise UserError("While building `%s' from `%s': Don't know how to build from a source file with suffix `%s'. Expected a suffix in this list: %s." % \
174
- (repr(map(str, target)), repr(map(str, source)), ext, repr(self.keys())))
175
- return ret
176
-
177
- class CallableSelector(SCons.Util.Selector):
178
- """A callable dictionary that will, in turn, call the value it
179
- finds if it can."""
180
- def __call__(self, env, source):
181
- value = SCons.Util.Selector.__call__(self, env, source)
182
- if callable(value):
183
- value = value(env, source)
184
- return value
185
-
186
- class DictEmitter(SCons.Util.Selector):
187
- """A callable dictionary that maps file suffixes to emitters.
188
- When called, it finds the right emitter in its dictionary for the
189
- suffix of the first source file, and calls that emitter to get the
190
- right lists of targets and sources to return. If there's no emitter
191
- for the suffix in its dictionary, the original target and source are
192
- returned.
193
- """
194
- def __call__(self, target, source, env):
195
- emitter = SCons.Util.Selector.__call__(self, env, source)
196
- if emitter:
197
- target, source = emitter(target, source, env)
198
- return (target, source)
199
-
200
- class ListEmitter(UserList.UserList):
201
- """A callable list of emitters that calls each in sequence,
202
- returning the result.
203
- """
204
- def __call__(self, target, source, env):
205
- for e in self.data:
206
- target, source = e(target, source, env)
207
- return (target, source)
208
-
209
- # These are a common errors when calling a Builder;
210
- # they are similar to the 'target' and 'source' keyword args to builders,
211
- # so we issue warnings when we see them. The warnings can, of course,
212
- # be disabled.
213
- misleading_keywords = {
214
- 'targets' : 'target',
215
- 'sources' : 'source',
216
- }
217
-
218
- class OverrideWarner(UserDict.UserDict):
219
- """A class for warning about keyword arguments that we use as
220
- overrides in a Builder call.
221
-
222
- This class exists to handle the fact that a single Builder call
223
- can actually invoke multiple builders. This class only emits the
224
- warnings once, no matter how many Builders are invoked.
225
- """
226
- def __init__(self, dict):
227
- UserDict.UserDict.__init__(self, dict)
228
- if __debug__: logInstanceCreation(self, 'Builder.OverrideWarner')
229
- self.already_warned = None
230
- def warn(self):
231
- if self.already_warned:
232
- return
233
- for k in self.keys():
234
- if misleading_keywords.has_key(k):
235
- alt = misleading_keywords[k]
236
- msg = "Did you mean to use `%s' instead of `%s'?" % (alt, k)
237
- SCons.Warnings.warn(SCons.Warnings.MisleadingKeywordsWarning, msg)
238
- self.already_warned = 1
239
-
240
- def Builder(**kw):
241
- """A factory for builder objects."""
242
- composite = None
243
- if kw.has_key('generator'):
244
- if kw.has_key('action'):
245
- raise UserError, "You must not specify both an action and a generator."
246
- kw['action'] = SCons.Action.CommandGeneratorAction(kw['generator'], {})
247
- del kw['generator']
248
- elif kw.has_key('action'):
249
- source_ext_match = kw.get('source_ext_match', 1)
250
- if kw.has_key('source_ext_match'):
251
- del kw['source_ext_match']
252
- if SCons.Util.is_Dict(kw['action']):
253
- composite = DictCmdGenerator(kw['action'], source_ext_match)
254
- kw['action'] = SCons.Action.CommandGeneratorAction(composite, {})
255
- kw['src_suffix'] = composite.src_suffixes()
256
- else:
257
- kw['action'] = SCons.Action.Action(kw['action'])
258
-
259
- if kw.has_key('emitter'):
260
- emitter = kw['emitter']
261
- if SCons.Util.is_String(emitter):
262
- # This allows users to pass in an Environment
263
- # variable reference (like "$FOO") as an emitter.
264
- # We will look in that Environment variable for
265
- # a callable to use as the actual emitter.
266
- var = SCons.Util.get_environment_var(emitter)
267
- if not var:
268
- raise UserError, "Supplied emitter '%s' does not appear to refer to an Environment variable" % emitter
269
- kw['emitter'] = EmitterProxy(var)
270
- elif SCons.Util.is_Dict(emitter):
271
- kw['emitter'] = DictEmitter(emitter)
272
- elif SCons.Util.is_List(emitter):
273
- kw['emitter'] = ListEmitter(emitter)
274
-
275
- result = apply(BuilderBase, (), kw)
276
-
277
- if not composite is None:
278
- result = CompositeBuilder(result, composite)
279
-
280
- return result
281
-
282
- def _node_errors(builder, env, tlist, slist):
283
- """Validate that the lists of target and source nodes are
284
- legal for this builder and environment. Raise errors or
285
- issue warnings as appropriate.
286
- """
287
-
288
- # First, figure out if there are any errors in the way the targets
289
- # were specified.
290
- for t in tlist:
291
- if t.side_effect:
292
- raise UserError, "Multiple ways to build the same target were specified for: %s" % t
293
- if t.has_explicit_builder():
294
- if not t.env is None and not t.env is env:
295
- action = t.builder.action
296
- t_contents = action.get_contents(tlist, slist, t.env)
297
- contents = action.get_contents(tlist, slist, env)
298
-
299
- if t_contents == contents:
300
- msg = "Two different environments were specified for target %s,\n\tbut they appear to have the same action: %s" % (t, action.genstring(tlist, slist, t.env))
301
- SCons.Warnings.warn(SCons.Warnings.DuplicateEnvironmentWarning, msg)
302
- else:
303
- msg = "Two environments with different actions were specified for the same target: %s" % t
304
- raise UserError, msg
305
- if builder.multi:
306
- if t.builder != builder:
307
- msg = "Two different builders (%s and %s) were specified for the same target: %s" % (t.builder.get_name(env), builder.get_name(env), t)
308
- raise UserError, msg
309
- # TODO(batch): list constructed each time!
310
- if t.get_executor().get_all_targets() != tlist:
311
- msg = "Two different target lists have a target in common: %s (from %s and from %s)" % (t, map(str, t.get_executor().get_all_targets()), map(str, tlist))
312
- raise UserError, msg
313
- elif t.sources != slist:
314
- msg = "Multiple ways to build the same target were specified for: %s (from %s and from %s)" % (t, map(str, t.sources), map(str, slist))
315
- raise UserError, msg
316
-
317
- if builder.single_source:
318
- if len(slist) > 1:
319
- raise UserError, "More than one source given for single-source builder: targets=%s sources=%s" % (map(str,tlist), map(str,slist))
320
-
321
- class EmitterProxy:
322
- """This is a callable class that can act as a
323
- Builder emitter. It holds on to a string that
324
- is a key into an Environment dictionary, and will
325
- look there at actual build time to see if it holds
326
- a callable. If so, we will call that as the actual
327
- emitter."""
328
- def __init__(self, var):
329
- self.var = SCons.Util.to_String(var)
330
-
331
- def __call__(self, target, source, env):
332
- emitter = self.var
333
-
334
- # Recursively substitute the variable.
335
- # We can't use env.subst() because it deals only
336
- # in strings. Maybe we should change that?
337
- while SCons.Util.is_String(emitter) and env.has_key(emitter):
338
- emitter = env[emitter]
339
- if callable(emitter):
340
- target, source = emitter(target, source, env)
341
- elif SCons.Util.is_List(emitter):
342
- for e in emitter:
343
- target, source = e(target, source, env)
344
-
345
- return (target, source)
346
-
347
-
348
- def __cmp__(self, other):
349
- return cmp(self.var, other.var)
350
-
351
- class BuilderBase:
352
- """Base class for Builders, objects that create output
353
- nodes (files) from input nodes (files).
354
- """
355
-
356
- if SCons.Memoize.use_memoizer:
357
- __metaclass__ = SCons.Memoize.Memoized_Metaclass
358
-
359
- memoizer_counters = []
360
-
361
- def __init__(self, action = None,
362
- prefix = '',
363
- suffix = '',
364
- src_suffix = '',
365
- target_factory = None,
366
- source_factory = None,
367
- target_scanner = None,
368
- source_scanner = None,
369
- emitter = None,
370
- multi = 0,
371
- env = None,
372
- single_source = 0,
373
- name = None,
374
- chdir = _null,
375
- is_explicit = 1,
376
- src_builder = None,
377
- ensure_suffix = False,
378
- **overrides):
379
- if __debug__: logInstanceCreation(self, 'Builder.BuilderBase')
380
- self._memo = {}
381
- self.action = action
382
- self.multi = multi
383
- if SCons.Util.is_Dict(prefix):
384
- prefix = CallableSelector(prefix)
385
- self.prefix = prefix
386
- if SCons.Util.is_Dict(suffix):
387
- suffix = CallableSelector(suffix)
388
- self.env = env
389
- self.single_source = single_source
390
- if overrides.has_key('overrides'):
391
- SCons.Warnings.warn(SCons.Warnings.DeprecatedWarning,
392
- "The \"overrides\" keyword to Builder() creation has been deprecated;\n" +\
393
- "\tspecify the items as keyword arguments to the Builder() call instead.")
394
- overrides.update(overrides['overrides'])
395
- del overrides['overrides']
396
- if overrides.has_key('scanner'):
397
- SCons.Warnings.warn(SCons.Warnings.DeprecatedWarning,
398
- "The \"scanner\" keyword to Builder() creation has been deprecated;\n"
399
- "\tuse: source_scanner or target_scanner as appropriate.")
400
- del overrides['scanner']
401
- self.overrides = overrides
402
-
403
- self.set_suffix(suffix)
404
- self.set_src_suffix(src_suffix)
405
- self.ensure_suffix = ensure_suffix
406
-
407
- self.target_factory = target_factory
408
- self.source_factory = source_factory
409
- self.target_scanner = target_scanner
410
- self.source_scanner = source_scanner
411
-
412
- self.emitter = emitter
413
-
414
- # Optional Builder name should only be used for Builders
415
- # that don't get attached to construction environments.
416
- if name:
417
- self.name = name
418
- self.executor_kw = {}
419
- if not chdir is _null:
420
- self.executor_kw['chdir'] = chdir
421
- self.is_explicit = is_explicit
422
-
423
- if src_builder is None:
424
- src_builder = []
425
- elif not SCons.Util.is_List(src_builder):
426
- src_builder = [ src_builder ]
427
- self.src_builder = src_builder
428
-
429
- def __nonzero__(self):
430
- raise InternalError, "Do not test for the Node.builder attribute directly; use Node.has_builder() instead"
431
-
432
- def get_name(self, env):
433
- """Attempts to get the name of the Builder.
434
-
435
- Look at the BUILDERS variable of env, expecting it to be a
436
- dictionary containing this Builder, and return the key of the
437
- dictionary. If there's no key, then return a directly-configured
438
- name (if there is one) or the name of the class (by default)."""
439
-
440
- try:
441
- index = env['BUILDERS'].values().index(self)
442
- return env['BUILDERS'].keys()[index]
443
- except (AttributeError, KeyError, TypeError, ValueError):
444
- try:
445
- return self.name
446
- except AttributeError:
447
- return str(self.__class__)
448
-
449
- def __cmp__(self, other):
450
- return cmp(self.__dict__, other.__dict__)
451
-
452
- def splitext(self, path, env=None):
453
- if not env:
454
- env = self.env
455
- if env:
456
- suffixes = self.src_suffixes(env)
457
- else:
458
- suffixes = []
459
- return match_splitext(path, suffixes)
460
-
461
- def _adjustixes(self, files, pre, suf, ensure_suffix=False):
462
- if not files:
463
- return []
464
- result = []
465
- if not SCons.Util.is_List(files):
466
- files = [files]
467
-
468
- for f in files:
469
- if SCons.Util.is_String(f):
470
- f = SCons.Util.adjustixes(f, pre, suf, ensure_suffix)
471
- result.append(f)
472
- return result
473
-
474
- def _create_nodes(self, env, target = None, source = None):
475
- """Create and return lists of target and source nodes.
476
- """
477
- src_suf = self.get_src_suffix(env)
478
-
479
- target_factory = env.get_factory(self.target_factory)
480
- source_factory = env.get_factory(self.source_factory)
481
-
482
- source = self._adjustixes(source, None, src_suf)
483
- slist = env.arg2nodes(source, source_factory)
484
-
485
- pre = self.get_prefix(env, slist)
486
- suf = self.get_suffix(env, slist)
487
-
488
- if target is None:
489
- try:
490
- t_from_s = slist[0].target_from_source
491
- except AttributeError:
492
- raise UserError("Do not know how to create a target from source `%s'" % slist[0])
493
- except IndexError:
494
- tlist = []
495
- else:
496
- splitext = lambda S,self=self,env=env: self.splitext(S,env)
497
- tlist = [ t_from_s(pre, suf, splitext) ]
498
- else:
499
- target = self._adjustixes(target, pre, suf, self.ensure_suffix)
500
- tlist = env.arg2nodes(target, target_factory, target=target, source=source)
501
-
502
- if self.emitter:
503
- # The emitter is going to do str(node), but because we're
504
- # being called *from* a builder invocation, the new targets
505
- # don't yet have a builder set on them and will look like
506
- # source files. Fool the emitter's str() calls by setting
507
- # up a temporary builder on the new targets.
508
- new_targets = []
509
- for t in tlist:
510
- if not t.is_derived():
511
- t.builder_set(self)
512
- new_targets.append(t)
513
-
514
- orig_tlist = tlist[:]
515
- orig_slist = slist[:]
516
-
517
- target, source = self.emitter(target=tlist, source=slist, env=env)
518
-
519
- # Now delete the temporary builders that we attached to any
520
- # new targets, so that _node_errors() doesn't do weird stuff
521
- # to them because it thinks they already have builders.
522
- for t in new_targets:
523
- if t.builder is self:
524
- # Only delete the temporary builder if the emitter
525
- # didn't change it on us.
526
- t.builder_set(None)
527
-
528
- # Have to call arg2nodes yet again, since it is legal for
529
- # emitters to spit out strings as well as Node instances.
530
- tlist = env.arg2nodes(target, target_factory,
531
- target=orig_tlist, source=orig_slist)
532
- slist = env.arg2nodes(source, source_factory,
533
- target=orig_tlist, source=orig_slist)
534
-
535
- return tlist, slist
536
-
537
- def _execute(self, env, target, source, overwarn={}, executor_kw={}):
538
- # We now assume that target and source are lists or None.
539
- if self.src_builder:
540
- source = self.src_builder_sources(env, source, overwarn)
541
-
542
- if self.single_source and len(source) > 1 and target is None:
543
- result = []
544
- if target is None: target = [None]*len(source)
545
- for tgt, src in zip(target, source):
546
- if not tgt is None: tgt = [tgt]
547
- if not src is None: src = [src]
548
- result.extend(self._execute(env, tgt, src, overwarn))
549
- return SCons.Node.NodeList(result)
550
-
551
- overwarn.warn()
552
-
553
- tlist, slist = self._create_nodes(env, target, source)
554
-
555
- # Check for errors with the specified target/source lists.
556
- _node_errors(self, env, tlist, slist)
557
-
558
- # The targets are fine, so find or make the appropriate Executor to
559
- # build this particular list of targets from this particular list of
560
- # sources.
561
-
562
- executor = None
563
- key = None
564
-
565
- if self.multi:
566
- try:
567
- executor = tlist[0].get_executor(create = 0)
568
- except (AttributeError, IndexError):
569
- pass
570
- else:
571
- executor.add_sources(slist)
572
-
573
- if executor is None:
574
- if not self.action:
575
- fmt = "Builder %s must have an action to build %s."
576
- raise UserError, fmt % (self.get_name(env or self.env),
577
- map(str,tlist))
578
- key = self.action.batch_key(env or self.env, tlist, slist)
579
- if key:
580
- try:
581
- executor = SCons.Executor.GetBatchExecutor(key)
582
- except KeyError:
583
- pass
584
- else:
585
- executor.add_batch(tlist, slist)
586
-
587
- if executor is None:
588
- executor = SCons.Executor.Executor(self.action, env, [],
589
- tlist, slist, executor_kw)
590
- if key:
591
- SCons.Executor.AddBatchExecutor(key, executor)
592
-
593
- # Now set up the relevant information in the target Nodes themselves.
594
- for t in tlist:
595
- t.cwd = env.fs.getcwd()
596
- t.builder_set(self)
597
- t.env_set(env)
598
- t.add_source(slist)
599
- t.set_executor(executor)
600
- t.set_explicit(self.is_explicit)
601
-
602
- return SCons.Node.NodeList(tlist)
603
-
604
- def __call__(self, env, target=None, source=None, chdir=_null, **kw):
605
- # We now assume that target and source are lists or None.
606
- # The caller (typically Environment.BuilderWrapper) is
607
- # responsible for converting any scalar values to lists.
608
- if chdir is _null:
609
- ekw = self.executor_kw
610
- else:
611
- ekw = self.executor_kw.copy()
612
- ekw['chdir'] = chdir
613
- if kw:
614
- if kw.has_key('srcdir'):
615
- def prependDirIfRelative(f, srcdir=kw['srcdir']):
616
- import os.path
617
- if SCons.Util.is_String(f) and not os.path.isabs(f):
618
- f = os.path.join(srcdir, f)
619
- return f
620
- if not SCons.Util.is_List(source):
621
- source = [source]
622
- source = map(prependDirIfRelative, source)
623
- del kw['srcdir']
624
- if self.overrides:
625
- env_kw = self.overrides.copy()
626
- env_kw.update(kw)
627
- else:
628
- env_kw = kw
629
- else:
630
- env_kw = self.overrides
631
- env = env.Override(env_kw)
632
- return self._execute(env, target, source, OverrideWarner(kw), ekw)
633
-
634
- def adjust_suffix(self, suff):
635
- if suff and not suff[0] in [ '.', '_', '$' ]:
636
- return '.' + suff
637
- return suff
638
-
639
- def get_prefix(self, env, sources=[]):
640
- prefix = self.prefix
641
- if callable(prefix):
642
- prefix = prefix(env, sources)
643
- return env.subst(prefix)
644
-
645
- def set_suffix(self, suffix):
646
- if not callable(suffix):
647
- suffix = self.adjust_suffix(suffix)
648
- self.suffix = suffix
649
-
650
- def get_suffix(self, env, sources=[]):
651
- suffix = self.suffix
652
- if callable(suffix):
653
- suffix = suffix(env, sources)
654
- return env.subst(suffix)
655
-
656
- def set_src_suffix(self, src_suffix):
657
- if not src_suffix:
658
- src_suffix = []
659
- elif not SCons.Util.is_List(src_suffix):
660
- src_suffix = [ src_suffix ]
661
- adjust = lambda suf, s=self: \
662
- callable(suf) and suf or s.adjust_suffix(suf)
663
- self.src_suffix = map(adjust, src_suffix)
664
-
665
- def get_src_suffix(self, env):
666
- """Get the first src_suffix in the list of src_suffixes."""
667
- ret = self.src_suffixes(env)
668
- if not ret:
669
- return ''
670
- return ret[0]
671
-
672
- def add_emitter(self, suffix, emitter):
673
- """Add a suffix-emitter mapping to this Builder.
674
-
675
- This assumes that emitter has been initialized with an
676
- appropriate dictionary type, and will throw a TypeError if
677
- not, so the caller is responsible for knowing that this is an
678
- appropriate method to call for the Builder in question.
679
- """
680
- self.emitter[suffix] = emitter
681
-
682
- def add_src_builder(self, builder):
683
- """
684
- Add a new Builder to the list of src_builders.
685
-
686
- This requires wiping out cached values so that the computed
687
- lists of source suffixes get re-calculated.
688
- """
689
- self._memo = {}
690
- self.src_builder.append(builder)
691
-
692
- def _get_sdict(self, env):
693
- """
694
- Returns a dictionary mapping all of the source suffixes of all
695
- src_builders of this Builder to the underlying Builder that
696
- should be called first.
697
-
698
- This dictionary is used for each target specified, so we save a
699
- lot of extra computation by memoizing it for each construction
700
- environment.
701
-
702
- Note that this is re-computed each time, not cached, because there
703
- might be changes to one of our source Builders (or one of their
704
- source Builders, and so on, and so on...) that we can't "see."
705
-
706
- The underlying methods we call cache their computed values,
707
- though, so we hope repeatedly aggregating them into a dictionary
708
- like this won't be too big a hit. We may need to look for a
709
- better way to do this if performance data show this has turned
710
- into a significant bottleneck.
711
- """
712
- sdict = {}
713
- for bld in self.get_src_builders(env):
714
- for suf in bld.src_suffixes(env):
715
- sdict[suf] = bld
716
- return sdict
717
-
718
- def src_builder_sources(self, env, source, overwarn={}):
719
- sdict = self._get_sdict(env)
720
-
721
- src_suffixes = self.src_suffixes(env)
722
-
723
- lengths = list(set(map(len, src_suffixes)))
724
-
725
- def match_src_suffix(name, src_suffixes=src_suffixes, lengths=lengths):
726
- node_suffixes = map(lambda l, n=name: n[-l:], lengths)
727
- for suf in src_suffixes:
728
- if suf in node_suffixes:
729
- return suf
730
- return None
731
-
732
- result = []
733
- for s in SCons.Util.flatten(source):
734
- if SCons.Util.is_String(s):
735
- match_suffix = match_src_suffix(env.subst(s))
736
- if not match_suffix and not '.' in s:
737
- src_suf = self.get_src_suffix(env)
738
- s = self._adjustixes(s, None, src_suf)[0]
739
- else:
740
- match_suffix = match_src_suffix(s.name)
741
- if match_suffix:
742
- try:
743
- bld = sdict[match_suffix]
744
- except KeyError:
745
- result.append(s)
746
- else:
747
- tlist = bld._execute(env, None, [s], overwarn)
748
- # If the subsidiary Builder returned more than one
749
- # target, then filter out any sources that this
750
- # Builder isn't capable of building.
751
- if len(tlist) > 1:
752
- mss = lambda t, m=match_src_suffix: m(t.name)
753
- tlist = filter(mss, tlist)
754
- result.extend(tlist)
755
- else:
756
- result.append(s)
757
-
758
- source_factory = env.get_factory(self.source_factory)
759
-
760
- return env.arg2nodes(result, source_factory)
761
-
762
- def _get_src_builders_key(self, env):
763
- return id(env)
764
-
765
- memoizer_counters.append(SCons.Memoize.CountDict('get_src_builders', _get_src_builders_key))
766
-
767
- def get_src_builders(self, env):
768
- """
769
- Returns the list of source Builders for this Builder.
770
-
771
- This exists mainly to look up Builders referenced as
772
- strings in the 'BUILDER' variable of the construction
773
- environment and cache the result.
774
- """
775
- memo_key = id(env)
776
- try:
777
- memo_dict = self._memo['get_src_builders']
778
- except KeyError:
779
- memo_dict = {}
780
- self._memo['get_src_builders'] = memo_dict
781
- else:
782
- try:
783
- return memo_dict[memo_key]
784
- except KeyError:
785
- pass
786
-
787
- builders = []
788
- for bld in self.src_builder:
789
- if SCons.Util.is_String(bld):
790
- try:
791
- bld = env['BUILDERS'][bld]
792
- except KeyError:
793
- continue
794
- builders.append(bld)
795
-
796
- memo_dict[memo_key] = builders
797
- return builders
798
-
799
- def _subst_src_suffixes_key(self, env):
800
- return id(env)
801
-
802
- memoizer_counters.append(SCons.Memoize.CountDict('subst_src_suffixes', _subst_src_suffixes_key))
803
-
804
- def subst_src_suffixes(self, env):
805
- """
806
- The suffix list may contain construction variable expansions,
807
- so we have to evaluate the individual strings. To avoid doing
808
- this over and over, we memoize the results for each construction
809
- environment.
810
- """
811
- memo_key = id(env)
812
- try:
813
- memo_dict = self._memo['subst_src_suffixes']
814
- except KeyError:
815
- memo_dict = {}
816
- self._memo['subst_src_suffixes'] = memo_dict
817
- else:
818
- try:
819
- return memo_dict[memo_key]
820
- except KeyError:
821
- pass
822
- suffixes = map(lambda x, s=self, e=env: e.subst(x), self.src_suffix)
823
- memo_dict[memo_key] = suffixes
824
- return suffixes
825
-
826
- def src_suffixes(self, env):
827
- """
828
- Returns the list of source suffixes for all src_builders of this
829
- Builder.
830
-
831
- This is essentially a recursive descent of the src_builder "tree."
832
- (This value isn't cached because there may be changes in a
833
- src_builder many levels deep that we can't see.)
834
- """
835
- sdict = {}
836
- suffixes = self.subst_src_suffixes(env)
837
- for s in suffixes:
838
- sdict[s] = 1
839
- for builder in self.get_src_builders(env):
840
- for s in builder.src_suffixes(env):
841
- if not sdict.has_key(s):
842
- sdict[s] = 1
843
- suffixes.append(s)
844
- return suffixes
845
-
846
- class CompositeBuilder(SCons.Util.Proxy):
847
- """A Builder Proxy whose main purpose is to always have
848
- a DictCmdGenerator as its action, and to provide access
849
- to the DictCmdGenerator's add_action() method.
850
- """
851
-
852
- def __init__(self, builder, cmdgen):
853
- if __debug__: logInstanceCreation(self, 'Builder.CompositeBuilder')
854
- SCons.Util.Proxy.__init__(self, builder)
855
-
856
- # cmdgen should always be an instance of DictCmdGenerator.
857
- self.cmdgen = cmdgen
858
- self.builder = builder
859
-
860
- def add_action(self, suffix, action):
861
- self.cmdgen.add_action(suffix, action)
862
- self.set_src_suffix(self.cmdgen.src_suffixes())
863
-
864
- # Local Variables:
865
- # tab-width:4
866
- # indent-tabs-mode:nil
867
- # End:
868
- # vim: set expandtab tabstop=4 shiftwidth=4: