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,944 +0,0 @@
1
- #
2
- # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
3
- #
4
- # Permission is hereby granted, free of charge, to any person obtaining
5
- # a copy of this software and associated documentation files (the
6
- # "Software"), to deal in the Software without restriction, including
7
- # without limitation the rights to use, copy, modify, merge, publish,
8
- # distribute, sublicense, and/or sell copies of the Software, and to
9
- # permit persons to whom the Software is furnished to do so, subject to
10
- # the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included
13
- # in all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
16
- # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
17
- # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
- #
23
-
24
- __revision__ = "src/engine/SCons/Script/SConsOptions.py 4629 2010/01/17 22:23:21 scons"
25
-
26
- import optparse
27
- import re
28
- import string
29
- import sys
30
- import textwrap
31
-
32
- try:
33
- no_hyphen_re = re.compile(r'(\s+|(?<=[\w\!\"\'\&\.\,\?])-{2,}(?=\w))')
34
- except re.error:
35
- # Pre-2.0 Python versions don't have the (?<= negative
36
- # look-behind assertion.
37
- no_hyphen_re = re.compile(r'(\s+|-*\w{2,}-(?=\w{2,}))')
38
-
39
- try:
40
- from gettext import gettext
41
- except ImportError:
42
- def gettext(message):
43
- return message
44
- _ = gettext
45
-
46
- import SCons.Node.FS
47
- import SCons.Warnings
48
-
49
- OptionValueError = optparse.OptionValueError
50
- SUPPRESS_HELP = optparse.SUPPRESS_HELP
51
-
52
- diskcheck_all = SCons.Node.FS.diskcheck_types()
53
-
54
- def diskcheck_convert(value):
55
- if value is None:
56
- return []
57
- if not SCons.Util.is_List(value):
58
- value = string.split(value, ',')
59
- result = []
60
- for v in map(string.lower, value):
61
- if v == 'all':
62
- result = diskcheck_all
63
- elif v == 'none':
64
- result = []
65
- elif v in diskcheck_all:
66
- result.append(v)
67
- else:
68
- raise ValueError, v
69
- return result
70
-
71
- class SConsValues(optparse.Values):
72
- """
73
- Holder class for uniform access to SCons options, regardless
74
- of whether or not they can be set on the command line or in the
75
- SConscript files (using the SetOption() function).
76
-
77
- A SCons option value can originate three different ways:
78
-
79
- 1) set on the command line;
80
- 2) set in an SConscript file;
81
- 3) the default setting (from the the op.add_option()
82
- calls in the Parser() function, below).
83
-
84
- The command line always overrides a value set in a SConscript file,
85
- which in turn always overrides default settings. Because we want
86
- to support user-specified options in the SConscript file itself,
87
- though, we may not know about all of the options when the command
88
- line is first parsed, so we can't make all the necessary precedence
89
- decisions at the time the option is configured.
90
-
91
- The solution implemented in this class is to keep these different sets
92
- of settings separate (command line, SConscript file, and default)
93
- and to override the __getattr__() method to check them in turn.
94
- This should allow the rest of the code to just fetch values as
95
- attributes of an instance of this class, without having to worry
96
- about where they came from.
97
-
98
- Note that not all command line options are settable from SConscript
99
- files, and the ones that are must be explicitly added to the
100
- "settable" list in this class, and optionally validated and coerced
101
- in the set_option() method.
102
- """
103
-
104
- def __init__(self, defaults):
105
- self.__dict__['__defaults__'] = defaults
106
- self.__dict__['__SConscript_settings__'] = {}
107
-
108
- def __getattr__(self, attr):
109
- """
110
- Fetches an options value, checking first for explicit settings
111
- from the command line (which are direct attributes), then the
112
- SConscript file settings, then the default values.
113
- """
114
- try:
115
- return self.__dict__[attr]
116
- except KeyError:
117
- try:
118
- return self.__dict__['__SConscript_settings__'][attr]
119
- except KeyError:
120
- return getattr(self.__dict__['__defaults__'], attr)
121
-
122
- settable = [
123
- 'clean',
124
- 'diskcheck',
125
- 'duplicate',
126
- 'help',
127
- 'implicit_cache',
128
- 'max_drift',
129
- 'md5_chunksize',
130
- 'no_exec',
131
- 'num_jobs',
132
- 'random',
133
- 'stack_size',
134
- 'warn',
135
- ]
136
-
137
- def set_option(self, name, value):
138
- """
139
- Sets an option from an SConscript file.
140
- """
141
- if not name in self.settable:
142
- raise SCons.Errors.UserError, "This option is not settable from a SConscript file: %s"%name
143
-
144
- if name == 'num_jobs':
145
- try:
146
- value = int(value)
147
- if value < 1:
148
- raise ValueError
149
- except ValueError:
150
- raise SCons.Errors.UserError, "A positive integer is required: %s"%repr(value)
151
- elif name == 'max_drift':
152
- try:
153
- value = int(value)
154
- except ValueError:
155
- raise SCons.Errors.UserError, "An integer is required: %s"%repr(value)
156
- elif name == 'duplicate':
157
- try:
158
- value = str(value)
159
- except ValueError:
160
- raise SCons.Errors.UserError, "A string is required: %s"%repr(value)
161
- if not value in SCons.Node.FS.Valid_Duplicates:
162
- raise SCons.Errors.UserError, "Not a valid duplication style: %s" % value
163
- # Set the duplicate style right away so it can affect linking
164
- # of SConscript files.
165
- SCons.Node.FS.set_duplicate(value)
166
- elif name == 'diskcheck':
167
- try:
168
- value = diskcheck_convert(value)
169
- except ValueError, v:
170
- raise SCons.Errors.UserError, "Not a valid diskcheck value: %s"%v
171
- if not self.__dict__.has_key('diskcheck'):
172
- # No --diskcheck= option was specified on the command line.
173
- # Set this right away so it can affect the rest of the
174
- # file/Node lookups while processing the SConscript files.
175
- SCons.Node.FS.set_diskcheck(value)
176
- elif name == 'stack_size':
177
- try:
178
- value = int(value)
179
- except ValueError:
180
- raise SCons.Errors.UserError, "An integer is required: %s"%repr(value)
181
- elif name == 'md5_chunksize':
182
- try:
183
- value = int(value)
184
- except ValueError:
185
- raise SCons.Errors.UserError, "An integer is required: %s"%repr(value)
186
- elif name == 'warn':
187
- if SCons.Util.is_String(value):
188
- value = [value]
189
- value = self.__SConscript_settings__.get(name, []) + value
190
- SCons.Warnings.process_warn_strings(value)
191
-
192
- self.__SConscript_settings__[name] = value
193
-
194
- class SConsOption(optparse.Option):
195
- def convert_value(self, opt, value):
196
- if value is not None:
197
- if self.nargs in (1, '?'):
198
- return self.check_value(opt, value)
199
- else:
200
- return tuple(map(lambda v, o=opt, s=self: s.check_value(o, v), value))
201
-
202
- def process(self, opt, value, values, parser):
203
-
204
- # First, convert the value(s) to the right type. Howl if any
205
- # value(s) are bogus.
206
- value = self.convert_value(opt, value)
207
-
208
- # And then take whatever action is expected of us.
209
- # This is a separate method to make life easier for
210
- # subclasses to add new actions.
211
- return self.take_action(
212
- self.action, self.dest, opt, value, values, parser)
213
-
214
- def _check_nargs_optional(self):
215
- if self.nargs == '?' and self._short_opts:
216
- fmt = "option %s: nargs='?' is incompatible with short options"
217
- raise SCons.Errors.UserError, fmt % self._short_opts[0]
218
-
219
- try:
220
- _orig_CONST_ACTIONS = optparse.Option.CONST_ACTIONS
221
-
222
- _orig_CHECK_METHODS = optparse.Option.CHECK_METHODS
223
-
224
- except AttributeError:
225
- # optparse.Option had no CONST_ACTIONS before Python 2.5.
226
-
227
- _orig_CONST_ACTIONS = ("store_const",)
228
-
229
- def _check_const(self):
230
- if self.action not in self.CONST_ACTIONS and self.const is not None:
231
- raise OptionError(
232
- "'const' must not be supplied for action %r" % self.action,
233
- self)
234
-
235
- # optparse.Option collects its list of unbound check functions
236
- # up front. This sucks because it means we can't just override
237
- # the _check_const() function like a normal method, we have to
238
- # actually replace it in the list. This seems to be the most
239
- # straightforward way to do that.
240
-
241
- _orig_CHECK_METHODS = [optparse.Option._check_action,
242
- optparse.Option._check_type,
243
- optparse.Option._check_choice,
244
- optparse.Option._check_dest,
245
- _check_const,
246
- optparse.Option._check_nargs,
247
- optparse.Option._check_callback]
248
-
249
- CHECK_METHODS = _orig_CHECK_METHODS + [_check_nargs_optional]
250
-
251
- CONST_ACTIONS = _orig_CONST_ACTIONS + optparse.Option.TYPED_ACTIONS
252
-
253
- class SConsOptionGroup(optparse.OptionGroup):
254
- """
255
- A subclass for SCons-specific option groups.
256
-
257
- The only difference between this and the base class is that we print
258
- the group's help text flush left, underneath their own title but
259
- lined up with the normal "SCons Options".
260
- """
261
- def format_help(self, formatter):
262
- """
263
- Format an option group's help text, outdenting the title so it's
264
- flush with the "SCons Options" title we print at the top.
265
- """
266
- formatter.dedent()
267
- result = formatter.format_heading(self.title)
268
- formatter.indent()
269
- result = result + optparse.OptionContainer.format_help(self, formatter)
270
- return result
271
-
272
- class SConsOptionParser(optparse.OptionParser):
273
- preserve_unknown_options = False
274
-
275
- def error(self, msg):
276
- self.print_usage(sys.stderr)
277
- sys.stderr.write("SCons error: %s\n" % msg)
278
- sys.exit(2)
279
-
280
- def _process_long_opt(self, rargs, values):
281
- """
282
- SCons-specific processing of long options.
283
-
284
- This is copied directly from the normal
285
- optparse._process_long_opt() method, except that, if configured
286
- to do so, we catch the exception thrown when an unknown option
287
- is encountered and just stick it back on the "leftover" arguments
288
- for later (re-)processing.
289
- """
290
- arg = rargs.pop(0)
291
-
292
- # Value explicitly attached to arg? Pretend it's the next
293
- # argument.
294
- if "=" in arg:
295
- (opt, next_arg) = string.split(arg, "=", 1)
296
- rargs.insert(0, next_arg)
297
- had_explicit_value = True
298
- else:
299
- opt = arg
300
- had_explicit_value = False
301
-
302
- try:
303
- opt = self._match_long_opt(opt)
304
- except optparse.BadOptionError:
305
- if self.preserve_unknown_options:
306
- # SCons-specific: if requested, add unknown options to
307
- # the "leftover arguments" list for later processing.
308
- self.largs.append(arg)
309
- if had_explicit_value:
310
- # The unknown option will be re-processed later,
311
- # so undo the insertion of the explicit value.
312
- rargs.pop(0)
313
- return
314
- raise
315
-
316
- option = self._long_opt[opt]
317
- if option.takes_value():
318
- nargs = option.nargs
319
- if nargs == '?':
320
- if had_explicit_value:
321
- value = rargs.pop(0)
322
- else:
323
- value = option.const
324
- elif len(rargs) < nargs:
325
- if nargs == 1:
326
- self.error(_("%s option requires an argument") % opt)
327
- else:
328
- self.error(_("%s option requires %d arguments")
329
- % (opt, nargs))
330
- elif nargs == 1:
331
- value = rargs.pop(0)
332
- else:
333
- value = tuple(rargs[0:nargs])
334
- del rargs[0:nargs]
335
-
336
- elif had_explicit_value:
337
- self.error(_("%s option does not take a value") % opt)
338
-
339
- else:
340
- value = None
341
-
342
- option.process(opt, value, values, self)
343
-
344
- def add_local_option(self, *args, **kw):
345
- """
346
- Adds a local option to the parser.
347
-
348
- This is initiated by a SetOption() call to add a user-defined
349
- command-line option. We add the option to a separate option
350
- group for the local options, creating the group if necessary.
351
- """
352
- try:
353
- group = self.local_option_group
354
- except AttributeError:
355
- group = SConsOptionGroup(self, 'Local Options')
356
- group = self.add_option_group(group)
357
- self.local_option_group = group
358
-
359
- result = apply(group.add_option, args, kw)
360
-
361
- if result:
362
- # The option was added succesfully. We now have to add the
363
- # default value to our object that holds the default values
364
- # (so that an attempt to fetch the option's attribute will
365
- # yield the default value when not overridden) and then
366
- # we re-parse the leftover command-line options, so that
367
- # any value overridden on the command line is immediately
368
- # available if the user turns around and does a GetOption()
369
- # right away.
370
- setattr(self.values.__defaults__, result.dest, result.default)
371
- self.parse_args(self.largs, self.values)
372
-
373
- return result
374
-
375
- class SConsIndentedHelpFormatter(optparse.IndentedHelpFormatter):
376
- def format_usage(self, usage):
377
- return "usage: %s\n" % usage
378
-
379
- def format_heading(self, heading):
380
- """
381
- This translates any heading of "options" or "Options" into
382
- "SCons Options." Unfortunately, we have to do this here,
383
- because those titles are hard-coded in the optparse calls.
384
- """
385
- if heading == 'options':
386
- # The versions of optparse.py shipped with Pythons 2.3 and
387
- # 2.4 pass this in uncapitalized; override that so we get
388
- # consistent output on all versions.
389
- heading = "Options"
390
- if heading == 'Options':
391
- heading = "SCons Options"
392
- return optparse.IndentedHelpFormatter.format_heading(self, heading)
393
-
394
- def format_option(self, option):
395
- """
396
- A copy of the normal optparse.IndentedHelpFormatter.format_option()
397
- method. This has been snarfed so we can modify text wrapping to
398
- out liking:
399
-
400
- -- add our own regular expression that doesn't break on hyphens
401
- (so things like --no-print-directory don't get broken);
402
-
403
- -- wrap the list of options themselves when it's too long
404
- (the wrapper.fill(opts) call below);
405
-
406
- -- set the subsequent_indent when wrapping the help_text.
407
- """
408
- # The help for each option consists of two parts:
409
- # * the opt strings and metavars
410
- # eg. ("-x", or "-fFILENAME, --file=FILENAME")
411
- # * the user-supplied help string
412
- # eg. ("turn on expert mode", "read data from FILENAME")
413
- #
414
- # If possible, we write both of these on the same line:
415
- # -x turn on expert mode
416
- #
417
- # But if the opt string list is too long, we put the help
418
- # string on a second line, indented to the same column it would
419
- # start in if it fit on the first line.
420
- # -fFILENAME, --file=FILENAME
421
- # read data from FILENAME
422
- result = []
423
-
424
- try:
425
- opts = self.option_strings[option]
426
- except AttributeError:
427
- # The Python 2.3 version of optparse attaches this to
428
- # to the option argument, not to this object.
429
- opts = option.option_strings
430
-
431
- opt_width = self.help_position - self.current_indent - 2
432
- if len(opts) > opt_width:
433
- wrapper = textwrap.TextWrapper(width=self.width,
434
- initial_indent = ' ',
435
- subsequent_indent = ' ')
436
- wrapper.wordsep_re = no_hyphen_re
437
- opts = wrapper.fill(opts) + '\n'
438
- indent_first = self.help_position
439
- else: # start help on same line as opts
440
- opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
441
- indent_first = 0
442
- result.append(opts)
443
- if option.help:
444
-
445
- try:
446
- expand_default = self.expand_default
447
- except AttributeError:
448
- # The HelpFormatter base class in the Python 2.3 version
449
- # of optparse has no expand_default() method.
450
- help_text = option.help
451
- else:
452
- help_text = expand_default(option)
453
-
454
- # SCons: indent every line of the help text but the first.
455
- wrapper = textwrap.TextWrapper(width=self.help_width,
456
- subsequent_indent = ' ')
457
- wrapper.wordsep_re = no_hyphen_re
458
- help_lines = wrapper.wrap(help_text)
459
- result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
460
- for line in help_lines[1:]:
461
- result.append("%*s%s\n" % (self.help_position, "", line))
462
- elif opts[-1] != "\n":
463
- result.append("\n")
464
- return string.join(result, "")
465
-
466
- # For consistent help output across Python versions, we provide a
467
- # subclass copy of format_option_strings() and these two variables.
468
- # This is necessary (?) for Python2.3, which otherwise concatenates
469
- # a short option with its metavar.
470
- _short_opt_fmt = "%s %s"
471
- _long_opt_fmt = "%s=%s"
472
-
473
- def format_option_strings(self, option):
474
- """Return a comma-separated list of option strings & metavariables."""
475
- if option.takes_value():
476
- metavar = option.metavar or string.upper(option.dest)
477
- short_opts = []
478
- for sopt in option._short_opts:
479
- short_opts.append(self._short_opt_fmt % (sopt, metavar))
480
- long_opts = []
481
- for lopt in option._long_opts:
482
- long_opts.append(self._long_opt_fmt % (lopt, metavar))
483
- else:
484
- short_opts = option._short_opts
485
- long_opts = option._long_opts
486
-
487
- if self.short_first:
488
- opts = short_opts + long_opts
489
- else:
490
- opts = long_opts + short_opts
491
-
492
- return string.join(opts, ", ")
493
-
494
- def Parser(version):
495
- """
496
- Returns an options parser object initialized with the standard
497
- SCons options.
498
- """
499
-
500
- formatter = SConsIndentedHelpFormatter(max_help_position=30)
501
-
502
- op = SConsOptionParser(option_class=SConsOption,
503
- add_help_option=False,
504
- formatter=formatter,
505
- usage="usage: scons [OPTION] [TARGET] ...",)
506
-
507
- op.preserve_unknown_options = True
508
- op.version = version
509
-
510
- # Add the options to the parser we just created.
511
- #
512
- # These are in the order we want them to show up in the -H help
513
- # text, basically alphabetical. Each op.add_option() call below
514
- # should have a consistent format:
515
- #
516
- # op.add_option("-L", "--long-option-name",
517
- # nargs=1, type="string",
518
- # dest="long_option_name", default='foo',
519
- # action="callback", callback=opt_long_option,
520
- # help="help text goes here",
521
- # metavar="VAR")
522
- #
523
- # Even though the optparse module constructs reasonable default
524
- # destination names from the long option names, we're going to be
525
- # explicit about each one for easier readability and so this code
526
- # will at least show up when grepping the source for option attribute
527
- # names, or otherwise browsing the source code.
528
-
529
- # options ignored for compatibility
530
- def opt_ignore(option, opt, value, parser):
531
- sys.stderr.write("Warning: ignoring %s option\n" % opt)
532
- op.add_option("-b", "-d", "-e", "-m", "-S", "-t", "-w",
533
- "--environment-overrides",
534
- "--no-keep-going",
535
- "--no-print-directory",
536
- "--print-directory",
537
- "--stop",
538
- "--touch",
539
- action="callback", callback=opt_ignore,
540
- help="Ignored for compatibility.")
541
-
542
- op.add_option('-c', '--clean', '--remove',
543
- dest="clean", default=False,
544
- action="store_true",
545
- help="Remove specified targets and dependencies.")
546
-
547
- op.add_option('-C', '--directory',
548
- nargs=1, type="string",
549
- dest="directory", default=[],
550
- action="append",
551
- help="Change to DIR before doing anything.",
552
- metavar="DIR")
553
-
554
- op.add_option('--cache-debug',
555
- nargs=1,
556
- dest="cache_debug", default=None,
557
- action="store",
558
- help="Print CacheDir debug info to FILE.",
559
- metavar="FILE")
560
-
561
- op.add_option('--cache-disable', '--no-cache',
562
- dest='cache_disable', default=False,
563
- action="store_true",
564
- help="Do not retrieve built targets from CacheDir.")
565
-
566
- op.add_option('--cache-force', '--cache-populate',
567
- dest='cache_force', default=False,
568
- action="store_true",
569
- help="Copy already-built targets into the CacheDir.")
570
-
571
- op.add_option('--cache-show',
572
- dest='cache_show', default=False,
573
- action="store_true",
574
- help="Print build actions for files from CacheDir.")
575
-
576
- config_options = ["auto", "force" ,"cache"]
577
-
578
- def opt_config(option, opt, value, parser, c_options=config_options):
579
- if not value in c_options:
580
- raise OptionValueError("Warning: %s is not a valid config type" % value)
581
- setattr(parser.values, option.dest, value)
582
- opt_config_help = "Controls Configure subsystem: %s." \
583
- % string.join(config_options, ", ")
584
- op.add_option('--config',
585
- nargs=1, type="string",
586
- dest="config", default="auto",
587
- action="callback", callback=opt_config,
588
- help = opt_config_help,
589
- metavar="MODE")
590
-
591
- op.add_option('-D',
592
- dest="climb_up", default=None,
593
- action="store_const", const=2,
594
- help="Search up directory tree for SConstruct, "
595
- "build all Default() targets.")
596
-
597
- deprecated_debug_options = {
598
- "dtree" : '; please use --tree=derived instead',
599
- "nomemoizer" : ' and has no effect',
600
- "stree" : '; please use --tree=all,status instead',
601
- "tree" : '; please use --tree=all instead',
602
- }
603
-
604
- debug_options = ["count", "explain", "findlibs",
605
- "includes", "memoizer", "memory", "objects",
606
- "pdb", "presub", "stacktrace",
607
- "time"] + deprecated_debug_options.keys()
608
-
609
- def opt_debug(option, opt, value, parser,
610
- debug_options=debug_options,
611
- deprecated_debug_options=deprecated_debug_options):
612
- if value in debug_options:
613
- parser.values.debug.append(value)
614
- if value in deprecated_debug_options.keys():
615
- try:
616
- parser.values.delayed_warnings
617
- except AttributeError:
618
- parser.values.delayed_warnings = []
619
- msg = deprecated_debug_options[value]
620
- w = "The --debug=%s option is deprecated%s." % (value, msg)
621
- t = (SCons.Warnings.DeprecatedWarning, w)
622
- parser.values.delayed_warnings.append(t)
623
- else:
624
- raise OptionValueError("Warning: %s is not a valid debug type" % value)
625
- opt_debug_help = "Print various types of debugging information: %s." \
626
- % string.join(debug_options, ", ")
627
- op.add_option('--debug',
628
- nargs=1, type="string",
629
- dest="debug", default=[],
630
- action="callback", callback=opt_debug,
631
- help=opt_debug_help,
632
- metavar="TYPE")
633
-
634
- def opt_diskcheck(option, opt, value, parser):
635
- try:
636
- diskcheck_value = diskcheck_convert(value)
637
- except ValueError, e:
638
- raise OptionValueError("Warning: `%s' is not a valid diskcheck type" % e)
639
- setattr(parser.values, option.dest, diskcheck_value)
640
-
641
- op.add_option('--diskcheck',
642
- nargs=1, type="string",
643
- dest='diskcheck', default=None,
644
- action="callback", callback=opt_diskcheck,
645
- help="Enable specific on-disk checks.",
646
- metavar="TYPE")
647
-
648
- def opt_duplicate(option, opt, value, parser):
649
- if not value in SCons.Node.FS.Valid_Duplicates:
650
- raise OptionValueError("`%s' is not a valid duplication style." % value)
651
- setattr(parser.values, option.dest, value)
652
- # Set the duplicate style right away so it can affect linking
653
- # of SConscript files.
654
- SCons.Node.FS.set_duplicate(value)
655
-
656
- opt_duplicate_help = "Set the preferred duplication methods. Must be one of " \
657
- + string.join(SCons.Node.FS.Valid_Duplicates, ", ")
658
-
659
- op.add_option('--duplicate',
660
- nargs=1, type="string",
661
- dest="duplicate", default='hard-soft-copy',
662
- action="callback", callback=opt_duplicate,
663
- help=opt_duplicate_help)
664
-
665
- op.add_option('-f', '--file', '--makefile', '--sconstruct',
666
- nargs=1, type="string",
667
- dest="file", default=[],
668
- action="append",
669
- help="Read FILE as the top-level SConstruct file.")
670
-
671
- op.add_option('-h', '--help',
672
- dest="help", default=False,
673
- action="store_true",
674
- help="Print defined help message, or this one.")
675
-
676
- op.add_option("-H", "--help-options",
677
- action="help",
678
- help="Print this message and exit.")
679
-
680
- op.add_option('-i', '--ignore-errors',
681
- dest='ignore_errors', default=False,
682
- action="store_true",
683
- help="Ignore errors from build actions.")
684
-
685
- op.add_option('-I', '--include-dir',
686
- nargs=1,
687
- dest='include_dir', default=[],
688
- action="append",
689
- help="Search DIR for imported Python modules.",
690
- metavar="DIR")
691
-
692
- op.add_option('--implicit-cache',
693
- dest='implicit_cache', default=False,
694
- action="store_true",
695
- help="Cache implicit dependencies")
696
-
697
- def opt_implicit_deps(option, opt, value, parser):
698
- setattr(parser.values, 'implicit_cache', True)
699
- setattr(parser.values, option.dest, True)
700
-
701
- op.add_option('--implicit-deps-changed',
702
- dest="implicit_deps_changed", default=False,
703
- action="callback", callback=opt_implicit_deps,
704
- help="Ignore cached implicit dependencies.")
705
-
706
- op.add_option('--implicit-deps-unchanged',
707
- dest="implicit_deps_unchanged", default=False,
708
- action="callback", callback=opt_implicit_deps,
709
- help="Ignore changes in implicit dependencies.")
710
-
711
- op.add_option('--interact', '--interactive',
712
- dest='interactive', default=False,
713
- action="store_true",
714
- help="Run in interactive mode.")
715
-
716
- op.add_option('-j', '--jobs',
717
- nargs=1, type="int",
718
- dest="num_jobs", default=1,
719
- action="store",
720
- help="Allow N jobs at once.",
721
- metavar="N")
722
-
723
- op.add_option('-k', '--keep-going',
724
- dest='keep_going', default=False,
725
- action="store_true",
726
- help="Keep going when a target can't be made.")
727
-
728
- op.add_option('--max-drift',
729
- nargs=1, type="int",
730
- dest='max_drift', default=SCons.Node.FS.default_max_drift,
731
- action="store",
732
- help="Set maximum system clock drift to N seconds.",
733
- metavar="N")
734
-
735
- op.add_option('--md5-chunksize',
736
- nargs=1, type="int",
737
- dest='md5_chunksize', default=SCons.Node.FS.File.md5_chunksize,
738
- action="store",
739
- help="Set chunk-size for MD5 signature computation to N kilobytes.",
740
- metavar="N")
741
-
742
- op.add_option('-n', '--no-exec', '--just-print', '--dry-run', '--recon',
743
- dest='no_exec', default=False,
744
- action="store_true",
745
- help="Don't build; just print commands.")
746
-
747
- op.add_option('--no-site-dir',
748
- dest='no_site_dir', default=False,
749
- action="store_true",
750
- help="Don't search or use the usual site_scons dir.")
751
-
752
- op.add_option('--profile',
753
- nargs=1,
754
- dest="profile_file", default=None,
755
- action="store",
756
- help="Profile SCons and put results in FILE.",
757
- metavar="FILE")
758
-
759
- op.add_option('-q', '--question',
760
- dest="question", default=False,
761
- action="store_true",
762
- help="Don't build; exit status says if up to date.")
763
-
764
- op.add_option('-Q',
765
- dest='no_progress', default=False,
766
- action="store_true",
767
- help="Suppress \"Reading/Building\" progress messages.")
768
-
769
- op.add_option('--random',
770
- dest="random", default=False,
771
- action="store_true",
772
- help="Build dependencies in random order.")
773
-
774
- op.add_option('-s', '--silent', '--quiet',
775
- dest="silent", default=False,
776
- action="store_true",
777
- help="Don't print commands.")
778
-
779
- op.add_option('--site-dir',
780
- nargs=1,
781
- dest='site_dir', default=None,
782
- action="store",
783
- help="Use DIR instead of the usual site_scons dir.",
784
- metavar="DIR")
785
-
786
- op.add_option('--stack-size',
787
- nargs=1, type="int",
788
- dest='stack_size',
789
- action="store",
790
- help="Set the stack size of the threads used to run jobs to N kilobytes.",
791
- metavar="N")
792
-
793
- op.add_option('--taskmastertrace',
794
- nargs=1,
795
- dest="taskmastertrace_file", default=None,
796
- action="store",
797
- help="Trace Node evaluation to FILE.",
798
- metavar="FILE")
799
-
800
- tree_options = ["all", "derived", "prune", "status"]
801
-
802
- def opt_tree(option, opt, value, parser, tree_options=tree_options):
803
- import Main
804
- tp = Main.TreePrinter()
805
- for o in string.split(value, ','):
806
- if o == 'all':
807
- tp.derived = False
808
- elif o == 'derived':
809
- tp.derived = True
810
- elif o == 'prune':
811
- tp.prune = True
812
- elif o == 'status':
813
- tp.status = True
814
- else:
815
- raise OptionValueError("Warning: %s is not a valid --tree option" % o)
816
- parser.values.tree_printers.append(tp)
817
-
818
- opt_tree_help = "Print a dependency tree in various formats: %s." \
819
- % string.join(tree_options, ", ")
820
-
821
- op.add_option('--tree',
822
- nargs=1, type="string",
823
- dest="tree_printers", default=[],
824
- action="callback", callback=opt_tree,
825
- help=opt_tree_help,
826
- metavar="OPTIONS")
827
-
828
- op.add_option('-u', '--up', '--search-up',
829
- dest="climb_up", default=0,
830
- action="store_const", const=1,
831
- help="Search up directory tree for SConstruct, "
832
- "build targets at or below current directory.")
833
-
834
- op.add_option('-U',
835
- dest="climb_up", default=0,
836
- action="store_const", const=3,
837
- help="Search up directory tree for SConstruct, "
838
- "build Default() targets from local SConscript.")
839
-
840
- def opt_version(option, opt, value, parser):
841
- sys.stdout.write(parser.version + '\n')
842
- sys.exit(0)
843
- op.add_option("-v", "--version",
844
- action="callback", callback=opt_version,
845
- help="Print the SCons version number and exit.")
846
-
847
- def opt_warn(option, opt, value, parser, tree_options=tree_options):
848
- if SCons.Util.is_String(value):
849
- value = string.split(value, ',')
850
- parser.values.warn.extend(value)
851
-
852
- op.add_option('--warn', '--warning',
853
- nargs=1, type="string",
854
- dest="warn", default=[],
855
- action="callback", callback=opt_warn,
856
- help="Enable or disable warnings.",
857
- metavar="WARNING-SPEC")
858
-
859
- op.add_option('-Y', '--repository', '--srcdir',
860
- nargs=1,
861
- dest="repository", default=[],
862
- action="append",
863
- help="Search REPOSITORY for source and target files.")
864
-
865
- # Options from Make and Cons classic that we do not yet support,
866
- # but which we may support someday and whose (potential) meanings
867
- # we don't want to change. These all get a "the -X option is not
868
- # yet implemented" message and don't show up in the help output.
869
-
870
- def opt_not_yet(option, opt, value, parser):
871
- msg = "Warning: the %s option is not yet implemented\n" % opt
872
- sys.stderr.write(msg)
873
-
874
- op.add_option('-l', '--load-average', '--max-load',
875
- nargs=1, type="int",
876
- dest="load_average", default=0,
877
- action="callback", callback=opt_not_yet,
878
- # action="store",
879
- # help="Don't start multiple jobs unless load is below "
880
- # "LOAD-AVERAGE."
881
- help=SUPPRESS_HELP)
882
- op.add_option('--list-actions',
883
- dest="list_actions",
884
- action="callback", callback=opt_not_yet,
885
- # help="Don't build; list files and build actions."
886
- help=SUPPRESS_HELP)
887
- op.add_option('--list-derived',
888
- dest="list_derived",
889
- action="callback", callback=opt_not_yet,
890
- # help="Don't build; list files that would be built."
891
- help=SUPPRESS_HELP)
892
- op.add_option('--list-where',
893
- dest="list_where",
894
- action="callback", callback=opt_not_yet,
895
- # help="Don't build; list files and where defined."
896
- help=SUPPRESS_HELP)
897
- op.add_option('-o', '--old-file', '--assume-old',
898
- nargs=1, type="string",
899
- dest="old_file", default=[],
900
- action="callback", callback=opt_not_yet,
901
- # action="append",
902
- # help = "Consider FILE to be old; don't rebuild it."
903
- help=SUPPRESS_HELP)
904
- op.add_option('--override',
905
- nargs=1, type="string",
906
- action="callback", callback=opt_not_yet,
907
- dest="override",
908
- # help="Override variables as specified in FILE."
909
- help=SUPPRESS_HELP)
910
- op.add_option('-p',
911
- action="callback", callback=opt_not_yet,
912
- dest="p",
913
- # help="Print internal environments/objects."
914
- help=SUPPRESS_HELP)
915
- op.add_option('-r', '-R', '--no-builtin-rules', '--no-builtin-variables',
916
- action="callback", callback=opt_not_yet,
917
- dest="no_builtin_rules",
918
- # help="Clear default environments and variables."
919
- help=SUPPRESS_HELP)
920
- op.add_option('--write-filenames',
921
- nargs=1, type="string",
922
- dest="write_filenames",
923
- action="callback", callback=opt_not_yet,
924
- # help="Write all filenames examined into FILE."
925
- help=SUPPRESS_HELP)
926
- op.add_option('-W', '--new-file', '--assume-new', '--what-if',
927
- nargs=1, type="string",
928
- dest="new_file",
929
- action="callback", callback=opt_not_yet,
930
- # help="Consider FILE to be changed."
931
- help=SUPPRESS_HELP)
932
- op.add_option('--warn-undefined-variables',
933
- dest="warn_undefined_variables",
934
- action="callback", callback=opt_not_yet,
935
- # help="Warn when an undefined variable is referenced."
936
- help=SUPPRESS_HELP)
937
-
938
- return op
939
-
940
- # Local Variables:
941
- # tab-width:4
942
- # indent-tabs-mode:nil
943
- # End:
944
- # vim: set expandtab tabstop=4 shiftwidth=4: