therubyracer 0.4.6 → 0.4.7

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 (1148) hide show
  1. data/Manifest.txt +1138 -0
  2. data/README.rdoc +7 -5
  3. data/Rakefile +12 -2
  4. data/ext/v8/Makefile +169 -0
  5. data/ext/v8/extconf.rb +20 -3
  6. data/ext/v8/upstream/2.0.6/.sconsign.dblite +0 -0
  7. data/ext/v8/upstream/2.0.6/AUTHORS +23 -0
  8. data/ext/v8/upstream/2.0.6/ChangeLog +1479 -0
  9. data/ext/v8/upstream/2.0.6/LICENSE +55 -0
  10. data/ext/v8/upstream/2.0.6/SConstruct +1028 -0
  11. data/ext/v8/upstream/2.0.6/benchmarks/README.txt +63 -0
  12. data/ext/v8/upstream/2.0.6/benchmarks/base.js +264 -0
  13. data/ext/v8/upstream/2.0.6/benchmarks/crypto.js +1698 -0
  14. data/ext/v8/upstream/2.0.6/benchmarks/deltablue.js +880 -0
  15. data/ext/v8/upstream/2.0.6/benchmarks/earley-boyer.js +4684 -0
  16. data/ext/v8/upstream/2.0.6/benchmarks/raytrace.js +935 -0
  17. data/ext/v8/upstream/2.0.6/benchmarks/regexp.js +1614 -0
  18. data/ext/v8/upstream/2.0.6/benchmarks/revisions.html +86 -0
  19. data/ext/v8/upstream/2.0.6/benchmarks/richards.js +539 -0
  20. data/ext/v8/upstream/2.0.6/benchmarks/run.html +141 -0
  21. data/ext/v8/upstream/2.0.6/benchmarks/run.js +61 -0
  22. data/ext/v8/upstream/2.0.6/benchmarks/splay.js +378 -0
  23. data/ext/v8/upstream/2.0.6/benchmarks/style.css +77 -0
  24. data/ext/v8/upstream/2.0.6/benchmarks/v8-logo.png +0 -0
  25. data/ext/v8/upstream/2.0.6/include/v8-debug.h +275 -0
  26. data/ext/v8/upstream/2.0.6/include/v8.h +3236 -0
  27. data/ext/v8/upstream/2.0.6/samples/SConscript +38 -0
  28. data/ext/v8/upstream/2.0.6/samples/count-hosts.js +42 -0
  29. data/ext/v8/upstream/2.0.6/samples/process.cc +622 -0
  30. data/ext/v8/upstream/2.0.6/samples/shell.cc +303 -0
  31. data/ext/v8/upstream/2.0.6/src/SConscript +283 -0
  32. data/ext/v8/upstream/2.0.6/src/accessors.cc +695 -0
  33. data/ext/v8/upstream/2.0.6/src/accessors.h +114 -0
  34. data/ext/v8/upstream/2.0.6/src/allocation.cc +198 -0
  35. data/ext/v8/upstream/2.0.6/src/allocation.h +169 -0
  36. data/ext/v8/upstream/2.0.6/src/api.cc +3831 -0
  37. data/ext/v8/upstream/2.0.6/src/api.h +479 -0
  38. data/ext/v8/upstream/2.0.6/src/apinatives.js +110 -0
  39. data/ext/v8/upstream/2.0.6/src/apiutils.h +69 -0
  40. data/ext/v8/upstream/2.0.6/src/arguments.h +97 -0
  41. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm-inl.h +277 -0
  42. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.cc +1821 -0
  43. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.h +1027 -0
  44. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2-inl.h +267 -0
  45. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.cc +1821 -0
  46. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.h +1027 -0
  47. data/ext/v8/upstream/2.0.6/src/arm/builtins-arm.cc +1271 -0
  48. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm-inl.h +74 -0
  49. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.cc +6682 -0
  50. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.h +535 -0
  51. data/ext/v8/upstream/2.0.6/src/arm/constants-arm.cc +112 -0
  52. data/ext/v8/upstream/2.0.6/src/arm/constants-arm.h +347 -0
  53. data/ext/v8/upstream/2.0.6/src/arm/cpu-arm.cc +132 -0
  54. data/ext/v8/upstream/2.0.6/src/arm/debug-arm.cc +213 -0
  55. data/ext/v8/upstream/2.0.6/src/arm/disasm-arm.cc +1166 -0
  56. data/ext/v8/upstream/2.0.6/src/arm/fast-codegen-arm.cc +1698 -0
  57. data/ext/v8/upstream/2.0.6/src/arm/frames-arm.cc +123 -0
  58. data/ext/v8/upstream/2.0.6/src/arm/frames-arm.h +162 -0
  59. data/ext/v8/upstream/2.0.6/src/arm/ic-arm.cc +849 -0
  60. data/ext/v8/upstream/2.0.6/src/arm/jump-target-arm.cc +238 -0
  61. data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.cc +1259 -0
  62. data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.h +423 -0
  63. data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.cc +1266 -0
  64. data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.h +282 -0
  65. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm-inl.h +103 -0
  66. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.cc +59 -0
  67. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.h +43 -0
  68. data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.cc +2264 -0
  69. data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.h +306 -0
  70. data/ext/v8/upstream/2.0.6/src/arm/stub-cache-arm.cc +1516 -0
  71. data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.cc +412 -0
  72. data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.h +532 -0
  73. data/ext/v8/upstream/2.0.6/src/array.js +1154 -0
  74. data/ext/v8/upstream/2.0.6/src/assembler.cc +772 -0
  75. data/ext/v8/upstream/2.0.6/src/assembler.h +525 -0
  76. data/ext/v8/upstream/2.0.6/src/ast.cc +512 -0
  77. data/ext/v8/upstream/2.0.6/src/ast.h +1820 -0
  78. data/ext/v8/upstream/2.0.6/src/bootstrapper.cc +1680 -0
  79. data/ext/v8/upstream/2.0.6/src/bootstrapper.h +103 -0
  80. data/ext/v8/upstream/2.0.6/src/builtins.cc +851 -0
  81. data/ext/v8/upstream/2.0.6/src/builtins.h +245 -0
  82. data/ext/v8/upstream/2.0.6/src/bytecodes-irregexp.h +104 -0
  83. data/ext/v8/upstream/2.0.6/src/char-predicates-inl.h +86 -0
  84. data/ext/v8/upstream/2.0.6/src/char-predicates.h +65 -0
  85. data/ext/v8/upstream/2.0.6/src/checks.cc +100 -0
  86. data/ext/v8/upstream/2.0.6/src/checks.h +284 -0
  87. data/ext/v8/upstream/2.0.6/src/code-stubs.cc +164 -0
  88. data/ext/v8/upstream/2.0.6/src/code-stubs.h +164 -0
  89. data/ext/v8/upstream/2.0.6/src/code.h +68 -0
  90. data/ext/v8/upstream/2.0.6/src/codegen-inl.h +88 -0
  91. data/ext/v8/upstream/2.0.6/src/codegen.cc +504 -0
  92. data/ext/v8/upstream/2.0.6/src/codegen.h +522 -0
  93. data/ext/v8/upstream/2.0.6/src/compilation-cache.cc +490 -0
  94. data/ext/v8/upstream/2.0.6/src/compilation-cache.h +98 -0
  95. data/ext/v8/upstream/2.0.6/src/compiler.cc +1132 -0
  96. data/ext/v8/upstream/2.0.6/src/compiler.h +107 -0
  97. data/ext/v8/upstream/2.0.6/src/contexts.cc +256 -0
  98. data/ext/v8/upstream/2.0.6/src/contexts.h +345 -0
  99. data/ext/v8/upstream/2.0.6/src/conversions-inl.h +95 -0
  100. data/ext/v8/upstream/2.0.6/src/conversions.cc +709 -0
  101. data/ext/v8/upstream/2.0.6/src/conversions.h +118 -0
  102. data/ext/v8/upstream/2.0.6/src/counters.cc +78 -0
  103. data/ext/v8/upstream/2.0.6/src/counters.h +239 -0
  104. data/ext/v8/upstream/2.0.6/src/cpu.h +65 -0
  105. data/ext/v8/upstream/2.0.6/src/d8-debug.cc +345 -0
  106. data/ext/v8/upstream/2.0.6/src/d8-debug.h +155 -0
  107. data/ext/v8/upstream/2.0.6/src/d8-posix.cc +675 -0
  108. data/ext/v8/upstream/2.0.6/src/d8-readline.cc +128 -0
  109. data/ext/v8/upstream/2.0.6/src/d8-windows.cc +42 -0
  110. data/ext/v8/upstream/2.0.6/src/d8.cc +776 -0
  111. data/ext/v8/upstream/2.0.6/src/d8.h +225 -0
  112. data/ext/v8/upstream/2.0.6/src/d8.js +1625 -0
  113. data/ext/v8/upstream/2.0.6/src/date-delay.js +1138 -0
  114. data/ext/v8/upstream/2.0.6/src/dateparser-inl.h +114 -0
  115. data/ext/v8/upstream/2.0.6/src/dateparser.cc +186 -0
  116. data/ext/v8/upstream/2.0.6/src/dateparser.h +240 -0
  117. data/ext/v8/upstream/2.0.6/src/debug-agent.cc +425 -0
  118. data/ext/v8/upstream/2.0.6/src/debug-agent.h +129 -0
  119. data/ext/v8/upstream/2.0.6/src/debug-delay.js +2073 -0
  120. data/ext/v8/upstream/2.0.6/src/debug.cc +2751 -0
  121. data/ext/v8/upstream/2.0.6/src/debug.h +866 -0
  122. data/ext/v8/upstream/2.0.6/src/disasm.h +77 -0
  123. data/ext/v8/upstream/2.0.6/src/disassembler.cc +318 -0
  124. data/ext/v8/upstream/2.0.6/src/disassembler.h +56 -0
  125. data/ext/v8/upstream/2.0.6/src/dtoa-config.c +91 -0
  126. data/ext/v8/upstream/2.0.6/src/execution.cc +701 -0
  127. data/ext/v8/upstream/2.0.6/src/execution.h +312 -0
  128. data/ext/v8/upstream/2.0.6/src/factory.cc +957 -0
  129. data/ext/v8/upstream/2.0.6/src/factory.h +393 -0
  130. data/ext/v8/upstream/2.0.6/src/fast-codegen.cc +725 -0
  131. data/ext/v8/upstream/2.0.6/src/fast-codegen.h +371 -0
  132. data/ext/v8/upstream/2.0.6/src/flag-definitions.h +426 -0
  133. data/ext/v8/upstream/2.0.6/src/flags.cc +555 -0
  134. data/ext/v8/upstream/2.0.6/src/flags.h +81 -0
  135. data/ext/v8/upstream/2.0.6/src/frame-element.cc +45 -0
  136. data/ext/v8/upstream/2.0.6/src/frame-element.h +235 -0
  137. data/ext/v8/upstream/2.0.6/src/frames-inl.h +215 -0
  138. data/ext/v8/upstream/2.0.6/src/frames.cc +749 -0
  139. data/ext/v8/upstream/2.0.6/src/frames.h +659 -0
  140. data/ext/v8/upstream/2.0.6/src/func-name-inferrer.cc +76 -0
  141. data/ext/v8/upstream/2.0.6/src/func-name-inferrer.h +135 -0
  142. data/ext/v8/upstream/2.0.6/src/global-handles.cc +516 -0
  143. data/ext/v8/upstream/2.0.6/src/global-handles.h +180 -0
  144. data/ext/v8/upstream/2.0.6/src/globals.h +608 -0
  145. data/ext/v8/upstream/2.0.6/src/handles-inl.h +76 -0
  146. data/ext/v8/upstream/2.0.6/src/handles.cc +811 -0
  147. data/ext/v8/upstream/2.0.6/src/handles.h +367 -0
  148. data/ext/v8/upstream/2.0.6/src/hashmap.cc +226 -0
  149. data/ext/v8/upstream/2.0.6/src/hashmap.h +120 -0
  150. data/ext/v8/upstream/2.0.6/src/heap-inl.h +407 -0
  151. data/ext/v8/upstream/2.0.6/src/heap-profiler.cc +695 -0
  152. data/ext/v8/upstream/2.0.6/src/heap-profiler.h +277 -0
  153. data/ext/v8/upstream/2.0.6/src/heap.cc +4204 -0
  154. data/ext/v8/upstream/2.0.6/src/heap.h +1704 -0
  155. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32-inl.h +325 -0
  156. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.cc +2375 -0
  157. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.h +914 -0
  158. data/ext/v8/upstream/2.0.6/src/ia32/builtins-ia32.cc +1222 -0
  159. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32-inl.h +46 -0
  160. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.cc +9770 -0
  161. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.h +834 -0
  162. data/ext/v8/upstream/2.0.6/src/ia32/cpu-ia32.cc +79 -0
  163. data/ext/v8/upstream/2.0.6/src/ia32/debug-ia32.cc +208 -0
  164. data/ext/v8/upstream/2.0.6/src/ia32/disasm-ia32.cc +1357 -0
  165. data/ext/v8/upstream/2.0.6/src/ia32/fast-codegen-ia32.cc +1813 -0
  166. data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.cc +111 -0
  167. data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.h +135 -0
  168. data/ext/v8/upstream/2.0.6/src/ia32/ic-ia32.cc +1490 -0
  169. data/ext/v8/upstream/2.0.6/src/ia32/jump-target-ia32.cc +432 -0
  170. data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.cc +1517 -0
  171. data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.h +528 -0
  172. data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.cc +1219 -0
  173. data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.h +230 -0
  174. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32-inl.h +82 -0
  175. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.cc +99 -0
  176. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.h +43 -0
  177. data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.cc +30 -0
  178. data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.h +62 -0
  179. data/ext/v8/upstream/2.0.6/src/ia32/stub-cache-ia32.cc +1961 -0
  180. data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.cc +1105 -0
  181. data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.h +580 -0
  182. data/ext/v8/upstream/2.0.6/src/ic-inl.h +93 -0
  183. data/ext/v8/upstream/2.0.6/src/ic.cc +1426 -0
  184. data/ext/v8/upstream/2.0.6/src/ic.h +443 -0
  185. data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.cc +646 -0
  186. data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.h +48 -0
  187. data/ext/v8/upstream/2.0.6/src/json-delay.js +254 -0
  188. data/ext/v8/upstream/2.0.6/src/jsregexp.cc +5234 -0
  189. data/ext/v8/upstream/2.0.6/src/jsregexp.h +1439 -0
  190. data/ext/v8/upstream/2.0.6/src/jump-target-inl.h +49 -0
  191. data/ext/v8/upstream/2.0.6/src/jump-target.cc +383 -0
  192. data/ext/v8/upstream/2.0.6/src/jump-target.h +280 -0
  193. data/ext/v8/upstream/2.0.6/src/list-inl.h +166 -0
  194. data/ext/v8/upstream/2.0.6/src/list.h +158 -0
  195. data/ext/v8/upstream/2.0.6/src/log-inl.h +126 -0
  196. data/ext/v8/upstream/2.0.6/src/log-utils.cc +503 -0
  197. data/ext/v8/upstream/2.0.6/src/log-utils.h +292 -0
  198. data/ext/v8/upstream/2.0.6/src/log.cc +1457 -0
  199. data/ext/v8/upstream/2.0.6/src/log.h +371 -0
  200. data/ext/v8/upstream/2.0.6/src/macro-assembler.h +93 -0
  201. data/ext/v8/upstream/2.0.6/src/macros.py +137 -0
  202. data/ext/v8/upstream/2.0.6/src/mark-compact.cc +2007 -0
  203. data/ext/v8/upstream/2.0.6/src/mark-compact.h +442 -0
  204. data/ext/v8/upstream/2.0.6/src/math.js +263 -0
  205. data/ext/v8/upstream/2.0.6/src/memory.h +74 -0
  206. data/ext/v8/upstream/2.0.6/src/messages.cc +177 -0
  207. data/ext/v8/upstream/2.0.6/src/messages.h +112 -0
  208. data/ext/v8/upstream/2.0.6/src/messages.js +937 -0
  209. data/ext/v8/upstream/2.0.6/src/mirror-delay.js +2332 -0
  210. data/ext/v8/upstream/2.0.6/src/mksnapshot.cc +169 -0
  211. data/ext/v8/upstream/2.0.6/src/natives.h +63 -0
  212. data/ext/v8/upstream/2.0.6/src/objects-debug.cc +1317 -0
  213. data/ext/v8/upstream/2.0.6/src/objects-inl.h +3044 -0
  214. data/ext/v8/upstream/2.0.6/src/objects.cc +8306 -0
  215. data/ext/v8/upstream/2.0.6/src/objects.h +4960 -0
  216. data/ext/v8/upstream/2.0.6/src/oprofile-agent.cc +116 -0
  217. data/ext/v8/upstream/2.0.6/src/oprofile-agent.h +69 -0
  218. data/ext/v8/upstream/2.0.6/src/parser.cc +4810 -0
  219. data/ext/v8/upstream/2.0.6/src/parser.h +195 -0
  220. data/ext/v8/upstream/2.0.6/src/platform-freebsd.cc +645 -0
  221. data/ext/v8/upstream/2.0.6/src/platform-linux.cc +808 -0
  222. data/ext/v8/upstream/2.0.6/src/platform-macos.cc +643 -0
  223. data/ext/v8/upstream/2.0.6/src/platform-nullos.cc +454 -0
  224. data/ext/v8/upstream/2.0.6/src/platform-openbsd.cc +597 -0
  225. data/ext/v8/upstream/2.0.6/src/platform-posix.cc +380 -0
  226. data/ext/v8/upstream/2.0.6/src/platform-win32.cc +1908 -0
  227. data/ext/v8/upstream/2.0.6/src/platform.h +556 -0
  228. data/ext/v8/upstream/2.0.6/src/prettyprinter.cc +1511 -0
  229. data/ext/v8/upstream/2.0.6/src/prettyprinter.h +219 -0
  230. data/ext/v8/upstream/2.0.6/src/property.cc +96 -0
  231. data/ext/v8/upstream/2.0.6/src/property.h +327 -0
  232. data/ext/v8/upstream/2.0.6/src/regexp-delay.js +406 -0
  233. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp-inl.h +78 -0
  234. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.cc +464 -0
  235. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.h +141 -0
  236. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.cc +356 -0
  237. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.h +103 -0
  238. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.cc +240 -0
  239. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.h +220 -0
  240. data/ext/v8/upstream/2.0.6/src/regexp-stack.cc +103 -0
  241. data/ext/v8/upstream/2.0.6/src/regexp-stack.h +123 -0
  242. data/ext/v8/upstream/2.0.6/src/register-allocator-inl.h +74 -0
  243. data/ext/v8/upstream/2.0.6/src/register-allocator.cc +100 -0
  244. data/ext/v8/upstream/2.0.6/src/register-allocator.h +295 -0
  245. data/ext/v8/upstream/2.0.6/src/rewriter.cc +855 -0
  246. data/ext/v8/upstream/2.0.6/src/rewriter.h +54 -0
  247. data/ext/v8/upstream/2.0.6/src/runtime.cc +8163 -0
  248. data/ext/v8/upstream/2.0.6/src/runtime.h +432 -0
  249. data/ext/v8/upstream/2.0.6/src/runtime.js +626 -0
  250. data/ext/v8/upstream/2.0.6/src/scanner.cc +1098 -0
  251. data/ext/v8/upstream/2.0.6/src/scanner.h +425 -0
  252. data/ext/v8/upstream/2.0.6/src/scopeinfo.cc +649 -0
  253. data/ext/v8/upstream/2.0.6/src/scopeinfo.h +236 -0
  254. data/ext/v8/upstream/2.0.6/src/scopes.cc +963 -0
  255. data/ext/v8/upstream/2.0.6/src/scopes.h +401 -0
  256. data/ext/v8/upstream/2.0.6/src/serialize.cc +1260 -0
  257. data/ext/v8/upstream/2.0.6/src/serialize.h +404 -0
  258. data/ext/v8/upstream/2.0.6/src/shell.h +55 -0
  259. data/ext/v8/upstream/2.0.6/src/simulator.h +41 -0
  260. data/ext/v8/upstream/2.0.6/src/smart-pointer.h +109 -0
  261. data/ext/v8/upstream/2.0.6/src/snapshot-common.cc +97 -0
  262. data/ext/v8/upstream/2.0.6/src/snapshot-empty.cc +40 -0
  263. data/ext/v8/upstream/2.0.6/src/snapshot.h +59 -0
  264. data/ext/v8/upstream/2.0.6/src/spaces-inl.h +372 -0
  265. data/ext/v8/upstream/2.0.6/src/spaces.cc +2864 -0
  266. data/ext/v8/upstream/2.0.6/src/spaces.h +2072 -0
  267. data/ext/v8/upstream/2.0.6/src/string-stream.cc +584 -0
  268. data/ext/v8/upstream/2.0.6/src/string-stream.h +189 -0
  269. data/ext/v8/upstream/2.0.6/src/string.js +901 -0
  270. data/ext/v8/upstream/2.0.6/src/stub-cache.cc +1108 -0
  271. data/ext/v8/upstream/2.0.6/src/stub-cache.h +578 -0
  272. data/ext/v8/upstream/2.0.6/src/third_party/dtoa/COPYING +15 -0
  273. data/ext/v8/upstream/2.0.6/src/third_party/dtoa/dtoa.c +3330 -0
  274. data/ext/v8/upstream/2.0.6/src/third_party/valgrind/valgrind.h +3925 -0
  275. data/ext/v8/upstream/2.0.6/src/token.cc +56 -0
  276. data/ext/v8/upstream/2.0.6/src/token.h +270 -0
  277. data/ext/v8/upstream/2.0.6/src/top.cc +991 -0
  278. data/ext/v8/upstream/2.0.6/src/top.h +459 -0
  279. data/ext/v8/upstream/2.0.6/src/unicode-inl.h +238 -0
  280. data/ext/v8/upstream/2.0.6/src/unicode.cc +749 -0
  281. data/ext/v8/upstream/2.0.6/src/unicode.h +279 -0
  282. data/ext/v8/upstream/2.0.6/src/uri.js +415 -0
  283. data/ext/v8/upstream/2.0.6/src/usage-analyzer.cc +426 -0
  284. data/ext/v8/upstream/2.0.6/src/usage-analyzer.h +40 -0
  285. data/ext/v8/upstream/2.0.6/src/utils.cc +322 -0
  286. data/ext/v8/upstream/2.0.6/src/utils.h +592 -0
  287. data/ext/v8/upstream/2.0.6/src/v8-counters.cc +55 -0
  288. data/ext/v8/upstream/2.0.6/src/v8-counters.h +198 -0
  289. data/ext/v8/upstream/2.0.6/src/v8.cc +193 -0
  290. data/ext/v8/upstream/2.0.6/src/v8.h +119 -0
  291. data/ext/v8/upstream/2.0.6/src/v8natives.js +846 -0
  292. data/ext/v8/upstream/2.0.6/src/v8threads.cc +450 -0
  293. data/ext/v8/upstream/2.0.6/src/v8threads.h +144 -0
  294. data/ext/v8/upstream/2.0.6/src/variables.cc +163 -0
  295. data/ext/v8/upstream/2.0.6/src/variables.h +235 -0
  296. data/ext/v8/upstream/2.0.6/src/version.cc +88 -0
  297. data/ext/v8/upstream/2.0.6/src/version.h +64 -0
  298. data/ext/v8/upstream/2.0.6/src/virtual-frame.cc +381 -0
  299. data/ext/v8/upstream/2.0.6/src/virtual-frame.h +44 -0
  300. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64-inl.h +352 -0
  301. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.cc +2539 -0
  302. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.h +1399 -0
  303. data/ext/v8/upstream/2.0.6/src/x64/builtins-x64.cc +1255 -0
  304. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64-inl.h +46 -0
  305. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.cc +8223 -0
  306. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.h +785 -0
  307. data/ext/v8/upstream/2.0.6/src/x64/cpu-x64.cc +79 -0
  308. data/ext/v8/upstream/2.0.6/src/x64/debug-x64.cc +202 -0
  309. data/ext/v8/upstream/2.0.6/src/x64/disasm-x64.cc +1596 -0
  310. data/ext/v8/upstream/2.0.6/src/x64/fast-codegen-x64.cc +1820 -0
  311. data/ext/v8/upstream/2.0.6/src/x64/frames-x64.cc +109 -0
  312. data/ext/v8/upstream/2.0.6/src/x64/frames-x64.h +121 -0
  313. data/ext/v8/upstream/2.0.6/src/x64/ic-x64.cc +1392 -0
  314. data/ext/v8/upstream/2.0.6/src/x64/jump-target-x64.cc +432 -0
  315. data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.cc +2409 -0
  316. data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.h +765 -0
  317. data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.cc +1337 -0
  318. data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.h +295 -0
  319. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64-inl.h +86 -0
  320. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.cc +84 -0
  321. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.h +43 -0
  322. data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.cc +27 -0
  323. data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.h +63 -0
  324. data/ext/v8/upstream/2.0.6/src/x64/stub-cache-x64.cc +1884 -0
  325. data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.cc +1089 -0
  326. data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.h +560 -0
  327. data/ext/v8/upstream/2.0.6/src/zone-inl.h +297 -0
  328. data/ext/v8/upstream/2.0.6/src/zone.cc +193 -0
  329. data/ext/v8/upstream/2.0.6/src/zone.h +305 -0
  330. data/ext/v8/upstream/2.0.6/test/cctest/SConscript +95 -0
  331. data/ext/v8/upstream/2.0.6/test/cctest/cctest.cc +126 -0
  332. data/ext/v8/upstream/2.0.6/test/cctest/cctest.h +211 -0
  333. data/ext/v8/upstream/2.0.6/test/cctest/cctest.status +54 -0
  334. data/ext/v8/upstream/2.0.6/test/cctest/test-accessors.cc +450 -0
  335. data/ext/v8/upstream/2.0.6/test/cctest/test-alloc.cc +215 -0
  336. data/ext/v8/upstream/2.0.6/test/cctest/test-api.cc +8699 -0
  337. data/ext/v8/upstream/2.0.6/test/cctest/test-assembler-arm.cc +227 -0
  338. data/ext/v8/upstream/2.0.6/test/cctest/test-assembler-ia32.cc +395 -0
  339. data/ext/v8/upstream/2.0.6/test/cctest/test-assembler-x64.cc +292 -0
  340. data/ext/v8/upstream/2.0.6/test/cctest/test-ast.cc +97 -0
  341. data/ext/v8/upstream/2.0.6/test/cctest/test-compiler.cc +318 -0
  342. data/ext/v8/upstream/2.0.6/test/cctest/test-conversions.cc +130 -0
  343. data/ext/v8/upstream/2.0.6/test/cctest/test-debug.cc +5788 -0
  344. data/ext/v8/upstream/2.0.6/test/cctest/test-decls.cc +593 -0
  345. data/ext/v8/upstream/2.0.6/test/cctest/test-disasm-arm.cc +281 -0
  346. data/ext/v8/upstream/2.0.6/test/cctest/test-disasm-ia32.cc +418 -0
  347. data/ext/v8/upstream/2.0.6/test/cctest/test-flags.cc +234 -0
  348. data/ext/v8/upstream/2.0.6/test/cctest/test-func-name-inference.cc +267 -0
  349. data/ext/v8/upstream/2.0.6/test/cctest/test-hashmap.cc +176 -0
  350. data/ext/v8/upstream/2.0.6/test/cctest/test-heap-profiler.cc +396 -0
  351. data/ext/v8/upstream/2.0.6/test/cctest/test-heap.cc +796 -0
  352. data/ext/v8/upstream/2.0.6/test/cctest/test-list.cc +101 -0
  353. data/ext/v8/upstream/2.0.6/test/cctest/test-lock.cc +63 -0
  354. data/ext/v8/upstream/2.0.6/test/cctest/test-log-stack-tracer.cc +372 -0
  355. data/ext/v8/upstream/2.0.6/test/cctest/test-log-utils.cc +310 -0
  356. data/ext/v8/upstream/2.0.6/test/cctest/test-log.cc +1081 -0
  357. data/ext/v8/upstream/2.0.6/test/cctest/test-macro-assembler-x64.cc +2104 -0
  358. data/ext/v8/upstream/2.0.6/test/cctest/test-mark-compact.cc +341 -0
  359. data/ext/v8/upstream/2.0.6/test/cctest/test-parsing.cc +129 -0
  360. data/ext/v8/upstream/2.0.6/test/cctest/test-platform-linux.cc +80 -0
  361. data/ext/v8/upstream/2.0.6/test/cctest/test-platform-macos.cc +10 -0
  362. data/ext/v8/upstream/2.0.6/test/cctest/test-platform-nullos.cc +80 -0
  363. data/ext/v8/upstream/2.0.6/test/cctest/test-platform-win32.cc +26 -0
  364. data/ext/v8/upstream/2.0.6/test/cctest/test-regexp.cc +1815 -0
  365. data/ext/v8/upstream/2.0.6/test/cctest/test-serialize.cc +438 -0
  366. data/ext/v8/upstream/2.0.6/test/cctest/test-sockets.cc +162 -0
  367. data/ext/v8/upstream/2.0.6/test/cctest/test-spaces.cc +248 -0
  368. data/ext/v8/upstream/2.0.6/test/cctest/test-strings.cc +432 -0
  369. data/ext/v8/upstream/2.0.6/test/cctest/test-thread-termination.cc +290 -0
  370. data/ext/v8/upstream/2.0.6/test/cctest/test-threads.cc +52 -0
  371. data/ext/v8/upstream/2.0.6/test/cctest/test-utils.cc +186 -0
  372. data/ext/v8/upstream/2.0.6/test/cctest/test-version.cc +89 -0
  373. data/ext/v8/upstream/2.0.6/test/cctest/testcfg.py +108 -0
  374. data/ext/v8/upstream/2.0.6/test/es5conform/README +14 -0
  375. data/ext/v8/upstream/2.0.6/test/es5conform/es5conform.status +226 -0
  376. data/ext/v8/upstream/2.0.6/test/es5conform/harness-adapt.js +74 -0
  377. data/ext/v8/upstream/2.0.6/test/es5conform/testcfg.py +108 -0
  378. data/ext/v8/upstream/2.0.6/test/message/message.status +31 -0
  379. data/ext/v8/upstream/2.0.6/test/message/overwritten-builtins.js +31 -0
  380. data/ext/v8/upstream/2.0.6/test/message/overwritten-builtins.out +30 -0
  381. data/ext/v8/upstream/2.0.6/test/message/regress/regress-73.js +33 -0
  382. data/ext/v8/upstream/2.0.6/test/message/regress/regress-73.out +30 -0
  383. data/ext/v8/upstream/2.0.6/test/message/regress/regress-75.js +32 -0
  384. data/ext/v8/upstream/2.0.6/test/message/regress/regress-75.out +30 -0
  385. data/ext/v8/upstream/2.0.6/test/message/simple-throw.js +28 -0
  386. data/ext/v8/upstream/2.0.6/test/message/simple-throw.out +30 -0
  387. data/ext/v8/upstream/2.0.6/test/message/testcfg.py +135 -0
  388. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-no-message.js +51 -0
  389. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-no-message.out +26 -0
  390. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-return-in-finally.js +39 -0
  391. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-return-in-finally.out +28 -0
  392. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch-and-finally.js +34 -0
  393. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch-and-finally.out +30 -0
  394. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch.js +34 -0
  395. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch.out +30 -0
  396. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-finally.js +34 -0
  397. data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-finally.out +30 -0
  398. data/ext/v8/upstream/2.0.6/test/message/try-finally-return-in-finally.js +37 -0
  399. data/ext/v8/upstream/2.0.6/test/message/try-finally-return-in-finally.out +28 -0
  400. data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-finally.js +32 -0
  401. data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-finally.out +30 -0
  402. data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try-and-finally.js +32 -0
  403. data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try-and-finally.out +30 -0
  404. data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try.js +32 -0
  405. data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try.out +30 -0
  406. data/ext/v8/upstream/2.0.6/test/mjsunit/api-call-after-bypassed-exception.js +39 -0
  407. data/ext/v8/upstream/2.0.6/test/mjsunit/apply.js +196 -0
  408. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-apply.js +134 -0
  409. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-call-apply.js +41 -0
  410. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-enum.js +52 -0
  411. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-indirect.js +47 -0
  412. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-lazy.js +47 -0
  413. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-opt.js +130 -0
  414. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-read-and-assignment.js +164 -0
  415. data/ext/v8/upstream/2.0.6/test/mjsunit/arguments.js +97 -0
  416. data/ext/v8/upstream/2.0.6/test/mjsunit/array-concat.js +120 -0
  417. data/ext/v8/upstream/2.0.6/test/mjsunit/array-constructor.js +119 -0
  418. data/ext/v8/upstream/2.0.6/test/mjsunit/array-functions-prototype.js +159 -0
  419. data/ext/v8/upstream/2.0.6/test/mjsunit/array-indexing.js +66 -0
  420. data/ext/v8/upstream/2.0.6/test/mjsunit/array-iteration.js +228 -0
  421. data/ext/v8/upstream/2.0.6/test/mjsunit/array-join.js +45 -0
  422. data/ext/v8/upstream/2.0.6/test/mjsunit/array-length-number-conversion.js +53 -0
  423. data/ext/v8/upstream/2.0.6/test/mjsunit/array-length.js +111 -0
  424. data/ext/v8/upstream/2.0.6/test/mjsunit/array-reduce.js +514 -0
  425. data/ext/v8/upstream/2.0.6/test/mjsunit/array-sort.js +362 -0
  426. data/ext/v8/upstream/2.0.6/test/mjsunit/array-splice.js +314 -0
  427. data/ext/v8/upstream/2.0.6/test/mjsunit/ascii-regexp-subject.js +49 -0
  428. data/ext/v8/upstream/2.0.6/test/mjsunit/big-array-literal.js +111 -0
  429. data/ext/v8/upstream/2.0.6/test/mjsunit/big-object-literal.js +114 -0
  430. data/ext/v8/upstream/2.0.6/test/mjsunit/binary-operation-overwrite.js +36 -0
  431. data/ext/v8/upstream/2.0.6/test/mjsunit/bit-not.js +75 -0
  432. data/ext/v8/upstream/2.0.6/test/mjsunit/bitwise-operations-undefined.js +49 -0
  433. data/ext/v8/upstream/2.0.6/test/mjsunit/body-not-visible.js +39 -0
  434. data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-1344252.js +79 -0
  435. data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-222.js +42 -0
  436. data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-223.js +39 -0
  437. data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-900066.js +38 -0
  438. data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-941049.js +100 -0
  439. data/ext/v8/upstream/2.0.6/test/mjsunit/call-non-function-call.js +38 -0
  440. data/ext/v8/upstream/2.0.6/test/mjsunit/call-non-function.js +63 -0
  441. data/ext/v8/upstream/2.0.6/test/mjsunit/call.js +87 -0
  442. data/ext/v8/upstream/2.0.6/test/mjsunit/char-escape.js +53 -0
  443. data/ext/v8/upstream/2.0.6/test/mjsunit/class-of-builtins.js +50 -0
  444. data/ext/v8/upstream/2.0.6/test/mjsunit/closure.js +37 -0
  445. data/ext/v8/upstream/2.0.6/test/mjsunit/codegen-coverage.js +91 -0
  446. data/ext/v8/upstream/2.0.6/test/mjsunit/compare-character.js +50 -0
  447. data/ext/v8/upstream/2.0.6/test/mjsunit/compare-nan.js +66 -0
  448. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/countoperation.js +111 -0
  449. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/function-call.js +52 -0
  450. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/globals.js +65 -0
  451. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/jsnatives.js +33 -0
  452. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/literals-assignment.js +104 -0
  453. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/literals.js +52 -0
  454. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/loops.js +35 -0
  455. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/objectliterals.js +57 -0
  456. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/property-simple.js +39 -0
  457. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/short-circuit.js +102 -0
  458. data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/thisfunction.js +35 -0
  459. data/ext/v8/upstream/2.0.6/test/mjsunit/const-declaration.js +172 -0
  460. data/ext/v8/upstream/2.0.6/test/mjsunit/const-eval-init.js +111 -0
  461. data/ext/v8/upstream/2.0.6/test/mjsunit/const-redecl.js +220 -0
  462. data/ext/v8/upstream/2.0.6/test/mjsunit/const.js +70 -0
  463. data/ext/v8/upstream/2.0.6/test/mjsunit/constant-folding.js +232 -0
  464. data/ext/v8/upstream/2.0.6/test/mjsunit/context-variable-assignments.js +37 -0
  465. data/ext/v8/upstream/2.0.6/test/mjsunit/cyclic-array-to-string.js +65 -0
  466. data/ext/v8/upstream/2.0.6/test/mjsunit/cyrillic.js +199 -0
  467. data/ext/v8/upstream/2.0.6/test/mjsunit/d8-os.js +180 -0
  468. data/ext/v8/upstream/2.0.6/test/mjsunit/date-parse.js +268 -0
  469. data/ext/v8/upstream/2.0.6/test/mjsunit/date.js +149 -0
  470. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-backtrace-text.js +122 -0
  471. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-backtrace.js +272 -0
  472. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-breakpoints.js +120 -0
  473. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-changebreakpoint.js +108 -0
  474. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-clearbreakpoint.js +101 -0
  475. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-clearbreakpointgroup.js +117 -0
  476. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-compile-event.js +126 -0
  477. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-conditional-breakpoints.js +171 -0
  478. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-constructed-by.js +60 -0
  479. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-constructor.js +78 -0
  480. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-continue.js +114 -0
  481. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-enable-disable-breakpoints.js +90 -0
  482. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-arguments.js +93 -0
  483. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-bool-constructor.js +80 -0
  484. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-locals.js +132 -0
  485. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-recursive.js +167 -0
  486. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-with.js +77 -0
  487. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate.js +118 -0
  488. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-event-listener.js +73 -0
  489. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-handle.js +252 -0
  490. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-ignore-breakpoints.js +89 -0
  491. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-mirror-cache.js +85 -0
  492. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-multiple-breakpoints.js +105 -0
  493. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-referenced-by.js +112 -0
  494. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-references.js +118 -0
  495. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-scopes.js +761 -0
  496. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-script-breakpoints.js +112 -0
  497. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-script.js +92 -0
  498. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-scripts-request.js +108 -0
  499. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-setbreakpoint.js +165 -0
  500. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-sourceinfo.js +352 -0
  501. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-sourceslice.js +74 -0
  502. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-step-stub-callfunction.js +87 -0
  503. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-step.js +82 -0
  504. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-accessor.js +248 -0
  505. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-builtin.js +78 -0
  506. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-call-function-stub.js +115 -0
  507. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-constructor.js +78 -0
  508. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-function-call.js +149 -0
  509. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepnext-do-while.js +79 -0
  510. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepout-recursive-function.js +106 -0
  511. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepout-to-builtin.js +84 -0
  512. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-suspend.js +96 -0
  513. data/ext/v8/upstream/2.0.6/test/mjsunit/debug-version.js +90 -0
  514. data/ext/v8/upstream/2.0.6/test/mjsunit/declare-locally.js +43 -0
  515. data/ext/v8/upstream/2.0.6/test/mjsunit/deep-recursion.js +66 -0
  516. data/ext/v8/upstream/2.0.6/test/mjsunit/delay-syntax-error.js +41 -0
  517. data/ext/v8/upstream/2.0.6/test/mjsunit/delete-global-properties.js +37 -0
  518. data/ext/v8/upstream/2.0.6/test/mjsunit/delete-in-eval.js +32 -0
  519. data/ext/v8/upstream/2.0.6/test/mjsunit/delete-in-with.js +34 -0
  520. data/ext/v8/upstream/2.0.6/test/mjsunit/delete-vars-from-eval.js +40 -0
  521. data/ext/v8/upstream/2.0.6/test/mjsunit/delete.js +163 -0
  522. data/ext/v8/upstream/2.0.6/test/mjsunit/div-mod.js +157 -0
  523. data/ext/v8/upstream/2.0.6/test/mjsunit/do-not-strip-fc.js +31 -0
  524. data/ext/v8/upstream/2.0.6/test/mjsunit/dont-enum-array-holes.js +35 -0
  525. data/ext/v8/upstream/2.0.6/test/mjsunit/dont-reinit-global-var.js +47 -0
  526. data/ext/v8/upstream/2.0.6/test/mjsunit/double-equals.js +114 -0
  527. data/ext/v8/upstream/2.0.6/test/mjsunit/dtoa.js +32 -0
  528. data/ext/v8/upstream/2.0.6/test/mjsunit/enumeration-order.js +109 -0
  529. data/ext/v8/upstream/2.0.6/test/mjsunit/error-constructors.js +32 -0
  530. data/ext/v8/upstream/2.0.6/test/mjsunit/escape.js +118 -0
  531. data/ext/v8/upstream/2.0.6/test/mjsunit/eval-enclosing-function-name.js +76 -0
  532. data/ext/v8/upstream/2.0.6/test/mjsunit/eval-typeof-non-existing.js +35 -0
  533. data/ext/v8/upstream/2.0.6/test/mjsunit/eval.js +157 -0
  534. data/ext/v8/upstream/2.0.6/test/mjsunit/execScript-case-insensitive.js +34 -0
  535. data/ext/v8/upstream/2.0.6/test/mjsunit/extra-arguments.js +54 -0
  536. data/ext/v8/upstream/2.0.6/test/mjsunit/extra-commas.js +46 -0
  537. data/ext/v8/upstream/2.0.6/test/mjsunit/for-in-null-or-undefined.js +33 -0
  538. data/ext/v8/upstream/2.0.6/test/mjsunit/for-in-special-cases.js +64 -0
  539. data/ext/v8/upstream/2.0.6/test/mjsunit/for-in.js +86 -0
  540. data/ext/v8/upstream/2.0.6/test/mjsunit/fun-as-prototype.js +36 -0
  541. data/ext/v8/upstream/2.0.6/test/mjsunit/fun-name.js +34 -0
  542. data/ext/v8/upstream/2.0.6/test/mjsunit/function-arguments-null.js +30 -0
  543. data/ext/v8/upstream/2.0.6/test/mjsunit/function-caller.js +48 -0
  544. data/ext/v8/upstream/2.0.6/test/mjsunit/function-names.js +133 -0
  545. data/ext/v8/upstream/2.0.6/test/mjsunit/function-property.js +29 -0
  546. data/ext/v8/upstream/2.0.6/test/mjsunit/function-prototype.js +98 -0
  547. data/ext/v8/upstream/2.0.6/test/mjsunit/function-source.js +49 -0
  548. data/ext/v8/upstream/2.0.6/test/mjsunit/function.js +83 -0
  549. data/ext/v8/upstream/2.0.6/test/mjsunit/fuzz-accessors.js +85 -0
  550. data/ext/v8/upstream/2.0.6/test/mjsunit/fuzz-natives.js +159 -0
  551. data/ext/v8/upstream/2.0.6/test/mjsunit/get-own-property-descriptor.js +51 -0
  552. data/ext/v8/upstream/2.0.6/test/mjsunit/get-prototype-of.js +68 -0
  553. data/ext/v8/upstream/2.0.6/test/mjsunit/getter-in-prototype.js +50 -0
  554. data/ext/v8/upstream/2.0.6/test/mjsunit/getter-in-value-prototype.js +35 -0
  555. data/ext/v8/upstream/2.0.6/test/mjsunit/global-const-var-conflicts.js +57 -0
  556. data/ext/v8/upstream/2.0.6/test/mjsunit/global-deleted-property-ic.js +45 -0
  557. data/ext/v8/upstream/2.0.6/test/mjsunit/global-deleted-property-keyed.js +38 -0
  558. data/ext/v8/upstream/2.0.6/test/mjsunit/global-ic.js +48 -0
  559. data/ext/v8/upstream/2.0.6/test/mjsunit/global-load-from-eval-in-with.js +59 -0
  560. data/ext/v8/upstream/2.0.6/test/mjsunit/global-load-from-eval.js +85 -0
  561. data/ext/v8/upstream/2.0.6/test/mjsunit/global-load-from-nested-eval.js +66 -0
  562. data/ext/v8/upstream/2.0.6/test/mjsunit/global-vars-eval.js +34 -0
  563. data/ext/v8/upstream/2.0.6/test/mjsunit/global-vars-with.js +43 -0
  564. data/ext/v8/upstream/2.0.6/test/mjsunit/greedy.js +60 -0
  565. data/ext/v8/upstream/2.0.6/test/mjsunit/has-own-property.js +38 -0
  566. data/ext/v8/upstream/2.0.6/test/mjsunit/html-comments.js +57 -0
  567. data/ext/v8/upstream/2.0.6/test/mjsunit/html-string-funcs.js +47 -0
  568. data/ext/v8/upstream/2.0.6/test/mjsunit/if-in-undefined.js +36 -0
  569. data/ext/v8/upstream/2.0.6/test/mjsunit/in.js +159 -0
  570. data/ext/v8/upstream/2.0.6/test/mjsunit/indexed-accessors.js +120 -0
  571. data/ext/v8/upstream/2.0.6/test/mjsunit/instanceof.js +93 -0
  572. data/ext/v8/upstream/2.0.6/test/mjsunit/integer-to-string.js +35 -0
  573. data/ext/v8/upstream/2.0.6/test/mjsunit/invalid-lhs.js +65 -0
  574. data/ext/v8/upstream/2.0.6/test/mjsunit/invalid-source-element.js +31 -0
  575. data/ext/v8/upstream/2.0.6/test/mjsunit/json.js +207 -0
  576. data/ext/v8/upstream/2.0.6/test/mjsunit/keyed-ic.js +236 -0
  577. data/ext/v8/upstream/2.0.6/test/mjsunit/keyed-storage-extend.js +55 -0
  578. data/ext/v8/upstream/2.0.6/test/mjsunit/large-object-allocation.js +300 -0
  579. data/ext/v8/upstream/2.0.6/test/mjsunit/large-object-literal.js +56 -0
  580. data/ext/v8/upstream/2.0.6/test/mjsunit/lazy-load.js +34 -0
  581. data/ext/v8/upstream/2.0.6/test/mjsunit/leakcheck.js +53 -0
  582. data/ext/v8/upstream/2.0.6/test/mjsunit/length.js +78 -0
  583. data/ext/v8/upstream/2.0.6/test/mjsunit/local-load-from-eval.js +39 -0
  584. data/ext/v8/upstream/2.0.6/test/mjsunit/math-min-max.js +105 -0
  585. data/ext/v8/upstream/2.0.6/test/mjsunit/megamorphic-callbacks.js +70 -0
  586. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-array.js +138 -0
  587. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-boolean.js +59 -0
  588. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-date.js +77 -0
  589. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-error.js +94 -0
  590. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-function.js +90 -0
  591. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-null.js +50 -0
  592. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-number.js +77 -0
  593. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-object.js +227 -0
  594. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-regexp.js +110 -0
  595. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-script.js +100 -0
  596. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-string.js +89 -0
  597. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-undefined.js +50 -0
  598. data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-unresolved-function.js +81 -0
  599. data/ext/v8/upstream/2.0.6/test/mjsunit/mjsunit.js +203 -0
  600. data/ext/v8/upstream/2.0.6/test/mjsunit/mjsunit.status +66 -0
  601. data/ext/v8/upstream/2.0.6/test/mjsunit/mul-exhaustive.js +4511 -0
  602. data/ext/v8/upstream/2.0.6/test/mjsunit/multiple-return.js +62 -0
  603. data/ext/v8/upstream/2.0.6/test/mjsunit/negate-zero.js +42 -0
  604. data/ext/v8/upstream/2.0.6/test/mjsunit/negate.js +59 -0
  605. data/ext/v8/upstream/2.0.6/test/mjsunit/new.js +56 -0
  606. data/ext/v8/upstream/2.0.6/test/mjsunit/newline-in-string.js +46 -0
  607. data/ext/v8/upstream/2.0.6/test/mjsunit/no-branch-elimination.js +36 -0
  608. data/ext/v8/upstream/2.0.6/test/mjsunit/no-octal-constants-above-256.js +32 -0
  609. data/ext/v8/upstream/2.0.6/test/mjsunit/no-semicolon.js +45 -0
  610. data/ext/v8/upstream/2.0.6/test/mjsunit/non-ascii-replace.js +30 -0
  611. data/ext/v8/upstream/2.0.6/test/mjsunit/nul-characters.js +38 -0
  612. data/ext/v8/upstream/2.0.6/test/mjsunit/number-limits.js +47 -0
  613. data/ext/v8/upstream/2.0.6/test/mjsunit/number-string-index-call.js +32 -0
  614. data/ext/v8/upstream/2.0.6/test/mjsunit/number-tostring-small.js +395 -0
  615. data/ext/v8/upstream/2.0.6/test/mjsunit/number-tostring.js +338 -0
  616. data/ext/v8/upstream/2.0.6/test/mjsunit/obj-construct.js +46 -0
  617. data/ext/v8/upstream/2.0.6/test/mjsunit/object-create.js +250 -0
  618. data/ext/v8/upstream/2.0.6/test/mjsunit/object-literal-gc.js +66 -0
  619. data/ext/v8/upstream/2.0.6/test/mjsunit/object-literal.js +105 -0
  620. data/ext/v8/upstream/2.0.6/test/mjsunit/override-read-only-property.js +64 -0
  621. data/ext/v8/upstream/2.0.6/test/mjsunit/parse-int-float.js +85 -0
  622. data/ext/v8/upstream/2.0.6/test/mjsunit/property-load-across-eval.js +85 -0
  623. data/ext/v8/upstream/2.0.6/test/mjsunit/property-object-key.js +36 -0
  624. data/ext/v8/upstream/2.0.6/test/mjsunit/proto.js +33 -0
  625. data/ext/v8/upstream/2.0.6/test/mjsunit/prototype.js +93 -0
  626. data/ext/v8/upstream/2.0.6/test/mjsunit/receiver-in-with-calls.js +47 -0
  627. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-UC16.js +47 -0
  628. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-call-as-function.js +36 -0
  629. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-capture.js +57 -0
  630. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-captures.js +31 -0
  631. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-indexof.js +77 -0
  632. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-lookahead.js +166 -0
  633. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-loop-capture.js +29 -0
  634. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-multiline-stack-trace.js +116 -0
  635. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-multiline.js +112 -0
  636. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-standalones.js +78 -0
  637. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-static.js +167 -0
  638. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-string-methods.js +51 -0
  639. data/ext/v8/upstream/2.0.6/test/mjsunit/regexp.js +390 -0
  640. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1030466.js +45 -0
  641. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1036894.js +38 -0
  642. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1039610.js +29 -0
  643. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1050043.js +51 -0
  644. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1062422.js +30 -0
  645. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1066899.js +37 -0
  646. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1081309.js +110 -0
  647. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1102760.js +35 -0
  648. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1110164.js +46 -0
  649. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1112051.js +33 -0
  650. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1114040.js +58 -0
  651. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1134697.js +31 -0
  652. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-114.js +43 -0
  653. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-116.js +40 -0
  654. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1170187.js +80 -0
  655. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1173979.js +48 -0
  656. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1175390.js +30 -0
  657. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1177518.js +39 -0
  658. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1177809.js +31 -0
  659. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1178598.js +90 -0
  660. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1182832.js +38 -0
  661. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1187524.js +34 -0
  662. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1199401.js +75 -0
  663. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1199637.js +78 -0
  664. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1200351.js +2032 -0
  665. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1201933.js +40 -0
  666. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1203459.js +29 -0
  667. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1207276.js +36 -0
  668. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1213516.js +40 -0
  669. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1213575.js +41 -0
  670. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1215653.js +365 -0
  671. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-124.js +57 -0
  672. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1254366.js +38 -0
  673. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1327557.js +36 -0
  674. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1341167.js +33 -0
  675. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1346700.js +29 -0
  676. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-137.js +46 -0
  677. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1439135.js +40 -0
  678. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-149.js +28 -0
  679. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1493017.js +52 -0
  680. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-155924.js +46 -0
  681. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-171.js +41 -0
  682. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-176.js +50 -0
  683. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-186.js +72 -0
  684. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-187.js +30 -0
  685. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-189.js +36 -0
  686. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-191.js +42 -0
  687. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1919169.js +40 -0
  688. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-192.js +38 -0
  689. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-193.js +44 -0
  690. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-20070207.js +42 -0
  691. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-201.js +37 -0
  692. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-219.js +176 -0
  693. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-220.js +31 -0
  694. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-221.js +34 -0
  695. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-2249423.js +40 -0
  696. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-225.js +32 -0
  697. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-227.js +33 -0
  698. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-231.js +92 -0
  699. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-233.js +39 -0
  700. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-244.js +67 -0
  701. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-246.js +31 -0
  702. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-253.js +31 -0
  703. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-254.js +58 -0
  704. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-259.js +33 -0
  705. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-260.js +33 -0
  706. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-263.js +38 -0
  707. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-265.js +64 -0
  708. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-267.js +35 -0
  709. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-269.js +49 -0
  710. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-279.js +62 -0
  711. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-284.js +50 -0
  712. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-286.js +36 -0
  713. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-294.js +43 -0
  714. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-312.js +31 -0
  715. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-317.js +31 -0
  716. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-318.js +35 -0
  717. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-326.js +40 -0
  718. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-334.js +90 -0
  719. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-341.js +36 -0
  720. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-345.js +51 -0
  721. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-349.js +32 -0
  722. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-35.js +33 -0
  723. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-351.js +31 -0
  724. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-386.js +47 -0
  725. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-392.js +34 -0
  726. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-394.js +47 -0
  727. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-396.js +39 -0
  728. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-397.js +34 -0
  729. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-399.js +32 -0
  730. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-406.js +69 -0
  731. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-416.js +38 -0
  732. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-475.js +28 -0
  733. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-483.js +35 -0
  734. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-485.js +64 -0
  735. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-486.js +30 -0
  736. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-490.js +48 -0
  737. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-491.js +47 -0
  738. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-492.js +52 -0
  739. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-496.js +39 -0
  740. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-502.js +38 -0
  741. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-503.js +63 -0
  742. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-515.js +40 -0
  743. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-524.js +32 -0
  744. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-526.js +32 -0
  745. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-540.js +47 -0
  746. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-545.js +47 -0
  747. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-57.js +32 -0
  748. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-580.js +55 -0
  749. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-588599.js +31 -0
  750. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-6-9-regexp.js +30 -0
  751. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-662254.js +40 -0
  752. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-666721.js +53 -0
  753. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-667061.js +90 -0
  754. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-670147.js +34 -0
  755. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-674753.js +87 -0
  756. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-676025.js +31 -0
  757. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-678525.js +59 -0
  758. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-682649.js +30 -0
  759. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-69.js +43 -0
  760. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-734862.js +37 -0
  761. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-737588.js +34 -0
  762. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-74.js +41 -0
  763. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-780423.js +39 -0
  764. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-799761.js +92 -0
  765. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-806473.js +60 -0
  766. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-842017.js +60 -0
  767. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-86.js +46 -0
  768. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-87.js +58 -0
  769. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-874178.js +32 -0
  770. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-875031.js +37 -0
  771. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-877615.js +37 -0
  772. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-892742.js +50 -0
  773. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-900055.js +42 -0
  774. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-900966.js +38 -0
  775. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-91.js +38 -0
  776. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-925537.js +42 -0
  777. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-937896.js +50 -0
  778. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-990205.js +35 -0
  779. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-992733.js +35 -0
  780. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-996542.js +40 -0
  781. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-998565.js +51 -0
  782. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-crbug-18639.js +34 -0
  783. data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-r3391.js +77 -0
  784. data/ext/v8/upstream/2.0.6/test/mjsunit/scanner.js +30 -0
  785. data/ext/v8/upstream/2.0.6/test/mjsunit/short-circuit-boolean.js +46 -0
  786. data/ext/v8/upstream/2.0.6/test/mjsunit/simple-constructor.js +140 -0
  787. data/ext/v8/upstream/2.0.6/test/mjsunit/sin-cos.js +45 -0
  788. data/ext/v8/upstream/2.0.6/test/mjsunit/smi-negative-zero.js +100 -0
  789. data/ext/v8/upstream/2.0.6/test/mjsunit/smi-ops.js +671 -0
  790. data/ext/v8/upstream/2.0.6/test/mjsunit/sparse-array-reverse.js +131 -0
  791. data/ext/v8/upstream/2.0.6/test/mjsunit/sparse-array.js +41 -0
  792. data/ext/v8/upstream/2.0.6/test/mjsunit/stack-traces.js +204 -0
  793. data/ext/v8/upstream/2.0.6/test/mjsunit/str-to-num.js +158 -0
  794. data/ext/v8/upstream/2.0.6/test/mjsunit/stress-array-push.js +34 -0
  795. data/ext/v8/upstream/2.0.6/test/mjsunit/strict-equals.js +90 -0
  796. data/ext/v8/upstream/2.0.6/test/mjsunit/string-add.js +195 -0
  797. data/ext/v8/upstream/2.0.6/test/mjsunit/string-case.js +28 -0
  798. data/ext/v8/upstream/2.0.6/test/mjsunit/string-charat.js +53 -0
  799. data/ext/v8/upstream/2.0.6/test/mjsunit/string-charcodeat.js +192 -0
  800. data/ext/v8/upstream/2.0.6/test/mjsunit/string-compare-alignment.js +47 -0
  801. data/ext/v8/upstream/2.0.6/test/mjsunit/string-flatten.js +37 -0
  802. data/ext/v8/upstream/2.0.6/test/mjsunit/string-index.js +154 -0
  803. data/ext/v8/upstream/2.0.6/test/mjsunit/string-indexof-1.js +99 -0
  804. data/ext/v8/upstream/2.0.6/test/mjsunit/string-indexof-2.js +68 -0
  805. data/ext/v8/upstream/2.0.6/test/mjsunit/string-lastindexof.js +88 -0
  806. data/ext/v8/upstream/2.0.6/test/mjsunit/string-localecompare.js +40 -0
  807. data/ext/v8/upstream/2.0.6/test/mjsunit/string-match.js +149 -0
  808. data/ext/v8/upstream/2.0.6/test/mjsunit/string-replace-gc.js +57 -0
  809. data/ext/v8/upstream/2.0.6/test/mjsunit/string-replace.js +182 -0
  810. data/ext/v8/upstream/2.0.6/test/mjsunit/string-search.js +30 -0
  811. data/ext/v8/upstream/2.0.6/test/mjsunit/string-split.js +126 -0
  812. data/ext/v8/upstream/2.0.6/test/mjsunit/substr.js +65 -0
  813. data/ext/v8/upstream/2.0.6/test/mjsunit/switch.js +289 -0
  814. data/ext/v8/upstream/2.0.6/test/mjsunit/testcfg.py +137 -0
  815. data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/array-isarray.js +48 -0
  816. data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/array-splice-webkit.js +62 -0
  817. data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/object-keys.js +68 -0
  818. data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/regexp-pcre.js +6603 -0
  819. data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/string-trim.js +107 -0
  820. data/ext/v8/upstream/2.0.6/test/mjsunit/this-in-callbacks.js +47 -0
  821. data/ext/v8/upstream/2.0.6/test/mjsunit/this.js +46 -0
  822. data/ext/v8/upstream/2.0.6/test/mjsunit/throw-and-catch-function.js +50 -0
  823. data/ext/v8/upstream/2.0.6/test/mjsunit/throw-exception-for-null-access.js +37 -0
  824. data/ext/v8/upstream/2.0.6/test/mjsunit/to-precision.js +82 -0
  825. data/ext/v8/upstream/2.0.6/test/mjsunit/to_number_order.js +129 -0
  826. data/ext/v8/upstream/2.0.6/test/mjsunit/tobool.js +36 -0
  827. data/ext/v8/upstream/2.0.6/test/mjsunit/toint32.js +129 -0
  828. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/codemap.js +180 -0
  829. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/consarray.js +60 -0
  830. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/csvparser.js +79 -0
  831. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/logreader.js +98 -0
  832. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/profile.js +348 -0
  833. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/profile_view.js +95 -0
  834. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/splaytree.js +166 -0
  835. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.default +55 -0
  836. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.gc-state +21 -0
  837. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.ignore-unknown +51 -0
  838. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.separate-ic +61 -0
  839. data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor.js +409 -0
  840. data/ext/v8/upstream/2.0.6/test/mjsunit/top-level-assignments.js +107 -0
  841. data/ext/v8/upstream/2.0.6/test/mjsunit/touint32.js +72 -0
  842. data/ext/v8/upstream/2.0.6/test/mjsunit/transcendentals.js +49 -0
  843. data/ext/v8/upstream/2.0.6/test/mjsunit/try-catch-extension-object.js +58 -0
  844. data/ext/v8/upstream/2.0.6/test/mjsunit/try-catch-scopes.js +42 -0
  845. data/ext/v8/upstream/2.0.6/test/mjsunit/try-finally-nested.js +46 -0
  846. data/ext/v8/upstream/2.0.6/test/mjsunit/try.js +394 -0
  847. data/ext/v8/upstream/2.0.6/test/mjsunit/typeof.js +40 -0
  848. data/ext/v8/upstream/2.0.6/test/mjsunit/undeletable-functions.js +181 -0
  849. data/ext/v8/upstream/2.0.6/test/mjsunit/unicode-case-overoptimization.js +35 -0
  850. data/ext/v8/upstream/2.0.6/test/mjsunit/unicode-string-to-number.js +46 -0
  851. data/ext/v8/upstream/2.0.6/test/mjsunit/unicode-test.js +9169 -0
  852. data/ext/v8/upstream/2.0.6/test/mjsunit/unusual-constructor.js +38 -0
  853. data/ext/v8/upstream/2.0.6/test/mjsunit/uri.js +78 -0
  854. data/ext/v8/upstream/2.0.6/test/mjsunit/value-callic-prototype-change.js +94 -0
  855. data/ext/v8/upstream/2.0.6/test/mjsunit/var.js +37 -0
  856. data/ext/v8/upstream/2.0.6/test/mjsunit/with-function-expression.js +36 -0
  857. data/ext/v8/upstream/2.0.6/test/mjsunit/with-leave.js +61 -0
  858. data/ext/v8/upstream/2.0.6/test/mjsunit/with-parameter-access.js +47 -0
  859. data/ext/v8/upstream/2.0.6/test/mjsunit/with-prototype.js +44 -0
  860. data/ext/v8/upstream/2.0.6/test/mjsunit/with-value.js +38 -0
  861. data/ext/v8/upstream/2.0.6/test/mozilla/mozilla-shell-emulation.js +37 -0
  862. data/ext/v8/upstream/2.0.6/test/mozilla/mozilla.status +815 -0
  863. data/ext/v8/upstream/2.0.6/test/mozilla/testcfg.py +138 -0
  864. data/ext/v8/upstream/2.0.6/test/sputnik/README +6 -0
  865. data/ext/v8/upstream/2.0.6/test/sputnik/sputnik.status +318 -0
  866. data/ext/v8/upstream/2.0.6/test/sputnik/testcfg.py +112 -0
  867. data/ext/v8/upstream/2.0.6/tools/codemap.js +258 -0
  868. data/ext/v8/upstream/2.0.6/tools/consarray.js +93 -0
  869. data/ext/v8/upstream/2.0.6/tools/csvparser.js +98 -0
  870. data/ext/v8/upstream/2.0.6/tools/gyp/v8.gyp +620 -0
  871. data/ext/v8/upstream/2.0.6/tools/js2c.py +376 -0
  872. data/ext/v8/upstream/2.0.6/tools/js2c.pyc +0 -0
  873. data/ext/v8/upstream/2.0.6/tools/jsmin.py +280 -0
  874. data/ext/v8/upstream/2.0.6/tools/jsmin.pyc +0 -0
  875. data/ext/v8/upstream/2.0.6/tools/linux-tick-processor +24 -0
  876. data/ext/v8/upstream/2.0.6/tools/linux-tick-processor.py +78 -0
  877. data/ext/v8/upstream/2.0.6/tools/logreader.js +320 -0
  878. data/ext/v8/upstream/2.0.6/tools/mac-nm +18 -0
  879. data/ext/v8/upstream/2.0.6/tools/mac-tick-processor +6 -0
  880. data/ext/v8/upstream/2.0.6/tools/oprofile/annotate +7 -0
  881. data/ext/v8/upstream/2.0.6/tools/oprofile/common +19 -0
  882. data/ext/v8/upstream/2.0.6/tools/oprofile/dump +7 -0
  883. data/ext/v8/upstream/2.0.6/tools/oprofile/report +7 -0
  884. data/ext/v8/upstream/2.0.6/tools/oprofile/reset +7 -0
  885. data/ext/v8/upstream/2.0.6/tools/oprofile/run +14 -0
  886. data/ext/v8/upstream/2.0.6/tools/oprofile/shutdown +7 -0
  887. data/ext/v8/upstream/2.0.6/tools/oprofile/start +7 -0
  888. data/ext/v8/upstream/2.0.6/tools/presubmit.py +299 -0
  889. data/ext/v8/upstream/2.0.6/tools/process-heap-prof.py +120 -0
  890. data/ext/v8/upstream/2.0.6/tools/profile.js +621 -0
  891. data/ext/v8/upstream/2.0.6/tools/profile_view.js +224 -0
  892. data/ext/v8/upstream/2.0.6/tools/run-valgrind.py +77 -0
  893. data/ext/v8/upstream/2.0.6/tools/splaytree.js +322 -0
  894. data/ext/v8/upstream/2.0.6/tools/splaytree.py +226 -0
  895. data/ext/v8/upstream/2.0.6/tools/stats-viewer.py +456 -0
  896. data/ext/v8/upstream/2.0.6/tools/test.py +1370 -0
  897. data/ext/v8/upstream/2.0.6/tools/tickprocessor-driver.js +53 -0
  898. data/ext/v8/upstream/2.0.6/tools/tickprocessor.js +731 -0
  899. data/ext/v8/upstream/2.0.6/tools/tickprocessor.py +535 -0
  900. data/ext/v8/upstream/2.0.6/tools/utils.py +82 -0
  901. data/ext/v8/upstream/2.0.6/tools/utils.pyc +0 -0
  902. data/ext/v8/upstream/2.0.6/tools/visual_studio/README.txt +71 -0
  903. data/ext/v8/upstream/2.0.6/tools/visual_studio/arm.vsprops +14 -0
  904. data/ext/v8/upstream/2.0.6/tools/visual_studio/common.vsprops +35 -0
  905. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8.vcproj +199 -0
  906. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_arm.vcproj +199 -0
  907. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_x64.vcproj +201 -0
  908. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8js2c.cmd +6 -0
  909. data/ext/v8/upstream/2.0.6/tools/visual_studio/debug.vsprops +17 -0
  910. data/ext/v8/upstream/2.0.6/tools/visual_studio/ia32.vsprops +13 -0
  911. data/ext/v8/upstream/2.0.6/tools/visual_studio/js2c.cmd +6 -0
  912. data/ext/v8/upstream/2.0.6/tools/visual_studio/release.vsprops +24 -0
  913. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.sln +101 -0
  914. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.vcproj +223 -0
  915. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.sln +74 -0
  916. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.vcproj +223 -0
  917. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base.vcproj +971 -0
  918. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_arm.vcproj +983 -0
  919. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_x64.vcproj +959 -0
  920. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest.vcproj +255 -0
  921. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_arm.vcproj +243 -0
  922. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_x64.vcproj +257 -0
  923. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot.vcproj +151 -0
  924. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot_x64.vcproj +151 -0
  925. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample.vcproj +151 -0
  926. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_arm.vcproj +151 -0
  927. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_x64.vcproj +151 -0
  928. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample.vcproj +151 -0
  929. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_arm.vcproj +151 -0
  930. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_x64.vcproj +153 -0
  931. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot.vcproj +142 -0
  932. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc.vcproj +92 -0
  933. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc_x64.vcproj +92 -0
  934. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_x64.vcproj +142 -0
  935. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.sln +101 -0
  936. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.vcproj +223 -0
  937. data/ext/v8/upstream/2.0.6/tools/visual_studio/x64.vsprops +13 -0
  938. data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat +5 -0
  939. data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.py +137 -0
  940. data/ext/v8/upstream/scons/CHANGES.txt +5183 -0
  941. data/ext/v8/upstream/scons/LICENSE.txt +20 -0
  942. data/ext/v8/upstream/scons/MANIFEST +202 -0
  943. data/ext/v8/upstream/scons/PKG-INFO +13 -0
  944. data/ext/v8/upstream/scons/README.txt +273 -0
  945. data/ext/v8/upstream/scons/RELEASE.txt +1040 -0
  946. data/ext/v8/upstream/scons/engine/SCons/Action.py +1256 -0
  947. data/ext/v8/upstream/scons/engine/SCons/Builder.py +868 -0
  948. data/ext/v8/upstream/scons/engine/SCons/CacheDir.py +217 -0
  949. data/ext/v8/upstream/scons/engine/SCons/Conftest.py +794 -0
  950. data/ext/v8/upstream/scons/engine/SCons/Debug.py +237 -0
  951. data/ext/v8/upstream/scons/engine/SCons/Defaults.py +485 -0
  952. data/ext/v8/upstream/scons/engine/SCons/Environment.py +2327 -0
  953. data/ext/v8/upstream/scons/engine/SCons/Errors.py +207 -0
  954. data/ext/v8/upstream/scons/engine/SCons/Executor.py +636 -0
  955. data/ext/v8/upstream/scons/engine/SCons/Job.py +435 -0
  956. data/ext/v8/upstream/scons/engine/SCons/Memoize.py +292 -0
  957. data/ext/v8/upstream/scons/engine/SCons/Node/Alias.py +153 -0
  958. data/ext/v8/upstream/scons/engine/SCons/Node/FS.py +3220 -0
  959. data/ext/v8/upstream/scons/engine/SCons/Node/Python.py +128 -0
  960. data/ext/v8/upstream/scons/engine/SCons/Node/__init__.py +1341 -0
  961. data/ext/v8/upstream/scons/engine/SCons/Options/BoolOption.py +50 -0
  962. data/ext/v8/upstream/scons/engine/SCons/Options/EnumOption.py +50 -0
  963. data/ext/v8/upstream/scons/engine/SCons/Options/ListOption.py +50 -0
  964. data/ext/v8/upstream/scons/engine/SCons/Options/PackageOption.py +50 -0
  965. data/ext/v8/upstream/scons/engine/SCons/Options/PathOption.py +76 -0
  966. data/ext/v8/upstream/scons/engine/SCons/Options/__init__.py +74 -0
  967. data/ext/v8/upstream/scons/engine/SCons/PathList.py +232 -0
  968. data/ext/v8/upstream/scons/engine/SCons/Platform/__init__.py +236 -0
  969. data/ext/v8/upstream/scons/engine/SCons/Platform/aix.py +70 -0
  970. data/ext/v8/upstream/scons/engine/SCons/Platform/cygwin.py +55 -0
  971. data/ext/v8/upstream/scons/engine/SCons/Platform/darwin.py +46 -0
  972. data/ext/v8/upstream/scons/engine/SCons/Platform/hpux.py +46 -0
  973. data/ext/v8/upstream/scons/engine/SCons/Platform/irix.py +44 -0
  974. data/ext/v8/upstream/scons/engine/SCons/Platform/os2.py +58 -0
  975. data/ext/v8/upstream/scons/engine/SCons/Platform/posix.py +264 -0
  976. data/ext/v8/upstream/scons/engine/SCons/Platform/sunos.py +50 -0
  977. data/ext/v8/upstream/scons/engine/SCons/Platform/win32.py +386 -0
  978. data/ext/v8/upstream/scons/engine/SCons/SConf.py +1038 -0
  979. data/ext/v8/upstream/scons/engine/SCons/SConsign.py +381 -0
  980. data/ext/v8/upstream/scons/engine/SCons/Scanner/C.py +132 -0
  981. data/ext/v8/upstream/scons/engine/SCons/Scanner/D.py +74 -0
  982. data/ext/v8/upstream/scons/engine/SCons/Scanner/Dir.py +111 -0
  983. data/ext/v8/upstream/scons/engine/SCons/Scanner/Fortran.py +320 -0
  984. data/ext/v8/upstream/scons/engine/SCons/Scanner/IDL.py +48 -0
  985. data/ext/v8/upstream/scons/engine/SCons/Scanner/LaTeX.py +378 -0
  986. data/ext/v8/upstream/scons/engine/SCons/Scanner/Prog.py +103 -0
  987. data/ext/v8/upstream/scons/engine/SCons/Scanner/RC.py +55 -0
  988. data/ext/v8/upstream/scons/engine/SCons/Scanner/__init__.py +415 -0
  989. data/ext/v8/upstream/scons/engine/SCons/Script/Interactive.py +386 -0
  990. data/ext/v8/upstream/scons/engine/SCons/Script/Main.py +1360 -0
  991. data/ext/v8/upstream/scons/engine/SCons/Script/SConsOptions.py +944 -0
  992. data/ext/v8/upstream/scons/engine/SCons/Script/SConscript.py +642 -0
  993. data/ext/v8/upstream/scons/engine/SCons/Script/__init__.py +414 -0
  994. data/ext/v8/upstream/scons/engine/SCons/Sig.py +63 -0
  995. data/ext/v8/upstream/scons/engine/SCons/Subst.py +911 -0
  996. data/ext/v8/upstream/scons/engine/SCons/Taskmaster.py +1030 -0
  997. data/ext/v8/upstream/scons/engine/SCons/Tool/386asm.py +61 -0
  998. data/ext/v8/upstream/scons/engine/SCons/Tool/BitKeeper.py +65 -0
  999. data/ext/v8/upstream/scons/engine/SCons/Tool/CVS.py +73 -0
  1000. data/ext/v8/upstream/scons/engine/SCons/Tool/FortranCommon.py +247 -0
  1001. data/ext/v8/upstream/scons/engine/SCons/Tool/JavaCommon.py +324 -0
  1002. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/__init__.py +56 -0
  1003. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/arch.py +61 -0
  1004. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/common.py +210 -0
  1005. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/netframework.py +84 -0
  1006. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/sdk.py +321 -0
  1007. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vc.py +367 -0
  1008. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vs.py +497 -0
  1009. data/ext/v8/upstream/scons/engine/SCons/Tool/Perforce.py +104 -0
  1010. data/ext/v8/upstream/scons/engine/SCons/Tool/PharLapCommon.py +138 -0
  1011. data/ext/v8/upstream/scons/engine/SCons/Tool/RCS.py +64 -0
  1012. data/ext/v8/upstream/scons/engine/SCons/Tool/SCCS.py +64 -0
  1013. data/ext/v8/upstream/scons/engine/SCons/Tool/Subversion.py +71 -0
  1014. data/ext/v8/upstream/scons/engine/SCons/Tool/__init__.py +675 -0
  1015. data/ext/v8/upstream/scons/engine/SCons/Tool/aixc++.py +82 -0
  1016. data/ext/v8/upstream/scons/engine/SCons/Tool/aixcc.py +74 -0
  1017. data/ext/v8/upstream/scons/engine/SCons/Tool/aixf77.py +80 -0
  1018. data/ext/v8/upstream/scons/engine/SCons/Tool/aixlink.py +76 -0
  1019. data/ext/v8/upstream/scons/engine/SCons/Tool/applelink.py +71 -0
  1020. data/ext/v8/upstream/scons/engine/SCons/Tool/ar.py +63 -0
  1021. data/ext/v8/upstream/scons/engine/SCons/Tool/as.py +78 -0
  1022. data/ext/v8/upstream/scons/engine/SCons/Tool/bcc32.py +82 -0
  1023. data/ext/v8/upstream/scons/engine/SCons/Tool/c++.py +99 -0
  1024. data/ext/v8/upstream/scons/engine/SCons/Tool/cc.py +114 -0
  1025. data/ext/v8/upstream/scons/engine/SCons/Tool/cvf.py +58 -0
  1026. data/ext/v8/upstream/scons/engine/SCons/Tool/default.py +50 -0
  1027. data/ext/v8/upstream/scons/engine/SCons/Tool/dmd.py +224 -0
  1028. data/ext/v8/upstream/scons/engine/SCons/Tool/dvi.py +64 -0
  1029. data/ext/v8/upstream/scons/engine/SCons/Tool/dvipdf.py +125 -0
  1030. data/ext/v8/upstream/scons/engine/SCons/Tool/dvips.py +94 -0
  1031. data/ext/v8/upstream/scons/engine/SCons/Tool/f77.py +62 -0
  1032. data/ext/v8/upstream/scons/engine/SCons/Tool/f90.py +62 -0
  1033. data/ext/v8/upstream/scons/engine/SCons/Tool/f95.py +63 -0
  1034. data/ext/v8/upstream/scons/engine/SCons/Tool/filesystem.py +98 -0
  1035. data/ext/v8/upstream/scons/engine/SCons/Tool/fortran.py +63 -0
  1036. data/ext/v8/upstream/scons/engine/SCons/Tool/g++.py +90 -0
  1037. data/ext/v8/upstream/scons/engine/SCons/Tool/g77.py +73 -0
  1038. data/ext/v8/upstream/scons/engine/SCons/Tool/gas.py +53 -0
  1039. data/ext/v8/upstream/scons/engine/SCons/Tool/gcc.py +80 -0
  1040. data/ext/v8/upstream/scons/engine/SCons/Tool/gfortran.py +64 -0
  1041. data/ext/v8/upstream/scons/engine/SCons/Tool/gnulink.py +63 -0
  1042. data/ext/v8/upstream/scons/engine/SCons/Tool/gs.py +81 -0
  1043. data/ext/v8/upstream/scons/engine/SCons/Tool/hpc++.py +85 -0
  1044. data/ext/v8/upstream/scons/engine/SCons/Tool/hpcc.py +53 -0
  1045. data/ext/v8/upstream/scons/engine/SCons/Tool/hplink.py +77 -0
  1046. data/ext/v8/upstream/scons/engine/SCons/Tool/icc.py +59 -0
  1047. data/ext/v8/upstream/scons/engine/SCons/Tool/icl.py +52 -0
  1048. data/ext/v8/upstream/scons/engine/SCons/Tool/ifl.py +72 -0
  1049. data/ext/v8/upstream/scons/engine/SCons/Tool/ifort.py +90 -0
  1050. data/ext/v8/upstream/scons/engine/SCons/Tool/ilink.py +59 -0
  1051. data/ext/v8/upstream/scons/engine/SCons/Tool/ilink32.py +60 -0
  1052. data/ext/v8/upstream/scons/engine/SCons/Tool/install.py +229 -0
  1053. data/ext/v8/upstream/scons/engine/SCons/Tool/intelc.py +490 -0
  1054. data/ext/v8/upstream/scons/engine/SCons/Tool/ipkg.py +71 -0
  1055. data/ext/v8/upstream/scons/engine/SCons/Tool/jar.py +110 -0
  1056. data/ext/v8/upstream/scons/engine/SCons/Tool/javac.py +234 -0
  1057. data/ext/v8/upstream/scons/engine/SCons/Tool/javah.py +138 -0
  1058. data/ext/v8/upstream/scons/engine/SCons/Tool/latex.py +79 -0
  1059. data/ext/v8/upstream/scons/engine/SCons/Tool/lex.py +99 -0
  1060. data/ext/v8/upstream/scons/engine/SCons/Tool/link.py +121 -0
  1061. data/ext/v8/upstream/scons/engine/SCons/Tool/linkloc.py +112 -0
  1062. data/ext/v8/upstream/scons/engine/SCons/Tool/m4.py +63 -0
  1063. data/ext/v8/upstream/scons/engine/SCons/Tool/masm.py +77 -0
  1064. data/ext/v8/upstream/scons/engine/SCons/Tool/midl.py +90 -0
  1065. data/ext/v8/upstream/scons/engine/SCons/Tool/mingw.py +159 -0
  1066. data/ext/v8/upstream/scons/engine/SCons/Tool/mslib.py +64 -0
  1067. data/ext/v8/upstream/scons/engine/SCons/Tool/mslink.py +266 -0
  1068. data/ext/v8/upstream/scons/engine/SCons/Tool/mssdk.py +50 -0
  1069. data/ext/v8/upstream/scons/engine/SCons/Tool/msvc.py +269 -0
  1070. data/ext/v8/upstream/scons/engine/SCons/Tool/msvs.py +1439 -0
  1071. data/ext/v8/upstream/scons/engine/SCons/Tool/mwcc.py +208 -0
  1072. data/ext/v8/upstream/scons/engine/SCons/Tool/mwld.py +107 -0
  1073. data/ext/v8/upstream/scons/engine/SCons/Tool/nasm.py +72 -0
  1074. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/__init__.py +314 -0
  1075. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/ipk.py +185 -0
  1076. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/msi.py +526 -0
  1077. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/rpm.py +367 -0
  1078. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_tarbz2.py +43 -0
  1079. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_targz.py +43 -0
  1080. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_zip.py +43 -0
  1081. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/tarbz2.py +44 -0
  1082. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/targz.py +44 -0
  1083. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/zip.py +44 -0
  1084. data/ext/v8/upstream/scons/engine/SCons/Tool/pdf.py +78 -0
  1085. data/ext/v8/upstream/scons/engine/SCons/Tool/pdflatex.py +83 -0
  1086. data/ext/v8/upstream/scons/engine/SCons/Tool/pdftex.py +108 -0
  1087. data/ext/v8/upstream/scons/engine/SCons/Tool/qt.py +336 -0
  1088. data/ext/v8/upstream/scons/engine/SCons/Tool/rmic.py +121 -0
  1089. data/ext/v8/upstream/scons/engine/SCons/Tool/rpcgen.py +70 -0
  1090. data/ext/v8/upstream/scons/engine/SCons/Tool/rpm.py +132 -0
  1091. data/ext/v8/upstream/scons/engine/SCons/Tool/sgiar.py +68 -0
  1092. data/ext/v8/upstream/scons/engine/SCons/Tool/sgic++.py +58 -0
  1093. data/ext/v8/upstream/scons/engine/SCons/Tool/sgicc.py +53 -0
  1094. data/ext/v8/upstream/scons/engine/SCons/Tool/sgilink.py +63 -0
  1095. data/ext/v8/upstream/scons/engine/SCons/Tool/sunar.py +67 -0
  1096. data/ext/v8/upstream/scons/engine/SCons/Tool/sunc++.py +142 -0
  1097. data/ext/v8/upstream/scons/engine/SCons/Tool/suncc.py +58 -0
  1098. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf77.py +63 -0
  1099. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf90.py +64 -0
  1100. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf95.py +64 -0
  1101. data/ext/v8/upstream/scons/engine/SCons/Tool/sunlink.py +77 -0
  1102. data/ext/v8/upstream/scons/engine/SCons/Tool/swig.py +186 -0
  1103. data/ext/v8/upstream/scons/engine/SCons/Tool/tar.py +73 -0
  1104. data/ext/v8/upstream/scons/engine/SCons/Tool/tex.py +805 -0
  1105. data/ext/v8/upstream/scons/engine/SCons/Tool/textfile.py +175 -0
  1106. data/ext/v8/upstream/scons/engine/SCons/Tool/tlib.py +53 -0
  1107. data/ext/v8/upstream/scons/engine/SCons/Tool/wix.py +100 -0
  1108. data/ext/v8/upstream/scons/engine/SCons/Tool/yacc.py +131 -0
  1109. data/ext/v8/upstream/scons/engine/SCons/Tool/zip.py +100 -0
  1110. data/ext/v8/upstream/scons/engine/SCons/Util.py +1645 -0
  1111. data/ext/v8/upstream/scons/engine/SCons/Variables/BoolVariable.py +91 -0
  1112. data/ext/v8/upstream/scons/engine/SCons/Variables/EnumVariable.py +107 -0
  1113. data/ext/v8/upstream/scons/engine/SCons/Variables/ListVariable.py +139 -0
  1114. data/ext/v8/upstream/scons/engine/SCons/Variables/PackageVariable.py +109 -0
  1115. data/ext/v8/upstream/scons/engine/SCons/Variables/PathVariable.py +147 -0
  1116. data/ext/v8/upstream/scons/engine/SCons/Variables/__init__.py +317 -0
  1117. data/ext/v8/upstream/scons/engine/SCons/Warnings.py +228 -0
  1118. data/ext/v8/upstream/scons/engine/SCons/__init__.py +49 -0
  1119. data/ext/v8/upstream/scons/engine/SCons/compat/__init__.py +302 -0
  1120. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_UserString.py +98 -0
  1121. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_hashlib.py +91 -0
  1122. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_itertools.py +124 -0
  1123. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_optparse.py +1725 -0
  1124. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets.py +583 -0
  1125. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets15.py +176 -0
  1126. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_shlex.py +325 -0
  1127. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_subprocess.py +1296 -0
  1128. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_textwrap.py +382 -0
  1129. data/ext/v8/upstream/scons/engine/SCons/compat/builtins.py +187 -0
  1130. data/ext/v8/upstream/scons/engine/SCons/cpp.py +598 -0
  1131. data/ext/v8/upstream/scons/engine/SCons/dblite.py +248 -0
  1132. data/ext/v8/upstream/scons/engine/SCons/exitfuncs.py +77 -0
  1133. data/ext/v8/upstream/scons/os_spawnv_fix.diff +83 -0
  1134. data/ext/v8/upstream/scons/scons-time.1 +1017 -0
  1135. data/ext/v8/upstream/scons/scons.1 +15179 -0
  1136. data/ext/v8/upstream/scons/sconsign.1 +208 -0
  1137. data/ext/v8/upstream/scons/script/scons +184 -0
  1138. data/ext/v8/upstream/scons/script/scons-time +1529 -0
  1139. data/ext/v8/upstream/scons/script/scons.bat +31 -0
  1140. data/ext/v8/upstream/scons/script/sconsign +508 -0
  1141. data/ext/v8/upstream/scons/setup.cfg +6 -0
  1142. data/ext/v8/upstream/scons/setup.py +427 -0
  1143. data/ext/v8/v8_cxt.cpp +3 -0
  1144. data/ext/v8/v8_cxt.h +9 -0
  1145. data/lib/v8.rb +1 -1
  1146. data/spec/redjs/jsapi_spec.rb +6 -0
  1147. data/therubyracer.gemspec +4 -4
  1148. metadata +1146 -2
@@ -0,0 +1,208 @@
1
+ .\" Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
2
+ .\"
3
+ .\" Permission is hereby granted, free of charge, to any person obtaining
4
+ .\" a copy of this software and associated documentation files (the
5
+ .\" "Software"), to deal in the Software without restriction, including
6
+ .\" without limitation the rights to use, copy, modify, merge, publish,
7
+ .\" distribute, sublicense, and/or sell copies of the Software, and to
8
+ .\" permit persons to whom the Software is furnished to do so, subject to
9
+ .\" the following conditions:
10
+ .\"
11
+ .\" The above copyright notice and this permission notice shall be included
12
+ .\" in all copies or substantial portions of the Software.
13
+ .\"
14
+ .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
15
+ .\" KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
16
+ .\" WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ .\" NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ .\" LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ .\" OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ .\" WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+ .\"
22
+ .\" doc/man/sconsign.1 4629 2010/01/17 22:23:21 scons
23
+ .\"
24
+ .\" ES - Example Start - indents and turns off line fill
25
+ .de ES
26
+ .RS
27
+ .nf
28
+ ..
29
+ .\" EE - Example End - ends indent and turns line fill back on
30
+ .de EE
31
+ .RE
32
+ .fi
33
+ ..
34
+ .TH SCONSIGN 1 "January 2010"
35
+ .SH NAME
36
+ sconsign \- print SCons .sconsign file information
37
+ .SH SYNOPSIS
38
+ .B sconsign
39
+ [
40
+ .IR options ...
41
+ ]
42
+ .IR file
43
+ [ ... ]
44
+ .SH DESCRIPTION
45
+
46
+ The
47
+ .B sconsign
48
+ command
49
+ displays the contents of one or more
50
+ .B .sconsign
51
+ files specified by the user.
52
+
53
+ By default,
54
+ .B sconsign
55
+ dumps the entire contents of the
56
+ specified file(s).
57
+ Each entry is printed in the following format:
58
+
59
+ file: signature timestamp length
60
+ implicit_dependency_1: signature timestamp length
61
+ implicit_dependency_2: signature timestamp length
62
+ action_signature [action string]
63
+
64
+ .B None
65
+ is printed
66
+ in place of any missing timestamp, bsig, or csig
67
+ values for
68
+ any entry
69
+ or any of its dependencies.
70
+ If the entry has no implicit dependencies,
71
+ or no build action,
72
+ the lines are simply omitted.
73
+
74
+ By default,
75
+ .B sconsign
76
+ assumes that any
77
+ .I file
78
+ arguments that end with a
79
+ .B .dbm
80
+ suffix contains
81
+ signature entries for
82
+ more than one directory
83
+ (that is,
84
+ was specified by the
85
+ .B SConsignFile ()
86
+ function).
87
+ Any
88
+ .I file
89
+ argument that does not end in
90
+ .B .dbm
91
+ is assumed to be a traditional
92
+ .B .sconsign
93
+ file containing the signature entries
94
+ for a single directory.
95
+ An explicit format
96
+ may be specified using the
97
+ .B -f
98
+ or
99
+ .B --file=
100
+ options.
101
+
102
+ .SH OPTIONS
103
+
104
+ Various options control what information is printed
105
+ and the format:
106
+
107
+ .TP
108
+ -a, --act, --action
109
+ Prints the build action information
110
+ for all entries or the specified entries.
111
+
112
+ .TP
113
+ -c, --csig
114
+ Prints the content signature (csig) information
115
+ for all entries or the specified entries.
116
+
117
+ .TP
118
+ -d DIRECTORY, --dir=DIRECTORY
119
+ When the signatures are being
120
+ read from a
121
+ .B .dbm
122
+ file, or the
123
+ .B -f dbm
124
+ or
125
+ .B --format=dbm
126
+ options are used,
127
+ prints information about
128
+ only the signatures
129
+ for entries in the specified
130
+ .IR DIRECTORY .
131
+
132
+ .TP
133
+ -e ENTRY, --entry=ENTRY
134
+ Prints information about only the specified
135
+ .IR ENTRY .
136
+ Multiple -e options may be used,
137
+ in which case information about each
138
+ .I ENTRY
139
+ is printed in the order in which the
140
+ options are specified on the command line.
141
+
142
+ .TP
143
+ -f FORMAT, --format=FORMAT
144
+ The file(s) to be printed
145
+ are in the specified
146
+ .IR FORMAT .
147
+ Legal values are
148
+ .B dbm
149
+ (the DBM format used
150
+ when the
151
+ .BR SConsignFile ()
152
+ function is used)
153
+ or
154
+ .B sconsign
155
+ (the default format
156
+ used for an individual
157
+ .B .sconsign
158
+ file in each directory).
159
+
160
+ .TP
161
+ -h, --help
162
+ Prints a help message and exits.
163
+
164
+ .TP
165
+ -i, --implicit
166
+ Prints the list of cached implicit dependencies
167
+ for all entries or the the specified entries.
168
+
169
+ .TP
170
+ --raw
171
+ Prints a pretty-printed representation
172
+ of the raw Python dictionary that holds
173
+ build information about individual entry
174
+ (both the entry itself or its implicit dependencies).
175
+ An entry's build action is still printed in its usual format.
176
+
177
+ .TP
178
+ -r, --readable
179
+ Prints timestamps in a human-readable string,
180
+ enclosed in single quotes.
181
+
182
+ .TP
183
+ -t, --timestamp
184
+ Prints the timestamp information
185
+ for all entries or the specified entries.
186
+
187
+ .TP
188
+ -v, --verbose
189
+ Prints labels identifying each field being printed.
190
+
191
+ .SH ENVIRONMENT
192
+
193
+ .IP SCONS_LIB_DIR
194
+ Specifies the directory that contains the SCons Python module directory
195
+ (e.g. /home/aroach/scons-src-0.01/src/engine).
196
+ on the command line.
197
+
198
+ .SH "SEE ALSO"
199
+ .BR scons ,
200
+ .B scons
201
+ User Manual,
202
+ .B scons
203
+ Design Document,
204
+ .B scons
205
+ source code.
206
+
207
+ .SH AUTHORS
208
+ Steven Knight <knight at baldmt dot com>
@@ -0,0 +1,184 @@
1
+ #! /usr/bin/env python
2
+ #
3
+ # SCons - a Software Constructor
4
+ #
5
+ # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining
8
+ # a copy of this software and associated documentation files (the
9
+ # "Software"), to deal in the Software without restriction, including
10
+ # without limitation the rights to use, copy, modify, merge, publish,
11
+ # distribute, sublicense, and/or sell copies of the Software, and to
12
+ # permit persons to whom the Software is furnished to do so, subject to
13
+ # the following conditions:
14
+ #
15
+ # The above copyright notice and this permission notice shall be included
16
+ # in all copies or substantial portions of the Software.
17
+ #
18
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
19
+ # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
20
+ # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
+ #
26
+
27
+ __revision__ = "src/script/scons.py 4629 2010/01/17 22:23:21 scons"
28
+
29
+ __version__ = "1.2.0.d20100117"
30
+
31
+ __build__ = "r4629"
32
+
33
+ __buildsys__ = "scons-dev"
34
+
35
+ __date__ = "2010/01/17 22:23:21"
36
+
37
+ __developer__ = "scons"
38
+
39
+ import os
40
+ import os.path
41
+ import sys
42
+
43
+ ##############################################################################
44
+ # BEGIN STANDARD SCons SCRIPT HEADER
45
+ #
46
+ # This is the cut-and-paste logic so that a self-contained script can
47
+ # interoperate correctly with different SCons versions and installation
48
+ # locations for the engine. If you modify anything in this section, you
49
+ # should also change other scripts that use this same header.
50
+ ##############################################################################
51
+
52
+ # Strip the script directory from sys.path() so on case-insensitive
53
+ # (WIN32) systems Python doesn't think that the "scons" script is the
54
+ # "SCons" package. Replace it with our own library directories
55
+ # (version-specific first, in case they installed by hand there,
56
+ # followed by generic) so we pick up the right version of the build
57
+ # engine modules if they're in either directory.
58
+
59
+
60
+ # Check to see if the python version is > 3.0 which is currently unsupported
61
+ # If so exit with error message
62
+ try:
63
+ if sys.version_info >= (3,0,0):
64
+ msg = "scons: *** SCons version %s does not run under Python version %s.\n"
65
+ sys.stderr.write(msg % (__version__, sys.version.split()[0]))
66
+ sys.exit(1)
67
+ except AttributeError:
68
+ # Pre-1.6 Python has no sys.version_info
69
+ # No need to check version as we then know the version is < 3.0.0 and supported
70
+ pass
71
+
72
+ script_dir = sys.path[0]
73
+
74
+ if script_dir in sys.path:
75
+ sys.path.remove(script_dir)
76
+
77
+ libs = []
78
+
79
+ if os.environ.has_key("SCONS_LIB_DIR"):
80
+ libs.append(os.environ["SCONS_LIB_DIR"])
81
+
82
+ local_version = 'scons-local-' + __version__
83
+ local = 'scons-local'
84
+ if script_dir:
85
+ local_version = os.path.join(script_dir, local_version)
86
+ local = os.path.join(script_dir, local)
87
+ libs.append(os.path.abspath(local_version))
88
+ libs.append(os.path.abspath(local))
89
+
90
+ scons_version = 'scons-%s' % __version__
91
+
92
+ prefs = []
93
+
94
+ if sys.platform == 'win32':
95
+ # sys.prefix is (likely) C:\Python*;
96
+ # check only C:\Python*.
97
+ prefs.append(sys.prefix)
98
+ prefs.append(os.path.join(sys.prefix, 'Lib', 'site-packages'))
99
+ else:
100
+ # On other (POSIX) platforms, things are more complicated due to
101
+ # the variety of path names and library locations. Try to be smart
102
+ # about it.
103
+ if script_dir == 'bin':
104
+ # script_dir is `pwd`/bin;
105
+ # check `pwd`/lib/scons*.
106
+ prefs.append(os.getcwd())
107
+ else:
108
+ if script_dir == '.' or script_dir == '':
109
+ script_dir = os.getcwd()
110
+ head, tail = os.path.split(script_dir)
111
+ if tail == "bin":
112
+ # script_dir is /foo/bin;
113
+ # check /foo/lib/scons*.
114
+ prefs.append(head)
115
+
116
+ head, tail = os.path.split(sys.prefix)
117
+ if tail == "usr":
118
+ # sys.prefix is /foo/usr;
119
+ # check /foo/usr/lib/scons* first,
120
+ # then /foo/usr/local/lib/scons*.
121
+ prefs.append(sys.prefix)
122
+ prefs.append(os.path.join(sys.prefix, "local"))
123
+ elif tail == "local":
124
+ h, t = os.path.split(head)
125
+ if t == "usr":
126
+ # sys.prefix is /foo/usr/local;
127
+ # check /foo/usr/local/lib/scons* first,
128
+ # then /foo/usr/lib/scons*.
129
+ prefs.append(sys.prefix)
130
+ prefs.append(head)
131
+ else:
132
+ # sys.prefix is /foo/local;
133
+ # check only /foo/local/lib/scons*.
134
+ prefs.append(sys.prefix)
135
+ else:
136
+ # sys.prefix is /foo (ends in neither /usr or /local);
137
+ # check only /foo/lib/scons*.
138
+ prefs.append(sys.prefix)
139
+
140
+ temp = map(lambda x: os.path.join(x, 'lib'), prefs)
141
+ temp.extend(map(lambda x: os.path.join(x,
142
+ 'lib',
143
+ 'python' + sys.version[:3],
144
+ 'site-packages'),
145
+ prefs))
146
+ prefs = temp
147
+
148
+ # Add the parent directory of the current python's library to the
149
+ # preferences. On SuSE-91/AMD64, for example, this is /usr/lib64,
150
+ # not /usr/lib.
151
+ try:
152
+ libpath = os.__file__
153
+ except AttributeError:
154
+ pass
155
+ else:
156
+ # Split /usr/libfoo/python*/os.py to /usr/libfoo/python*.
157
+ libpath, tail = os.path.split(libpath)
158
+ # Split /usr/libfoo/python* to /usr/libfoo
159
+ libpath, tail = os.path.split(libpath)
160
+ # Check /usr/libfoo/scons*.
161
+ prefs.append(libpath)
162
+
163
+ # Look first for 'scons-__version__' in all of our preference libs,
164
+ # then for 'scons'.
165
+ libs.extend(map(lambda x: os.path.join(x, scons_version), prefs))
166
+ libs.extend(map(lambda x: os.path.join(x, 'scons'), prefs))
167
+
168
+ sys.path = libs + sys.path
169
+
170
+ ##############################################################################
171
+ # END STANDARD SCons SCRIPT HEADER
172
+ ##############################################################################
173
+
174
+ if __name__ == "__main__":
175
+ import SCons.Script
176
+ # this does all the work, and calls sys.exit
177
+ # with the proper exit status when done.
178
+ SCons.Script.main()
179
+
180
+ # Local Variables:
181
+ # tab-width:4
182
+ # indent-tabs-mode:nil
183
+ # End:
184
+ # vim: set expandtab tabstop=4 shiftwidth=4:
@@ -0,0 +1,1529 @@
1
+ #!/usr/bin/env python
2
+ #
3
+ # scons-time - run SCons timings and collect statistics
4
+ #
5
+ # A script for running a configuration through SCons with a standard
6
+ # set of invocations to collect timing and memory statistics and to
7
+ # capture the results in a consistent set of output files for display
8
+ # and analysis.
9
+ #
10
+
11
+ #
12
+ # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
13
+ #
14
+ # Permission is hereby granted, free of charge, to any person obtaining
15
+ # a copy of this software and associated documentation files (the
16
+ # "Software"), to deal in the Software without restriction, including
17
+ # without limitation the rights to use, copy, modify, merge, publish,
18
+ # distribute, sublicense, and/or sell copies of the Software, and to
19
+ # permit persons to whom the Software is furnished to do so, subject to
20
+ # the following conditions:
21
+ #
22
+ # The above copyright notice and this permission notice shall be included
23
+ # in all copies or substantial portions of the Software.
24
+ #
25
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
26
+ # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
27
+ # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32
+ #
33
+
34
+ from __future__ import nested_scopes
35
+
36
+ __revision__ = "src/script/scons-time.py 4629 2010/01/17 22:23:21 scons"
37
+
38
+ import getopt
39
+ import glob
40
+ import os
41
+ import os.path
42
+ import re
43
+ import shutil
44
+ import string
45
+ import sys
46
+ import tempfile
47
+ import time
48
+
49
+ try:
50
+ False
51
+ except NameError:
52
+ # Pre-2.2 Python has no False keyword.
53
+ import __builtin__
54
+ __builtin__.False = not 1
55
+
56
+ try:
57
+ True
58
+ except NameError:
59
+ # Pre-2.2 Python has no True keyword.
60
+ import __builtin__
61
+ __builtin__.True = not 0
62
+
63
+ def make_temp_file(**kw):
64
+ try:
65
+ result = tempfile.mktemp(**kw)
66
+ try:
67
+ result = os.path.realpath(result)
68
+ except AttributeError:
69
+ # Python 2.1 has no os.path.realpath() method.
70
+ pass
71
+ except TypeError:
72
+ try:
73
+ save_template = tempfile.template
74
+ prefix = kw['prefix']
75
+ del kw['prefix']
76
+ tempfile.template = prefix
77
+ result = tempfile.mktemp(**kw)
78
+ finally:
79
+ tempfile.template = save_template
80
+ return result
81
+
82
+ def HACK_for_exec(cmd, *args):
83
+ '''
84
+ For some reason, Python won't allow an exec() within a function
85
+ that also declares an internal function (including lambda functions).
86
+ This function is a hack that calls exec() in a function with no
87
+ internal functions.
88
+ '''
89
+ if not args: exec(cmd)
90
+ elif len(args) == 1: exec cmd in args[0]
91
+ else: exec cmd in args[0], args[1]
92
+
93
+ class Plotter:
94
+ def increment_size(self, largest):
95
+ """
96
+ Return the size of each horizontal increment line for a specified
97
+ maximum value. This returns a value that will provide somewhere
98
+ between 5 and 9 horizontal lines on the graph, on some set of
99
+ boundaries that are multiples of 10/100/1000/etc.
100
+ """
101
+ i = largest / 5
102
+ if not i:
103
+ return largest
104
+ multiplier = 1
105
+ while i >= 10:
106
+ i = i / 10
107
+ multiplier = multiplier * 10
108
+ return i * multiplier
109
+
110
+ def max_graph_value(self, largest):
111
+ # Round up to next integer.
112
+ largest = int(largest) + 1
113
+ increment = self.increment_size(largest)
114
+ return ((largest + increment - 1) / increment) * increment
115
+
116
+ class Line:
117
+ def __init__(self, points, type, title, label, comment, fmt="%s %s"):
118
+ self.points = points
119
+ self.type = type
120
+ self.title = title
121
+ self.label = label
122
+ self.comment = comment
123
+ self.fmt = fmt
124
+
125
+ def print_label(self, inx, x, y):
126
+ if self.label:
127
+ print 'set label %s "%s" at %s,%s right' % (inx, self.label, x, y)
128
+
129
+ def plot_string(self):
130
+ if self.title:
131
+ title_string = 'title "%s"' % self.title
132
+ else:
133
+ title_string = 'notitle'
134
+ return "'-' %s with lines lt %s" % (title_string, self.type)
135
+
136
+ def print_points(self, fmt=None):
137
+ if fmt is None:
138
+ fmt = self.fmt
139
+ if self.comment:
140
+ print '# %s' % self.comment
141
+ for x, y in self.points:
142
+ # If y is None, it usually represents some kind of break
143
+ # in the line's index number. We might want to represent
144
+ # this some way rather than just drawing the line straight
145
+ # between the two points on either side.
146
+ if not y is None:
147
+ print fmt % (x, y)
148
+ print 'e'
149
+
150
+ def get_x_values(self):
151
+ return [ p[0] for p in self.points ]
152
+
153
+ def get_y_values(self):
154
+ return [ p[1] for p in self.points ]
155
+
156
+ class Gnuplotter(Plotter):
157
+
158
+ def __init__(self, title, key_location):
159
+ self.lines = []
160
+ self.title = title
161
+ self.key_location = key_location
162
+
163
+ def line(self, points, type, title=None, label=None, comment=None, fmt='%s %s'):
164
+ if points:
165
+ line = Line(points, type, title, label, comment, fmt)
166
+ self.lines.append(line)
167
+
168
+ def plot_string(self, line):
169
+ return line.plot_string()
170
+
171
+ def vertical_bar(self, x, type, label, comment):
172
+ if self.get_min_x() <= x and x <= self.get_max_x():
173
+ points = [(x, 0), (x, self.max_graph_value(self.get_max_y()))]
174
+ self.line(points, type, label, comment)
175
+
176
+ def get_all_x_values(self):
177
+ result = []
178
+ for line in self.lines:
179
+ result.extend(line.get_x_values())
180
+ return filter(lambda r: not r is None, result)
181
+
182
+ def get_all_y_values(self):
183
+ result = []
184
+ for line in self.lines:
185
+ result.extend(line.get_y_values())
186
+ return filter(lambda r: not r is None, result)
187
+
188
+ def get_min_x(self):
189
+ try:
190
+ return self.min_x
191
+ except AttributeError:
192
+ try:
193
+ self.min_x = min(self.get_all_x_values())
194
+ except ValueError:
195
+ self.min_x = 0
196
+ return self.min_x
197
+
198
+ def get_max_x(self):
199
+ try:
200
+ return self.max_x
201
+ except AttributeError:
202
+ try:
203
+ self.max_x = max(self.get_all_x_values())
204
+ except ValueError:
205
+ self.max_x = 0
206
+ return self.max_x
207
+
208
+ def get_min_y(self):
209
+ try:
210
+ return self.min_y
211
+ except AttributeError:
212
+ try:
213
+ self.min_y = min(self.get_all_y_values())
214
+ except ValueError:
215
+ self.min_y = 0
216
+ return self.min_y
217
+
218
+ def get_max_y(self):
219
+ try:
220
+ return self.max_y
221
+ except AttributeError:
222
+ try:
223
+ self.max_y = max(self.get_all_y_values())
224
+ except ValueError:
225
+ self.max_y = 0
226
+ return self.max_y
227
+
228
+ def draw(self):
229
+
230
+ if not self.lines:
231
+ return
232
+
233
+ if self.title:
234
+ print 'set title "%s"' % self.title
235
+ print 'set key %s' % self.key_location
236
+
237
+ min_y = self.get_min_y()
238
+ max_y = self.max_graph_value(self.get_max_y())
239
+ range = max_y - min_y
240
+ incr = range / 10.0
241
+ start = min_y + (max_y / 2.0) + (2.0 * incr)
242
+ position = [ start - (i * incr) for i in xrange(5) ]
243
+
244
+ inx = 1
245
+ for line in self.lines:
246
+ line.print_label(inx, line.points[0][0]-1,
247
+ position[(inx-1) % len(position)])
248
+ inx += 1
249
+
250
+ plot_strings = [ self.plot_string(l) for l in self.lines ]
251
+ print 'plot ' + ', \\\n '.join(plot_strings)
252
+
253
+ for line in self.lines:
254
+ line.print_points()
255
+
256
+
257
+
258
+ def untar(fname):
259
+ import tarfile
260
+ tar = tarfile.open(name=fname, mode='r')
261
+ for tarinfo in tar:
262
+ tar.extract(tarinfo)
263
+ tar.close()
264
+
265
+ def unzip(fname):
266
+ import zipfile
267
+ zf = zipfile.ZipFile(fname, 'r')
268
+ for name in zf.namelist():
269
+ dir = os.path.dirname(name)
270
+ try:
271
+ os.makedirs(dir)
272
+ except:
273
+ pass
274
+ open(name, 'w').write(zf.read(name))
275
+
276
+ def read_tree(dir):
277
+ def read_files(arg, dirname, fnames):
278
+ for fn in fnames:
279
+ fn = os.path.join(dirname, fn)
280
+ if os.path.isfile(fn):
281
+ open(fn, 'rb').read()
282
+ os.path.walk('.', read_files, None)
283
+
284
+ def redirect_to_file(command, log):
285
+ return '%s > %s 2>&1' % (command, log)
286
+
287
+ def tee_to_file(command, log):
288
+ return '%s 2>&1 | tee %s' % (command, log)
289
+
290
+
291
+
292
+ class SConsTimer:
293
+ """
294
+ Usage: scons-time SUBCOMMAND [ARGUMENTS]
295
+ Type "scons-time help SUBCOMMAND" for help on a specific subcommand.
296
+
297
+ Available subcommands:
298
+ func Extract test-run data for a function
299
+ help Provides help
300
+ mem Extract --debug=memory data from test runs
301
+ obj Extract --debug=count data from test runs
302
+ time Extract --debug=time data from test runs
303
+ run Runs a test configuration
304
+ """
305
+
306
+ name = 'scons-time'
307
+ name_spaces = ' '*len(name)
308
+
309
+ def makedict(**kw):
310
+ return kw
311
+
312
+ default_settings = makedict(
313
+ aegis = 'aegis',
314
+ aegis_project = None,
315
+ chdir = None,
316
+ config_file = None,
317
+ initial_commands = [],
318
+ key_location = 'bottom left',
319
+ orig_cwd = os.getcwd(),
320
+ outdir = None,
321
+ prefix = '',
322
+ python = '"%s"' % sys.executable,
323
+ redirect = redirect_to_file,
324
+ scons = None,
325
+ scons_flags = '--debug=count --debug=memory --debug=time --debug=memoizer',
326
+ scons_lib_dir = None,
327
+ scons_wrapper = None,
328
+ startup_targets = '--help',
329
+ subdir = None,
330
+ subversion_url = None,
331
+ svn = 'svn',
332
+ svn_co_flag = '-q',
333
+ tar = 'tar',
334
+ targets = '',
335
+ targets0 = None,
336
+ targets1 = None,
337
+ targets2 = None,
338
+ title = None,
339
+ unzip = 'unzip',
340
+ verbose = False,
341
+ vertical_bars = [],
342
+
343
+ unpack_map = {
344
+ '.tar.gz' : (untar, '%(tar)s xzf %%s'),
345
+ '.tgz' : (untar, '%(tar)s xzf %%s'),
346
+ '.tar' : (untar, '%(tar)s xf %%s'),
347
+ '.zip' : (unzip, '%(unzip)s %%s'),
348
+ },
349
+ )
350
+
351
+ run_titles = [
352
+ 'Startup',
353
+ 'Full build',
354
+ 'Up-to-date build',
355
+ ]
356
+
357
+ run_commands = [
358
+ '%(python)s %(scons_wrapper)s %(scons_flags)s --profile=%(prof0)s %(targets0)s',
359
+ '%(python)s %(scons_wrapper)s %(scons_flags)s --profile=%(prof1)s %(targets1)s',
360
+ '%(python)s %(scons_wrapper)s %(scons_flags)s --profile=%(prof2)s %(targets2)s',
361
+ ]
362
+
363
+ stages = [
364
+ 'pre-read',
365
+ 'post-read',
366
+ 'pre-build',
367
+ 'post-build',
368
+ ]
369
+
370
+ stage_strings = {
371
+ 'pre-read' : 'Memory before reading SConscript files:',
372
+ 'post-read' : 'Memory after reading SConscript files:',
373
+ 'pre-build' : 'Memory before building targets:',
374
+ 'post-build' : 'Memory after building targets:',
375
+ }
376
+
377
+ memory_string_all = 'Memory '
378
+
379
+ default_stage = stages[-1]
380
+
381
+ time_strings = {
382
+ 'total' : 'Total build time',
383
+ 'SConscripts' : 'Total SConscript file execution time',
384
+ 'SCons' : 'Total SCons execution time',
385
+ 'commands' : 'Total command execution time',
386
+ }
387
+
388
+ time_string_all = 'Total .* time'
389
+
390
+ #
391
+
392
+ def __init__(self):
393
+ self.__dict__.update(self.default_settings)
394
+
395
+ # Functions for displaying and executing commands.
396
+
397
+ def subst(self, x, dictionary):
398
+ try:
399
+ return x % dictionary
400
+ except TypeError:
401
+ # x isn't a string (it's probably a Python function),
402
+ # so just return it.
403
+ return x
404
+
405
+ def subst_variables(self, command, dictionary):
406
+ """
407
+ Substitutes (via the format operator) the values in the specified
408
+ dictionary into the specified command.
409
+
410
+ The command can be an (action, string) tuple. In all cases, we
411
+ perform substitution on strings and don't worry if something isn't
412
+ a string. (It's probably a Python function to be executed.)
413
+ """
414
+ try:
415
+ command + ''
416
+ except TypeError:
417
+ action = command[0]
418
+ string = command[1]
419
+ args = command[2:]
420
+ else:
421
+ action = command
422
+ string = action
423
+ args = (())
424
+ action = self.subst(action, dictionary)
425
+ string = self.subst(string, dictionary)
426
+ return (action, string, args)
427
+
428
+ def _do_not_display(self, msg, *args):
429
+ pass
430
+
431
+ def display(self, msg, *args):
432
+ """
433
+ Displays the specified message.
434
+
435
+ Each message is prepended with a standard prefix of our name
436
+ plus the time.
437
+ """
438
+ if callable(msg):
439
+ msg = msg(*args)
440
+ else:
441
+ msg = msg % args
442
+ if msg is None:
443
+ return
444
+ fmt = '%s[%s]: %s\n'
445
+ sys.stdout.write(fmt % (self.name, time.strftime('%H:%M:%S'), msg))
446
+
447
+ def _do_not_execute(self, action, *args):
448
+ pass
449
+
450
+ def execute(self, action, *args):
451
+ """
452
+ Executes the specified action.
453
+
454
+ The action is called if it's a callable Python function, and
455
+ otherwise passed to os.system().
456
+ """
457
+ if callable(action):
458
+ action(*args)
459
+ else:
460
+ os.system(action % args)
461
+
462
+ def run_command_list(self, commands, dict):
463
+ """
464
+ Executes a list of commands, substituting values from the
465
+ specified dictionary.
466
+ """
467
+ commands = [ self.subst_variables(c, dict) for c in commands ]
468
+ for action, string, args in commands:
469
+ self.display(string, *args)
470
+ sys.stdout.flush()
471
+ status = self.execute(action, *args)
472
+ if status:
473
+ sys.exit(status)
474
+
475
+ def log_display(self, command, log):
476
+ command = self.subst(command, self.__dict__)
477
+ if log:
478
+ command = self.redirect(command, log)
479
+ return command
480
+
481
+ def log_execute(self, command, log):
482
+ command = self.subst(command, self.__dict__)
483
+ output = os.popen(command).read()
484
+ if self.verbose:
485
+ sys.stdout.write(output)
486
+ open(log, 'wb').write(output)
487
+
488
+ #
489
+
490
+ def archive_splitext(self, path):
491
+ """
492
+ Splits an archive name into a filename base and extension.
493
+
494
+ This is like os.path.splitext() (which it calls) except that it
495
+ also looks for '.tar.gz' and treats it as an atomic extensions.
496
+ """
497
+ if path.endswith('.tar.gz'):
498
+ return path[:-7], path[-7:]
499
+ else:
500
+ return os.path.splitext(path)
501
+
502
+ def args_to_files(self, args, tail=None):
503
+ """
504
+ Takes a list of arguments, expands any glob patterns, and
505
+ returns the last "tail" files from the list.
506
+ """
507
+ files = []
508
+ for a in args:
509
+ g = glob.glob(a)
510
+ g.sort()
511
+ files.extend(g)
512
+
513
+ if tail:
514
+ files = files[-tail:]
515
+
516
+ return files
517
+
518
+ def ascii_table(self, files, columns,
519
+ line_function, file_function=lambda x: x,
520
+ *args, **kw):
521
+
522
+ header_fmt = ' '.join(['%12s'] * len(columns))
523
+ line_fmt = header_fmt + ' %s'
524
+
525
+ print header_fmt % columns
526
+
527
+ for file in files:
528
+ t = line_function(file, *args, **kw)
529
+ if t is None:
530
+ t = []
531
+ diff = len(columns) - len(t)
532
+ if diff > 0:
533
+ t += [''] * diff
534
+ t.append(file_function(file))
535
+ print line_fmt % tuple(t)
536
+
537
+ def collect_results(self, files, function, *args, **kw):
538
+ results = {}
539
+
540
+ for file in files:
541
+ base = os.path.splitext(file)[0]
542
+ run, index = string.split(base, '-')[-2:]
543
+
544
+ run = int(run)
545
+ index = int(index)
546
+
547
+ value = function(file, *args, **kw)
548
+
549
+ try:
550
+ r = results[index]
551
+ except KeyError:
552
+ r = []
553
+ results[index] = r
554
+ r.append((run, value))
555
+
556
+ return results
557
+
558
+ def doc_to_help(self, obj):
559
+ """
560
+ Translates an object's __doc__ string into help text.
561
+
562
+ This strips a consistent number of spaces from each line in the
563
+ help text, essentially "outdenting" the text to the left-most
564
+ column.
565
+ """
566
+ doc = obj.__doc__
567
+ if doc is None:
568
+ return ''
569
+ return self.outdent(doc)
570
+
571
+ def find_next_run_number(self, dir, prefix):
572
+ """
573
+ Returns the next run number in a directory for the specified prefix.
574
+
575
+ Examines the contents the specified directory for files with the
576
+ specified prefix, extracts the run numbers from each file name,
577
+ and returns the next run number after the largest it finds.
578
+ """
579
+ x = re.compile(re.escape(prefix) + '-([0-9]+).*')
580
+ matches = map(lambda e, x=x: x.match(e), os.listdir(dir))
581
+ matches = filter(None, matches)
582
+ if not matches:
583
+ return 0
584
+ run_numbers = map(lambda m: int(m.group(1)), matches)
585
+ return int(max(run_numbers)) + 1
586
+
587
+ def gnuplot_results(self, results, fmt='%s %.3f'):
588
+ """
589
+ Prints out a set of results in Gnuplot format.
590
+ """
591
+ gp = Gnuplotter(self.title, self.key_location)
592
+
593
+ indices = results.keys()
594
+ indices.sort()
595
+
596
+ for i in indices:
597
+ try:
598
+ t = self.run_titles[i]
599
+ except IndexError:
600
+ t = '??? %s ???' % i
601
+ results[i].sort()
602
+ gp.line(results[i], i+1, t, None, t, fmt=fmt)
603
+
604
+ for bar_tuple in self.vertical_bars:
605
+ try:
606
+ x, type, label, comment = bar_tuple
607
+ except ValueError:
608
+ x, type, label = bar_tuple
609
+ comment = label
610
+ gp.vertical_bar(x, type, label, comment)
611
+
612
+ gp.draw()
613
+
614
+ def logfile_name(self, invocation):
615
+ """
616
+ Returns the absolute path of a log file for the specificed
617
+ invocation number.
618
+ """
619
+ name = self.prefix_run + '-%d.log' % invocation
620
+ return os.path.join(self.outdir, name)
621
+
622
+ def outdent(self, s):
623
+ """
624
+ Strip as many spaces from each line as are found at the beginning
625
+ of the first line in the list.
626
+ """
627
+ lines = s.split('\n')
628
+ if lines[0] == '':
629
+ lines = lines[1:]
630
+ spaces = re.match(' *', lines[0]).group(0)
631
+ def strip_initial_spaces(l, s=spaces):
632
+ if l.startswith(spaces):
633
+ l = l[len(spaces):]
634
+ return l
635
+ return '\n'.join([ strip_initial_spaces(l) for l in lines ]) + '\n'
636
+
637
+ def profile_name(self, invocation):
638
+ """
639
+ Returns the absolute path of a profile file for the specified
640
+ invocation number.
641
+ """
642
+ name = self.prefix_run + '-%d.prof' % invocation
643
+ return os.path.join(self.outdir, name)
644
+
645
+ def set_env(self, key, value):
646
+ os.environ[key] = value
647
+
648
+ #
649
+
650
+ def get_debug_times(self, file, time_string=None):
651
+ """
652
+ Fetch times from the --debug=time strings in the specified file.
653
+ """
654
+ if time_string is None:
655
+ search_string = self.time_string_all
656
+ else:
657
+ search_string = time_string
658
+ contents = open(file).read()
659
+ if not contents:
660
+ sys.stderr.write('file %s has no contents!\n' % repr(file))
661
+ return None
662
+ result = re.findall(r'%s: ([\d\.]*)' % search_string, contents)[-4:]
663
+ result = [ float(r) for r in result ]
664
+ if not time_string is None:
665
+ try:
666
+ result = result[0]
667
+ except IndexError:
668
+ sys.stderr.write('file %s has no results!\n' % repr(file))
669
+ return None
670
+ return result
671
+
672
+ def get_function_profile(self, file, function):
673
+ """
674
+ Returns the file, line number, function name, and cumulative time.
675
+ """
676
+ try:
677
+ import pstats
678
+ except ImportError, e:
679
+ sys.stderr.write('%s: func: %s\n' % (self.name, e))
680
+ sys.stderr.write('%s This version of Python is missing the profiler.\n' % self.name_spaces)
681
+ sys.stderr.write('%s Cannot use the "func" subcommand.\n' % self.name_spaces)
682
+ sys.exit(1)
683
+ statistics = pstats.Stats(file).stats
684
+ matches = [ e for e in statistics.items() if e[0][2] == function ]
685
+ r = matches[0]
686
+ return r[0][0], r[0][1], r[0][2], r[1][3]
687
+
688
+ def get_function_time(self, file, function):
689
+ """
690
+ Returns just the cumulative time for the specified function.
691
+ """
692
+ return self.get_function_profile(file, function)[3]
693
+
694
+ def get_memory(self, file, memory_string=None):
695
+ """
696
+ Returns a list of integers of the amount of memory used. The
697
+ default behavior is to return all the stages.
698
+ """
699
+ if memory_string is None:
700
+ search_string = self.memory_string_all
701
+ else:
702
+ search_string = memory_string
703
+ lines = open(file).readlines()
704
+ lines = [ l for l in lines if l.startswith(search_string) ][-4:]
705
+ result = [ int(l.split()[-1]) for l in lines[-4:] ]
706
+ if len(result) == 1:
707
+ result = result[0]
708
+ return result
709
+
710
+ def get_object_counts(self, file, object_name, index=None):
711
+ """
712
+ Returns the counts of the specified object_name.
713
+ """
714
+ object_string = ' ' + object_name + '\n'
715
+ lines = open(file).readlines()
716
+ line = [ l for l in lines if l.endswith(object_string) ][0]
717
+ result = [ int(field) for field in line.split()[:4] ]
718
+ if index is not None:
719
+ result = result[index]
720
+ return result
721
+
722
+ #
723
+
724
+ command_alias = {}
725
+
726
+ def execute_subcommand(self, argv):
727
+ """
728
+ Executes the do_*() function for the specified subcommand (argv[0]).
729
+ """
730
+ if not argv:
731
+ return
732
+ cmdName = self.command_alias.get(argv[0], argv[0])
733
+ try:
734
+ func = getattr(self, 'do_' + cmdName)
735
+ except AttributeError:
736
+ return self.default(argv)
737
+ try:
738
+ return func(argv)
739
+ except TypeError, e:
740
+ sys.stderr.write("%s %s: %s\n" % (self.name, cmdName, e))
741
+ import traceback
742
+ traceback.print_exc(file=sys.stderr)
743
+ sys.stderr.write("Try '%s help %s'\n" % (self.name, cmdName))
744
+
745
+ def default(self, argv):
746
+ """
747
+ The default behavior for an unknown subcommand. Prints an
748
+ error message and exits.
749
+ """
750
+ sys.stderr.write('%s: Unknown subcommand "%s".\n' % (self.name, argv[0]))
751
+ sys.stderr.write('Type "%s help" for usage.\n' % self.name)
752
+ sys.exit(1)
753
+
754
+ #
755
+
756
+ def do_help(self, argv):
757
+ """
758
+ """
759
+ if argv[1:]:
760
+ for arg in argv[1:]:
761
+ try:
762
+ func = getattr(self, 'do_' + arg)
763
+ except AttributeError:
764
+ sys.stderr.write('%s: No help for "%s"\n' % (self.name, arg))
765
+ else:
766
+ try:
767
+ help = getattr(self, 'help_' + arg)
768
+ except AttributeError:
769
+ sys.stdout.write(self.doc_to_help(func))
770
+ sys.stdout.flush()
771
+ else:
772
+ help()
773
+ else:
774
+ doc = self.doc_to_help(self.__class__)
775
+ if doc:
776
+ sys.stdout.write(doc)
777
+ sys.stdout.flush()
778
+ return None
779
+
780
+ #
781
+
782
+ def help_func(self):
783
+ help = """\
784
+ Usage: scons-time func [OPTIONS] FILE [...]
785
+
786
+ -C DIR, --chdir=DIR Change to DIR before looking for files
787
+ -f FILE, --file=FILE Read configuration from specified FILE
788
+ --fmt=FORMAT, --format=FORMAT Print data in specified FORMAT
789
+ --func=NAME, --function=NAME Report time for function NAME
790
+ -h, --help Print this help and exit
791
+ -p STRING, --prefix=STRING Use STRING as log file/profile prefix
792
+ -t NUMBER, --tail=NUMBER Only report the last NUMBER files
793
+ --title=TITLE Specify the output plot TITLE
794
+ """
795
+ sys.stdout.write(self.outdent(help))
796
+ sys.stdout.flush()
797
+
798
+ def do_func(self, argv):
799
+ """
800
+ """
801
+ format = 'ascii'
802
+ function_name = '_main'
803
+ tail = None
804
+
805
+ short_opts = '?C:f:hp:t:'
806
+
807
+ long_opts = [
808
+ 'chdir=',
809
+ 'file=',
810
+ 'fmt=',
811
+ 'format=',
812
+ 'func=',
813
+ 'function=',
814
+ 'help',
815
+ 'prefix=',
816
+ 'tail=',
817
+ 'title=',
818
+ ]
819
+
820
+ opts, args = getopt.getopt(argv[1:], short_opts, long_opts)
821
+
822
+ for o, a in opts:
823
+ if o in ('-C', '--chdir'):
824
+ self.chdir = a
825
+ elif o in ('-f', '--file'):
826
+ self.config_file = a
827
+ elif o in ('--fmt', '--format'):
828
+ format = a
829
+ elif o in ('--func', '--function'):
830
+ function_name = a
831
+ elif o in ('-?', '-h', '--help'):
832
+ self.do_help(['help', 'func'])
833
+ sys.exit(0)
834
+ elif o in ('--max',):
835
+ max_time = int(a)
836
+ elif o in ('-p', '--prefix'):
837
+ self.prefix = a
838
+ elif o in ('-t', '--tail'):
839
+ tail = int(a)
840
+ elif o in ('--title',):
841
+ self.title = a
842
+
843
+ if self.config_file:
844
+ exec open(self.config_file, 'rU').read() in self.__dict__
845
+
846
+ if self.chdir:
847
+ os.chdir(self.chdir)
848
+
849
+ if not args:
850
+
851
+ pattern = '%s*.prof' % self.prefix
852
+ args = self.args_to_files([pattern], tail)
853
+
854
+ if not args:
855
+ if self.chdir:
856
+ directory = self.chdir
857
+ else:
858
+ directory = os.getcwd()
859
+
860
+ sys.stderr.write('%s: func: No arguments specified.\n' % self.name)
861
+ sys.stderr.write('%s No %s*.prof files found in "%s".\n' % (self.name_spaces, self.prefix, directory))
862
+ sys.stderr.write('%s Type "%s help func" for help.\n' % (self.name_spaces, self.name))
863
+ sys.exit(1)
864
+
865
+ else:
866
+
867
+ args = self.args_to_files(args, tail)
868
+
869
+ cwd_ = os.getcwd() + os.sep
870
+
871
+ if format == 'ascii':
872
+
873
+ for file in args:
874
+ try:
875
+ f, line, func, time = \
876
+ self.get_function_profile(file, function_name)
877
+ except ValueError, e:
878
+ sys.stderr.write("%s: func: %s: %s\n" %
879
+ (self.name, file, e))
880
+ else:
881
+ if f.startswith(cwd_):
882
+ f = f[len(cwd_):]
883
+ print "%.3f %s:%d(%s)" % (time, f, line, func)
884
+
885
+ elif format == 'gnuplot':
886
+
887
+ results = self.collect_results(args, self.get_function_time,
888
+ function_name)
889
+
890
+ self.gnuplot_results(results)
891
+
892
+ else:
893
+
894
+ sys.stderr.write('%s: func: Unknown format "%s".\n' % (self.name, format))
895
+ sys.exit(1)
896
+
897
+ #
898
+
899
+ def help_mem(self):
900
+ help = """\
901
+ Usage: scons-time mem [OPTIONS] FILE [...]
902
+
903
+ -C DIR, --chdir=DIR Change to DIR before looking for files
904
+ -f FILE, --file=FILE Read configuration from specified FILE
905
+ --fmt=FORMAT, --format=FORMAT Print data in specified FORMAT
906
+ -h, --help Print this help and exit
907
+ -p STRING, --prefix=STRING Use STRING as log file/profile prefix
908
+ --stage=STAGE Plot memory at the specified stage:
909
+ pre-read, post-read, pre-build,
910
+ post-build (default: post-build)
911
+ -t NUMBER, --tail=NUMBER Only report the last NUMBER files
912
+ --title=TITLE Specify the output plot TITLE
913
+ """
914
+ sys.stdout.write(self.outdent(help))
915
+ sys.stdout.flush()
916
+
917
+ def do_mem(self, argv):
918
+
919
+ format = 'ascii'
920
+ logfile_path = lambda x: x
921
+ stage = self.default_stage
922
+ tail = None
923
+
924
+ short_opts = '?C:f:hp:t:'
925
+
926
+ long_opts = [
927
+ 'chdir=',
928
+ 'file=',
929
+ 'fmt=',
930
+ 'format=',
931
+ 'help',
932
+ 'prefix=',
933
+ 'stage=',
934
+ 'tail=',
935
+ 'title=',
936
+ ]
937
+
938
+ opts, args = getopt.getopt(argv[1:], short_opts, long_opts)
939
+
940
+ for o, a in opts:
941
+ if o in ('-C', '--chdir'):
942
+ self.chdir = a
943
+ elif o in ('-f', '--file'):
944
+ self.config_file = a
945
+ elif o in ('--fmt', '--format'):
946
+ format = a
947
+ elif o in ('-?', '-h', '--help'):
948
+ self.do_help(['help', 'mem'])
949
+ sys.exit(0)
950
+ elif o in ('-p', '--prefix'):
951
+ self.prefix = a
952
+ elif o in ('--stage',):
953
+ if not a in self.stages:
954
+ sys.stderr.write('%s: mem: Unrecognized stage "%s".\n' % (self.name, a))
955
+ sys.exit(1)
956
+ stage = a
957
+ elif o in ('-t', '--tail'):
958
+ tail = int(a)
959
+ elif o in ('--title',):
960
+ self.title = a
961
+
962
+ if self.config_file:
963
+ HACK_for_exec(open(self.config_file, 'rU').read(), self.__dict__)
964
+
965
+ if self.chdir:
966
+ os.chdir(self.chdir)
967
+ logfile_path = lambda x, c=self.chdir: os.path.join(c, x)
968
+
969
+ if not args:
970
+
971
+ pattern = '%s*.log' % self.prefix
972
+ args = self.args_to_files([pattern], tail)
973
+
974
+ if not args:
975
+ if self.chdir:
976
+ directory = self.chdir
977
+ else:
978
+ directory = os.getcwd()
979
+
980
+ sys.stderr.write('%s: mem: No arguments specified.\n' % self.name)
981
+ sys.stderr.write('%s No %s*.log files found in "%s".\n' % (self.name_spaces, self.prefix, directory))
982
+ sys.stderr.write('%s Type "%s help mem" for help.\n' % (self.name_spaces, self.name))
983
+ sys.exit(1)
984
+
985
+ else:
986
+
987
+ args = self.args_to_files(args, tail)
988
+
989
+ cwd_ = os.getcwd() + os.sep
990
+
991
+ if format == 'ascii':
992
+
993
+ self.ascii_table(args, tuple(self.stages), self.get_memory, logfile_path)
994
+
995
+ elif format == 'gnuplot':
996
+
997
+ results = self.collect_results(args, self.get_memory,
998
+ self.stage_strings[stage])
999
+
1000
+ self.gnuplot_results(results)
1001
+
1002
+ else:
1003
+
1004
+ sys.stderr.write('%s: mem: Unknown format "%s".\n' % (self.name, format))
1005
+ sys.exit(1)
1006
+
1007
+ return 0
1008
+
1009
+ #
1010
+
1011
+ def help_obj(self):
1012
+ help = """\
1013
+ Usage: scons-time obj [OPTIONS] OBJECT FILE [...]
1014
+
1015
+ -C DIR, --chdir=DIR Change to DIR before looking for files
1016
+ -f FILE, --file=FILE Read configuration from specified FILE
1017
+ --fmt=FORMAT, --format=FORMAT Print data in specified FORMAT
1018
+ -h, --help Print this help and exit
1019
+ -p STRING, --prefix=STRING Use STRING as log file/profile prefix
1020
+ --stage=STAGE Plot memory at the specified stage:
1021
+ pre-read, post-read, pre-build,
1022
+ post-build (default: post-build)
1023
+ -t NUMBER, --tail=NUMBER Only report the last NUMBER files
1024
+ --title=TITLE Specify the output plot TITLE
1025
+ """
1026
+ sys.stdout.write(self.outdent(help))
1027
+ sys.stdout.flush()
1028
+
1029
+ def do_obj(self, argv):
1030
+
1031
+ format = 'ascii'
1032
+ logfile_path = lambda x: x
1033
+ stage = self.default_stage
1034
+ tail = None
1035
+
1036
+ short_opts = '?C:f:hp:t:'
1037
+
1038
+ long_opts = [
1039
+ 'chdir=',
1040
+ 'file=',
1041
+ 'fmt=',
1042
+ 'format=',
1043
+ 'help',
1044
+ 'prefix=',
1045
+ 'stage=',
1046
+ 'tail=',
1047
+ 'title=',
1048
+ ]
1049
+
1050
+ opts, args = getopt.getopt(argv[1:], short_opts, long_opts)
1051
+
1052
+ for o, a in opts:
1053
+ if o in ('-C', '--chdir'):
1054
+ self.chdir = a
1055
+ elif o in ('-f', '--file'):
1056
+ self.config_file = a
1057
+ elif o in ('--fmt', '--format'):
1058
+ format = a
1059
+ elif o in ('-?', '-h', '--help'):
1060
+ self.do_help(['help', 'obj'])
1061
+ sys.exit(0)
1062
+ elif o in ('-p', '--prefix'):
1063
+ self.prefix = a
1064
+ elif o in ('--stage',):
1065
+ if not a in self.stages:
1066
+ sys.stderr.write('%s: obj: Unrecognized stage "%s".\n' % (self.name, a))
1067
+ sys.stderr.write('%s Type "%s help obj" for help.\n' % (self.name_spaces, self.name))
1068
+ sys.exit(1)
1069
+ stage = a
1070
+ elif o in ('-t', '--tail'):
1071
+ tail = int(a)
1072
+ elif o in ('--title',):
1073
+ self.title = a
1074
+
1075
+ if not args:
1076
+ sys.stderr.write('%s: obj: Must specify an object name.\n' % self.name)
1077
+ sys.stderr.write('%s Type "%s help obj" for help.\n' % (self.name_spaces, self.name))
1078
+ sys.exit(1)
1079
+
1080
+ object_name = args.pop(0)
1081
+
1082
+ if self.config_file:
1083
+ HACK_for_exec(open(self.config_file, 'rU').read(), self.__dict__)
1084
+
1085
+ if self.chdir:
1086
+ os.chdir(self.chdir)
1087
+ logfile_path = lambda x, c=self.chdir: os.path.join(c, x)
1088
+
1089
+ if not args:
1090
+
1091
+ pattern = '%s*.log' % self.prefix
1092
+ args = self.args_to_files([pattern], tail)
1093
+
1094
+ if not args:
1095
+ if self.chdir:
1096
+ directory = self.chdir
1097
+ else:
1098
+ directory = os.getcwd()
1099
+
1100
+ sys.stderr.write('%s: obj: No arguments specified.\n' % self.name)
1101
+ sys.stderr.write('%s No %s*.log files found in "%s".\n' % (self.name_spaces, self.prefix, directory))
1102
+ sys.stderr.write('%s Type "%s help obj" for help.\n' % (self.name_spaces, self.name))
1103
+ sys.exit(1)
1104
+
1105
+ else:
1106
+
1107
+ args = self.args_to_files(args, tail)
1108
+
1109
+ cwd_ = os.getcwd() + os.sep
1110
+
1111
+ if format == 'ascii':
1112
+
1113
+ self.ascii_table(args, tuple(self.stages), self.get_object_counts, logfile_path, object_name)
1114
+
1115
+ elif format == 'gnuplot':
1116
+
1117
+ stage_index = 0
1118
+ for s in self.stages:
1119
+ if stage == s:
1120
+ break
1121
+ stage_index = stage_index + 1
1122
+
1123
+ results = self.collect_results(args, self.get_object_counts,
1124
+ object_name, stage_index)
1125
+
1126
+ self.gnuplot_results(results)
1127
+
1128
+ else:
1129
+
1130
+ sys.stderr.write('%s: obj: Unknown format "%s".\n' % (self.name, format))
1131
+ sys.exit(1)
1132
+
1133
+ return 0
1134
+
1135
+ #
1136
+
1137
+ def help_run(self):
1138
+ help = """\
1139
+ Usage: scons-time run [OPTIONS] [FILE ...]
1140
+
1141
+ --aegis=PROJECT Use SCons from the Aegis PROJECT
1142
+ --chdir=DIR Name of unpacked directory for chdir
1143
+ -f FILE, --file=FILE Read configuration from specified FILE
1144
+ -h, --help Print this help and exit
1145
+ -n, --no-exec No execute, just print command lines
1146
+ --number=NUMBER Put output in files for run NUMBER
1147
+ --outdir=OUTDIR Put output files in OUTDIR
1148
+ -p STRING, --prefix=STRING Use STRING as log file/profile prefix
1149
+ --python=PYTHON Time using the specified PYTHON
1150
+ -q, --quiet Don't print command lines
1151
+ --scons=SCONS Time using the specified SCONS
1152
+ --svn=URL, --subversion=URL Use SCons from Subversion URL
1153
+ -v, --verbose Display output of commands
1154
+ """
1155
+ sys.stdout.write(self.outdent(help))
1156
+ sys.stdout.flush()
1157
+
1158
+ def do_run(self, argv):
1159
+ """
1160
+ """
1161
+ run_number_list = [None]
1162
+
1163
+ short_opts = '?f:hnp:qs:v'
1164
+
1165
+ long_opts = [
1166
+ 'aegis=',
1167
+ 'file=',
1168
+ 'help',
1169
+ 'no-exec',
1170
+ 'number=',
1171
+ 'outdir=',
1172
+ 'prefix=',
1173
+ 'python=',
1174
+ 'quiet',
1175
+ 'scons=',
1176
+ 'svn=',
1177
+ 'subdir=',
1178
+ 'subversion=',
1179
+ 'verbose',
1180
+ ]
1181
+
1182
+ opts, args = getopt.getopt(argv[1:], short_opts, long_opts)
1183
+
1184
+ for o, a in opts:
1185
+ if o in ('--aegis',):
1186
+ self.aegis_project = a
1187
+ elif o in ('-f', '--file'):
1188
+ self.config_file = a
1189
+ elif o in ('-?', '-h', '--help'):
1190
+ self.do_help(['help', 'run'])
1191
+ sys.exit(0)
1192
+ elif o in ('-n', '--no-exec'):
1193
+ self.execute = self._do_not_execute
1194
+ elif o in ('--number',):
1195
+ run_number_list = self.split_run_numbers(a)
1196
+ elif o in ('--outdir',):
1197
+ self.outdir = a
1198
+ elif o in ('-p', '--prefix'):
1199
+ self.prefix = a
1200
+ elif o in ('--python',):
1201
+ self.python = a
1202
+ elif o in ('-q', '--quiet'):
1203
+ self.display = self._do_not_display
1204
+ elif o in ('-s', '--subdir'):
1205
+ self.subdir = a
1206
+ elif o in ('--scons',):
1207
+ self.scons = a
1208
+ elif o in ('--svn', '--subversion'):
1209
+ self.subversion_url = a
1210
+ elif o in ('-v', '--verbose'):
1211
+ self.redirect = tee_to_file
1212
+ self.verbose = True
1213
+ self.svn_co_flag = ''
1214
+
1215
+ if not args and not self.config_file:
1216
+ sys.stderr.write('%s: run: No arguments or -f config file specified.\n' % self.name)
1217
+ sys.stderr.write('%s Type "%s help run" for help.\n' % (self.name_spaces, self.name))
1218
+ sys.exit(1)
1219
+
1220
+ if self.config_file:
1221
+ exec open(self.config_file, 'rU').read() in self.__dict__
1222
+
1223
+ if args:
1224
+ self.archive_list = args
1225
+
1226
+ archive_file_name = os.path.split(self.archive_list[0])[1]
1227
+
1228
+ if not self.subdir:
1229
+ self.subdir = self.archive_splitext(archive_file_name)[0]
1230
+
1231
+ if not self.prefix:
1232
+ self.prefix = self.archive_splitext(archive_file_name)[0]
1233
+
1234
+ prepare = None
1235
+ if self.subversion_url:
1236
+ prepare = self.prep_subversion_run
1237
+ elif self.aegis_project:
1238
+ prepare = self.prep_aegis_run
1239
+
1240
+ for run_number in run_number_list:
1241
+ self.individual_run(run_number, self.archive_list, prepare)
1242
+
1243
+ def split_run_numbers(self, s):
1244
+ result = []
1245
+ for n in s.split(','):
1246
+ try:
1247
+ x, y = n.split('-')
1248
+ except ValueError:
1249
+ result.append(int(n))
1250
+ else:
1251
+ result.extend(range(int(x), int(y)+1))
1252
+ return result
1253
+
1254
+ def scons_path(self, dir):
1255
+ return os.path.join(dir, 'src', 'script', 'scons.py')
1256
+
1257
+ def scons_lib_dir_path(self, dir):
1258
+ return os.path.join(dir, 'src', 'engine')
1259
+
1260
+ def prep_aegis_run(self, commands, removals):
1261
+ self.aegis_tmpdir = make_temp_file(prefix = self.name + '-aegis-')
1262
+ removals.append((shutil.rmtree, 'rm -rf %%s', self.aegis_tmpdir))
1263
+
1264
+ self.aegis_parent_project = os.path.splitext(self.aegis_project)[0]
1265
+ self.scons = self.scons_path(self.aegis_tmpdir)
1266
+ self.scons_lib_dir = self.scons_lib_dir_path(self.aegis_tmpdir)
1267
+
1268
+ commands.extend([
1269
+ 'mkdir %(aegis_tmpdir)s',
1270
+ (lambda: os.chdir(self.aegis_tmpdir), 'cd %(aegis_tmpdir)s'),
1271
+ '%(aegis)s -cp -ind -p %(aegis_parent_project)s .',
1272
+ '%(aegis)s -cp -ind -p %(aegis_project)s -delta %(run_number)s .',
1273
+ ])
1274
+
1275
+ def prep_subversion_run(self, commands, removals):
1276
+ self.svn_tmpdir = make_temp_file(prefix = self.name + '-svn-')
1277
+ removals.append((shutil.rmtree, 'rm -rf %%s', self.svn_tmpdir))
1278
+
1279
+ self.scons = self.scons_path(self.svn_tmpdir)
1280
+ self.scons_lib_dir = self.scons_lib_dir_path(self.svn_tmpdir)
1281
+
1282
+ commands.extend([
1283
+ 'mkdir %(svn_tmpdir)s',
1284
+ '%(svn)s co %(svn_co_flag)s -r %(run_number)s %(subversion_url)s %(svn_tmpdir)s',
1285
+ ])
1286
+
1287
+ def individual_run(self, run_number, archive_list, prepare=None):
1288
+ """
1289
+ Performs an individual run of the default SCons invocations.
1290
+ """
1291
+
1292
+ commands = []
1293
+ removals = []
1294
+
1295
+ if prepare:
1296
+ prepare(commands, removals)
1297
+
1298
+ save_scons = self.scons
1299
+ save_scons_wrapper = self.scons_wrapper
1300
+ save_scons_lib_dir = self.scons_lib_dir
1301
+
1302
+ if self.outdir is None:
1303
+ self.outdir = self.orig_cwd
1304
+ elif not os.path.isabs(self.outdir):
1305
+ self.outdir = os.path.join(self.orig_cwd, self.outdir)
1306
+
1307
+ if self.scons is None:
1308
+ self.scons = self.scons_path(self.orig_cwd)
1309
+
1310
+ if self.scons_lib_dir is None:
1311
+ self.scons_lib_dir = self.scons_lib_dir_path(self.orig_cwd)
1312
+
1313
+ if self.scons_wrapper is None:
1314
+ self.scons_wrapper = self.scons
1315
+
1316
+ if not run_number:
1317
+ run_number = self.find_next_run_number(self.outdir, self.prefix)
1318
+
1319
+ self.run_number = str(run_number)
1320
+
1321
+ self.prefix_run = self.prefix + '-%03d' % run_number
1322
+
1323
+ if self.targets0 is None:
1324
+ self.targets0 = self.startup_targets
1325
+ if self.targets1 is None:
1326
+ self.targets1 = self.targets
1327
+ if self.targets2 is None:
1328
+ self.targets2 = self.targets
1329
+
1330
+ self.tmpdir = make_temp_file(prefix = self.name + '-')
1331
+
1332
+ commands.extend([
1333
+ 'mkdir %(tmpdir)s',
1334
+
1335
+ (os.chdir, 'cd %%s', self.tmpdir),
1336
+ ])
1337
+
1338
+ for archive in archive_list:
1339
+ if not os.path.isabs(archive):
1340
+ archive = os.path.join(self.orig_cwd, archive)
1341
+ if os.path.isdir(archive):
1342
+ dest = os.path.split(archive)[1]
1343
+ commands.append((shutil.copytree, 'cp -r %%s %%s', archive, dest))
1344
+ else:
1345
+ suffix = self.archive_splitext(archive)[1]
1346
+ unpack_command = self.unpack_map.get(suffix)
1347
+ if not unpack_command:
1348
+ dest = os.path.split(archive)[1]
1349
+ commands.append((shutil.copyfile, 'cp %%s %%s', archive, dest))
1350
+ else:
1351
+ commands.append(unpack_command + (archive,))
1352
+
1353
+ commands.extend([
1354
+ (os.chdir, 'cd %%s', self.subdir),
1355
+ ])
1356
+
1357
+ commands.extend(self.initial_commands)
1358
+
1359
+ commands.extend([
1360
+ (lambda: read_tree('.'),
1361
+ 'find * -type f | xargs cat > /dev/null'),
1362
+
1363
+ (self.set_env, 'export %%s=%%s',
1364
+ 'SCONS_LIB_DIR', self.scons_lib_dir),
1365
+
1366
+ '%(python)s %(scons_wrapper)s --version',
1367
+ ])
1368
+
1369
+ index = 0
1370
+ for run_command in self.run_commands:
1371
+ setattr(self, 'prof%d' % index, self.profile_name(index))
1372
+ c = (
1373
+ self.log_execute,
1374
+ self.log_display,
1375
+ run_command,
1376
+ self.logfile_name(index),
1377
+ )
1378
+ commands.append(c)
1379
+ index = index + 1
1380
+
1381
+ commands.extend([
1382
+ (os.chdir, 'cd %%s', self.orig_cwd),
1383
+ ])
1384
+
1385
+ if not os.environ.get('PRESERVE'):
1386
+ commands.extend(removals)
1387
+
1388
+ commands.append((shutil.rmtree, 'rm -rf %%s', self.tmpdir))
1389
+
1390
+ self.run_command_list(commands, self.__dict__)
1391
+
1392
+ self.scons = save_scons
1393
+ self.scons_lib_dir = save_scons_lib_dir
1394
+ self.scons_wrapper = save_scons_wrapper
1395
+
1396
+ #
1397
+
1398
+ def help_time(self):
1399
+ help = """\
1400
+ Usage: scons-time time [OPTIONS] FILE [...]
1401
+
1402
+ -C DIR, --chdir=DIR Change to DIR before looking for files
1403
+ -f FILE, --file=FILE Read configuration from specified FILE
1404
+ --fmt=FORMAT, --format=FORMAT Print data in specified FORMAT
1405
+ -h, --help Print this help and exit
1406
+ -p STRING, --prefix=STRING Use STRING as log file/profile prefix
1407
+ -t NUMBER, --tail=NUMBER Only report the last NUMBER files
1408
+ --which=TIMER Plot timings for TIMER: total,
1409
+ SConscripts, SCons, commands.
1410
+ """
1411
+ sys.stdout.write(self.outdent(help))
1412
+ sys.stdout.flush()
1413
+
1414
+ def do_time(self, argv):
1415
+
1416
+ format = 'ascii'
1417
+ logfile_path = lambda x: x
1418
+ tail = None
1419
+ which = 'total'
1420
+
1421
+ short_opts = '?C:f:hp:t:'
1422
+
1423
+ long_opts = [
1424
+ 'chdir=',
1425
+ 'file=',
1426
+ 'fmt=',
1427
+ 'format=',
1428
+ 'help',
1429
+ 'prefix=',
1430
+ 'tail=',
1431
+ 'title=',
1432
+ 'which=',
1433
+ ]
1434
+
1435
+ opts, args = getopt.getopt(argv[1:], short_opts, long_opts)
1436
+
1437
+ for o, a in opts:
1438
+ if o in ('-C', '--chdir'):
1439
+ self.chdir = a
1440
+ elif o in ('-f', '--file'):
1441
+ self.config_file = a
1442
+ elif o in ('--fmt', '--format'):
1443
+ format = a
1444
+ elif o in ('-?', '-h', '--help'):
1445
+ self.do_help(['help', 'time'])
1446
+ sys.exit(0)
1447
+ elif o in ('-p', '--prefix'):
1448
+ self.prefix = a
1449
+ elif o in ('-t', '--tail'):
1450
+ tail = int(a)
1451
+ elif o in ('--title',):
1452
+ self.title = a
1453
+ elif o in ('--which',):
1454
+ if not a in self.time_strings.keys():
1455
+ sys.stderr.write('%s: time: Unrecognized timer "%s".\n' % (self.name, a))
1456
+ sys.stderr.write('%s Type "%s help time" for help.\n' % (self.name_spaces, self.name))
1457
+ sys.exit(1)
1458
+ which = a
1459
+
1460
+ if self.config_file:
1461
+ HACK_for_exec(open(self.config_file, 'rU').read(), self.__dict__)
1462
+
1463
+ if self.chdir:
1464
+ os.chdir(self.chdir)
1465
+ logfile_path = lambda x, c=self.chdir: os.path.join(c, x)
1466
+
1467
+ if not args:
1468
+
1469
+ pattern = '%s*.log' % self.prefix
1470
+ args = self.args_to_files([pattern], tail)
1471
+
1472
+ if not args:
1473
+ if self.chdir:
1474
+ directory = self.chdir
1475
+ else:
1476
+ directory = os.getcwd()
1477
+
1478
+ sys.stderr.write('%s: time: No arguments specified.\n' % self.name)
1479
+ sys.stderr.write('%s No %s*.log files found in "%s".\n' % (self.name_spaces, self.prefix, directory))
1480
+ sys.stderr.write('%s Type "%s help time" for help.\n' % (self.name_spaces, self.name))
1481
+ sys.exit(1)
1482
+
1483
+ else:
1484
+
1485
+ args = self.args_to_files(args, tail)
1486
+
1487
+ cwd_ = os.getcwd() + os.sep
1488
+
1489
+ if format == 'ascii':
1490
+
1491
+ columns = ("Total", "SConscripts", "SCons", "commands")
1492
+ self.ascii_table(args, columns, self.get_debug_times, logfile_path)
1493
+
1494
+ elif format == 'gnuplot':
1495
+
1496
+ results = self.collect_results(args, self.get_debug_times,
1497
+ self.time_strings[which])
1498
+
1499
+ self.gnuplot_results(results, fmt='%s %.6f')
1500
+
1501
+ else:
1502
+
1503
+ sys.stderr.write('%s: time: Unknown format "%s".\n' % (self.name, format))
1504
+ sys.exit(1)
1505
+
1506
+ if __name__ == '__main__':
1507
+ opts, args = getopt.getopt(sys.argv[1:], 'h?V', ['help', 'version'])
1508
+
1509
+ ST = SConsTimer()
1510
+
1511
+ for o, a in opts:
1512
+ if o in ('-?', '-h', '--help'):
1513
+ ST.do_help(['help'])
1514
+ sys.exit(0)
1515
+ elif o in ('-V', '--version'):
1516
+ sys.stdout.write('scons-time version\n')
1517
+ sys.exit(0)
1518
+
1519
+ if not args:
1520
+ sys.stderr.write('Type "%s help" for usage.\n' % ST.name)
1521
+ sys.exit(1)
1522
+
1523
+ ST.execute_subcommand(args)
1524
+
1525
+ # Local Variables:
1526
+ # tab-width:4
1527
+ # indent-tabs-mode:nil
1528
+ # End:
1529
+ # vim: set expandtab tabstop=4 shiftwidth=4: