libv8 3.11.8.17 → 3.16.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (754) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -2
  3. data/Gemfile +1 -1
  4. data/Rakefile +6 -7
  5. data/lib/libv8/version.rb +1 -1
  6. data/vendor/v8/.gitignore +24 -3
  7. data/vendor/v8/AUTHORS +7 -0
  8. data/vendor/v8/ChangeLog +839 -0
  9. data/vendor/v8/DEPS +1 -1
  10. data/vendor/v8/Makefile.android +92 -0
  11. data/vendor/v8/OWNERS +11 -0
  12. data/vendor/v8/PRESUBMIT.py +71 -0
  13. data/vendor/v8/SConstruct +34 -39
  14. data/vendor/v8/build/android.gypi +56 -37
  15. data/vendor/v8/build/common.gypi +112 -30
  16. data/vendor/v8/build/gyp_v8 +1 -1
  17. data/vendor/v8/build/standalone.gypi +15 -11
  18. data/vendor/v8/include/v8-debug.h +9 -1
  19. data/vendor/v8/include/v8-preparser.h +4 -3
  20. data/vendor/v8/include/v8-profiler.h +25 -25
  21. data/vendor/v8/include/v8-testing.h +4 -3
  22. data/vendor/v8/include/v8.h +994 -540
  23. data/vendor/v8/preparser/preparser-process.cc +3 -3
  24. data/vendor/v8/samples/lineprocessor.cc +20 -27
  25. data/vendor/v8/samples/process.cc +18 -14
  26. data/vendor/v8/samples/shell.cc +16 -15
  27. data/vendor/v8/src/SConscript +15 -14
  28. data/vendor/v8/src/accessors.cc +169 -77
  29. data/vendor/v8/src/accessors.h +4 -0
  30. data/vendor/v8/src/allocation-inl.h +2 -2
  31. data/vendor/v8/src/allocation.h +7 -7
  32. data/vendor/v8/src/api.cc +810 -497
  33. data/vendor/v8/src/api.h +85 -60
  34. data/vendor/v8/src/arm/assembler-arm-inl.h +179 -22
  35. data/vendor/v8/src/arm/assembler-arm.cc +633 -264
  36. data/vendor/v8/src/arm/assembler-arm.h +264 -197
  37. data/vendor/v8/src/arm/builtins-arm.cc +117 -27
  38. data/vendor/v8/src/arm/code-stubs-arm.cc +1241 -700
  39. data/vendor/v8/src/arm/code-stubs-arm.h +35 -138
  40. data/vendor/v8/src/arm/codegen-arm.cc +285 -16
  41. data/vendor/v8/src/arm/codegen-arm.h +22 -0
  42. data/vendor/v8/src/arm/constants-arm.cc +5 -3
  43. data/vendor/v8/src/arm/constants-arm.h +24 -11
  44. data/vendor/v8/src/arm/debug-arm.cc +3 -3
  45. data/vendor/v8/src/arm/deoptimizer-arm.cc +382 -92
  46. data/vendor/v8/src/arm/disasm-arm.cc +61 -12
  47. data/vendor/v8/src/arm/frames-arm.h +0 -14
  48. data/vendor/v8/src/arm/full-codegen-arm.cc +332 -304
  49. data/vendor/v8/src/arm/ic-arm.cc +180 -259
  50. data/vendor/v8/src/arm/lithium-arm.cc +364 -316
  51. data/vendor/v8/src/arm/lithium-arm.h +512 -275
  52. data/vendor/v8/src/arm/lithium-codegen-arm.cc +1768 -809
  53. data/vendor/v8/src/arm/lithium-codegen-arm.h +97 -35
  54. data/vendor/v8/src/arm/lithium-gap-resolver-arm.cc +12 -5
  55. data/vendor/v8/src/arm/macro-assembler-arm.cc +439 -228
  56. data/vendor/v8/src/arm/macro-assembler-arm.h +116 -70
  57. data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +54 -44
  58. data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +3 -10
  59. data/vendor/v8/src/arm/simulator-arm.cc +272 -238
  60. data/vendor/v8/src/arm/simulator-arm.h +38 -8
  61. data/vendor/v8/src/arm/stub-cache-arm.cc +522 -895
  62. data/vendor/v8/src/array.js +101 -70
  63. data/vendor/v8/src/assembler.cc +270 -19
  64. data/vendor/v8/src/assembler.h +110 -15
  65. data/vendor/v8/src/ast.cc +79 -69
  66. data/vendor/v8/src/ast.h +255 -301
  67. data/vendor/v8/src/atomicops.h +7 -1
  68. data/vendor/v8/src/atomicops_internals_tsan.h +335 -0
  69. data/vendor/v8/src/bootstrapper.cc +481 -418
  70. data/vendor/v8/src/bootstrapper.h +4 -4
  71. data/vendor/v8/src/builtins.cc +498 -311
  72. data/vendor/v8/src/builtins.h +75 -47
  73. data/vendor/v8/src/checks.cc +2 -1
  74. data/vendor/v8/src/checks.h +8 -0
  75. data/vendor/v8/src/code-stubs-hydrogen.cc +253 -0
  76. data/vendor/v8/src/code-stubs.cc +249 -84
  77. data/vendor/v8/src/code-stubs.h +501 -169
  78. data/vendor/v8/src/codegen.cc +36 -18
  79. data/vendor/v8/src/codegen.h +25 -3
  80. data/vendor/v8/src/collection.js +54 -17
  81. data/vendor/v8/src/compilation-cache.cc +24 -16
  82. data/vendor/v8/src/compilation-cache.h +15 -6
  83. data/vendor/v8/src/compiler.cc +497 -195
  84. data/vendor/v8/src/compiler.h +246 -38
  85. data/vendor/v8/src/contexts.cc +64 -24
  86. data/vendor/v8/src/contexts.h +60 -29
  87. data/vendor/v8/src/conversions-inl.h +24 -14
  88. data/vendor/v8/src/conversions.h +7 -4
  89. data/vendor/v8/src/counters.cc +21 -12
  90. data/vendor/v8/src/counters.h +44 -16
  91. data/vendor/v8/src/cpu-profiler.h +1 -1
  92. data/vendor/v8/src/d8-debug.cc +2 -2
  93. data/vendor/v8/src/d8-readline.cc +13 -2
  94. data/vendor/v8/src/d8.cc +681 -273
  95. data/vendor/v8/src/d8.gyp +4 -4
  96. data/vendor/v8/src/d8.h +38 -18
  97. data/vendor/v8/src/d8.js +0 -617
  98. data/vendor/v8/src/data-flow.h +55 -0
  99. data/vendor/v8/src/date.js +1 -42
  100. data/vendor/v8/src/dateparser-inl.h +5 -1
  101. data/vendor/v8/src/debug-agent.cc +10 -15
  102. data/vendor/v8/src/debug-debugger.js +147 -149
  103. data/vendor/v8/src/debug.cc +323 -164
  104. data/vendor/v8/src/debug.h +26 -14
  105. data/vendor/v8/src/deoptimizer.cc +765 -290
  106. data/vendor/v8/src/deoptimizer.h +130 -28
  107. data/vendor/v8/src/disassembler.cc +10 -4
  108. data/vendor/v8/src/elements-kind.cc +7 -2
  109. data/vendor/v8/src/elements-kind.h +19 -0
  110. data/vendor/v8/src/elements.cc +607 -285
  111. data/vendor/v8/src/elements.h +36 -13
  112. data/vendor/v8/src/execution.cc +52 -31
  113. data/vendor/v8/src/execution.h +4 -4
  114. data/vendor/v8/src/extensions/externalize-string-extension.cc +5 -4
  115. data/vendor/v8/src/extensions/gc-extension.cc +5 -1
  116. data/vendor/v8/src/extensions/statistics-extension.cc +153 -0
  117. data/vendor/v8/src/{inspector.h → extensions/statistics-extension.h} +12 -23
  118. data/vendor/v8/src/factory.cc +101 -134
  119. data/vendor/v8/src/factory.h +36 -31
  120. data/vendor/v8/src/flag-definitions.h +102 -25
  121. data/vendor/v8/src/flags.cc +9 -5
  122. data/vendor/v8/src/frames-inl.h +10 -0
  123. data/vendor/v8/src/frames.cc +116 -26
  124. data/vendor/v8/src/frames.h +96 -12
  125. data/vendor/v8/src/full-codegen.cc +219 -74
  126. data/vendor/v8/src/full-codegen.h +63 -21
  127. data/vendor/v8/src/func-name-inferrer.cc +8 -7
  128. data/vendor/v8/src/func-name-inferrer.h +5 -3
  129. data/vendor/v8/src/gdb-jit.cc +71 -57
  130. data/vendor/v8/src/global-handles.cc +230 -101
  131. data/vendor/v8/src/global-handles.h +26 -27
  132. data/vendor/v8/src/globals.h +17 -19
  133. data/vendor/v8/src/handles-inl.h +59 -12
  134. data/vendor/v8/src/handles.cc +180 -200
  135. data/vendor/v8/src/handles.h +80 -11
  136. data/vendor/v8/src/hashmap.h +60 -40
  137. data/vendor/v8/src/heap-inl.h +107 -45
  138. data/vendor/v8/src/heap-profiler.cc +38 -19
  139. data/vendor/v8/src/heap-profiler.h +24 -14
  140. data/vendor/v8/src/heap.cc +1123 -738
  141. data/vendor/v8/src/heap.h +385 -146
  142. data/vendor/v8/src/hydrogen-instructions.cc +700 -217
  143. data/vendor/v8/src/hydrogen-instructions.h +1158 -472
  144. data/vendor/v8/src/hydrogen.cc +3319 -1662
  145. data/vendor/v8/src/hydrogen.h +411 -170
  146. data/vendor/v8/src/ia32/assembler-ia32-inl.h +46 -16
  147. data/vendor/v8/src/ia32/assembler-ia32.cc +131 -61
  148. data/vendor/v8/src/ia32/assembler-ia32.h +115 -57
  149. data/vendor/v8/src/ia32/builtins-ia32.cc +99 -5
  150. data/vendor/v8/src/ia32/code-stubs-ia32.cc +787 -495
  151. data/vendor/v8/src/ia32/code-stubs-ia32.h +10 -100
  152. data/vendor/v8/src/ia32/codegen-ia32.cc +227 -23
  153. data/vendor/v8/src/ia32/codegen-ia32.h +14 -0
  154. data/vendor/v8/src/ia32/deoptimizer-ia32.cc +428 -87
  155. data/vendor/v8/src/ia32/disasm-ia32.cc +28 -1
  156. data/vendor/v8/src/ia32/frames-ia32.h +6 -16
  157. data/vendor/v8/src/ia32/full-codegen-ia32.cc +280 -272
  158. data/vendor/v8/src/ia32/ic-ia32.cc +150 -250
  159. data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +1600 -517
  160. data/vendor/v8/src/ia32/lithium-codegen-ia32.h +90 -24
  161. data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.cc +10 -6
  162. data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.h +2 -2
  163. data/vendor/v8/src/ia32/lithium-ia32.cc +405 -302
  164. data/vendor/v8/src/ia32/lithium-ia32.h +526 -271
  165. data/vendor/v8/src/ia32/macro-assembler-ia32.cc +378 -119
  166. data/vendor/v8/src/ia32/macro-assembler-ia32.h +62 -28
  167. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +43 -30
  168. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +2 -10
  169. data/vendor/v8/src/ia32/stub-cache-ia32.cc +492 -678
  170. data/vendor/v8/src/ic-inl.h +9 -4
  171. data/vendor/v8/src/ic.cc +836 -923
  172. data/vendor/v8/src/ic.h +228 -247
  173. data/vendor/v8/src/incremental-marking-inl.h +26 -30
  174. data/vendor/v8/src/incremental-marking.cc +276 -248
  175. data/vendor/v8/src/incremental-marking.h +29 -37
  176. data/vendor/v8/src/interface.cc +34 -25
  177. data/vendor/v8/src/interface.h +69 -25
  178. data/vendor/v8/src/interpreter-irregexp.cc +2 -2
  179. data/vendor/v8/src/isolate.cc +382 -76
  180. data/vendor/v8/src/isolate.h +109 -56
  181. data/vendor/v8/src/json-parser.h +217 -104
  182. data/vendor/v8/src/json-stringifier.h +745 -0
  183. data/vendor/v8/src/json.js +10 -132
  184. data/vendor/v8/src/jsregexp-inl.h +106 -0
  185. data/vendor/v8/src/jsregexp.cc +517 -285
  186. data/vendor/v8/src/jsregexp.h +145 -117
  187. data/vendor/v8/src/list-inl.h +35 -22
  188. data/vendor/v8/src/list.h +46 -19
  189. data/vendor/v8/src/lithium-allocator-inl.h +22 -2
  190. data/vendor/v8/src/lithium-allocator.cc +85 -70
  191. data/vendor/v8/src/lithium-allocator.h +21 -39
  192. data/vendor/v8/src/lithium.cc +259 -5
  193. data/vendor/v8/src/lithium.h +131 -32
  194. data/vendor/v8/src/liveedit-debugger.js +52 -3
  195. data/vendor/v8/src/liveedit.cc +393 -113
  196. data/vendor/v8/src/liveedit.h +7 -3
  197. data/vendor/v8/src/log-utils.cc +4 -2
  198. data/vendor/v8/src/log.cc +170 -140
  199. data/vendor/v8/src/log.h +62 -11
  200. data/vendor/v8/src/macro-assembler.h +17 -0
  201. data/vendor/v8/src/macros.py +2 -0
  202. data/vendor/v8/src/mark-compact-inl.h +3 -23
  203. data/vendor/v8/src/mark-compact.cc +801 -830
  204. data/vendor/v8/src/mark-compact.h +154 -47
  205. data/vendor/v8/src/marking-thread.cc +85 -0
  206. data/vendor/v8/src/{inspector.cc → marking-thread.h} +32 -24
  207. data/vendor/v8/src/math.js +12 -18
  208. data/vendor/v8/src/messages.cc +18 -8
  209. data/vendor/v8/src/messages.js +314 -261
  210. data/vendor/v8/src/mips/assembler-mips-inl.h +58 -6
  211. data/vendor/v8/src/mips/assembler-mips.cc +92 -75
  212. data/vendor/v8/src/mips/assembler-mips.h +54 -60
  213. data/vendor/v8/src/mips/builtins-mips.cc +116 -17
  214. data/vendor/v8/src/mips/code-stubs-mips.cc +919 -556
  215. data/vendor/v8/src/mips/code-stubs-mips.h +22 -131
  216. data/vendor/v8/src/mips/codegen-mips.cc +281 -6
  217. data/vendor/v8/src/mips/codegen-mips.h +22 -0
  218. data/vendor/v8/src/mips/constants-mips.cc +2 -0
  219. data/vendor/v8/src/mips/constants-mips.h +12 -2
  220. data/vendor/v8/src/mips/deoptimizer-mips.cc +286 -50
  221. data/vendor/v8/src/mips/disasm-mips.cc +13 -0
  222. data/vendor/v8/src/mips/full-codegen-mips.cc +297 -284
  223. data/vendor/v8/src/mips/ic-mips.cc +182 -263
  224. data/vendor/v8/src/mips/lithium-codegen-mips.cc +1208 -556
  225. data/vendor/v8/src/mips/lithium-codegen-mips.h +72 -19
  226. data/vendor/v8/src/mips/lithium-gap-resolver-mips.cc +9 -2
  227. data/vendor/v8/src/mips/lithium-mips.cc +290 -302
  228. data/vendor/v8/src/mips/lithium-mips.h +463 -266
  229. data/vendor/v8/src/mips/macro-assembler-mips.cc +208 -115
  230. data/vendor/v8/src/mips/macro-assembler-mips.h +67 -24
  231. data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +40 -25
  232. data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +3 -9
  233. data/vendor/v8/src/mips/simulator-mips.cc +112 -40
  234. data/vendor/v8/src/mips/simulator-mips.h +5 -0
  235. data/vendor/v8/src/mips/stub-cache-mips.cc +502 -884
  236. data/vendor/v8/src/mirror-debugger.js +157 -30
  237. data/vendor/v8/src/mksnapshot.cc +88 -14
  238. data/vendor/v8/src/object-observe.js +235 -0
  239. data/vendor/v8/src/objects-debug.cc +178 -176
  240. data/vendor/v8/src/objects-inl.h +1333 -486
  241. data/vendor/v8/src/objects-printer.cc +125 -43
  242. data/vendor/v8/src/objects-visiting-inl.h +578 -6
  243. data/vendor/v8/src/objects-visiting.cc +2 -2
  244. data/vendor/v8/src/objects-visiting.h +172 -79
  245. data/vendor/v8/src/objects.cc +3533 -2885
  246. data/vendor/v8/src/objects.h +1352 -1131
  247. data/vendor/v8/src/optimizing-compiler-thread.cc +152 -0
  248. data/vendor/v8/src/optimizing-compiler-thread.h +111 -0
  249. data/vendor/v8/src/parser.cc +390 -500
  250. data/vendor/v8/src/parser.h +45 -33
  251. data/vendor/v8/src/platform-cygwin.cc +10 -21
  252. data/vendor/v8/src/platform-freebsd.cc +36 -41
  253. data/vendor/v8/src/platform-linux.cc +160 -124
  254. data/vendor/v8/src/platform-macos.cc +30 -27
  255. data/vendor/v8/src/platform-nullos.cc +17 -1
  256. data/vendor/v8/src/platform-openbsd.cc +19 -50
  257. data/vendor/v8/src/platform-posix.cc +14 -0
  258. data/vendor/v8/src/platform-solaris.cc +20 -53
  259. data/vendor/v8/src/platform-win32.cc +49 -26
  260. data/vendor/v8/src/platform.h +40 -1
  261. data/vendor/v8/src/preparser.cc +8 -5
  262. data/vendor/v8/src/preparser.h +2 -2
  263. data/vendor/v8/src/prettyprinter.cc +16 -0
  264. data/vendor/v8/src/prettyprinter.h +2 -0
  265. data/vendor/v8/src/profile-generator-inl.h +1 -0
  266. data/vendor/v8/src/profile-generator.cc +209 -147
  267. data/vendor/v8/src/profile-generator.h +15 -12
  268. data/vendor/v8/src/property-details.h +46 -31
  269. data/vendor/v8/src/property.cc +27 -46
  270. data/vendor/v8/src/property.h +163 -83
  271. data/vendor/v8/src/proxy.js +7 -2
  272. data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +4 -13
  273. data/vendor/v8/src/regexp-macro-assembler-irregexp.h +1 -2
  274. data/vendor/v8/src/regexp-macro-assembler-tracer.cc +1 -11
  275. data/vendor/v8/src/regexp-macro-assembler-tracer.h +0 -1
  276. data/vendor/v8/src/regexp-macro-assembler.cc +31 -14
  277. data/vendor/v8/src/regexp-macro-assembler.h +14 -11
  278. data/vendor/v8/src/regexp-stack.cc +1 -0
  279. data/vendor/v8/src/regexp.js +9 -8
  280. data/vendor/v8/src/rewriter.cc +18 -7
  281. data/vendor/v8/src/runtime-profiler.cc +52 -43
  282. data/vendor/v8/src/runtime-profiler.h +0 -25
  283. data/vendor/v8/src/runtime.cc +2006 -2023
  284. data/vendor/v8/src/runtime.h +56 -49
  285. data/vendor/v8/src/safepoint-table.cc +12 -18
  286. data/vendor/v8/src/safepoint-table.h +11 -8
  287. data/vendor/v8/src/scanner.cc +1 -0
  288. data/vendor/v8/src/scanner.h +4 -10
  289. data/vendor/v8/src/scopeinfo.cc +35 -9
  290. data/vendor/v8/src/scopeinfo.h +64 -3
  291. data/vendor/v8/src/scopes.cc +251 -156
  292. data/vendor/v8/src/scopes.h +61 -27
  293. data/vendor/v8/src/serialize.cc +348 -396
  294. data/vendor/v8/src/serialize.h +125 -114
  295. data/vendor/v8/src/small-pointer-list.h +11 -11
  296. data/vendor/v8/src/{smart-array-pointer.h → smart-pointers.h} +64 -15
  297. data/vendor/v8/src/snapshot-common.cc +64 -15
  298. data/vendor/v8/src/snapshot-empty.cc +7 -1
  299. data/vendor/v8/src/snapshot.h +9 -2
  300. data/vendor/v8/src/spaces-inl.h +17 -0
  301. data/vendor/v8/src/spaces.cc +477 -183
  302. data/vendor/v8/src/spaces.h +238 -58
  303. data/vendor/v8/src/splay-tree-inl.h +8 -7
  304. data/vendor/v8/src/splay-tree.h +24 -10
  305. data/vendor/v8/src/store-buffer.cc +12 -5
  306. data/vendor/v8/src/store-buffer.h +2 -4
  307. data/vendor/v8/src/string-search.h +22 -6
  308. data/vendor/v8/src/string-stream.cc +11 -8
  309. data/vendor/v8/src/string.js +47 -15
  310. data/vendor/v8/src/stub-cache.cc +461 -224
  311. data/vendor/v8/src/stub-cache.h +164 -102
  312. data/vendor/v8/src/sweeper-thread.cc +105 -0
  313. data/vendor/v8/src/sweeper-thread.h +81 -0
  314. data/vendor/v8/src/token.h +1 -0
  315. data/vendor/v8/src/transitions-inl.h +220 -0
  316. data/vendor/v8/src/transitions.cc +160 -0
  317. data/vendor/v8/src/transitions.h +207 -0
  318. data/vendor/v8/src/type-info.cc +182 -181
  319. data/vendor/v8/src/type-info.h +31 -19
  320. data/vendor/v8/src/unicode-inl.h +62 -106
  321. data/vendor/v8/src/unicode.cc +57 -67
  322. data/vendor/v8/src/unicode.h +45 -91
  323. data/vendor/v8/src/uri.js +57 -29
  324. data/vendor/v8/src/utils.h +105 -5
  325. data/vendor/v8/src/v8-counters.cc +54 -11
  326. data/vendor/v8/src/v8-counters.h +134 -19
  327. data/vendor/v8/src/v8.cc +29 -29
  328. data/vendor/v8/src/v8.h +1 -0
  329. data/vendor/v8/src/v8conversions.cc +26 -22
  330. data/vendor/v8/src/v8globals.h +56 -43
  331. data/vendor/v8/src/v8natives.js +83 -30
  332. data/vendor/v8/src/v8threads.cc +42 -21
  333. data/vendor/v8/src/v8threads.h +4 -1
  334. data/vendor/v8/src/v8utils.cc +9 -93
  335. data/vendor/v8/src/v8utils.h +37 -33
  336. data/vendor/v8/src/variables.cc +6 -3
  337. data/vendor/v8/src/variables.h +6 -13
  338. data/vendor/v8/src/version.cc +2 -2
  339. data/vendor/v8/src/vm-state-inl.h +11 -0
  340. data/vendor/v8/src/x64/assembler-x64-inl.h +39 -8
  341. data/vendor/v8/src/x64/assembler-x64.cc +78 -64
  342. data/vendor/v8/src/x64/assembler-x64.h +38 -33
  343. data/vendor/v8/src/x64/builtins-x64.cc +105 -7
  344. data/vendor/v8/src/x64/code-stubs-x64.cc +790 -413
  345. data/vendor/v8/src/x64/code-stubs-x64.h +10 -106
  346. data/vendor/v8/src/x64/codegen-x64.cc +210 -8
  347. data/vendor/v8/src/x64/codegen-x64.h +20 -1
  348. data/vendor/v8/src/x64/deoptimizer-x64.cc +336 -75
  349. data/vendor/v8/src/x64/disasm-x64.cc +15 -0
  350. data/vendor/v8/src/x64/frames-x64.h +0 -14
  351. data/vendor/v8/src/x64/full-codegen-x64.cc +293 -270
  352. data/vendor/v8/src/x64/ic-x64.cc +153 -251
  353. data/vendor/v8/src/x64/lithium-codegen-x64.cc +1379 -531
  354. data/vendor/v8/src/x64/lithium-codegen-x64.h +67 -23
  355. data/vendor/v8/src/x64/lithium-gap-resolver-x64.cc +2 -2
  356. data/vendor/v8/src/x64/lithium-x64.cc +349 -289
  357. data/vendor/v8/src/x64/lithium-x64.h +460 -250
  358. data/vendor/v8/src/x64/macro-assembler-x64.cc +350 -177
  359. data/vendor/v8/src/x64/macro-assembler-x64.h +67 -49
  360. data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +46 -33
  361. data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +2 -3
  362. data/vendor/v8/src/x64/stub-cache-x64.cc +484 -653
  363. data/vendor/v8/src/zone-inl.h +9 -27
  364. data/vendor/v8/src/zone.cc +5 -5
  365. data/vendor/v8/src/zone.h +53 -27
  366. data/vendor/v8/test/benchmarks/testcfg.py +5 -0
  367. data/vendor/v8/test/cctest/cctest.cc +4 -0
  368. data/vendor/v8/test/cctest/cctest.gyp +3 -1
  369. data/vendor/v8/test/cctest/cctest.h +57 -9
  370. data/vendor/v8/test/cctest/cctest.status +15 -15
  371. data/vendor/v8/test/cctest/test-accessors.cc +26 -0
  372. data/vendor/v8/test/cctest/test-alloc.cc +22 -30
  373. data/vendor/v8/test/cctest/test-api.cc +1943 -314
  374. data/vendor/v8/test/cctest/test-assembler-arm.cc +133 -13
  375. data/vendor/v8/test/cctest/test-assembler-ia32.cc +1 -1
  376. data/vendor/v8/test/cctest/test-assembler-mips.cc +12 -0
  377. data/vendor/v8/test/cctest/test-ast.cc +4 -2
  378. data/vendor/v8/test/cctest/test-compiler.cc +61 -29
  379. data/vendor/v8/test/cctest/test-dataflow.cc +2 -2
  380. data/vendor/v8/test/cctest/test-debug.cc +212 -33
  381. data/vendor/v8/test/cctest/test-decls.cc +257 -11
  382. data/vendor/v8/test/cctest/test-dictionary.cc +24 -10
  383. data/vendor/v8/test/cctest/test-disasm-arm.cc +118 -1
  384. data/vendor/v8/test/cctest/test-disasm-ia32.cc +3 -2
  385. data/vendor/v8/test/cctest/test-flags.cc +14 -1
  386. data/vendor/v8/test/cctest/test-func-name-inference.cc +7 -4
  387. data/vendor/v8/test/cctest/test-global-object.cc +51 -0
  388. data/vendor/v8/test/cctest/test-hashing.cc +32 -23
  389. data/vendor/v8/test/cctest/test-heap-profiler.cc +131 -77
  390. data/vendor/v8/test/cctest/test-heap.cc +1084 -143
  391. data/vendor/v8/test/cctest/test-list.cc +1 -1
  392. data/vendor/v8/test/cctest/test-liveedit.cc +3 -2
  393. data/vendor/v8/test/cctest/test-lockers.cc +12 -13
  394. data/vendor/v8/test/cctest/test-log.cc +10 -8
  395. data/vendor/v8/test/cctest/test-macro-assembler-x64.cc +2 -2
  396. data/vendor/v8/test/cctest/test-mark-compact.cc +44 -22
  397. data/vendor/v8/test/cctest/test-object-observe.cc +434 -0
  398. data/vendor/v8/test/cctest/test-parsing.cc +86 -39
  399. data/vendor/v8/test/cctest/test-platform-linux.cc +6 -0
  400. data/vendor/v8/test/cctest/test-platform-win32.cc +7 -0
  401. data/vendor/v8/test/cctest/test-random.cc +5 -4
  402. data/vendor/v8/test/cctest/test-regexp.cc +137 -101
  403. data/vendor/v8/test/cctest/test-serialize.cc +150 -230
  404. data/vendor/v8/test/cctest/test-sockets.cc +1 -1
  405. data/vendor/v8/test/cctest/test-spaces.cc +139 -0
  406. data/vendor/v8/test/cctest/test-strings.cc +736 -74
  407. data/vendor/v8/test/cctest/test-thread-termination.cc +10 -11
  408. data/vendor/v8/test/cctest/test-threads.cc +4 -4
  409. data/vendor/v8/test/cctest/test-utils.cc +16 -0
  410. data/vendor/v8/test/cctest/test-weakmaps.cc +7 -3
  411. data/vendor/v8/test/cctest/testcfg.py +64 -5
  412. data/vendor/v8/test/es5conform/testcfg.py +5 -0
  413. data/vendor/v8/test/message/message.status +1 -1
  414. data/vendor/v8/test/message/overwritten-builtins.out +3 -0
  415. data/vendor/v8/test/message/testcfg.py +89 -8
  416. data/vendor/v8/test/message/try-catch-finally-no-message.out +26 -26
  417. data/vendor/v8/test/mjsunit/accessor-map-sharing.js +18 -2
  418. data/vendor/v8/test/mjsunit/allocation-site-info.js +126 -0
  419. data/vendor/v8/test/mjsunit/array-bounds-check-removal.js +62 -1
  420. data/vendor/v8/test/mjsunit/array-iteration.js +1 -1
  421. data/vendor/v8/test/mjsunit/array-literal-transitions.js +2 -0
  422. data/vendor/v8/test/mjsunit/array-natives-elements.js +317 -0
  423. data/vendor/v8/test/mjsunit/array-reduce.js +8 -8
  424. data/vendor/v8/test/mjsunit/array-slice.js +12 -0
  425. data/vendor/v8/test/mjsunit/array-store-and-grow.js +4 -1
  426. data/vendor/v8/test/mjsunit/assert-opt-and-deopt.js +1 -1
  427. data/vendor/v8/test/mjsunit/bugs/bug-2337.js +53 -0
  428. data/vendor/v8/test/mjsunit/compare-known-objects-slow.js +69 -0
  429. data/vendor/v8/test/mjsunit/compiler/alloc-object-huge.js +3 -1
  430. data/vendor/v8/test/mjsunit/compiler/inline-accessors.js +368 -0
  431. data/vendor/v8/test/mjsunit/compiler/inline-arguments.js +87 -1
  432. data/vendor/v8/test/mjsunit/compiler/inline-closures.js +49 -0
  433. data/vendor/v8/test/mjsunit/compiler/inline-construct.js +55 -43
  434. data/vendor/v8/test/mjsunit/compiler/inline-literals.js +39 -0
  435. data/vendor/v8/test/mjsunit/compiler/multiply-add.js +69 -0
  436. data/vendor/v8/test/mjsunit/compiler/optimized-closures.js +57 -0
  437. data/vendor/v8/test/mjsunit/compiler/parallel-proto-change.js +44 -0
  438. data/vendor/v8/test/mjsunit/compiler/property-static.js +69 -0
  439. data/vendor/v8/test/mjsunit/compiler/proto-chain-constant.js +55 -0
  440. data/vendor/v8/test/mjsunit/compiler/proto-chain-load.js +44 -0
  441. data/vendor/v8/test/mjsunit/compiler/regress-gvn.js +3 -2
  442. data/vendor/v8/test/mjsunit/compiler/regress-or.js +6 -2
  443. data/vendor/v8/test/mjsunit/compiler/rotate.js +224 -0
  444. data/vendor/v8/test/mjsunit/compiler/uint32.js +173 -0
  445. data/vendor/v8/test/mjsunit/count-based-osr.js +2 -1
  446. data/vendor/v8/test/mjsunit/d8-os.js +3 -3
  447. data/vendor/v8/test/mjsunit/date-parse.js +3 -0
  448. data/vendor/v8/test/mjsunit/date.js +22 -0
  449. data/vendor/v8/test/mjsunit/debug-break-inline.js +1 -0
  450. data/vendor/v8/test/mjsunit/debug-evaluate-locals-optimized-double.js +22 -12
  451. data/vendor/v8/test/mjsunit/debug-evaluate-locals-optimized.js +21 -10
  452. data/vendor/v8/test/mjsunit/debug-liveedit-compile-error.js +60 -0
  453. data/vendor/v8/test/mjsunit/debug-liveedit-double-call.js +142 -0
  454. data/vendor/v8/test/mjsunit/debug-liveedit-literals.js +94 -0
  455. data/vendor/v8/test/mjsunit/debug-liveedit-restart-frame.js +153 -0
  456. data/vendor/v8/test/mjsunit/debug-multiple-breakpoints.js +1 -1
  457. data/vendor/v8/test/mjsunit/debug-script-breakpoints-closure.js +67 -0
  458. data/vendor/v8/test/mjsunit/debug-script-breakpoints-nested.js +82 -0
  459. data/vendor/v8/test/mjsunit/debug-script.js +4 -2
  460. data/vendor/v8/test/mjsunit/debug-set-variable-value.js +308 -0
  461. data/vendor/v8/test/mjsunit/debug-stepout-scope-part1.js +190 -0
  462. data/vendor/v8/test/mjsunit/debug-stepout-scope-part2.js +83 -0
  463. data/vendor/v8/test/mjsunit/debug-stepout-scope-part3.js +80 -0
  464. data/vendor/v8/test/mjsunit/debug-stepout-scope-part4.js +80 -0
  465. data/vendor/v8/test/mjsunit/debug-stepout-scope-part5.js +77 -0
  466. data/vendor/v8/test/mjsunit/debug-stepout-scope-part6.js +79 -0
  467. data/vendor/v8/test/mjsunit/debug-stepout-scope-part7.js +79 -0
  468. data/vendor/v8/test/mjsunit/{debug-stepout-scope.js → debug-stepout-scope-part8.js} +0 -189
  469. data/vendor/v8/test/mjsunit/delete-non-configurable.js +74 -0
  470. data/vendor/v8/test/mjsunit/deopt-minus-zero.js +56 -0
  471. data/vendor/v8/test/mjsunit/elements-kind.js +6 -4
  472. data/vendor/v8/test/mjsunit/elements-length-no-holey.js +33 -0
  473. data/vendor/v8/test/mjsunit/elements-transition-hoisting.js +46 -19
  474. data/vendor/v8/test/mjsunit/error-accessors.js +54 -0
  475. data/vendor/v8/test/mjsunit/error-constructors.js +1 -14
  476. data/vendor/v8/test/mjsunit/error-tostring.js +8 -0
  477. data/vendor/v8/test/mjsunit/eval-stack-trace.js +204 -0
  478. data/vendor/v8/test/mjsunit/external-array.js +364 -1
  479. data/vendor/v8/test/mjsunit/fast-array-length.js +37 -0
  480. data/vendor/v8/test/mjsunit/fast-non-keyed.js +113 -0
  481. data/vendor/v8/test/mjsunit/fast-prototype.js +117 -0
  482. data/vendor/v8/test/mjsunit/function-call.js +14 -18
  483. data/vendor/v8/test/mjsunit/fuzz-natives-part1.js +230 -0
  484. data/vendor/v8/test/mjsunit/fuzz-natives-part2.js +229 -0
  485. data/vendor/v8/test/mjsunit/fuzz-natives-part3.js +229 -0
  486. data/vendor/v8/test/mjsunit/{fuzz-natives.js → fuzz-natives-part4.js} +12 -2
  487. data/vendor/v8/test/mjsunit/generated-transition-stub.js +218 -0
  488. data/vendor/v8/test/mjsunit/greedy.js +1 -1
  489. data/vendor/v8/test/mjsunit/harmony/block-conflicts.js +2 -1
  490. data/vendor/v8/test/mjsunit/harmony/block-let-crankshaft.js +1 -1
  491. data/vendor/v8/test/mjsunit/harmony/collections.js +69 -11
  492. data/vendor/v8/test/mjsunit/harmony/debug-blockscopes.js +2 -2
  493. data/vendor/v8/test/mjsunit/harmony/module-linking.js +180 -3
  494. data/vendor/v8/test/mjsunit/harmony/module-parsing.js +31 -0
  495. data/vendor/v8/test/mjsunit/harmony/module-recompile.js +87 -0
  496. data/vendor/v8/test/mjsunit/harmony/module-resolution.js +15 -2
  497. data/vendor/v8/test/mjsunit/harmony/object-observe.js +1056 -0
  498. data/vendor/v8/test/mjsunit/harmony/proxies-json.js +178 -0
  499. data/vendor/v8/test/mjsunit/harmony/proxies.js +25 -10
  500. data/vendor/v8/test/mjsunit/json-parser-recursive.js +33 -0
  501. data/vendor/v8/test/mjsunit/json-stringify-recursive.js +52 -0
  502. data/vendor/v8/test/mjsunit/json.js +38 -2
  503. data/vendor/v8/test/mjsunit/json2.js +153 -0
  504. data/vendor/v8/test/mjsunit/limit-locals.js +5 -4
  505. data/vendor/v8/test/mjsunit/manual-parallel-recompile.js +79 -0
  506. data/vendor/v8/test/mjsunit/math-exp-precision.js +64 -0
  507. data/vendor/v8/test/mjsunit/math-floor-negative.js +59 -0
  508. data/vendor/v8/test/mjsunit/math-floor-of-div-minus-zero.js +41 -0
  509. data/vendor/v8/test/mjsunit/math-floor-of-div-nosudiv.js +288 -0
  510. data/vendor/v8/test/mjsunit/math-floor-of-div.js +81 -9
  511. data/vendor/v8/test/mjsunit/{math-floor.js → math-floor-part1.js} +1 -72
  512. data/vendor/v8/test/mjsunit/math-floor-part2.js +76 -0
  513. data/vendor/v8/test/mjsunit/math-floor-part3.js +78 -0
  514. data/vendor/v8/test/mjsunit/math-floor-part4.js +76 -0
  515. data/vendor/v8/test/mjsunit/mirror-object.js +43 -9
  516. data/vendor/v8/test/mjsunit/mjsunit.js +1 -1
  517. data/vendor/v8/test/mjsunit/mjsunit.status +52 -27
  518. data/vendor/v8/test/mjsunit/mul-exhaustive-part1.js +491 -0
  519. data/vendor/v8/test/mjsunit/mul-exhaustive-part10.js +470 -0
  520. data/vendor/v8/test/mjsunit/mul-exhaustive-part2.js +525 -0
  521. data/vendor/v8/test/mjsunit/mul-exhaustive-part3.js +532 -0
  522. data/vendor/v8/test/mjsunit/mul-exhaustive-part4.js +509 -0
  523. data/vendor/v8/test/mjsunit/mul-exhaustive-part5.js +505 -0
  524. data/vendor/v8/test/mjsunit/mul-exhaustive-part6.js +554 -0
  525. data/vendor/v8/test/mjsunit/mul-exhaustive-part7.js +497 -0
  526. data/vendor/v8/test/mjsunit/mul-exhaustive-part8.js +526 -0
  527. data/vendor/v8/test/mjsunit/mul-exhaustive-part9.js +533 -0
  528. data/vendor/v8/test/mjsunit/new-function.js +34 -0
  529. data/vendor/v8/test/mjsunit/numops-fuzz-part1.js +1172 -0
  530. data/vendor/v8/test/mjsunit/numops-fuzz-part2.js +1178 -0
  531. data/vendor/v8/test/mjsunit/numops-fuzz-part3.js +1178 -0
  532. data/vendor/v8/test/mjsunit/numops-fuzz-part4.js +1177 -0
  533. data/vendor/v8/test/mjsunit/object-define-property.js +107 -2
  534. data/vendor/v8/test/mjsunit/override-read-only-property.js +6 -4
  535. data/vendor/v8/test/mjsunit/packed-elements.js +2 -2
  536. data/vendor/v8/test/mjsunit/parse-int-float.js +4 -4
  537. data/vendor/v8/test/mjsunit/pixel-array-rounding.js +1 -1
  538. data/vendor/v8/test/mjsunit/readonly.js +228 -0
  539. data/vendor/v8/test/mjsunit/regexp-capture-3.js +16 -18
  540. data/vendor/v8/test/mjsunit/regexp-capture.js +2 -0
  541. data/vendor/v8/test/mjsunit/regexp-global.js +122 -0
  542. data/vendor/v8/test/mjsunit/regexp-results-cache.js +78 -0
  543. data/vendor/v8/test/mjsunit/regress/regress-1117.js +12 -3
  544. data/vendor/v8/test/mjsunit/regress/regress-1118.js +1 -1
  545. data/vendor/v8/test/mjsunit/regress/regress-115100.js +36 -0
  546. data/vendor/v8/test/mjsunit/regress/regress-1199637.js +1 -3
  547. data/vendor/v8/test/mjsunit/regress/regress-121407.js +1 -1
  548. data/vendor/v8/test/mjsunit/regress/regress-131923.js +30 -0
  549. data/vendor/v8/test/mjsunit/regress/regress-131994.js +70 -0
  550. data/vendor/v8/test/mjsunit/regress/regress-133211.js +35 -0
  551. data/vendor/v8/test/mjsunit/regress/regress-133211b.js +39 -0
  552. data/vendor/v8/test/mjsunit/regress/regress-136048.js +34 -0
  553. data/vendor/v8/test/mjsunit/regress/regress-137768.js +73 -0
  554. data/vendor/v8/test/mjsunit/regress/regress-143967.js +34 -0
  555. data/vendor/v8/test/mjsunit/regress/regress-145201.js +107 -0
  556. data/vendor/v8/test/mjsunit/regress/regress-147497.js +45 -0
  557. data/vendor/v8/test/mjsunit/regress/regress-148378.js +38 -0
  558. data/vendor/v8/test/mjsunit/regress/regress-1563.js +1 -1
  559. data/vendor/v8/test/mjsunit/regress/regress-1591.js +48 -0
  560. data/vendor/v8/test/mjsunit/regress/regress-164442.js +45 -0
  561. data/vendor/v8/test/mjsunit/regress/regress-165637.js +61 -0
  562. data/vendor/v8/test/mjsunit/regress/regress-166379.js +39 -0
  563. data/vendor/v8/test/mjsunit/regress/regress-166553.js +33 -0
  564. data/vendor/v8/test/mjsunit/regress/regress-1692.js +1 -1
  565. data/vendor/v8/test/mjsunit/regress/regress-171641.js +40 -0
  566. data/vendor/v8/test/mjsunit/regress/regress-1980.js +1 -1
  567. data/vendor/v8/test/mjsunit/regress/regress-2073.js +99 -0
  568. data/vendor/v8/test/mjsunit/regress/regress-2119.js +36 -0
  569. data/vendor/v8/test/mjsunit/regress/regress-2156.js +39 -0
  570. data/vendor/v8/test/mjsunit/regress/regress-2163.js +70 -0
  571. data/vendor/v8/test/mjsunit/regress/regress-2170.js +58 -0
  572. data/vendor/v8/test/mjsunit/regress/regress-2172.js +35 -0
  573. data/vendor/v8/test/mjsunit/regress/regress-2185-2.js +145 -0
  574. data/vendor/v8/test/mjsunit/regress/regress-2185.js +38 -0
  575. data/vendor/v8/test/mjsunit/regress/regress-2186.js +49 -0
  576. data/vendor/v8/test/mjsunit/regress/regress-2193.js +58 -0
  577. data/vendor/v8/test/mjsunit/regress/regress-2219.js +32 -0
  578. data/vendor/v8/test/mjsunit/regress/regress-2225.js +65 -0
  579. data/vendor/v8/test/mjsunit/regress/regress-2226.js +36 -0
  580. data/vendor/v8/test/mjsunit/regress/regress-2234.js +41 -0
  581. data/vendor/v8/test/mjsunit/regress/regress-2243.js +31 -0
  582. data/vendor/v8/test/mjsunit/regress/regress-2249.js +33 -0
  583. data/vendor/v8/test/mjsunit/regress/regress-2250.js +68 -0
  584. data/vendor/v8/test/mjsunit/regress/regress-2261.js +113 -0
  585. data/vendor/v8/test/mjsunit/regress/regress-2263.js +30 -0
  586. data/vendor/v8/test/mjsunit/regress/regress-2284.js +32 -0
  587. data/vendor/v8/test/mjsunit/regress/regress-2285.js +32 -0
  588. data/vendor/v8/test/mjsunit/regress/regress-2286.js +32 -0
  589. data/vendor/v8/test/mjsunit/regress/regress-2289.js +34 -0
  590. data/vendor/v8/test/mjsunit/regress/regress-2291.js +36 -0
  591. data/vendor/v8/test/mjsunit/regress/regress-2294.js +70 -0
  592. data/vendor/v8/test/mjsunit/regress/regress-2296.js +40 -0
  593. data/vendor/v8/test/mjsunit/regress/regress-2315.js +40 -0
  594. data/vendor/v8/test/mjsunit/regress/regress-2318.js +66 -0
  595. data/vendor/v8/test/mjsunit/regress/regress-2322.js +36 -0
  596. data/vendor/v8/test/mjsunit/regress/regress-2326.js +54 -0
  597. data/vendor/v8/test/mjsunit/regress/regress-2336.js +53 -0
  598. data/vendor/v8/test/mjsunit/regress/regress-2339.js +59 -0
  599. data/vendor/v8/test/mjsunit/regress/regress-2346.js +123 -0
  600. data/vendor/v8/test/mjsunit/regress/regress-2373.js +29 -0
  601. data/vendor/v8/test/mjsunit/regress/regress-2374.js +33 -0
  602. data/vendor/v8/test/mjsunit/regress/regress-2398.js +41 -0
  603. data/vendor/v8/test/mjsunit/regress/regress-2410.js +36 -0
  604. data/vendor/v8/test/mjsunit/regress/regress-2416.js +75 -0
  605. data/vendor/v8/test/mjsunit/regress/regress-2419.js +37 -0
  606. data/vendor/v8/test/mjsunit/regress/regress-2433.js +36 -0
  607. data/vendor/v8/test/mjsunit/regress/regress-2437.js +156 -0
  608. data/vendor/v8/test/mjsunit/regress/regress-2438.js +52 -0
  609. data/vendor/v8/test/mjsunit/regress/regress-2443.js +129 -0
  610. data/vendor/v8/test/mjsunit/regress/regress-2444.js +120 -0
  611. data/vendor/v8/test/mjsunit/regress/regress-2489.js +50 -0
  612. data/vendor/v8/test/mjsunit/regress/regress-2499.js +40 -0
  613. data/vendor/v8/test/mjsunit/regress/regress-334.js +1 -1
  614. data/vendor/v8/test/mjsunit/regress/regress-492.js +39 -1
  615. data/vendor/v8/test/mjsunit/regress/regress-builtin-array-op.js +38 -0
  616. data/vendor/v8/test/mjsunit/regress/regress-cnlt-elements.js +43 -0
  617. data/vendor/v8/test/mjsunit/regress/regress-cnlt-enum-indices.js +45 -0
  618. data/vendor/v8/test/mjsunit/regress/regress-cntl-descriptors-enum.js +46 -0
  619. data/vendor/v8/test/mjsunit/regress/regress-convert-enum.js +60 -0
  620. data/vendor/v8/test/mjsunit/regress/regress-convert-enum2.js +46 -0
  621. data/vendor/v8/test/mjsunit/regress/regress-convert-transition.js +40 -0
  622. data/vendor/v8/test/mjsunit/regress/regress-crbug-119926.js +3 -1
  623. data/vendor/v8/test/mjsunit/regress/regress-crbug-125148.js +90 -0
  624. data/vendor/v8/test/mjsunit/regress/regress-crbug-134055.js +63 -0
  625. data/vendor/v8/test/mjsunit/regress/regress-crbug-134609.js +59 -0
  626. data/vendor/v8/test/mjsunit/regress/regress-crbug-135008.js +45 -0
  627. data/vendor/v8/test/mjsunit/regress/regress-crbug-135066.js +55 -0
  628. data/vendor/v8/test/mjsunit/regress/regress-crbug-137689.js +47 -0
  629. data/vendor/v8/test/mjsunit/regress/regress-crbug-138887.js +48 -0
  630. data/vendor/v8/test/mjsunit/regress/regress-crbug-140083.js +44 -0
  631. data/vendor/v8/test/mjsunit/regress/regress-crbug-142087.js +38 -0
  632. data/vendor/v8/test/mjsunit/regress/regress-crbug-142218.js +44 -0
  633. data/vendor/v8/test/mjsunit/regress/regress-crbug-145961.js +39 -0
  634. data/vendor/v8/test/mjsunit/regress/regress-crbug-146910.js +33 -0
  635. data/vendor/v8/test/mjsunit/regress/regress-crbug-147475.js +48 -0
  636. data/vendor/v8/test/mjsunit/regress/regress-crbug-148376.js +35 -0
  637. data/vendor/v8/test/mjsunit/regress/regress-crbug-150545.js +53 -0
  638. data/vendor/v8/test/mjsunit/regress/regress-crbug-150729.js +39 -0
  639. data/vendor/v8/test/mjsunit/regress/regress-crbug-157019.js +54 -0
  640. data/vendor/v8/test/mjsunit/regress/regress-crbug-157520.js +38 -0
  641. data/vendor/v8/test/mjsunit/regress/regress-crbug-158185.js +39 -0
  642. data/vendor/v8/test/mjsunit/regress/regress-crbug-160010.js +35 -0
  643. data/vendor/v8/test/mjsunit/regress/regress-crbug-162085.js +71 -0
  644. data/vendor/v8/test/mjsunit/regress/regress-crbug-168545.js +34 -0
  645. data/vendor/v8/test/mjsunit/regress/regress-crbug-170856.js +33 -0
  646. data/vendor/v8/test/mjsunit/regress/regress-crbug-172345.js +34 -0
  647. data/vendor/v8/test/mjsunit/regress/regress-crbug-173974.js +36 -0
  648. data/vendor/v8/test/mjsunit/regress/regress-crbug-18639.js +9 -5
  649. data/vendor/v8/test/mjsunit/regress/regress-debug-code-recompilation.js +2 -1
  650. data/vendor/v8/test/mjsunit/regress/regress-deep-proto.js +45 -0
  651. data/vendor/v8/test/mjsunit/regress/regress-delete-empty-double.js +40 -0
  652. data/vendor/v8/test/mjsunit/regress/regress-iteration-order.js +42 -0
  653. data/vendor/v8/test/mjsunit/regress/regress-json-stringify-gc.js +41 -0
  654. data/vendor/v8/test/mjsunit/regress/regress-latin-1.js +78 -0
  655. data/vendor/v8/test/mjsunit/regress/regress-load-elements.js +49 -0
  656. data/vendor/v8/test/mjsunit/regress/regress-observe-empty-double-array.js +38 -0
  657. data/vendor/v8/test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js +37 -0
  658. data/vendor/v8/test/mjsunit/shift-for-integer-div.js +59 -0
  659. data/vendor/v8/test/mjsunit/stack-traces-gc.js +119 -0
  660. data/vendor/v8/test/mjsunit/stack-traces-overflow.js +122 -0
  661. data/vendor/v8/test/mjsunit/stack-traces.js +39 -1
  662. data/vendor/v8/test/mjsunit/str-to-num.js +7 -2
  663. data/vendor/v8/test/mjsunit/strict-mode.js +36 -11
  664. data/vendor/v8/test/mjsunit/string-charcodeat.js +3 -0
  665. data/vendor/v8/test/mjsunit/string-natives.js +72 -0
  666. data/vendor/v8/test/mjsunit/string-split.js +17 -0
  667. data/vendor/v8/test/mjsunit/testcfg.py +76 -6
  668. data/vendor/v8/test/mjsunit/tools/tickprocessor.js +4 -1
  669. data/vendor/v8/test/mjsunit/try-finally-continue.js +72 -0
  670. data/vendor/v8/test/mjsunit/typed-array-slice.js +61 -0
  671. data/vendor/v8/test/mjsunit/unbox-double-arrays.js +2 -0
  672. data/vendor/v8/test/mjsunit/uri.js +12 -0
  673. data/vendor/v8/test/mjsunit/with-readonly.js +4 -2
  674. data/vendor/v8/test/mozilla/mozilla.status +19 -113
  675. data/vendor/v8/test/mozilla/testcfg.py +122 -3
  676. data/vendor/v8/test/preparser/preparser.status +5 -0
  677. data/vendor/v8/test/preparser/strict-identifiers.pyt +1 -1
  678. data/vendor/v8/test/preparser/testcfg.py +101 -5
  679. data/vendor/v8/test/sputnik/sputnik.status +1 -1
  680. data/vendor/v8/test/sputnik/testcfg.py +5 -0
  681. data/vendor/v8/test/test262/README +2 -2
  682. data/vendor/v8/test/test262/test262.status +13 -36
  683. data/vendor/v8/test/test262/testcfg.py +102 -8
  684. data/vendor/v8/tools/android-build.sh +0 -0
  685. data/vendor/v8/tools/android-ll-prof.sh +69 -0
  686. data/vendor/v8/tools/android-run.py +109 -0
  687. data/vendor/v8/tools/android-sync.sh +105 -0
  688. data/vendor/v8/tools/bash-completion.sh +0 -0
  689. data/vendor/v8/tools/check-static-initializers.sh +0 -0
  690. data/vendor/v8/tools/common-includes.sh +15 -22
  691. data/vendor/v8/tools/disasm.py +4 -4
  692. data/vendor/v8/tools/fuzz-harness.sh +0 -0
  693. data/vendor/v8/tools/gen-postmortem-metadata.py +6 -8
  694. data/vendor/v8/tools/grokdump.py +404 -129
  695. data/vendor/v8/tools/gyp/v8.gyp +105 -43
  696. data/vendor/v8/tools/linux-tick-processor +5 -5
  697. data/vendor/v8/tools/ll_prof.py +75 -15
  698. data/vendor/v8/tools/merge-to-branch.sh +2 -2
  699. data/vendor/v8/tools/plot-timer-events +70 -0
  700. data/vendor/v8/tools/plot-timer-events.js +510 -0
  701. data/vendor/v8/tools/presubmit.py +1 -0
  702. data/vendor/v8/tools/push-to-trunk.sh +14 -4
  703. data/vendor/v8/tools/run-llprof.sh +69 -0
  704. data/vendor/v8/tools/run-tests.py +372 -0
  705. data/vendor/v8/tools/run-valgrind.py +1 -1
  706. data/vendor/v8/tools/status-file-converter.py +39 -0
  707. data/vendor/v8/tools/test-server.py +224 -0
  708. data/vendor/v8/tools/test-wrapper-gypbuild.py +13 -16
  709. data/vendor/v8/tools/test.py +10 -19
  710. data/vendor/v8/tools/testrunner/README +174 -0
  711. data/vendor/v8/tools/testrunner/__init__.py +26 -0
  712. data/vendor/v8/tools/testrunner/local/__init__.py +26 -0
  713. data/vendor/v8/tools/testrunner/local/commands.py +153 -0
  714. data/vendor/v8/tools/testrunner/local/execution.py +182 -0
  715. data/vendor/v8/tools/testrunner/local/old_statusfile.py +460 -0
  716. data/vendor/v8/tools/testrunner/local/progress.py +238 -0
  717. data/vendor/v8/tools/testrunner/local/statusfile.py +145 -0
  718. data/vendor/v8/tools/testrunner/local/testsuite.py +187 -0
  719. data/vendor/v8/tools/testrunner/local/utils.py +108 -0
  720. data/vendor/v8/tools/testrunner/local/verbose.py +99 -0
  721. data/vendor/v8/tools/testrunner/network/__init__.py +26 -0
  722. data/vendor/v8/tools/testrunner/network/distro.py +90 -0
  723. data/vendor/v8/tools/testrunner/network/endpoint.py +124 -0
  724. data/vendor/v8/tools/testrunner/network/network_execution.py +253 -0
  725. data/vendor/v8/tools/testrunner/network/perfdata.py +120 -0
  726. data/vendor/v8/tools/testrunner/objects/__init__.py +26 -0
  727. data/vendor/v8/tools/testrunner/objects/context.py +50 -0
  728. data/vendor/v8/tools/testrunner/objects/output.py +60 -0
  729. data/vendor/v8/tools/testrunner/objects/peer.py +80 -0
  730. data/vendor/v8/tools/testrunner/objects/testcase.py +83 -0
  731. data/vendor/v8/tools/testrunner/objects/workpacket.py +90 -0
  732. data/vendor/v8/tools/testrunner/server/__init__.py +26 -0
  733. data/vendor/v8/tools/testrunner/server/compression.py +111 -0
  734. data/vendor/v8/tools/testrunner/server/constants.py +51 -0
  735. data/vendor/v8/tools/testrunner/server/daemon.py +147 -0
  736. data/vendor/v8/tools/testrunner/server/local_handler.py +119 -0
  737. data/vendor/v8/tools/testrunner/server/main.py +245 -0
  738. data/vendor/v8/tools/testrunner/server/presence_handler.py +120 -0
  739. data/vendor/v8/tools/testrunner/server/signatures.py +63 -0
  740. data/vendor/v8/tools/testrunner/server/status_handler.py +112 -0
  741. data/vendor/v8/tools/testrunner/server/work_handler.py +150 -0
  742. data/vendor/v8/tools/tick-processor.html +168 -0
  743. data/vendor/v8/tools/tickprocessor-driver.js +5 -3
  744. data/vendor/v8/tools/tickprocessor.js +58 -15
  745. metadata +534 -30
  746. data/patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch +0 -11
  747. data/patches/do-not-imply-vfp3-and-armv7.patch +0 -44
  748. data/patches/fPIC-on-x64.patch +0 -14
  749. data/vendor/v8/src/liveobjectlist-inl.h +0 -126
  750. data/vendor/v8/src/liveobjectlist.cc +0 -2631
  751. data/vendor/v8/src/liveobjectlist.h +0 -319
  752. data/vendor/v8/test/mjsunit/mul-exhaustive.js +0 -4629
  753. data/vendor/v8/test/mjsunit/numops-fuzz.js +0 -4609
  754. data/vendor/v8/test/mjsunit/regress/regress-1969.js +0 -5045
@@ -0,0 +1,168 @@
1
+ <!DOCTYPE html>
2
+ <!-- Copyright 2012 the V8 project authors. All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are
6
+ met:
7
+ * Redistributions of source code must retain the above copyright
8
+ notice, this list of conditions and the following disclaimer.
9
+ * Redistributions in binary form must reproduce the above
10
+ copyright notice, this list of conditions and the following
11
+ disclaimer in the documentation and/or other materials provided
12
+ with the distribution.
13
+ * Neither the name of Google Inc. nor the names of its
14
+ contributors may be used to endorse or promote products derived
15
+ from this software without specific prior written permission.
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -->
27
+
28
+ <html lang="en">
29
+ <head>
30
+ <meta charset="utf-8"/>
31
+ <title>V8 Tick Processor</title>
32
+
33
+ <style type="text/css">
34
+ body {
35
+ font-family: Verdana, Arial, Helvetica, sans-serif;
36
+ font-size: 10pt;
37
+ }
38
+ h4 {
39
+ margin-bottom: 0px;
40
+ }
41
+ p {
42
+ margin-top: 0px;
43
+ }
44
+ </style>
45
+
46
+ <script src="splaytree.js"></script>
47
+ <script src="codemap.js"></script>
48
+ <script src="csvparser.js"></script>
49
+ <script src="consarray.js"></script>
50
+ <script src="profile.js"></script>
51
+ <script src="profile_view.js"></script>
52
+ <script src="logreader.js"></script>
53
+ <script src="tickprocessor.js"></script>
54
+
55
+ <script type="text/javascript">
56
+
57
+ var v8log_content;
58
+ var textout;
59
+
60
+ function load_logfile(evt) {
61
+ textout.value = "";
62
+ var f = evt.target.files[0];
63
+ if (f) {
64
+ var reader = new FileReader();
65
+ reader.onload = function(event) {
66
+ v8log_content = event.target.result;
67
+ start_process();
68
+ };
69
+ reader.onerror = function(event) {
70
+ console.error("File could not be read! Code " + event.target.error.code);
71
+ };
72
+ reader.readAsText(f);
73
+ } else {
74
+ alert("Failed to load file");
75
+ }
76
+ }
77
+
78
+ function print(arg) {
79
+ textout.value+=arg+"\n";
80
+ }
81
+
82
+ function start_process() {
83
+ ArgumentsProcessor.DEFAULTS = {
84
+ logFileName: 'v8.log',
85
+ snapshotLogFileName: null,
86
+ platform: 'unix',
87
+ stateFilter: null,
88
+ callGraphSize: 5,
89
+ ignoreUnknown: false,
90
+ separateIc: false,
91
+ targetRootFS: '',
92
+ nm: 'nm'
93
+ };
94
+
95
+ var entriesProviders = {
96
+ 'unix': UnixCppEntriesProvider,
97
+ 'windows': WindowsCppEntriesProvider,
98
+ 'mac': MacCppEntriesProvider
99
+ };
100
+
101
+ var snapshotLogProcessor; // not used
102
+
103
+ var tickProcessor = new TickProcessor(
104
+ new (entriesProviders[ArgumentsProcessor.DEFAULTS.platform])(
105
+ ArgumentsProcessor.DEFAULTS.nm,
106
+ ArgumentsProcessor.DEFAULTS.targetRootFS),
107
+ ArgumentsProcessor.DEFAULTS.separateIc,
108
+ ArgumentsProcessor.DEFAULTS.callGraphSize,
109
+ ArgumentsProcessor.DEFAULTS.ignoreUnknown,
110
+ ArgumentsProcessor.DEFAULTS.stateFilter,
111
+ snapshotLogProcessor);
112
+
113
+ tickProcessor.processLogChunk(v8log_content);
114
+ tickProcessor.printStatistics();
115
+ }
116
+
117
+ function Load() {
118
+ document.getElementById('fileinput').addEventListener(
119
+ 'change', load_logfile, false);
120
+ textout = document.getElementById('textout');
121
+ }
122
+ </script>
123
+ </head>
124
+ <body onLoad="Load()">
125
+
126
+ <h3 style="margin-top: 2px;">
127
+ Chrome V8 profiling log processor
128
+ </h3>
129
+ <p>
130
+ Process V8's profiling information log (sampling profiler tick information)
131
+ in your browser. Particularly useful if you don't have the V8 shell (d8)
132
+ at hand on your system. You still have to run Chrome with the appropriate
133
+ <a href="https://code.google.com/p/v8/wiki/ProfilingChromiumWithV8">
134
+ command line flags</a>
135
+ to produce the profiling log.
136
+ </p>
137
+ <h4>Usage:</h4>
138
+ <p>
139
+ Click on the button and browse to the profiling log file (usually, v8.log).
140
+ Process will start automatically and the output will be visible in the below
141
+ text area.
142
+ </p>
143
+ <h4>Limitations and disclaimer:</h4>
144
+ <p>
145
+ This page offers a subset of the functionalities of the command-line tick
146
+ processor utility in the V8 repository. In particular, this page cannot
147
+ access the command-line utility that provides library symbol information,
148
+ hence the [C++] section of the output stays empty. Also consider that this
149
+ web-based tool is provided only for convenience and quick reference, you
150
+ should refer to the
151
+ <a href="https://code.google.com/p/v8/wiki/V8Profiler">
152
+ command-line</a>
153
+ version for full output.
154
+ </p>
155
+ <p>
156
+ <input type="file" id="fileinput" />
157
+ </p>
158
+ <p>
159
+ <textarea name="myTextArea" cols="120" rows="40" wrap="off" id="textout"
160
+ readonly="yes"></textarea>
161
+ </p>
162
+ <p style="font-style:italic;">
163
+ Copyright the V8 Authors - Last change to this page: 12/12/2012
164
+ </p>
165
+
166
+
167
+ </body>
168
+ </html>
@@ -1,4 +1,4 @@
1
- // Copyright 2009 the V8 project authors. All rights reserved.
1
+ // Copyright 2012 the V8 project authors. All rights reserved.
2
2
  // Redistribution and use in source and binary forms, with or without
3
3
  // modification, are permitted provided that the following conditions are
4
4
  // met:
@@ -50,11 +50,13 @@ if (params.snapshotLogFileName) {
50
50
  snapshotLogProcessor.processLogFile(params.snapshotLogFileName);
51
51
  }
52
52
  var tickProcessor = new TickProcessor(
53
- new (entriesProviders[params.platform])(params.nm),
53
+ new (entriesProviders[params.platform])(params.nm, params.targetRootFS),
54
54
  params.separateIc,
55
55
  params.callGraphSize,
56
56
  params.ignoreUnknown,
57
57
  params.stateFilter,
58
- snapshotLogProcessor);
58
+ snapshotLogProcessor,
59
+ params.distortion,
60
+ params.range);
59
61
  tickProcessor.processLogFile(params.logFileName);
60
62
  tickProcessor.printStatistics();
@@ -1,4 +1,4 @@
1
- // Copyright 2009 the V8 project authors. All rights reserved.
1
+ // Copyright 2012 the V8 project authors. All rights reserved.
2
2
  // Redistribution and use in source and binary forms, with or without
3
3
  // modification, are permitted provided that the following conditions are
4
4
  // met:
@@ -73,7 +73,7 @@ function parseState(s) {
73
73
  function SnapshotLogProcessor() {
74
74
  LogReader.call(this, {
75
75
  'code-creation': {
76
- parsers: [null, parseInt, parseInt, null, 'var-args'],
76
+ parsers: [null, parseInt, parseInt, parseInt, null, 'var-args'],
77
77
  processor: this.processCodeCreation },
78
78
  'code-move': { parsers: [parseInt, parseInt],
79
79
  processor: this.processCodeMove },
@@ -107,7 +107,7 @@ inherits(SnapshotLogProcessor, LogReader);
107
107
 
108
108
 
109
109
  SnapshotLogProcessor.prototype.processCodeCreation = function(
110
- type, start, size, name, maybe_func) {
110
+ type, kind, start, size, name, maybe_func) {
111
111
  if (maybe_func.length) {
112
112
  var funcAddr = parseInt(maybe_func[0]);
113
113
  var state = parseState(maybe_func[1]);
@@ -151,12 +151,14 @@ function TickProcessor(
151
151
  callGraphSize,
152
152
  ignoreUnknown,
153
153
  stateFilter,
154
- snapshotLogProcessor) {
154
+ snapshotLogProcessor,
155
+ distortion,
156
+ range) {
155
157
  LogReader.call(this, {
156
158
  'shared-library': { parsers: [null, parseInt, parseInt],
157
159
  processor: this.processSharedLibrary },
158
160
  'code-creation': {
159
- parsers: [null, parseInt, parseInt, null, 'var-args'],
161
+ parsers: [null, parseInt, parseInt, parseInt, null, 'var-args'],
160
162
  processor: this.processCodeCreation },
161
163
  'code-move': { parsers: [parseInt, parseInt],
162
164
  processor: this.processCodeMove },
@@ -167,13 +169,17 @@ function TickProcessor(
167
169
  'snapshot-pos': { parsers: [parseInt, parseInt],
168
170
  processor: this.processSnapshotPosition },
169
171
  'tick': {
170
- parsers: [parseInt, parseInt, parseInt,
172
+ parsers: [parseInt, parseInt, parseInt, parseInt,
171
173
  parseInt, parseInt, 'var-args'],
172
174
  processor: this.processTick },
173
175
  'heap-sample-begin': { parsers: [null, null, parseInt],
174
176
  processor: this.processHeapSampleBegin },
175
177
  'heap-sample-end': { parsers: [null, null],
176
178
  processor: this.processHeapSampleEnd },
179
+ 'timer-event-start' : { parsers: [null, null, null],
180
+ processor: this.advanceDistortion },
181
+ 'timer-event-end' : { parsers: [null, null, null],
182
+ processor: this.advanceDistortion },
177
183
  // Ignored events.
178
184
  'profiler': null,
179
185
  'function-creation': null,
@@ -194,6 +200,17 @@ function TickProcessor(
194
200
  var ticks = this.ticks_ =
195
201
  { total: 0, unaccounted: 0, excluded: 0, gc: 0 };
196
202
 
203
+ distortion = parseInt(distortion);
204
+ // Convert picoseconds to nanoseconds.
205
+ this.distortion_per_entry = isNaN(distortion) ? 0 : (distortion / 1000);
206
+ this.distortion = 0;
207
+ var rangelimits = range.split(",");
208
+ var range_start = parseInt(rangelimits[0]);
209
+ var range_end = parseInt(rangelimits[1]);
210
+ // Convert milliseconds to nanoseconds.
211
+ this.range_start = isNaN(range_start) ? -Infinity : (range_start * 1000);
212
+ this.range_end = isNaN(range_end) ? Infinity : (range_end * 1000)
213
+
197
214
  V8Profile.prototype.handleUnknownCode = function(
198
215
  operation, addr, opt_stackPos) {
199
216
  var op = Profile.Operation;
@@ -231,8 +248,9 @@ TickProcessor.VmStates = {
231
248
  JS: 0,
232
249
  GC: 1,
233
250
  COMPILER: 2,
234
- OTHER: 3,
235
- EXTERNAL: 4
251
+ PARALLEL_COMPILER: 3,
252
+ OTHER: 4,
253
+ EXTERNAL: 5
236
254
  };
237
255
 
238
256
 
@@ -308,7 +326,7 @@ TickProcessor.prototype.processSharedLibrary = function(
308
326
 
309
327
 
310
328
  TickProcessor.prototype.processCodeCreation = function(
311
- type, start, size, name, maybe_func) {
329
+ type, kind, start, size, name, maybe_func) {
312
330
  name = this.deserializedEntriesNames_[start] || name;
313
331
  if (maybe_func.length) {
314
332
  var funcAddr = parseInt(maybe_func[0]);
@@ -349,10 +367,16 @@ TickProcessor.prototype.includeTick = function(vmState) {
349
367
 
350
368
  TickProcessor.prototype.processTick = function(pc,
351
369
  sp,
370
+ ns_since_start,
352
371
  is_external_callback,
353
372
  tos_or_external_callback,
354
373
  vmState,
355
374
  stack) {
375
+ this.distortion += this.distortion_per_entry;
376
+ ns_since_start -= this.distortion;
377
+ if (ns_since_start < this.range_start || ns_since_start > this.range_end) {
378
+ return;
379
+ }
356
380
  this.ticks_.total++;
357
381
  if (vmState == TickProcessor.VmStates.GC) this.ticks_.gc++;
358
382
  if (!this.includeTick(vmState)) {
@@ -379,6 +403,11 @@ TickProcessor.prototype.processTick = function(pc,
379
403
  };
380
404
 
381
405
 
406
+ TickProcessor.prototype.advanceDistortion = function() {
407
+ this.distortion += this.distortion_per_entry;
408
+ }
409
+
410
+
382
411
  TickProcessor.prototype.processHeapSampleBegin = function(space, state, ticks) {
383
412
  if (space != 'Heap') return;
384
413
  this.currentProducerProfile_ = new CallTree();
@@ -608,10 +637,11 @@ CppEntriesProvider.prototype.parseNextLine = function() {
608
637
  };
609
638
 
610
639
 
611
- function UnixCppEntriesProvider(nmExec) {
640
+ function UnixCppEntriesProvider(nmExec, targetRootFS) {
612
641
  this.symbols = [];
613
642
  this.parsePos = 0;
614
643
  this.nmExec = nmExec;
644
+ this.targetRootFS = targetRootFS;
615
645
  this.FUNC_RE = /^([0-9a-fA-F]{8,16}) ([0-9a-fA-F]{8,16} )?[tTwW] (.*)$/;
616
646
  };
617
647
  inherits(UnixCppEntriesProvider, CppEntriesProvider);
@@ -619,6 +649,7 @@ inherits(UnixCppEntriesProvider, CppEntriesProvider);
619
649
 
620
650
  UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
621
651
  this.parsePos = 0;
652
+ libName = this.targetRootFS + libName;
622
653
  try {
623
654
  this.symbols = [
624
655
  os.system(this.nmExec, ['-C', '-n', '-S', libName], -1, -1),
@@ -656,8 +687,8 @@ UnixCppEntriesProvider.prototype.parseNextLine = function() {
656
687
  };
657
688
 
658
689
 
659
- function MacCppEntriesProvider(nmExec) {
660
- UnixCppEntriesProvider.call(this, nmExec);
690
+ function MacCppEntriesProvider(nmExec, targetRootFS) {
691
+ UnixCppEntriesProvider.call(this, nmExec, targetRootFS);
661
692
  // Note an empty group. It is required, as UnixCppEntriesProvider expects 3 groups.
662
693
  this.FUNC_RE = /^([0-9a-fA-F]{8,16}) ()[iItT] (.*)$/;
663
694
  };
@@ -666,6 +697,7 @@ inherits(MacCppEntriesProvider, UnixCppEntriesProvider);
666
697
 
667
698
  MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
668
699
  this.parsePos = 0;
700
+ libName = this.targetRootFS + libName;
669
701
  try {
670
702
  this.symbols = [os.system(this.nmExec, ['-n', '-f', libName], -1, -1), ''];
671
703
  } catch (e) {
@@ -675,7 +707,8 @@ MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
675
707
  };
676
708
 
677
709
 
678
- function WindowsCppEntriesProvider() {
710
+ function WindowsCppEntriesProvider(_ignored_nmExec, targetRootFS) {
711
+ this.targetRootFS = targetRootFS;
679
712
  this.symbols = '';
680
713
  this.parsePos = 0;
681
714
  };
@@ -698,6 +731,7 @@ WindowsCppEntriesProvider.EXE_IMAGE_BASE = 0x00400000;
698
731
 
699
732
 
700
733
  WindowsCppEntriesProvider.prototype.loadSymbols = function(libName) {
734
+ libName = this.targetRootFS + libName;
701
735
  var fileNameFields = libName.match(WindowsCppEntriesProvider.FILENAME_RE);
702
736
  if (!fileNameFields) return;
703
737
  var mapFileName = fileNameFields[1] + '.map';
@@ -785,8 +819,14 @@ function ArgumentsProcessor(args) {
785
819
  'Specify that we are running on Mac OS X platform'],
786
820
  '--nm': ['nm', 'nm',
787
821
  'Specify the \'nm\' executable to use (e.g. --nm=/my_dir/nm)'],
822
+ '--target': ['targetRootFS', '',
823
+ 'Specify the target root directory for cross environment'],
788
824
  '--snapshot-log': ['snapshotLogFileName', 'snapshot.log',
789
- 'Specify snapshot log file to use (e.g. --snapshot-log=snapshot.log)']
825
+ 'Specify snapshot log file to use (e.g. --snapshot-log=snapshot.log)'],
826
+ '--range': ['range', 'auto,auto',
827
+ 'Specify the range limit as [start],[end]'],
828
+ '--distortion': ['distortion', 0,
829
+ 'Specify the logging overhead in picoseconds']
790
830
  };
791
831
  this.argsDispatch_['--js'] = this.argsDispatch_['-j'];
792
832
  this.argsDispatch_['--gc'] = this.argsDispatch_['-g'];
@@ -804,7 +844,10 @@ ArgumentsProcessor.DEFAULTS = {
804
844
  callGraphSize: 5,
805
845
  ignoreUnknown: false,
806
846
  separateIc: false,
807
- nm: 'nm'
847
+ targetRootFS: '',
848
+ nm: 'nm',
849
+ range: 'auto,auto',
850
+ distortion: 0
808
851
  };
809
852
 
810
853
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libv8
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.8.17
4
+ version: 3.16.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Lowell
@@ -29,7 +29,7 @@ cert_chain:
29
29
  UgImJlChAzCoDP9zi9tdm6jAr7ttF25R9PPYr11ILb7dYe3qUzlNlM6zJx/nb31b
30
30
  IhdyRVup4qLcqYSTPsm6u7VA
31
31
  -----END CERTIFICATE-----
32
- date: 2013-03-22 00:00:00.000000000 Z
32
+ date: 2013-03-28 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: rake
@@ -126,9 +126,6 @@ files:
126
126
  - lib/libv8.rb
127
127
  - lib/libv8/version.rb
128
128
  - libv8.gemspec
129
- - patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch
130
- - patches/do-not-imply-vfp3-and-armv7.patch
131
- - patches/fPIC-on-x64.patch
132
129
  - spec/location_spec.rb
133
130
  - spec/spec_helper.rb
134
131
  - thefrontside.png
@@ -141,6 +138,9 @@ files:
141
138
  - vendor/v8/LICENSE.v8
142
139
  - vendor/v8/LICENSE.valgrind
143
140
  - vendor/v8/Makefile
141
+ - vendor/v8/Makefile.android
142
+ - vendor/v8/OWNERS
143
+ - vendor/v8/PRESUBMIT.py
144
144
  - vendor/v8/SConstruct
145
145
  - vendor/v8/benchmarks/README.txt
146
146
  - vendor/v8/benchmarks/base.js
@@ -231,6 +231,7 @@ files:
231
231
  - vendor/v8/src/atomicops.h
232
232
  - vendor/v8/src/atomicops_internals_arm_gcc.h
233
233
  - vendor/v8/src/atomicops_internals_mips_gcc.h
234
+ - vendor/v8/src/atomicops_internals_tsan.h
234
235
  - vendor/v8/src/atomicops_internals_x86_gcc.cc
235
236
  - vendor/v8/src/atomicops_internals_x86_gcc.h
236
237
  - vendor/v8/src/atomicops_internals_x86_macosx.h
@@ -253,6 +254,7 @@ files:
253
254
  - vendor/v8/src/circular-queue-inl.h
254
255
  - vendor/v8/src/circular-queue.cc
255
256
  - vendor/v8/src/circular-queue.h
257
+ - vendor/v8/src/code-stubs-hydrogen.cc
256
258
  - vendor/v8/src/code-stubs.cc
257
259
  - vendor/v8/src/code-stubs.h
258
260
  - vendor/v8/src/code.h
@@ -317,6 +319,8 @@ files:
317
319
  - vendor/v8/src/extensions/externalize-string-extension.h
318
320
  - vendor/v8/src/extensions/gc-extension.cc
319
321
  - vendor/v8/src/extensions/gc-extension.h
322
+ - vendor/v8/src/extensions/statistics-extension.cc
323
+ - vendor/v8/src/extensions/statistics-extension.h
320
324
  - vendor/v8/src/factory.cc
321
325
  - vendor/v8/src/factory.h
322
326
  - vendor/v8/src/fast-dtoa.cc
@@ -386,8 +390,6 @@ files:
386
390
  - vendor/v8/src/incremental-marking-inl.h
387
391
  - vendor/v8/src/incremental-marking.cc
388
392
  - vendor/v8/src/incremental-marking.h
389
- - vendor/v8/src/inspector.cc
390
- - vendor/v8/src/inspector.h
391
393
  - vendor/v8/src/interface.cc
392
394
  - vendor/v8/src/interface.h
393
395
  - vendor/v8/src/interpreter-irregexp.cc
@@ -396,7 +398,9 @@ files:
396
398
  - vendor/v8/src/isolate.cc
397
399
  - vendor/v8/src/isolate.h
398
400
  - vendor/v8/src/json-parser.h
401
+ - vendor/v8/src/json-stringifier.h
399
402
  - vendor/v8/src/json.js
403
+ - vendor/v8/src/jsregexp-inl.h
400
404
  - vendor/v8/src/jsregexp.cc
401
405
  - vendor/v8/src/jsregexp.h
402
406
  - vendor/v8/src/lazy-instance.h
@@ -410,9 +414,6 @@ files:
410
414
  - vendor/v8/src/liveedit-debugger.js
411
415
  - vendor/v8/src/liveedit.cc
412
416
  - vendor/v8/src/liveedit.h
413
- - vendor/v8/src/liveobjectlist-inl.h
414
- - vendor/v8/src/liveobjectlist.cc
415
- - vendor/v8/src/liveobjectlist.h
416
417
  - vendor/v8/src/log-inl.h
417
418
  - vendor/v8/src/log-utils.cc
418
419
  - vendor/v8/src/log-utils.h
@@ -423,6 +424,8 @@ files:
423
424
  - vendor/v8/src/mark-compact-inl.h
424
425
  - vendor/v8/src/mark-compact.cc
425
426
  - vendor/v8/src/mark-compact.h
427
+ - vendor/v8/src/marking-thread.cc
428
+ - vendor/v8/src/marking-thread.h
426
429
  - vendor/v8/src/math.js
427
430
  - vendor/v8/src/messages.cc
428
431
  - vendor/v8/src/messages.h
@@ -462,6 +465,7 @@ files:
462
465
  - vendor/v8/src/misc-intrinsics.h
463
466
  - vendor/v8/src/mksnapshot.cc
464
467
  - vendor/v8/src/natives.h
468
+ - vendor/v8/src/object-observe.js
465
469
  - vendor/v8/src/objects-debug.cc
466
470
  - vendor/v8/src/objects-inl.h
467
471
  - vendor/v8/src/objects-printer.cc
@@ -472,6 +476,8 @@ files:
472
476
  - vendor/v8/src/objects.h
473
477
  - vendor/v8/src/once.cc
474
478
  - vendor/v8/src/once.h
479
+ - vendor/v8/src/optimizing-compiler-thread.cc
480
+ - vendor/v8/src/optimizing-compiler-thread.h
475
481
  - vendor/v8/src/parser.cc
476
482
  - vendor/v8/src/parser.h
477
483
  - vendor/v8/src/platform-cygwin.cc
@@ -534,7 +540,7 @@ files:
534
540
  - vendor/v8/src/serialize.h
535
541
  - vendor/v8/src/simulator.h
536
542
  - vendor/v8/src/small-pointer-list.h
537
- - vendor/v8/src/smart-array-pointer.h
543
+ - vendor/v8/src/smart-pointers.h
538
544
  - vendor/v8/src/snapshot-common.cc
539
545
  - vendor/v8/src/snapshot-empty.cc
540
546
  - vendor/v8/src/snapshot.h
@@ -555,9 +561,14 @@ files:
555
561
  - vendor/v8/src/strtod.h
556
562
  - vendor/v8/src/stub-cache.cc
557
563
  - vendor/v8/src/stub-cache.h
564
+ - vendor/v8/src/sweeper-thread.cc
565
+ - vendor/v8/src/sweeper-thread.h
558
566
  - vendor/v8/src/third_party/valgrind/valgrind.h
559
567
  - vendor/v8/src/token.cc
560
568
  - vendor/v8/src/token.h
569
+ - vendor/v8/src/transitions-inl.h
570
+ - vendor/v8/src/transitions.cc
571
+ - vendor/v8/src/transitions.h
561
572
  - vendor/v8/src/type-info.cc
562
573
  - vendor/v8/src/type-info.h
563
574
  - vendor/v8/src/unbound-queue-inl.h
@@ -670,6 +681,7 @@ files:
670
681
  - vendor/v8/test/cctest/test-fixed-dtoa.cc
671
682
  - vendor/v8/test/cctest/test-flags.cc
672
683
  - vendor/v8/test/cctest/test-func-name-inference.cc
684
+ - vendor/v8/test/cctest/test-global-object.cc
673
685
  - vendor/v8/test/cctest/test-hashing.cc
674
686
  - vendor/v8/test/cctest/test-hashmap.cc
675
687
  - vendor/v8/test/cctest/test-heap-profiler.cc
@@ -682,6 +694,7 @@ files:
682
694
  - vendor/v8/test/cctest/test-log.cc
683
695
  - vendor/v8/test/cctest/test-macro-assembler-x64.cc
684
696
  - vendor/v8/test/cctest/test-mark-compact.cc
697
+ - vendor/v8/test/cctest/test-object-observe.cc
685
698
  - vendor/v8/test/cctest/test-parsing.cc
686
699
  - vendor/v8/test/cctest/test-platform-linux.cc
687
700
  - vendor/v8/test/cctest/test-platform-macos.cc
@@ -742,6 +755,7 @@ files:
742
755
  - vendor/v8/test/message/try-finally-throw-in-try.out
743
756
  - vendor/v8/test/mjsunit/accessor-map-sharing.js
744
757
  - vendor/v8/test/mjsunit/accessors-on-global-object.js
758
+ - vendor/v8/test/mjsunit/allocation-site-info.js
745
759
  - vendor/v8/test/mjsunit/api-call-after-bypassed-exception.js
746
760
  - vendor/v8/test/mjsunit/apply-arguments-gc-safepoint.js
747
761
  - vendor/v8/test/mjsunit/apply.js
@@ -772,6 +786,7 @@ files:
772
786
  - vendor/v8/test/mjsunit/array-length-number-conversion.js
773
787
  - vendor/v8/test/mjsunit/array-length.js
774
788
  - vendor/v8/test/mjsunit/array-literal-transitions.js
789
+ - vendor/v8/test/mjsunit/array-natives-elements.js
775
790
  - vendor/v8/test/mjsunit/array-pop.js
776
791
  - vendor/v8/test/mjsunit/array-push.js
777
792
  - vendor/v8/test/mjsunit/array-reduce.js
@@ -797,6 +812,7 @@ files:
797
812
  - vendor/v8/test/mjsunit/bugs/618.js
798
813
  - vendor/v8/test/mjsunit/bugs/bug-1344252.js
799
814
  - vendor/v8/test/mjsunit/bugs/bug-222.js
815
+ - vendor/v8/test/mjsunit/bugs/bug-2337.js
800
816
  - vendor/v8/test/mjsunit/bugs/bug-617.js
801
817
  - vendor/v8/test/mjsunit/bugs/bug-618.js
802
818
  - vendor/v8/test/mjsunit/bugs/bug-941049.js
@@ -812,6 +828,7 @@ files:
812
828
  - vendor/v8/test/mjsunit/closures.js
813
829
  - vendor/v8/test/mjsunit/codegen-coverage.js
814
830
  - vendor/v8/test/mjsunit/compare-character.js
831
+ - vendor/v8/test/mjsunit/compare-known-objects-slow.js
815
832
  - vendor/v8/test/mjsunit/compare-nan.js
816
833
  - vendor/v8/test/mjsunit/comparison-ops-and-undefined.js
817
834
  - vendor/v8/test/mjsunit/compiler/alloc-number.js
@@ -839,8 +856,10 @@ files:
839
856
  - vendor/v8/test/mjsunit/compiler/function-call.js
840
857
  - vendor/v8/test/mjsunit/compiler/global-accessors.js
841
858
  - vendor/v8/test/mjsunit/compiler/globals.js
859
+ - vendor/v8/test/mjsunit/compiler/inline-accessors.js
842
860
  - vendor/v8/test/mjsunit/compiler/inline-arguments.js
843
861
  - vendor/v8/test/mjsunit/compiler/inline-arity-mismatch.js
862
+ - vendor/v8/test/mjsunit/compiler/inline-closures.js
844
863
  - vendor/v8/test/mjsunit/compiler/inline-compare.js
845
864
  - vendor/v8/test/mjsunit/compiler/inline-conditional.js
846
865
  - vendor/v8/test/mjsunit/compiler/inline-construct.js
@@ -861,16 +880,22 @@ files:
861
880
  - vendor/v8/test/mjsunit/compiler/loops.js
862
881
  - vendor/v8/test/mjsunit/compiler/math-floor-global.js
863
882
  - vendor/v8/test/mjsunit/compiler/math-floor-local.js
883
+ - vendor/v8/test/mjsunit/compiler/multiply-add.js
864
884
  - vendor/v8/test/mjsunit/compiler/null-compare.js
865
885
  - vendor/v8/test/mjsunit/compiler/objectliterals.js
866
886
  - vendor/v8/test/mjsunit/compiler/optimize-bitnot.js
887
+ - vendor/v8/test/mjsunit/compiler/optimized-closures.js
867
888
  - vendor/v8/test/mjsunit/compiler/optimized-for-in.js
868
889
  - vendor/v8/test/mjsunit/compiler/optimized-function-calls.js
890
+ - vendor/v8/test/mjsunit/compiler/parallel-proto-change.js
869
891
  - vendor/v8/test/mjsunit/compiler/pic.js
870
892
  - vendor/v8/test/mjsunit/compiler/property-calls.js
871
893
  - vendor/v8/test/mjsunit/compiler/property-refs.js
872
894
  - vendor/v8/test/mjsunit/compiler/property-simple.js
895
+ - vendor/v8/test/mjsunit/compiler/property-static.js
873
896
  - vendor/v8/test/mjsunit/compiler/property-stores.js
897
+ - vendor/v8/test/mjsunit/compiler/proto-chain-constant.js
898
+ - vendor/v8/test/mjsunit/compiler/proto-chain-load.js
874
899
  - vendor/v8/test/mjsunit/compiler/recursive-deopt.js
875
900
  - vendor/v8/test/mjsunit/compiler/regress-0.js
876
901
  - vendor/v8/test/mjsunit/compiler/regress-1.js
@@ -914,6 +939,7 @@ files:
914
939
  - vendor/v8/test/mjsunit/compiler/regress-stacktrace.js
915
940
  - vendor/v8/test/mjsunit/compiler/regress-toint32.js
916
941
  - vendor/v8/test/mjsunit/compiler/regress-valueof.js
942
+ - vendor/v8/test/mjsunit/compiler/rotate.js
917
943
  - vendor/v8/test/mjsunit/compiler/safepoint.js
918
944
  - vendor/v8/test/mjsunit/compiler/short-circuit.js
919
945
  - vendor/v8/test/mjsunit/compiler/simple-bailouts.js
@@ -926,6 +952,7 @@ files:
926
952
  - vendor/v8/test/mjsunit/compiler/switch-bailout.js
927
953
  - vendor/v8/test/mjsunit/compiler/this-property-refs.js
928
954
  - vendor/v8/test/mjsunit/compiler/thisfunction.js
955
+ - vendor/v8/test/mjsunit/compiler/uint32.js
929
956
  - vendor/v8/test/mjsunit/compiler/unary-add.js
930
957
  - vendor/v8/test/mjsunit/compiler/variables.js
931
958
  - vendor/v8/test/mjsunit/const-declaration.js
@@ -974,10 +1001,14 @@ files:
974
1001
  - vendor/v8/test/mjsunit/debug-liveedit-3.js
975
1002
  - vendor/v8/test/mjsunit/debug-liveedit-breakpoints.js
976
1003
  - vendor/v8/test/mjsunit/debug-liveedit-check-stack.js
1004
+ - vendor/v8/test/mjsunit/debug-liveedit-compile-error.js
977
1005
  - vendor/v8/test/mjsunit/debug-liveedit-diff.js
1006
+ - vendor/v8/test/mjsunit/debug-liveedit-double-call.js
1007
+ - vendor/v8/test/mjsunit/debug-liveedit-literals.js
978
1008
  - vendor/v8/test/mjsunit/debug-liveedit-newsource.js
979
1009
  - vendor/v8/test/mjsunit/debug-liveedit-patch-positions-replace.js
980
1010
  - vendor/v8/test/mjsunit/debug-liveedit-patch-positions.js
1011
+ - vendor/v8/test/mjsunit/debug-liveedit-restart-frame.js
981
1012
  - vendor/v8/test/mjsunit/debug-liveedit-stack-padding.js
982
1013
  - vendor/v8/test/mjsunit/debug-liveedit-utils.js
983
1014
  - vendor/v8/test/mjsunit/debug-mirror-cache.js
@@ -987,10 +1018,13 @@ files:
987
1018
  - vendor/v8/test/mjsunit/debug-references.js
988
1019
  - vendor/v8/test/mjsunit/debug-return-value.js
989
1020
  - vendor/v8/test/mjsunit/debug-scopes.js
1021
+ - vendor/v8/test/mjsunit/debug-script-breakpoints-closure.js
1022
+ - vendor/v8/test/mjsunit/debug-script-breakpoints-nested.js
990
1023
  - vendor/v8/test/mjsunit/debug-script-breakpoints.js
991
1024
  - vendor/v8/test/mjsunit/debug-script.js
992
1025
  - vendor/v8/test/mjsunit/debug-scripts-request.js
993
1026
  - vendor/v8/test/mjsunit/debug-set-script-source.js
1027
+ - vendor/v8/test/mjsunit/debug-set-variable-value.js
994
1028
  - vendor/v8/test/mjsunit/debug-setbreakpoint.js
995
1029
  - vendor/v8/test/mjsunit/debug-setexceptionbreak.js
996
1030
  - vendor/v8/test/mjsunit/debug-sourceinfo.js
@@ -1007,7 +1041,14 @@ files:
1007
1041
  - vendor/v8/test/mjsunit/debug-stepin-function-call.js
1008
1042
  - vendor/v8/test/mjsunit/debug-stepnext-do-while.js
1009
1043
  - vendor/v8/test/mjsunit/debug-stepout-recursive-function.js
1010
- - vendor/v8/test/mjsunit/debug-stepout-scope.js
1044
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part1.js
1045
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part2.js
1046
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part3.js
1047
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part4.js
1048
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part5.js
1049
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part6.js
1050
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part7.js
1051
+ - vendor/v8/test/mjsunit/debug-stepout-scope-part8.js
1011
1052
  - vendor/v8/test/mjsunit/debug-stepout-to-builtin.js
1012
1053
  - vendor/v8/test/mjsunit/debug-suspend.js
1013
1054
  - vendor/v8/test/mjsunit/debug-version.js
@@ -1018,8 +1059,10 @@ files:
1018
1059
  - vendor/v8/test/mjsunit/delete-global-properties.js
1019
1060
  - vendor/v8/test/mjsunit/delete-in-eval.js
1020
1061
  - vendor/v8/test/mjsunit/delete-in-with.js
1062
+ - vendor/v8/test/mjsunit/delete-non-configurable.js
1021
1063
  - vendor/v8/test/mjsunit/delete-vars-from-eval.js
1022
1064
  - vendor/v8/test/mjsunit/delete.js
1065
+ - vendor/v8/test/mjsunit/deopt-minus-zero.js
1023
1066
  - vendor/v8/test/mjsunit/div-mod.js
1024
1067
  - vendor/v8/test/mjsunit/do-not-strip-fc.js
1025
1068
  - vendor/v8/test/mjsunit/dont-enum-array-holes.js
@@ -1028,19 +1071,25 @@ files:
1028
1071
  - vendor/v8/test/mjsunit/dtoa.js
1029
1072
  - vendor/v8/test/mjsunit/elements-kind-depends.js
1030
1073
  - vendor/v8/test/mjsunit/elements-kind.js
1074
+ - vendor/v8/test/mjsunit/elements-length-no-holey.js
1031
1075
  - vendor/v8/test/mjsunit/elements-transition-hoisting.js
1032
1076
  - vendor/v8/test/mjsunit/elements-transition.js
1033
1077
  - vendor/v8/test/mjsunit/enumeration-order.js
1078
+ - vendor/v8/test/mjsunit/error-accessors.js
1034
1079
  - vendor/v8/test/mjsunit/error-constructors.js
1035
1080
  - vendor/v8/test/mjsunit/error-tostring.js
1036
1081
  - vendor/v8/test/mjsunit/escape.js
1037
1082
  - vendor/v8/test/mjsunit/eval-enclosing-function-name.js
1083
+ - vendor/v8/test/mjsunit/eval-stack-trace.js
1038
1084
  - vendor/v8/test/mjsunit/eval-typeof-non-existing.js
1039
1085
  - vendor/v8/test/mjsunit/eval.js
1040
1086
  - vendor/v8/test/mjsunit/external-array.js
1041
1087
  - vendor/v8/test/mjsunit/extra-arguments.js
1042
1088
  - vendor/v8/test/mjsunit/extra-commas.js
1089
+ - vendor/v8/test/mjsunit/fast-array-length.js
1043
1090
  - vendor/v8/test/mjsunit/fast-element-smi-check.js
1091
+ - vendor/v8/test/mjsunit/fast-non-keyed.js
1092
+ - vendor/v8/test/mjsunit/fast-prototype.js
1044
1093
  - vendor/v8/test/mjsunit/for-in-delete.js
1045
1094
  - vendor/v8/test/mjsunit/for-in-null-or-undefined.js
1046
1095
  - vendor/v8/test/mjsunit/for-in-special-cases.js
@@ -1060,7 +1109,11 @@ files:
1060
1109
  - vendor/v8/test/mjsunit/function-without-prototype.js
1061
1110
  - vendor/v8/test/mjsunit/function.js
1062
1111
  - vendor/v8/test/mjsunit/fuzz-accessors.js
1063
- - vendor/v8/test/mjsunit/fuzz-natives.js
1112
+ - vendor/v8/test/mjsunit/fuzz-natives-part1.js
1113
+ - vendor/v8/test/mjsunit/fuzz-natives-part2.js
1114
+ - vendor/v8/test/mjsunit/fuzz-natives-part3.js
1115
+ - vendor/v8/test/mjsunit/fuzz-natives-part4.js
1116
+ - vendor/v8/test/mjsunit/generated-transition-stub.js
1064
1117
  - vendor/v8/test/mjsunit/get-own-property-descriptor.js
1065
1118
  - vendor/v8/test/mjsunit/get-prototype-of.js
1066
1119
  - vendor/v8/test/mjsunit/getter-in-prototype.js
@@ -1092,11 +1145,14 @@ files:
1092
1145
  - vendor/v8/test/mjsunit/harmony/debug-function-scopes.js
1093
1146
  - vendor/v8/test/mjsunit/harmony/module-linking.js
1094
1147
  - vendor/v8/test/mjsunit/harmony/module-parsing.js
1148
+ - vendor/v8/test/mjsunit/harmony/module-recompile.js
1095
1149
  - vendor/v8/test/mjsunit/harmony/module-resolution.js
1150
+ - vendor/v8/test/mjsunit/harmony/object-observe.js
1096
1151
  - vendor/v8/test/mjsunit/harmony/proxies-example-membrane.js
1097
1152
  - vendor/v8/test/mjsunit/harmony/proxies-for.js
1098
1153
  - vendor/v8/test/mjsunit/harmony/proxies-function.js
1099
1154
  - vendor/v8/test/mjsunit/harmony/proxies-hash.js
1155
+ - vendor/v8/test/mjsunit/harmony/proxies-json.js
1100
1156
  - vendor/v8/test/mjsunit/harmony/proxies.js
1101
1157
  - vendor/v8/test/mjsunit/harmony/typeof.js
1102
1158
  - vendor/v8/test/mjsunit/has-own-property.js
@@ -1113,7 +1169,10 @@ files:
1113
1169
  - vendor/v8/test/mjsunit/integer-to-string.js
1114
1170
  - vendor/v8/test/mjsunit/invalid-lhs.js
1115
1171
  - vendor/v8/test/mjsunit/invalid-source-element.js
1172
+ - vendor/v8/test/mjsunit/json-parser-recursive.js
1173
+ - vendor/v8/test/mjsunit/json-stringify-recursive.js
1116
1174
  - vendor/v8/test/mjsunit/json.js
1175
+ - vendor/v8/test/mjsunit/json2.js
1117
1176
  - vendor/v8/test/mjsunit/keyed-call-generic.js
1118
1177
  - vendor/v8/test/mjsunit/keyed-call-ic.js
1119
1178
  - vendor/v8/test/mjsunit/keyed-ic.js
@@ -1127,9 +1186,17 @@ files:
1127
1186
  - vendor/v8/test/mjsunit/limit-locals.js
1128
1187
  - vendor/v8/test/mjsunit/local-load-from-eval.js
1129
1188
  - vendor/v8/test/mjsunit/logical.js
1189
+ - vendor/v8/test/mjsunit/manual-parallel-recompile.js
1130
1190
  - vendor/v8/test/mjsunit/math-abs.js
1191
+ - vendor/v8/test/mjsunit/math-exp-precision.js
1192
+ - vendor/v8/test/mjsunit/math-floor-negative.js
1193
+ - vendor/v8/test/mjsunit/math-floor-of-div-minus-zero.js
1194
+ - vendor/v8/test/mjsunit/math-floor-of-div-nosudiv.js
1131
1195
  - vendor/v8/test/mjsunit/math-floor-of-div.js
1132
- - vendor/v8/test/mjsunit/math-floor.js
1196
+ - vendor/v8/test/mjsunit/math-floor-part1.js
1197
+ - vendor/v8/test/mjsunit/math-floor-part2.js
1198
+ - vendor/v8/test/mjsunit/math-floor-part3.js
1199
+ - vendor/v8/test/mjsunit/math-floor-part4.js
1133
1200
  - vendor/v8/test/mjsunit/math-min-max.js
1134
1201
  - vendor/v8/test/mjsunit/math-pow.js
1135
1202
  - vendor/v8/test/mjsunit/math-round.js
@@ -1151,11 +1218,21 @@ files:
1151
1218
  - vendor/v8/test/mjsunit/mjsunit.js
1152
1219
  - vendor/v8/test/mjsunit/mjsunit.status
1153
1220
  - vendor/v8/test/mjsunit/mod.js
1154
- - vendor/v8/test/mjsunit/mul-exhaustive.js
1221
+ - vendor/v8/test/mjsunit/mul-exhaustive-part1.js
1222
+ - vendor/v8/test/mjsunit/mul-exhaustive-part10.js
1223
+ - vendor/v8/test/mjsunit/mul-exhaustive-part2.js
1224
+ - vendor/v8/test/mjsunit/mul-exhaustive-part3.js
1225
+ - vendor/v8/test/mjsunit/mul-exhaustive-part4.js
1226
+ - vendor/v8/test/mjsunit/mul-exhaustive-part5.js
1227
+ - vendor/v8/test/mjsunit/mul-exhaustive-part6.js
1228
+ - vendor/v8/test/mjsunit/mul-exhaustive-part7.js
1229
+ - vendor/v8/test/mjsunit/mul-exhaustive-part8.js
1230
+ - vendor/v8/test/mjsunit/mul-exhaustive-part9.js
1155
1231
  - vendor/v8/test/mjsunit/multiline.js
1156
1232
  - vendor/v8/test/mjsunit/multiple-return.js
1157
1233
  - vendor/v8/test/mjsunit/negate-zero.js
1158
1234
  - vendor/v8/test/mjsunit/negate.js
1235
+ - vendor/v8/test/mjsunit/new-function.js
1159
1236
  - vendor/v8/test/mjsunit/new.js
1160
1237
  - vendor/v8/test/mjsunit/newline-in-string.js
1161
1238
  - vendor/v8/test/mjsunit/no-branch-elimination.js
@@ -1169,7 +1246,10 @@ files:
1169
1246
  - vendor/v8/test/mjsunit/number-string-index-call.js
1170
1247
  - vendor/v8/test/mjsunit/number-tostring-small.js
1171
1248
  - vendor/v8/test/mjsunit/number-tostring.js
1172
- - vendor/v8/test/mjsunit/numops-fuzz.js
1249
+ - vendor/v8/test/mjsunit/numops-fuzz-part1.js
1250
+ - vendor/v8/test/mjsunit/numops-fuzz-part2.js
1251
+ - vendor/v8/test/mjsunit/numops-fuzz-part3.js
1252
+ - vendor/v8/test/mjsunit/numops-fuzz-part4.js
1173
1253
  - vendor/v8/test/mjsunit/obj-construct.js
1174
1254
  - vendor/v8/test/mjsunit/object-create.js
1175
1255
  - vendor/v8/test/mjsunit/object-define-properties.js
@@ -1194,6 +1274,7 @@ files:
1194
1274
  - vendor/v8/test/mjsunit/property-object-key.js
1195
1275
  - vendor/v8/test/mjsunit/proto.js
1196
1276
  - vendor/v8/test/mjsunit/prototype.js
1277
+ - vendor/v8/test/mjsunit/readonly.js
1197
1278
  - vendor/v8/test/mjsunit/receiver-in-with-calls.js
1198
1279
  - vendor/v8/test/mjsunit/regexp-UC16.js
1199
1280
  - vendor/v8/test/mjsunit/regexp-cache-replace.js
@@ -1208,6 +1289,7 @@ files:
1208
1289
  - vendor/v8/test/mjsunit/regexp-loop-capture.js
1209
1290
  - vendor/v8/test/mjsunit/regexp-multiline-stack-trace.js
1210
1291
  - vendor/v8/test/mjsunit/regexp-multiline.js
1292
+ - vendor/v8/test/mjsunit/regexp-results-cache.js
1211
1293
  - vendor/v8/test/mjsunit/regexp-standalones.js
1212
1294
  - vendor/v8/test/mjsunit/regexp-static.js
1213
1295
  - vendor/v8/test/mjsunit/regexp-string-methods.js
@@ -1265,6 +1347,7 @@ files:
1265
1347
  - vendor/v8/test/mjsunit/regress/regress-1149.js
1266
1348
  - vendor/v8/test/mjsunit/regress/regress-1150.js
1267
1349
  - vendor/v8/test/mjsunit/regress/regress-1151.js
1350
+ - vendor/v8/test/mjsunit/regress/regress-115100.js
1268
1351
  - vendor/v8/test/mjsunit/regress/regress-115452.js
1269
1352
  - vendor/v8/test/mjsunit/regress/regress-1156.js
1270
1353
  - vendor/v8/test/mjsunit/regress/regress-116.js
@@ -1327,16 +1410,22 @@ files:
1327
1410
  - vendor/v8/test/mjsunit/regress/regress-128018.js
1328
1411
  - vendor/v8/test/mjsunit/regress/regress-128146.js
1329
1412
  - vendor/v8/test/mjsunit/regress/regress-1309.js
1413
+ - vendor/v8/test/mjsunit/regress/regress-131923.js
1414
+ - vendor/v8/test/mjsunit/regress/regress-131994.js
1330
1415
  - vendor/v8/test/mjsunit/regress/regress-1323.js
1331
1416
  - vendor/v8/test/mjsunit/regress/regress-1327557.js
1417
+ - vendor/v8/test/mjsunit/regress/regress-133211.js
1418
+ - vendor/v8/test/mjsunit/regress/regress-133211b.js
1332
1419
  - vendor/v8/test/mjsunit/regress/regress-1337.js
1333
1420
  - vendor/v8/test/mjsunit/regress/regress-1346700.js
1334
1421
  - vendor/v8/test/mjsunit/regress/regress-1351.js
1335
1422
  - vendor/v8/test/mjsunit/regress/regress-1355.js
1336
1423
  - vendor/v8/test/mjsunit/regress/regress-1360.js
1424
+ - vendor/v8/test/mjsunit/regress/regress-136048.js
1337
1425
  - vendor/v8/test/mjsunit/regress/regress-1365.js
1338
1426
  - vendor/v8/test/mjsunit/regress/regress-1369.js
1339
1427
  - vendor/v8/test/mjsunit/regress/regress-137.js
1428
+ - vendor/v8/test/mjsunit/regress/regress-137768.js
1340
1429
  - vendor/v8/test/mjsunit/regress/regress-1383.js
1341
1430
  - vendor/v8/test/mjsunit/regress/regress-1387.js
1342
1431
  - vendor/v8/test/mjsunit/regress/regress-1389.js
@@ -1349,9 +1438,13 @@ files:
1349
1438
  - vendor/v8/test/mjsunit/regress/regress-1434.js
1350
1439
  - vendor/v8/test/mjsunit/regress/regress-1436.js
1351
1440
  - vendor/v8/test/mjsunit/regress/regress-1439135.js
1441
+ - vendor/v8/test/mjsunit/regress/regress-143967.js
1352
1442
  - vendor/v8/test/mjsunit/regress/regress-1447.js
1443
+ - vendor/v8/test/mjsunit/regress/regress-145201.js
1353
1444
  - vendor/v8/test/mjsunit/regress/regress-1472.js
1445
+ - vendor/v8/test/mjsunit/regress/regress-147497.js
1354
1446
  - vendor/v8/test/mjsunit/regress/regress-1476.js
1447
+ - vendor/v8/test/mjsunit/regress/regress-148378.js
1355
1448
  - vendor/v8/test/mjsunit/regress/regress-149.js
1356
1449
  - vendor/v8/test/mjsunit/regress/regress-1491.js
1357
1450
  - vendor/v8/test/mjsunit/regress/regress-1493017.js
@@ -1370,6 +1463,7 @@ files:
1370
1463
  - vendor/v8/test/mjsunit/regress/regress-1582.js
1371
1464
  - vendor/v8/test/mjsunit/regress/regress-1583.js
1372
1465
  - vendor/v8/test/mjsunit/regress/regress-1586.js
1466
+ - vendor/v8/test/mjsunit/regress/regress-1591.js
1373
1467
  - vendor/v8/test/mjsunit/regress/regress-1592.js
1374
1468
  - vendor/v8/test/mjsunit/regress/regress-1620.js
1375
1469
  - vendor/v8/test/mjsunit/regress/regress-1624-strict.js
@@ -1377,13 +1471,18 @@ files:
1377
1471
  - vendor/v8/test/mjsunit/regress/regress-1625.js
1378
1472
  - vendor/v8/test/mjsunit/regress/regress-1639-2.js
1379
1473
  - vendor/v8/test/mjsunit/regress/regress-1639.js
1474
+ - vendor/v8/test/mjsunit/regress/regress-164442.js
1380
1475
  - vendor/v8/test/mjsunit/regress/regress-1647.js
1381
1476
  - vendor/v8/test/mjsunit/regress/regress-1650.js
1477
+ - vendor/v8/test/mjsunit/regress/regress-165637.js
1478
+ - vendor/v8/test/mjsunit/regress/regress-166379.js
1479
+ - vendor/v8/test/mjsunit/regress/regress-166553.js
1382
1480
  - vendor/v8/test/mjsunit/regress/regress-1692.js
1383
1481
  - vendor/v8/test/mjsunit/regress/regress-1708.js
1384
1482
  - vendor/v8/test/mjsunit/regress/regress-171.js
1385
1483
  - vendor/v8/test/mjsunit/regress/regress-1711.js
1386
1484
  - vendor/v8/test/mjsunit/regress/regress-1713.js
1485
+ - vendor/v8/test/mjsunit/regress/regress-171641.js
1387
1486
  - vendor/v8/test/mjsunit/regress/regress-1748.js
1388
1487
  - vendor/v8/test/mjsunit/regress/regress-1757.js
1389
1488
  - vendor/v8/test/mjsunit/regress/regress-176.js
@@ -1401,7 +1500,6 @@ files:
1401
1500
  - vendor/v8/test/mjsunit/regress/regress-1924.js
1402
1501
  - vendor/v8/test/mjsunit/regress/regress-193.js
1403
1502
  - vendor/v8/test/mjsunit/regress/regress-1945.js
1404
- - vendor/v8/test/mjsunit/regress/regress-1969.js
1405
1503
  - vendor/v8/test/mjsunit/regress/regress-1973.js
1406
1504
  - vendor/v8/test/mjsunit/regress/regress-1980.js
1407
1505
  - vendor/v8/test/mjsunit/regress/regress-20070207.js
@@ -1416,17 +1514,63 @@ files:
1416
1514
  - vendor/v8/test/mjsunit/regress/regress-2056.js
1417
1515
  - vendor/v8/test/mjsunit/regress/regress-2058.js
1418
1516
  - vendor/v8/test/mjsunit/regress/regress-2071.js
1517
+ - vendor/v8/test/mjsunit/regress/regress-2073.js
1419
1518
  - vendor/v8/test/mjsunit/regress/regress-2110.js
1519
+ - vendor/v8/test/mjsunit/regress/regress-2119.js
1420
1520
  - vendor/v8/test/mjsunit/regress/regress-2153.js
1521
+ - vendor/v8/test/mjsunit/regress/regress-2156.js
1522
+ - vendor/v8/test/mjsunit/regress/regress-2163.js
1523
+ - vendor/v8/test/mjsunit/regress/regress-2170.js
1524
+ - vendor/v8/test/mjsunit/regress/regress-2172.js
1525
+ - vendor/v8/test/mjsunit/regress/regress-2185-2.js
1526
+ - vendor/v8/test/mjsunit/regress/regress-2185.js
1527
+ - vendor/v8/test/mjsunit/regress/regress-2186.js
1421
1528
  - vendor/v8/test/mjsunit/regress/regress-219.js
1529
+ - vendor/v8/test/mjsunit/regress/regress-2193.js
1422
1530
  - vendor/v8/test/mjsunit/regress/regress-220.js
1531
+ - vendor/v8/test/mjsunit/regress/regress-2219.js
1532
+ - vendor/v8/test/mjsunit/regress/regress-2225.js
1533
+ - vendor/v8/test/mjsunit/regress/regress-2226.js
1534
+ - vendor/v8/test/mjsunit/regress/regress-2234.js
1535
+ - vendor/v8/test/mjsunit/regress/regress-2243.js
1536
+ - vendor/v8/test/mjsunit/regress/regress-2249.js
1423
1537
  - vendor/v8/test/mjsunit/regress/regress-2249423.js
1424
1538
  - vendor/v8/test/mjsunit/regress/regress-225.js
1539
+ - vendor/v8/test/mjsunit/regress/regress-2250.js
1540
+ - vendor/v8/test/mjsunit/regress/regress-2261.js
1541
+ - vendor/v8/test/mjsunit/regress/regress-2263.js
1425
1542
  - vendor/v8/test/mjsunit/regress/regress-227.js
1543
+ - vendor/v8/test/mjsunit/regress/regress-2284.js
1544
+ - vendor/v8/test/mjsunit/regress/regress-2285.js
1545
+ - vendor/v8/test/mjsunit/regress/regress-2286.js
1546
+ - vendor/v8/test/mjsunit/regress/regress-2289.js
1547
+ - vendor/v8/test/mjsunit/regress/regress-2291.js
1548
+ - vendor/v8/test/mjsunit/regress/regress-2294.js
1549
+ - vendor/v8/test/mjsunit/regress/regress-2296.js
1426
1550
  - vendor/v8/test/mjsunit/regress/regress-231.js
1551
+ - vendor/v8/test/mjsunit/regress/regress-2315.js
1552
+ - vendor/v8/test/mjsunit/regress/regress-2318.js
1553
+ - vendor/v8/test/mjsunit/regress/regress-2322.js
1554
+ - vendor/v8/test/mjsunit/regress/regress-2326.js
1427
1555
  - vendor/v8/test/mjsunit/regress/regress-233.js
1556
+ - vendor/v8/test/mjsunit/regress/regress-2336.js
1557
+ - vendor/v8/test/mjsunit/regress/regress-2339.js
1558
+ - vendor/v8/test/mjsunit/regress/regress-2346.js
1559
+ - vendor/v8/test/mjsunit/regress/regress-2373.js
1560
+ - vendor/v8/test/mjsunit/regress/regress-2374.js
1561
+ - vendor/v8/test/mjsunit/regress/regress-2398.js
1562
+ - vendor/v8/test/mjsunit/regress/regress-2410.js
1563
+ - vendor/v8/test/mjsunit/regress/regress-2416.js
1564
+ - vendor/v8/test/mjsunit/regress/regress-2419.js
1565
+ - vendor/v8/test/mjsunit/regress/regress-2433.js
1566
+ - vendor/v8/test/mjsunit/regress/regress-2437.js
1567
+ - vendor/v8/test/mjsunit/regress/regress-2438.js
1428
1568
  - vendor/v8/test/mjsunit/regress/regress-244.js
1569
+ - vendor/v8/test/mjsunit/regress/regress-2443.js
1570
+ - vendor/v8/test/mjsunit/regress/regress-2444.js
1429
1571
  - vendor/v8/test/mjsunit/regress/regress-246.js
1572
+ - vendor/v8/test/mjsunit/regress/regress-2489.js
1573
+ - vendor/v8/test/mjsunit/regress/regress-2499.js
1430
1574
  - vendor/v8/test/mjsunit/regress/regress-253.js
1431
1575
  - vendor/v8/test/mjsunit/regress/regress-254.js
1432
1576
  - vendor/v8/test/mjsunit/regress/regress-259.js
@@ -1588,12 +1732,44 @@ files:
1588
1732
  - vendor/v8/test/mjsunit/regress/regress-998565.js
1589
1733
  - vendor/v8/test/mjsunit/regress/regress-arguments-gc.js
1590
1734
  - vendor/v8/test/mjsunit/regress/regress-bind-receiver.js
1735
+ - vendor/v8/test/mjsunit/regress/regress-builtin-array-op.js
1736
+ - vendor/v8/test/mjsunit/regress/regress-cnlt-elements.js
1737
+ - vendor/v8/test/mjsunit/regress/regress-cnlt-enum-indices.js
1738
+ - vendor/v8/test/mjsunit/regress/regress-cntl-descriptors-enum.js
1591
1739
  - vendor/v8/test/mjsunit/regress/regress-conditional-position.js
1740
+ - vendor/v8/test/mjsunit/regress/regress-convert-enum.js
1741
+ - vendor/v8/test/mjsunit/regress/regress-convert-enum2.js
1742
+ - vendor/v8/test/mjsunit/regress/regress-convert-transition.js
1592
1743
  - vendor/v8/test/mjsunit/regress/regress-crbug-100859.js
1593
1744
  - vendor/v8/test/mjsunit/regress/regress-crbug-107996.js
1594
1745
  - vendor/v8/test/mjsunit/regress/regress-crbug-119926.js
1595
1746
  - vendor/v8/test/mjsunit/regress/regress-crbug-122271.js
1747
+ - vendor/v8/test/mjsunit/regress/regress-crbug-125148.js
1596
1748
  - vendor/v8/test/mjsunit/regress/regress-crbug-126414.js
1749
+ - vendor/v8/test/mjsunit/regress/regress-crbug-134055.js
1750
+ - vendor/v8/test/mjsunit/regress/regress-crbug-134609.js
1751
+ - vendor/v8/test/mjsunit/regress/regress-crbug-135008.js
1752
+ - vendor/v8/test/mjsunit/regress/regress-crbug-135066.js
1753
+ - vendor/v8/test/mjsunit/regress/regress-crbug-137689.js
1754
+ - vendor/v8/test/mjsunit/regress/regress-crbug-138887.js
1755
+ - vendor/v8/test/mjsunit/regress/regress-crbug-140083.js
1756
+ - vendor/v8/test/mjsunit/regress/regress-crbug-142087.js
1757
+ - vendor/v8/test/mjsunit/regress/regress-crbug-142218.js
1758
+ - vendor/v8/test/mjsunit/regress/regress-crbug-145961.js
1759
+ - vendor/v8/test/mjsunit/regress/regress-crbug-146910.js
1760
+ - vendor/v8/test/mjsunit/regress/regress-crbug-147475.js
1761
+ - vendor/v8/test/mjsunit/regress/regress-crbug-148376.js
1762
+ - vendor/v8/test/mjsunit/regress/regress-crbug-150545.js
1763
+ - vendor/v8/test/mjsunit/regress/regress-crbug-150729.js
1764
+ - vendor/v8/test/mjsunit/regress/regress-crbug-157019.js
1765
+ - vendor/v8/test/mjsunit/regress/regress-crbug-157520.js
1766
+ - vendor/v8/test/mjsunit/regress/regress-crbug-158185.js
1767
+ - vendor/v8/test/mjsunit/regress/regress-crbug-160010.js
1768
+ - vendor/v8/test/mjsunit/regress/regress-crbug-162085.js
1769
+ - vendor/v8/test/mjsunit/regress/regress-crbug-168545.js
1770
+ - vendor/v8/test/mjsunit/regress/regress-crbug-170856.js
1771
+ - vendor/v8/test/mjsunit/regress/regress-crbug-172345.js
1772
+ - vendor/v8/test/mjsunit/regress/regress-crbug-173974.js
1597
1773
  - vendor/v8/test/mjsunit/regress/regress-crbug-18639.js
1598
1774
  - vendor/v8/test/mjsunit/regress/regress-crbug-3184.js
1599
1775
  - vendor/v8/test/mjsunit/regress/regress-crbug-37853.js
@@ -1605,11 +1781,18 @@ files:
1605
1781
  - vendor/v8/test/mjsunit/regress/regress-crbug-87478.js
1606
1782
  - vendor/v8/test/mjsunit/regress/regress-create-exception.js
1607
1783
  - vendor/v8/test/mjsunit/regress/regress-debug-code-recompilation.js
1784
+ - vendor/v8/test/mjsunit/regress/regress-deep-proto.js
1785
+ - vendor/v8/test/mjsunit/regress/regress-delete-empty-double.js
1608
1786
  - vendor/v8/test/mjsunit/regress/regress-deopt-gc.js
1609
1787
  - vendor/v8/test/mjsunit/regress/regress-fast-literal-transition.js
1610
1788
  - vendor/v8/test/mjsunit/regress/regress-fundecl.js
1611
1789
  - vendor/v8/test/mjsunit/regress/regress-inlining-function-literal-context.js
1790
+ - vendor/v8/test/mjsunit/regress/regress-iteration-order.js
1791
+ - vendor/v8/test/mjsunit/regress/regress-json-stringify-gc.js
1792
+ - vendor/v8/test/mjsunit/regress/regress-latin-1.js
1612
1793
  - vendor/v8/test/mjsunit/regress/regress-lazy-deopt-reloc.js
1794
+ - vendor/v8/test/mjsunit/regress/regress-load-elements.js
1795
+ - vendor/v8/test/mjsunit/regress/regress-observe-empty-double-array.js
1613
1796
  - vendor/v8/test/mjsunit/regress/regress-push-args-twice.js
1614
1797
  - vendor/v8/test/mjsunit/regress/regress-r3391.js
1615
1798
  - vendor/v8/test/mjsunit/regress/regress-r4998.js
@@ -1618,6 +1801,7 @@ files:
1618
1801
  - vendor/v8/test/mjsunit/regress/regress-sqrt.js
1619
1802
  - vendor/v8/test/mjsunit/regress/regress-swapelements.js
1620
1803
  - vendor/v8/test/mjsunit/regress/regress-transcendental.js
1804
+ - vendor/v8/test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js
1621
1805
  - vendor/v8/test/mjsunit/regress/short-circuit.js
1622
1806
  - vendor/v8/test/mjsunit/regress/splice-missing-wb.js
1623
1807
  - vendor/v8/test/mjsunit/samevalue.js
@@ -1625,6 +1809,7 @@ files:
1625
1809
  - vendor/v8/test/mjsunit/scope-calls-eval.js
1626
1810
  - vendor/v8/test/mjsunit/search-string-multiple.js
1627
1811
  - vendor/v8/test/mjsunit/setter-on-constructor-prototype.js
1812
+ - vendor/v8/test/mjsunit/shift-for-integer-div.js
1628
1813
  - vendor/v8/test/mjsunit/shifts.js
1629
1814
  - vendor/v8/test/mjsunit/short-circuit-boolean.js
1630
1815
  - vendor/v8/test/mjsunit/simple-constructor.js
@@ -1635,6 +1820,8 @@ files:
1635
1820
  - vendor/v8/test/mjsunit/sparse-array-reverse.js
1636
1821
  - vendor/v8/test/mjsunit/sparse-array.js
1637
1822
  - vendor/v8/test/mjsunit/stack-traces-2.js
1823
+ - vendor/v8/test/mjsunit/stack-traces-gc.js
1824
+ - vendor/v8/test/mjsunit/stack-traces-overflow.js
1638
1825
  - vendor/v8/test/mjsunit/stack-traces.js
1639
1826
  - vendor/v8/test/mjsunit/store-dictionary.js
1640
1827
  - vendor/v8/test/mjsunit/str-to-num.js
@@ -1659,6 +1846,7 @@ files:
1659
1846
  - vendor/v8/test/mjsunit/string-lastindexof.js
1660
1847
  - vendor/v8/test/mjsunit/string-localecompare.js
1661
1848
  - vendor/v8/test/mjsunit/string-match.js
1849
+ - vendor/v8/test/mjsunit/string-natives.js
1662
1850
  - vendor/v8/test/mjsunit/string-replace-gc.js
1663
1851
  - vendor/v8/test/mjsunit/string-replace-one-char.js
1664
1852
  - vendor/v8/test/mjsunit/string-replace-with-empty.js
@@ -1705,8 +1893,10 @@ files:
1705
1893
  - vendor/v8/test/mjsunit/transcendentals.js
1706
1894
  - vendor/v8/test/mjsunit/try-catch-extension-object.js
1707
1895
  - vendor/v8/test/mjsunit/try-catch-scopes.js
1896
+ - vendor/v8/test/mjsunit/try-finally-continue.js
1708
1897
  - vendor/v8/test/mjsunit/try-finally-nested.js
1709
1898
  - vendor/v8/test/mjsunit/try.js
1899
+ - vendor/v8/test/mjsunit/typed-array-slice.js
1710
1900
  - vendor/v8/test/mjsunit/typeof.js
1711
1901
  - vendor/v8/test/mjsunit/unbox-double-arrays.js
1712
1902
  - vendor/v8/test/mjsunit/undeletable-functions.js
@@ -1762,6 +1952,10 @@ files:
1762
1952
  - vendor/v8/test/test262/harness-adapt.js
1763
1953
  - vendor/v8/test/test262/test262.status
1764
1954
  - vendor/v8/test/test262/testcfg.py
1955
+ - vendor/v8/tools/android-build.sh
1956
+ - vendor/v8/tools/android-ll-prof.sh
1957
+ - vendor/v8/tools/android-run.py
1958
+ - vendor/v8/tools/android-sync.sh
1765
1959
  - vendor/v8/tools/bash-completion.sh
1766
1960
  - vendor/v8/tools/check-static-initializers.sh
1767
1961
  - vendor/v8/tools/codemap.js
@@ -1793,16 +1987,55 @@ files:
1793
1987
  - vendor/v8/tools/oom_dump/README
1794
1988
  - vendor/v8/tools/oom_dump/SConstruct
1795
1989
  - vendor/v8/tools/oom_dump/oom_dump.cc
1990
+ - vendor/v8/tools/plot-timer-events
1991
+ - vendor/v8/tools/plot-timer-events.js
1796
1992
  - vendor/v8/tools/presubmit.py
1797
1993
  - vendor/v8/tools/process-heap-prof.py
1798
1994
  - vendor/v8/tools/profile.js
1799
1995
  - vendor/v8/tools/profile_view.js
1800
1996
  - vendor/v8/tools/push-to-trunk.sh
1997
+ - vendor/v8/tools/run-llprof.sh
1998
+ - vendor/v8/tools/run-tests.py
1801
1999
  - vendor/v8/tools/run-valgrind.py
1802
2000
  - vendor/v8/tools/splaytree.js
1803
2001
  - vendor/v8/tools/stats-viewer.py
2002
+ - vendor/v8/tools/status-file-converter.py
2003
+ - vendor/v8/tools/test-server.py
1804
2004
  - vendor/v8/tools/test-wrapper-gypbuild.py
1805
2005
  - vendor/v8/tools/test.py
2006
+ - vendor/v8/tools/testrunner/README
2007
+ - vendor/v8/tools/testrunner/__init__.py
2008
+ - vendor/v8/tools/testrunner/local/__init__.py
2009
+ - vendor/v8/tools/testrunner/local/commands.py
2010
+ - vendor/v8/tools/testrunner/local/execution.py
2011
+ - vendor/v8/tools/testrunner/local/old_statusfile.py
2012
+ - vendor/v8/tools/testrunner/local/progress.py
2013
+ - vendor/v8/tools/testrunner/local/statusfile.py
2014
+ - vendor/v8/tools/testrunner/local/testsuite.py
2015
+ - vendor/v8/tools/testrunner/local/utils.py
2016
+ - vendor/v8/tools/testrunner/local/verbose.py
2017
+ - vendor/v8/tools/testrunner/network/__init__.py
2018
+ - vendor/v8/tools/testrunner/network/distro.py
2019
+ - vendor/v8/tools/testrunner/network/endpoint.py
2020
+ - vendor/v8/tools/testrunner/network/network_execution.py
2021
+ - vendor/v8/tools/testrunner/network/perfdata.py
2022
+ - vendor/v8/tools/testrunner/objects/__init__.py
2023
+ - vendor/v8/tools/testrunner/objects/context.py
2024
+ - vendor/v8/tools/testrunner/objects/output.py
2025
+ - vendor/v8/tools/testrunner/objects/peer.py
2026
+ - vendor/v8/tools/testrunner/objects/testcase.py
2027
+ - vendor/v8/tools/testrunner/objects/workpacket.py
2028
+ - vendor/v8/tools/testrunner/server/__init__.py
2029
+ - vendor/v8/tools/testrunner/server/compression.py
2030
+ - vendor/v8/tools/testrunner/server/constants.py
2031
+ - vendor/v8/tools/testrunner/server/daemon.py
2032
+ - vendor/v8/tools/testrunner/server/local_handler.py
2033
+ - vendor/v8/tools/testrunner/server/main.py
2034
+ - vendor/v8/tools/testrunner/server/presence_handler.py
2035
+ - vendor/v8/tools/testrunner/server/signatures.py
2036
+ - vendor/v8/tools/testrunner/server/status_handler.py
2037
+ - vendor/v8/tools/testrunner/server/work_handler.py
2038
+ - vendor/v8/tools/tick-processor.html
1806
2039
  - vendor/v8/tools/tickprocessor-driver.js
1807
2040
  - vendor/v8/tools/tickprocessor.js
1808
2041
  - vendor/v8/tools/utils.py
@@ -1823,10 +2056,13 @@ files:
1823
2056
  - vendor/v8/build/gyp/PRESUBMIT.py
1824
2057
  - vendor/v8/build/gyp/pylib/gyp/__init__.py
1825
2058
  - vendor/v8/build/gyp/pylib/gyp/common.py
2059
+ - vendor/v8/build/gyp/pylib/gyp/common_test.py
1826
2060
  - vendor/v8/build/gyp/pylib/gyp/easy_xml.py
1827
2061
  - vendor/v8/build/gyp/pylib/gyp/easy_xml_test.py
1828
2062
  - vendor/v8/build/gyp/pylib/gyp/generator/__init__.py
2063
+ - vendor/v8/build/gyp/pylib/gyp/generator/android.py
1829
2064
  - vendor/v8/build/gyp/pylib/gyp/generator/dump_dependency_json.py
2065
+ - vendor/v8/build/gyp/pylib/gyp/generator/eclipse.py
1830
2066
  - vendor/v8/build/gyp/pylib/gyp/generator/gypd.py
1831
2067
  - vendor/v8/build/gyp/pylib/gyp/generator/gypsh.py
1832
2068
  - vendor/v8/build/gyp/pylib/gyp/generator/make.py
@@ -1883,6 +2119,10 @@ files:
1883
2119
  - vendor/v8/build/gyp/test/actions-multiple/src/foo.c
1884
2120
  - vendor/v8/build/gyp/test/actions-multiple/src/input.txt
1885
2121
  - vendor/v8/build/gyp/test/actions-multiple/src/main.c
2122
+ - vendor/v8/build/gyp/test/actions-none/gyptest-none.py
2123
+ - vendor/v8/build/gyp/test/actions-none/src/fake_cross.py
2124
+ - vendor/v8/build/gyp/test/actions-none/src/foo.cc
2125
+ - vendor/v8/build/gyp/test/actions-none/src/none_with_source_files.gyp
1886
2126
  - vendor/v8/build/gyp/test/actions-subdir/gyptest-action.py
1887
2127
  - vendor/v8/build/gyp/test/actions-subdir/src/make-file.py
1888
2128
  - vendor/v8/build/gyp/test/actions-subdir/src/none.gyp
@@ -1899,6 +2139,9 @@ files:
1899
2139
  - vendor/v8/build/gyp/test/assembly/src/lib1.c
1900
2140
  - vendor/v8/build/gyp/test/assembly/src/lib1.S
1901
2141
  - vendor/v8/build/gyp/test/assembly/src/program.c
2142
+ - vendor/v8/build/gyp/test/build-option/gyptest-build.py
2143
+ - vendor/v8/build/gyp/test/build-option/hello.c
2144
+ - vendor/v8/build/gyp/test/build-option/hello.gyp
1902
2145
  - vendor/v8/build/gyp/test/builddir/gyptest-all.py
1903
2146
  - vendor/v8/build/gyp/test/builddir/gyptest-default.py
1904
2147
  - vendor/v8/build/gyp/test/builddir/src/builddir.gypi
@@ -1925,6 +2168,16 @@ files:
1925
2168
  - vendor/v8/build/gyp/test/compilable/src/lib1.cpp
1926
2169
  - vendor/v8/build/gyp/test/compilable/src/lib1.hpp
1927
2170
  - vendor/v8/build/gyp/test/compilable/src/program.cpp
2171
+ - vendor/v8/build/gyp/test/compiler-override/compiler-global-settings.gyp.in
2172
+ - vendor/v8/build/gyp/test/compiler-override/compiler-host.gyp
2173
+ - vendor/v8/build/gyp/test/compiler-override/compiler.gyp
2174
+ - vendor/v8/build/gyp/test/compiler-override/cxxtest.cc
2175
+ - vendor/v8/build/gyp/test/compiler-override/gyptest-compiler-env.py
2176
+ - vendor/v8/build/gyp/test/compiler-override/gyptest-compiler-global-settings.py
2177
+ - vendor/v8/build/gyp/test/compiler-override/my_cc.py
2178
+ - vendor/v8/build/gyp/test/compiler-override/my_cxx.py
2179
+ - vendor/v8/build/gyp/test/compiler-override/my_ld.py
2180
+ - vendor/v8/build/gyp/test/compiler-override/test.c
1928
2181
  - vendor/v8/build/gyp/test/configurations/basics/configurations.c
1929
2182
  - vendor/v8/build/gyp/test/configurations/basics/configurations.gyp
1930
2183
  - vendor/v8/build/gyp/test/configurations/basics/gyptest-configurations.py
@@ -1953,7 +2206,9 @@ files:
1953
2206
  - vendor/v8/build/gyp/test/copies/gyptest-all.py
1954
2207
  - vendor/v8/build/gyp/test/copies/gyptest-default.py
1955
2208
  - vendor/v8/build/gyp/test/copies/gyptest-slash.py
2209
+ - vendor/v8/build/gyp/test/copies/gyptest-updir.py
1956
2210
  - vendor/v8/build/gyp/test/copies/src/copies-slash.gyp
2211
+ - vendor/v8/build/gyp/test/copies/src/copies-updir.gyp
1957
2212
  - vendor/v8/build/gyp/test/copies/src/copies.gyp
1958
2213
  - vendor/v8/build/gyp/test/copies/src/directory/file3
1959
2214
  - vendor/v8/build/gyp/test/copies/src/directory/file4
@@ -1961,6 +2216,9 @@ files:
1961
2216
  - vendor/v8/build/gyp/test/copies/src/file1
1962
2217
  - vendor/v8/build/gyp/test/copies/src/file2
1963
2218
  - vendor/v8/build/gyp/test/copies/src/parentdir/subdir/file6
2219
+ - vendor/v8/build/gyp/test/custom-generator/gyptest-custom-generator.py
2220
+ - vendor/v8/build/gyp/test/custom-generator/mygenerator.py
2221
+ - vendor/v8/build/gyp/test/custom-generator/test.gyp
1964
2222
  - vendor/v8/build/gyp/test/cxxflags/cxxflags.cc
1965
2223
  - vendor/v8/build/gyp/test/cxxflags/cxxflags.gyp
1966
2224
  - vendor/v8/build/gyp/test/cxxflags/gyptest-cxxflags.py
@@ -1981,7 +2239,10 @@ files:
1981
2239
  - vendor/v8/build/gyp/test/dependencies/c/c.c
1982
2240
  - vendor/v8/build/gyp/test/dependencies/c/c.gyp
1983
2241
  - vendor/v8/build/gyp/test/dependencies/c/d.c
2242
+ - vendor/v8/build/gyp/test/dependencies/double_dependency.gyp
2243
+ - vendor/v8/build/gyp/test/dependencies/double_dependent.gyp
1984
2244
  - vendor/v8/build/gyp/test/dependencies/extra_targets.gyp
2245
+ - vendor/v8/build/gyp/test/dependencies/gyptest-double-dependency.py
1985
2246
  - vendor/v8/build/gyp/test/dependencies/gyptest-extra-targets.py
1986
2247
  - vendor/v8/build/gyp/test/dependencies/gyptest-lib-only.py
1987
2248
  - vendor/v8/build/gyp/test/dependencies/gyptest-none-traversal.py
@@ -1992,9 +2253,30 @@ files:
1992
2253
  - vendor/v8/build/gyp/test/dependency-copy/src/copies.gyp
1993
2254
  - vendor/v8/build/gyp/test/dependency-copy/src/file1.c
1994
2255
  - vendor/v8/build/gyp/test/dependency-copy/src/file2.c
2256
+ - vendor/v8/build/gyp/test/errors/duplicate_basenames.gyp
2257
+ - vendor/v8/build/gyp/test/errors/duplicate_node.gyp
2258
+ - vendor/v8/build/gyp/test/errors/duplicate_rule.gyp
2259
+ - vendor/v8/build/gyp/test/errors/duplicate_targets.gyp
2260
+ - vendor/v8/build/gyp/test/errors/gyptest-errors.py
2261
+ - vendor/v8/build/gyp/test/errors/missing_dep.gyp
2262
+ - vendor/v8/build/gyp/test/errors/missing_targets.gyp
2263
+ - vendor/v8/build/gyp/test/escaping/colon/test.gyp
2264
+ - vendor/v8/build/gyp/test/escaping/gyptest-colon.py
1995
2265
  - vendor/v8/build/gyp/test/exclusion/exclusion.gyp
1996
2266
  - vendor/v8/build/gyp/test/exclusion/gyptest-exclusion.py
1997
2267
  - vendor/v8/build/gyp/test/exclusion/hello.c
2268
+ - vendor/v8/build/gyp/test/external-cross-compile/gyptest-cross.py
2269
+ - vendor/v8/build/gyp/test/external-cross-compile/src/bogus1.cc
2270
+ - vendor/v8/build/gyp/test/external-cross-compile/src/bogus2.c
2271
+ - vendor/v8/build/gyp/test/external-cross-compile/src/cross.gyp
2272
+ - vendor/v8/build/gyp/test/external-cross-compile/src/cross_compile.gypi
2273
+ - vendor/v8/build/gyp/test/external-cross-compile/src/fake_cross.py
2274
+ - vendor/v8/build/gyp/test/external-cross-compile/src/program.cc
2275
+ - vendor/v8/build/gyp/test/external-cross-compile/src/test1.cc
2276
+ - vendor/v8/build/gyp/test/external-cross-compile/src/test2.c
2277
+ - vendor/v8/build/gyp/test/external-cross-compile/src/test3.cc
2278
+ - vendor/v8/build/gyp/test/external-cross-compile/src/test4.c
2279
+ - vendor/v8/build/gyp/test/external-cross-compile/src/tochar.py
1998
2280
  - vendor/v8/build/gyp/test/generator-output/actions/actions.gyp
1999
2281
  - vendor/v8/build/gyp/test/generator-output/actions/build/README.txt
2000
2282
  - vendor/v8/build/gyp/test/generator-output/actions/subdir1/actions-out/README.txt
@@ -2019,10 +2301,17 @@ files:
2019
2301
  - vendor/v8/build/gyp/test/generator-output/copies/subdir/subdir.gyp
2020
2302
  - vendor/v8/build/gyp/test/generator-output/gyptest-actions.py
2021
2303
  - vendor/v8/build/gyp/test/generator-output/gyptest-copies.py
2304
+ - vendor/v8/build/gyp/test/generator-output/gyptest-mac-bundle.py
2022
2305
  - vendor/v8/build/gyp/test/generator-output/gyptest-relocate.py
2023
2306
  - vendor/v8/build/gyp/test/generator-output/gyptest-rules.py
2024
2307
  - vendor/v8/build/gyp/test/generator-output/gyptest-subdir2-deep.py
2025
2308
  - vendor/v8/build/gyp/test/generator-output/gyptest-top-all.py
2309
+ - vendor/v8/build/gyp/test/generator-output/mac-bundle/app.order
2310
+ - vendor/v8/build/gyp/test/generator-output/mac-bundle/header.h
2311
+ - vendor/v8/build/gyp/test/generator-output/mac-bundle/Info.plist
2312
+ - vendor/v8/build/gyp/test/generator-output/mac-bundle/main.c
2313
+ - vendor/v8/build/gyp/test/generator-output/mac-bundle/resource.sb
2314
+ - vendor/v8/build/gyp/test/generator-output/mac-bundle/test.gyp
2026
2315
  - vendor/v8/build/gyp/test/generator-output/rules/build/README.txt
2027
2316
  - vendor/v8/build/gyp/test/generator-output/rules/copy-file.py
2028
2317
  - vendor/v8/build/gyp/test/generator-output/rules/rules.gyp
@@ -2058,6 +2347,10 @@ files:
2058
2347
  - vendor/v8/build/gyp/test/generator-output/src/subdir3/prog3.c
2059
2348
  - vendor/v8/build/gyp/test/generator-output/src/subdir3/prog3.gyp
2060
2349
  - vendor/v8/build/gyp/test/generator-output/src/symroot.gypi
2350
+ - vendor/v8/build/gyp/test/gyp-defines/defines.gyp
2351
+ - vendor/v8/build/gyp/test/gyp-defines/echo.py
2352
+ - vendor/v8/build/gyp/test/gyp-defines/gyptest-multiple-values.py
2353
+ - vendor/v8/build/gyp/test/gyp-defines/gyptest-regyp.py
2061
2354
  - vendor/v8/build/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py
2062
2355
  - vendor/v8/build/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py
2063
2356
  - vendor/v8/build/gyp/test/hard_dependency/src/a.c
@@ -2096,6 +2389,7 @@ files:
2096
2389
  - vendor/v8/build/gyp/test/include_dirs/src/subdir/subdir_includes.gyp
2097
2390
  - vendor/v8/build/gyp/test/intermediate_dir/gyptest-intermediate-dir.py
2098
2391
  - vendor/v8/build/gyp/test/intermediate_dir/src/script.py
2392
+ - vendor/v8/build/gyp/test/intermediate_dir/src/shared_infile.txt
2099
2393
  - vendor/v8/build/gyp/test/intermediate_dir/src/test.gyp
2100
2394
  - vendor/v8/build/gyp/test/intermediate_dir/src/test2.gyp
2101
2395
  - vendor/v8/build/gyp/test/lib/README.txt
@@ -2130,6 +2424,17 @@ files:
2130
2424
  - vendor/v8/build/gyp/test/mac/archs/my_main_file.cc
2131
2425
  - vendor/v8/build/gyp/test/mac/archs/test-archs-x86_64.gyp
2132
2426
  - vendor/v8/build/gyp/test/mac/archs/test-no-archs.gyp
2427
+ - vendor/v8/build/gyp/test/mac/cflags/ccfile.cc
2428
+ - vendor/v8/build/gyp/test/mac/cflags/ccfile_withcflags.cc
2429
+ - vendor/v8/build/gyp/test/mac/cflags/cfile.c
2430
+ - vendor/v8/build/gyp/test/mac/cflags/cppfile.cpp
2431
+ - vendor/v8/build/gyp/test/mac/cflags/cppfile_withcflags.cpp
2432
+ - vendor/v8/build/gyp/test/mac/cflags/cxxfile.cxx
2433
+ - vendor/v8/build/gyp/test/mac/cflags/cxxfile_withcflags.cxx
2434
+ - vendor/v8/build/gyp/test/mac/cflags/mfile.m
2435
+ - vendor/v8/build/gyp/test/mac/cflags/mmfile.mm
2436
+ - vendor/v8/build/gyp/test/mac/cflags/mmfile_withcflags.mm
2437
+ - vendor/v8/build/gyp/test/mac/cflags/test.gyp
2133
2438
  - vendor/v8/build/gyp/test/mac/copy-dylib/empty.c
2134
2439
  - vendor/v8/build/gyp/test/mac/copy-dylib/test.gyp
2135
2440
  - vendor/v8/build/gyp/test/mac/debuginfo/file.c
@@ -2147,23 +2452,35 @@ files:
2147
2452
  - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVector.mm
2148
2453
  - vendor/v8/build/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h
2149
2454
  - vendor/v8/build/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch
2455
+ - vendor/v8/build/gyp/test/mac/framework-dirs/calculate.c
2456
+ - vendor/v8/build/gyp/test/mac/framework-dirs/framework-dirs.gyp
2457
+ - vendor/v8/build/gyp/test/mac/framework-headers/myframework.h
2458
+ - vendor/v8/build/gyp/test/mac/framework-headers/myframework.m
2459
+ - vendor/v8/build/gyp/test/mac/framework-headers/test.gyp
2150
2460
  - vendor/v8/build/gyp/test/mac/global-settings/src/dir1/dir1.gyp
2151
2461
  - vendor/v8/build/gyp/test/mac/global-settings/src/dir2/dir2.gyp
2152
2462
  - vendor/v8/build/gyp/test/mac/global-settings/src/dir2/file.txt
2153
2463
  - vendor/v8/build/gyp/test/mac/gyptest-action-envvars.py
2154
2464
  - vendor/v8/build/gyp/test/mac/gyptest-app.py
2155
2465
  - vendor/v8/build/gyp/test/mac/gyptest-archs.py
2466
+ - vendor/v8/build/gyp/test/mac/gyptest-cflags.py
2156
2467
  - vendor/v8/build/gyp/test/mac/gyptest-copies.py
2157
2468
  - vendor/v8/build/gyp/test/mac/gyptest-copy-dylib.py
2158
2469
  - vendor/v8/build/gyp/test/mac/gyptest-debuginfo.py
2159
2470
  - vendor/v8/build/gyp/test/mac/gyptest-depend-on-bundle.py
2471
+ - vendor/v8/build/gyp/test/mac/gyptest-framework-dirs.py
2472
+ - vendor/v8/build/gyp/test/mac/gyptest-framework-headers.py
2160
2473
  - vendor/v8/build/gyp/test/mac/gyptest-framework.py
2161
2474
  - vendor/v8/build/gyp/test/mac/gyptest-global-settings.py
2162
2475
  - vendor/v8/build/gyp/test/mac/gyptest-infoplist-process.py
2476
+ - vendor/v8/build/gyp/test/mac/gyptest-installname.py
2477
+ - vendor/v8/build/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py
2478
+ - vendor/v8/build/gyp/test/mac/gyptest-ldflags.py
2163
2479
  - vendor/v8/build/gyp/test/mac/gyptest-libraries.py
2164
2480
  - vendor/v8/build/gyp/test/mac/gyptest-loadable-module.py
2165
2481
  - vendor/v8/build/gyp/test/mac/gyptest-missing-cfbundlesignature.py
2166
2482
  - vendor/v8/build/gyp/test/mac/gyptest-non-strs-flattened-to-env.py
2483
+ - vendor/v8/build/gyp/test/mac/gyptest-objc-gc.py
2167
2484
  - vendor/v8/build/gyp/test/mac/gyptest-postbuild-copy-bundle.py
2168
2485
  - vendor/v8/build/gyp/test/mac/gyptest-postbuild-defaults.py
2169
2486
  - vendor/v8/build/gyp/test/mac/gyptest-postbuild-fail.py
@@ -2172,16 +2489,28 @@ files:
2172
2489
  - vendor/v8/build/gyp/test/mac/gyptest-postbuild.py
2173
2490
  - vendor/v8/build/gyp/test/mac/gyptest-prefixheader.py
2174
2491
  - vendor/v8/build/gyp/test/mac/gyptest-rebuild.py
2492
+ - vendor/v8/build/gyp/test/mac/gyptest-rpath.py
2175
2493
  - vendor/v8/build/gyp/test/mac/gyptest-sdkroot.py
2176
2494
  - vendor/v8/build/gyp/test/mac/gyptest-sourceless-module.gyp
2177
2495
  - vendor/v8/build/gyp/test/mac/gyptest-strip.py
2178
2496
  - vendor/v8/build/gyp/test/mac/gyptest-type-envvars.py
2179
2497
  - vendor/v8/build/gyp/test/mac/gyptest-xcode-env-order.py
2498
+ - vendor/v8/build/gyp/test/mac/gyptest-xcode-gcc.py
2180
2499
  - vendor/v8/build/gyp/test/mac/infoplist-process/Info.plist
2181
2500
  - vendor/v8/build/gyp/test/mac/infoplist-process/main.c
2182
2501
  - vendor/v8/build/gyp/test/mac/infoplist-process/test1.gyp
2183
2502
  - vendor/v8/build/gyp/test/mac/infoplist-process/test2.gyp
2184
2503
  - vendor/v8/build/gyp/test/mac/infoplist-process/test3.gyp
2504
+ - vendor/v8/build/gyp/test/mac/installname/file.c
2505
+ - vendor/v8/build/gyp/test/mac/installname/Info.plist
2506
+ - vendor/v8/build/gyp/test/mac/installname/main.c
2507
+ - vendor/v8/build/gyp/test/mac/installname/test.gyp
2508
+ - vendor/v8/build/gyp/test/mac/ldflags/subdirectory/file.c
2509
+ - vendor/v8/build/gyp/test/mac/ldflags/subdirectory/Info.plist
2510
+ - vendor/v8/build/gyp/test/mac/ldflags/subdirectory/symbol_list.def
2511
+ - vendor/v8/build/gyp/test/mac/ldflags/subdirectory/test.gyp
2512
+ - vendor/v8/build/gyp/test/mac/ldflags-libtool/file.c
2513
+ - vendor/v8/build/gyp/test/mac/ldflags-libtool/test.gyp
2185
2514
  - vendor/v8/build/gyp/test/mac/libraries/subdir/hello.cc
2186
2515
  - vendor/v8/build/gyp/test/mac/libraries/subdir/mylib.c
2187
2516
  - vendor/v8/build/gyp/test/mac/libraries/subdir/README.txt
@@ -2197,6 +2526,12 @@ files:
2197
2526
  - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/Info.plist
2198
2527
  - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/main.c
2199
2528
  - vendor/v8/build/gyp/test/mac/non-strs-flattened-to-env/test.gyp
2529
+ - vendor/v8/build/gyp/test/mac/objc-gc/c-file.c
2530
+ - vendor/v8/build/gyp/test/mac/objc-gc/cc-file.cc
2531
+ - vendor/v8/build/gyp/test/mac/objc-gc/main.m
2532
+ - vendor/v8/build/gyp/test/mac/objc-gc/needs-gc-mm.mm
2533
+ - vendor/v8/build/gyp/test/mac/objc-gc/needs-gc.m
2534
+ - vendor/v8/build/gyp/test/mac/objc-gc/test.gyp
2200
2535
  - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/empty.c
2201
2536
  - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist
2202
2537
  - vendor/v8/build/gyp/test/mac/postbuild-copy-bundle/main.c
@@ -2219,9 +2554,13 @@ files:
2219
2554
  - vendor/v8/build/gyp/test/mac/postbuild-static-library/empty.c
2220
2555
  - vendor/v8/build/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh
2221
2556
  - vendor/v8/build/gyp/test/mac/postbuild-static-library/test.gyp
2557
+ - vendor/v8/build/gyp/test/mac/postbuilds/copy.sh
2222
2558
  - vendor/v8/build/gyp/test/mac/postbuilds/file.c
2559
+ - vendor/v8/build/gyp/test/mac/postbuilds/file_g.c
2560
+ - vendor/v8/build/gyp/test/mac/postbuilds/file_h.c
2223
2561
  - vendor/v8/build/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh
2224
2562
  - vendor/v8/build/gyp/test/mac/postbuilds/script/static_library_postbuild.sh
2563
+ - vendor/v8/build/gyp/test/mac/postbuilds/subdirectory/copied_file.txt
2225
2564
  - vendor/v8/build/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp
2226
2565
  - vendor/v8/build/gyp/test/mac/postbuilds/test.gyp
2227
2566
  - vendor/v8/build/gyp/test/mac/prefixheader/file.c
@@ -2235,12 +2574,20 @@ files:
2235
2574
  - vendor/v8/build/gyp/test/mac/rebuild/main.c
2236
2575
  - vendor/v8/build/gyp/test/mac/rebuild/test.gyp
2237
2576
  - vendor/v8/build/gyp/test/mac/rebuild/TestApp-Info.plist
2577
+ - vendor/v8/build/gyp/test/mac/rpath/file.c
2578
+ - vendor/v8/build/gyp/test/mac/rpath/main.c
2579
+ - vendor/v8/build/gyp/test/mac/rpath/test.gyp
2238
2580
  - vendor/v8/build/gyp/test/mac/sdkroot/file.cc
2239
2581
  - vendor/v8/build/gyp/test/mac/sdkroot/test.gyp
2582
+ - vendor/v8/build/gyp/test/mac/sdkroot/test_shorthand.sh
2240
2583
  - vendor/v8/build/gyp/test/mac/sourceless-module/empty.c
2241
2584
  - vendor/v8/build/gyp/test/mac/sourceless-module/test.gyp
2242
2585
  - vendor/v8/build/gyp/test/mac/strip/file.c
2243
2586
  - vendor/v8/build/gyp/test/mac/strip/strip.saves
2587
+ - vendor/v8/build/gyp/test/mac/strip/subdirectory/nested_file.c
2588
+ - vendor/v8/build/gyp/test/mac/strip/subdirectory/nested_strip.saves
2589
+ - vendor/v8/build/gyp/test/mac/strip/subdirectory/subdirectory.gyp
2590
+ - vendor/v8/build/gyp/test/mac/strip/subdirectory/test_reading_save_file_from_postbuild.sh
2244
2591
  - vendor/v8/build/gyp/test/mac/strip/test.gyp
2245
2592
  - vendor/v8/build/gyp/test/mac/type_envvars/file.c
2246
2593
  - vendor/v8/build/gyp/test/mac/type_envvars/test.gyp
@@ -2252,9 +2599,19 @@ files:
2252
2599
  - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_none.sh
2253
2600
  - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh
2254
2601
  - vendor/v8/build/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh
2602
+ - vendor/v8/build/gyp/test/mac/xcode-env-order/file.ext1
2603
+ - vendor/v8/build/gyp/test/mac/xcode-env-order/file.ext2
2604
+ - vendor/v8/build/gyp/test/mac/xcode-env-order/file.ext3
2255
2605
  - vendor/v8/build/gyp/test/mac/xcode-env-order/Info.plist
2256
2606
  - vendor/v8/build/gyp/test/mac/xcode-env-order/main.c
2257
2607
  - vendor/v8/build/gyp/test/mac/xcode-env-order/test.gyp
2608
+ - vendor/v8/build/gyp/test/mac/xcode-gcc/test.gyp
2609
+ - vendor/v8/build/gyp/test/mac/xcode-gcc/valid_c.c
2610
+ - vendor/v8/build/gyp/test/mac/xcode-gcc/valid_cc.cc
2611
+ - vendor/v8/build/gyp/test/mac/xcode-gcc/valid_m.m
2612
+ - vendor/v8/build/gyp/test/mac/xcode-gcc/valid_mm.mm
2613
+ - vendor/v8/build/gyp/test/mac/xcode-gcc/warn_about_invalid_offsetof_macro.cc
2614
+ - vendor/v8/build/gyp/test/mac/xcode-gcc/warn_about_missing_newline.c
2258
2615
  - vendor/v8/build/gyp/test/make/dependencies.gyp
2259
2616
  - vendor/v8/build/gyp/test/make/gyptest-dependencies.py
2260
2617
  - vendor/v8/build/gyp/test/make/gyptest-noload.py
@@ -2265,6 +2622,15 @@ files:
2265
2622
  - vendor/v8/build/gyp/test/make/noload/lib/shared.gyp
2266
2623
  - vendor/v8/build/gyp/test/make/noload/lib/shared.h
2267
2624
  - vendor/v8/build/gyp/test/make/noload/main.c
2625
+ - vendor/v8/build/gyp/test/many-actions/file0
2626
+ - vendor/v8/build/gyp/test/many-actions/file1
2627
+ - vendor/v8/build/gyp/test/many-actions/file2
2628
+ - vendor/v8/build/gyp/test/many-actions/file3
2629
+ - vendor/v8/build/gyp/test/many-actions/file4
2630
+ - vendor/v8/build/gyp/test/many-actions/gyptest-many-actions-unsorted.py
2631
+ - vendor/v8/build/gyp/test/many-actions/gyptest-many-actions.py
2632
+ - vendor/v8/build/gyp/test/many-actions/many-actions-unsorted.gyp
2633
+ - vendor/v8/build/gyp/test/many-actions/many-actions.gyp
2268
2634
  - vendor/v8/build/gyp/test/module/gyptest-default.py
2269
2635
  - vendor/v8/build/gyp/test/module/src/lib1.c
2270
2636
  - vendor/v8/build/gyp/test/module/src/lib2.c
@@ -2280,16 +2646,19 @@ files:
2280
2646
  - vendor/v8/build/gyp/test/msvs/list_excluded/hello.cpp
2281
2647
  - vendor/v8/build/gyp/test/msvs/list_excluded/hello_exclude.gyp
2282
2648
  - vendor/v8/build/gyp/test/msvs/list_excluded/hello_mac.cpp
2283
- - vendor/v8/build/gyp/test/msvs/precompiled/gyptest-all.py
2284
- - vendor/v8/build/gyp/test/msvs/precompiled/hello.c
2285
- - vendor/v8/build/gyp/test/msvs/precompiled/hello.gyp
2286
- - vendor/v8/build/gyp/test/msvs/precompiled/hello2.c
2287
- - vendor/v8/build/gyp/test/msvs/precompiled/precomp.c
2649
+ - vendor/v8/build/gyp/test/msvs/missing_sources/gyptest-missing.py
2650
+ - vendor/v8/build/gyp/test/msvs/missing_sources/hello_missing.gyp
2288
2651
  - vendor/v8/build/gyp/test/msvs/props/AppName.props
2289
2652
  - vendor/v8/build/gyp/test/msvs/props/AppName.vsprops
2290
2653
  - vendor/v8/build/gyp/test/msvs/props/gyptest-props.py
2291
2654
  - vendor/v8/build/gyp/test/msvs/props/hello.c
2292
2655
  - vendor/v8/build/gyp/test/msvs/props/hello.gyp
2656
+ - vendor/v8/build/gyp/test/msvs/shared_output/common.gypi
2657
+ - vendor/v8/build/gyp/test/msvs/shared_output/gyptest-shared_output.py
2658
+ - vendor/v8/build/gyp/test/msvs/shared_output/hello.c
2659
+ - vendor/v8/build/gyp/test/msvs/shared_output/hello.gyp
2660
+ - vendor/v8/build/gyp/test/msvs/shared_output/there/there.c
2661
+ - vendor/v8/build/gyp/test/msvs/shared_output/there/there.gyp
2293
2662
  - vendor/v8/build/gyp/test/msvs/uldi2010/gyptest-all.py
2294
2663
  - vendor/v8/build/gyp/test/msvs/uldi2010/hello.c
2295
2664
  - vendor/v8/build/gyp/test/msvs/uldi2010/hello.gyp
@@ -2312,6 +2681,13 @@ files:
2312
2681
  - vendor/v8/build/gyp/test/ninja/chained-dependency/chained-dependency.gyp
2313
2682
  - vendor/v8/build/gyp/test/ninja/chained-dependency/chained.c
2314
2683
  - vendor/v8/build/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py
2684
+ - vendor/v8/build/gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py
2685
+ - vendor/v8/build/gyp/test/ninja/normalize-paths-win/hello.cc
2686
+ - vendor/v8/build/gyp/test/ninja/normalize-paths-win/normalize-paths.gyp
2687
+ - vendor/v8/build/gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py
2688
+ - vendor/v8/build/gyp/test/ninja/solibs_avoid_relinking/main.cc
2689
+ - vendor/v8/build/gyp/test/ninja/solibs_avoid_relinking/solib.cc
2690
+ - vendor/v8/build/gyp/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp
2315
2691
  - vendor/v8/build/gyp/test/no-output/gyptest-no-output.py
2316
2692
  - vendor/v8/build/gyp/test/no-output/src/nooutput.gyp
2317
2693
  - vendor/v8/build/gyp/test/product/gyptest-product.py
@@ -2324,6 +2700,10 @@ files:
2324
2700
  - vendor/v8/build/gyp/test/relative/foo/b/b.cc
2325
2701
  - vendor/v8/build/gyp/test/relative/foo/b/b.gyp
2326
2702
  - vendor/v8/build/gyp/test/relative/gyptest-default.py
2703
+ - vendor/v8/build/gyp/test/rename/filecase/file.c
2704
+ - vendor/v8/build/gyp/test/rename/filecase/test-casesensitive.gyp
2705
+ - vendor/v8/build/gyp/test/rename/filecase/test.gyp
2706
+ - vendor/v8/build/gyp/test/rename/gyptest-filecase.py
2327
2707
  - vendor/v8/build/gyp/test/restat/gyptest-restat.py
2328
2708
  - vendor/v8/build/gyp/test/restat/src/create_intermediate.py
2329
2709
  - vendor/v8/build/gyp/test/restat/src/restat.gyp
@@ -2331,14 +2711,20 @@ files:
2331
2711
  - vendor/v8/build/gyp/test/rules/gyptest-all.py
2332
2712
  - vendor/v8/build/gyp/test/rules/gyptest-default.py
2333
2713
  - vendor/v8/build/gyp/test/rules/gyptest-input-root.py
2714
+ - vendor/v8/build/gyp/test/rules/gyptest-special-variables.py
2334
2715
  - vendor/v8/build/gyp/test/rules/src/actions.gyp
2716
+ - vendor/v8/build/gyp/test/rules/src/an_asm.S
2717
+ - vendor/v8/build/gyp/test/rules/src/as.bat
2335
2718
  - vendor/v8/build/gyp/test/rules/src/copy-file.py
2336
2719
  - vendor/v8/build/gyp/test/rules/src/external/external.gyp
2337
2720
  - vendor/v8/build/gyp/test/rules/src/external/file1.in
2338
2721
  - vendor/v8/build/gyp/test/rules/src/external/file2.in
2339
2722
  - vendor/v8/build/gyp/test/rules/src/input-root.gyp
2723
+ - vendor/v8/build/gyp/test/rules/src/noaction/file1.in
2724
+ - vendor/v8/build/gyp/test/rules/src/noaction/no_action_with_rules_fails.gyp
2340
2725
  - vendor/v8/build/gyp/test/rules/src/rule.py
2341
2726
  - vendor/v8/build/gyp/test/rules/src/somefile.ext
2727
+ - vendor/v8/build/gyp/test/rules/src/special-variables.gyp
2342
2728
  - vendor/v8/build/gyp/test/rules/src/subdir1/executable.gyp
2343
2729
  - vendor/v8/build/gyp/test/rules/src/subdir1/function1.in
2344
2730
  - vendor/v8/build/gyp/test/rules/src/subdir1/function2.in
@@ -2346,6 +2732,7 @@ files:
2346
2732
  - vendor/v8/build/gyp/test/rules/src/subdir2/file1.in
2347
2733
  - vendor/v8/build/gyp/test/rules/src/subdir2/file2.in
2348
2734
  - vendor/v8/build/gyp/test/rules/src/subdir2/never_used.gyp
2735
+ - vendor/v8/build/gyp/test/rules/src/subdir2/no_action.gyp
2349
2736
  - vendor/v8/build/gyp/test/rules/src/subdir2/no_inputs.gyp
2350
2737
  - vendor/v8/build/gyp/test/rules/src/subdir2/none.gyp
2351
2738
  - vendor/v8/build/gyp/test/rules/src/subdir3/executable2.gyp
@@ -2386,18 +2773,35 @@ files:
2386
2773
  - vendor/v8/build/gyp/test/same-gyp-name/src/subdir1/main1.cc
2387
2774
  - vendor/v8/build/gyp/test/same-gyp-name/src/subdir2/executable.gyp
2388
2775
  - vendor/v8/build/gyp/test/same-gyp-name/src/subdir2/main2.cc
2389
- - vendor/v8/build/gyp/test/same-name/gyptest-all.py
2390
- - vendor/v8/build/gyp/test/same-name/gyptest-default.py
2391
- - vendor/v8/build/gyp/test/same-name/src/all.gyp
2392
- - vendor/v8/build/gyp/test/same-name/src/func.c
2393
- - vendor/v8/build/gyp/test/same-name/src/prog1.c
2394
- - vendor/v8/build/gyp/test/same-name/src/prog2.c
2395
- - vendor/v8/build/gyp/test/same-name/src/subdir1/func.c
2396
- - vendor/v8/build/gyp/test/same-name/src/subdir2/func.c
2776
+ - vendor/v8/build/gyp/test/same-rule-output-file-name/gyptest-all.py
2777
+ - vendor/v8/build/gyp/test/same-rule-output-file-name/src/subdir1/subdir1.gyp
2778
+ - vendor/v8/build/gyp/test/same-rule-output-file-name/src/subdir2/subdir2.gyp
2779
+ - vendor/v8/build/gyp/test/same-rule-output-file-name/src/subdirs.gyp
2780
+ - vendor/v8/build/gyp/test/same-rule-output-file-name/src/touch.py
2781
+ - vendor/v8/build/gyp/test/same-source-file-name/gyptest-all.py
2782
+ - vendor/v8/build/gyp/test/same-source-file-name/gyptest-default.py
2783
+ - vendor/v8/build/gyp/test/same-source-file-name/gyptest-fail.py
2784
+ - vendor/v8/build/gyp/test/same-source-file-name/src/all.gyp
2785
+ - vendor/v8/build/gyp/test/same-source-file-name/src/double.gyp
2786
+ - vendor/v8/build/gyp/test/same-source-file-name/src/func.c
2787
+ - vendor/v8/build/gyp/test/same-source-file-name/src/prog1.c
2788
+ - vendor/v8/build/gyp/test/same-source-file-name/src/prog2.c
2789
+ - vendor/v8/build/gyp/test/same-source-file-name/src/subdir1/func.c
2790
+ - vendor/v8/build/gyp/test/same-source-file-name/src/subdir2/func.c
2397
2791
  - vendor/v8/build/gyp/test/same-target-name/gyptest-same-target-name.py
2398
2792
  - vendor/v8/build/gyp/test/same-target-name/src/all.gyp
2399
2793
  - vendor/v8/build/gyp/test/same-target-name/src/executable1.gyp
2400
2794
  - vendor/v8/build/gyp/test/same-target-name/src/executable2.gyp
2795
+ - vendor/v8/build/gyp/test/same-target-name-different-directory/gyptest-all.py
2796
+ - vendor/v8/build/gyp/test/same-target-name-different-directory/src/subdir1/subdir1.gyp
2797
+ - vendor/v8/build/gyp/test/same-target-name-different-directory/src/subdir2/subdir2.gyp
2798
+ - vendor/v8/build/gyp/test/same-target-name-different-directory/src/subdirs.gyp
2799
+ - vendor/v8/build/gyp/test/same-target-name-different-directory/src/touch.py
2800
+ - vendor/v8/build/gyp/test/sanitize-rule-names/blah.S
2801
+ - vendor/v8/build/gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py
2802
+ - vendor/v8/build/gyp/test/sanitize-rule-names/hello.cc
2803
+ - vendor/v8/build/gyp/test/sanitize-rule-names/sanitize-rule-names.gyp
2804
+ - vendor/v8/build/gyp/test/sanitize-rule-names/script.py
2401
2805
  - vendor/v8/build/gyp/test/scons_tools/gyptest-tools.py
2402
2806
  - vendor/v8/build/gyp/test/scons_tools/site_scons/site_tools/this_tool.py
2403
2807
  - vendor/v8/build/gyp/test/scons_tools/tools.c
@@ -2410,6 +2814,8 @@ files:
2410
2814
  - vendor/v8/build/gyp/test/sibling/src/prog2/prog2.c
2411
2815
  - vendor/v8/build/gyp/test/sibling/src/prog2/prog2.gyp
2412
2816
  - vendor/v8/build/gyp/test/small/gyptest-small.py
2817
+ - vendor/v8/build/gyp/test/standalone/gyptest-standalone.py
2818
+ - vendor/v8/build/gyp/test/standalone/standalone.gyp
2413
2819
  - vendor/v8/build/gyp/test/subdirectory/gyptest-subdir-all.py
2414
2820
  - vendor/v8/build/gyp/test/subdirectory/gyptest-subdir-default.py
2415
2821
  - vendor/v8/build/gyp/test/subdirectory/gyptest-subdir2-deep.py
@@ -2451,9 +2857,29 @@ files:
2451
2857
  - vendor/v8/build/gyp/test/variables/filelist/gyptest-filelist.py
2452
2858
  - vendor/v8/build/gyp/test/variables/filelist/src/filelist.gyp
2453
2859
  - vendor/v8/build/gyp/test/variables/filelist/update_golden
2860
+ - vendor/v8/build/gyp/test/variables/latelate/gyptest-latelate.py
2861
+ - vendor/v8/build/gyp/test/variables/latelate/src/latelate.gyp
2862
+ - vendor/v8/build/gyp/test/variables/latelate/src/program.cc
2863
+ - vendor/v8/build/gyp/test/variables/variable-in-path/C1/hello.cc
2864
+ - vendor/v8/build/gyp/test/variables/variable-in-path/gyptest-variable-in-path.py
2865
+ - vendor/v8/build/gyp/test/variables/variable-in-path/variable-in-path.gyp
2454
2866
  - vendor/v8/build/gyp/test/variants/gyptest-variants.py
2455
2867
  - vendor/v8/build/gyp/test/variants/src/variants.c
2456
2868
  - vendor/v8/build/gyp/test/variants/src/variants.gyp
2869
+ - vendor/v8/build/gyp/test/win/asm-files/asm-files.gyp
2870
+ - vendor/v8/build/gyp/test/win/asm-files/b.s
2871
+ - vendor/v8/build/gyp/test/win/asm-files/c.S
2872
+ - vendor/v8/build/gyp/test/win/asm-files/hello.cc
2873
+ - vendor/v8/build/gyp/test/win/batch-file-action/batch-file-action.gyp
2874
+ - vendor/v8/build/gyp/test/win/batch-file-action/infile
2875
+ - vendor/v8/build/gyp/test/win/batch-file-action/somecmd.bat
2876
+ - vendor/v8/build/gyp/test/win/command-quote/a.S
2877
+ - vendor/v8/build/gyp/test/win/command-quote/bat with spaces.bat
2878
+ - vendor/v8/build/gyp/test/win/command-quote/command-quote.gyp
2879
+ - vendor/v8/build/gyp/test/win/command-quote/go.bat
2880
+ - vendor/v8/build/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp
2881
+ - vendor/v8/build/gyp/test/win/compiler-flags/additional-include-dirs.cc
2882
+ - vendor/v8/build/gyp/test/win/compiler-flags/additional-include-dirs.gyp
2457
2883
  - vendor/v8/build/gyp/test/win/compiler-flags/additional-options.cc
2458
2884
  - vendor/v8/build/gyp/test/win/compiler-flags/additional-options.gyp
2459
2885
  - vendor/v8/build/gyp/test/win/compiler-flags/buffer-security-check.gyp
@@ -2468,6 +2894,8 @@ files:
2468
2894
  - vendor/v8/build/gyp/test/win/compiler-flags/function-level-linking.gyp
2469
2895
  - vendor/v8/build/gyp/test/win/compiler-flags/hello.cc
2470
2896
  - vendor/v8/build/gyp/test/win/compiler-flags/optimizations.gyp
2897
+ - vendor/v8/build/gyp/test/win/compiler-flags/pdbname.cc
2898
+ - vendor/v8/build/gyp/test/win/compiler-flags/pdbname.gyp
2471
2899
  - vendor/v8/build/gyp/test/win/compiler-flags/rtti-on.cc
2472
2900
  - vendor/v8/build/gyp/test/win/compiler-flags/rtti.gyp
2473
2901
  - vendor/v8/build/gyp/test/win/compiler-flags/runtime-checks.cc
@@ -2477,6 +2905,7 @@ files:
2477
2905
  - vendor/v8/build/gyp/test/win/compiler-flags/runtime-library-mt.cc
2478
2906
  - vendor/v8/build/gyp/test/win/compiler-flags/runtime-library-mtd.cc
2479
2907
  - vendor/v8/build/gyp/test/win/compiler-flags/runtime-library.gyp
2908
+ - vendor/v8/build/gyp/test/win/compiler-flags/subdir/header.h
2480
2909
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-as-error.cc
2481
2910
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-as-error.gyp
2482
2911
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-level.gyp
@@ -2484,6 +2913,8 @@ files:
2484
2913
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-level2.cc
2485
2914
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-level3.cc
2486
2915
  - vendor/v8/build/gyp/test/win/compiler-flags/warning-level4.cc
2916
+ - vendor/v8/build/gyp/test/win/gyptest-asm-files.py
2917
+ - vendor/v8/build/gyp/test/win/gyptest-cl-additional-include-dirs.py
2487
2918
  - vendor/v8/build/gyp/test/win/gyptest-cl-additional-options.py
2488
2919
  - vendor/v8/build/gyp/test/win/gyptest-cl-buffer-security-check.py
2489
2920
  - vendor/v8/build/gyp/test/win/gyptest-cl-character-set.py
@@ -2491,25 +2922,48 @@ files:
2491
2922
  - vendor/v8/build/gyp/test/win/gyptest-cl-exception-handling.py
2492
2923
  - vendor/v8/build/gyp/test/win/gyptest-cl-function-level-linking.py
2493
2924
  - vendor/v8/build/gyp/test/win/gyptest-cl-optimizations.py
2925
+ - vendor/v8/build/gyp/test/win/gyptest-cl-pdbname.py
2494
2926
  - vendor/v8/build/gyp/test/win/gyptest-cl-rtti.py
2495
2927
  - vendor/v8/build/gyp/test/win/gyptest-cl-runtime-checks.py
2496
2928
  - vendor/v8/build/gyp/test/win/gyptest-cl-runtime-library.py
2497
2929
  - vendor/v8/build/gyp/test/win/gyptest-cl-warning-as-error.py
2498
2930
  - vendor/v8/build/gyp/test/win/gyptest-cl-warning-level.py
2931
+ - vendor/v8/build/gyp/test/win/gyptest-command-quote.py
2499
2932
  - vendor/v8/build/gyp/test/win/gyptest-link-additional-deps.py
2500
2933
  - vendor/v8/build/gyp/test/win/gyptest-link-additional-options.py
2501
2934
  - vendor/v8/build/gyp/test/win/gyptest-link-aslr.py
2502
2935
  - vendor/v8/build/gyp/test/win/gyptest-link-debug-info.py
2503
2936
  - vendor/v8/build/gyp/test/win/gyptest-link-default-libs.py
2937
+ - vendor/v8/build/gyp/test/win/gyptest-link-deffile.py
2504
2938
  - vendor/v8/build/gyp/test/win/gyptest-link-delay-load-dlls.py
2939
+ - vendor/v8/build/gyp/test/win/gyptest-link-entrypointsymbol.py
2505
2940
  - vendor/v8/build/gyp/test/win/gyptest-link-fixed-base.py
2941
+ - vendor/v8/build/gyp/test/win/gyptest-link-generate-manifest.py
2506
2942
  - vendor/v8/build/gyp/test/win/gyptest-link-incremental.py
2943
+ - vendor/v8/build/gyp/test/win/gyptest-link-library-adjust.py
2507
2944
  - vendor/v8/build/gyp/test/win/gyptest-link-library-directories.py
2945
+ - vendor/v8/build/gyp/test/win/gyptest-link-nodefaultlib.py
2508
2946
  - vendor/v8/build/gyp/test/win/gyptest-link-nxcompat.py
2509
2947
  - vendor/v8/build/gyp/test/win/gyptest-link-opt-icf.py
2510
2948
  - vendor/v8/build/gyp/test/win/gyptest-link-opt-ref.py
2949
+ - vendor/v8/build/gyp/test/win/gyptest-link-outputfile.py
2950
+ - vendor/v8/build/gyp/test/win/gyptest-link-restat-importlib.py
2511
2951
  - vendor/v8/build/gyp/test/win/gyptest-link-subsystem.py
2952
+ - vendor/v8/build/gyp/test/win/gyptest-link-uldi.py
2512
2953
  - vendor/v8/build/gyp/test/win/gyptest-long-command-line.py
2954
+ - vendor/v8/build/gyp/test/win/gyptest-macro-projectname.py
2955
+ - vendor/v8/build/gyp/test/win/gyptest-macro-vcinstalldir.py
2956
+ - vendor/v8/build/gyp/test/win/gyptest-macros-containing-gyp.py
2957
+ - vendor/v8/build/gyp/test/win/gyptest-macros-in-inputs-and-outputs.py
2958
+ - vendor/v8/build/gyp/test/win/gyptest-midl-rules.py
2959
+ - vendor/v8/build/gyp/test/win/gyptest-quoting-commands.py
2960
+ - vendor/v8/build/gyp/test/win/gyptest-rc-build.py
2961
+ - vendor/v8/build/gyp/test/win/idl-rules/basic-idl.gyp
2962
+ - vendor/v8/build/gyp/test/win/idl-rules/history_indexer.idl
2963
+ - vendor/v8/build/gyp/test/win/idl-rules/history_indexer_user.cc
2964
+ - vendor/v8/build/gyp/test/win/importlib/has-exports.cc
2965
+ - vendor/v8/build/gyp/test/win/importlib/hello.cc
2966
+ - vendor/v8/build/gyp/test/win/importlib/importlib.gyp
2513
2967
  - vendor/v8/build/gyp/test/win/linker-flags/additional-deps.cc
2514
2968
  - vendor/v8/build/gyp/test/win/linker-flags/additional-deps.gyp
2515
2969
  - vendor/v8/build/gyp/test/win/linker-flags/additional-options.gyp
@@ -2517,24 +2971,74 @@ files:
2517
2971
  - vendor/v8/build/gyp/test/win/linker-flags/debug-info.gyp
2518
2972
  - vendor/v8/build/gyp/test/win/linker-flags/default-libs.cc
2519
2973
  - vendor/v8/build/gyp/test/win/linker-flags/default-libs.gyp
2974
+ - vendor/v8/build/gyp/test/win/linker-flags/deffile-multiple.gyp
2975
+ - vendor/v8/build/gyp/test/win/linker-flags/deffile.cc
2976
+ - vendor/v8/build/gyp/test/win/linker-flags/deffile.def
2977
+ - vendor/v8/build/gyp/test/win/linker-flags/deffile.gyp
2520
2978
  - vendor/v8/build/gyp/test/win/linker-flags/delay-load-dlls.gyp
2521
2979
  - vendor/v8/build/gyp/test/win/linker-flags/delay-load.cc
2980
+ - vendor/v8/build/gyp/test/win/linker-flags/entrypointsymbol.cc
2981
+ - vendor/v8/build/gyp/test/win/linker-flags/entrypointsymbol.gyp
2982
+ - vendor/v8/build/gyp/test/win/linker-flags/extra.manifest
2983
+ - vendor/v8/build/gyp/test/win/linker-flags/extra2.manifest
2522
2984
  - vendor/v8/build/gyp/test/win/linker-flags/fixed-base.gyp
2985
+ - vendor/v8/build/gyp/test/win/linker-flags/generate-manifest.gyp
2523
2986
  - vendor/v8/build/gyp/test/win/linker-flags/hello.cc
2524
2987
  - vendor/v8/build/gyp/test/win/linker-flags/incremental.gyp
2988
+ - vendor/v8/build/gyp/test/win/linker-flags/library-adjust.cc
2989
+ - vendor/v8/build/gyp/test/win/linker-flags/library-adjust.gyp
2525
2990
  - vendor/v8/build/gyp/test/win/linker-flags/library-directories-define.cc
2526
2991
  - vendor/v8/build/gyp/test/win/linker-flags/library-directories-reference.cc
2527
2992
  - vendor/v8/build/gyp/test/win/linker-flags/library-directories.gyp
2993
+ - vendor/v8/build/gyp/test/win/linker-flags/nodefaultlib.cc
2994
+ - vendor/v8/build/gyp/test/win/linker-flags/nodefaultlib.gyp
2528
2995
  - vendor/v8/build/gyp/test/win/linker-flags/nxcompat.gyp
2529
2996
  - vendor/v8/build/gyp/test/win/linker-flags/opt-icf.cc
2530
2997
  - vendor/v8/build/gyp/test/win/linker-flags/opt-icf.gyp
2531
2998
  - vendor/v8/build/gyp/test/win/linker-flags/opt-ref.cc
2532
2999
  - vendor/v8/build/gyp/test/win/linker-flags/opt-ref.gyp
3000
+ - vendor/v8/build/gyp/test/win/linker-flags/outputfile.gyp
2533
3001
  - vendor/v8/build/gyp/test/win/linker-flags/subdir/library.gyp
2534
3002
  - vendor/v8/build/gyp/test/win/linker-flags/subsystem-windows.cc
2535
3003
  - vendor/v8/build/gyp/test/win/linker-flags/subsystem.gyp
3004
+ - vendor/v8/build/gyp/test/win/long-command-line/function.cc
2536
3005
  - vendor/v8/build/gyp/test/win/long-command-line/hello.cc
2537
3006
  - vendor/v8/build/gyp/test/win/long-command-line/long-command-line.gyp
3007
+ - vendor/v8/build/gyp/test/win/precompiled/gyptest-all.py
3008
+ - vendor/v8/build/gyp/test/win/precompiled/hello.c
3009
+ - vendor/v8/build/gyp/test/win/precompiled/hello.gyp
3010
+ - vendor/v8/build/gyp/test/win/precompiled/hello2.c
3011
+ - vendor/v8/build/gyp/test/win/precompiled/precomp.c
3012
+ - vendor/v8/build/gyp/test/win/rc-build/hello.cpp
3013
+ - vendor/v8/build/gyp/test/win/rc-build/hello.gyp
3014
+ - vendor/v8/build/gyp/test/win/rc-build/hello.h
3015
+ - vendor/v8/build/gyp/test/win/rc-build/hello.ico
3016
+ - vendor/v8/build/gyp/test/win/rc-build/hello.rc
3017
+ - vendor/v8/build/gyp/test/win/rc-build/Resource.h
3018
+ - vendor/v8/build/gyp/test/win/rc-build/small.ico
3019
+ - vendor/v8/build/gyp/test/win/rc-build/subdir/hello2.rc
3020
+ - vendor/v8/build/gyp/test/win/rc-build/subdir/include.h
3021
+ - vendor/v8/build/gyp/test/win/rc-build/targetver.h
3022
+ - vendor/v8/build/gyp/test/win/uldi/a.cc
3023
+ - vendor/v8/build/gyp/test/win/uldi/b.cc
3024
+ - vendor/v8/build/gyp/test/win/uldi/main.cc
3025
+ - vendor/v8/build/gyp/test/win/uldi/uldi.gyp
3026
+ - vendor/v8/build/gyp/test/win/vs-macros/as.py
3027
+ - vendor/v8/build/gyp/test/win/vs-macros/containing-gyp.gyp
3028
+ - vendor/v8/build/gyp/test/win/vs-macros/do_stuff.py
3029
+ - vendor/v8/build/gyp/test/win/vs-macros/hello.cc
3030
+ - vendor/v8/build/gyp/test/win/vs-macros/input-output-macros.gyp
3031
+ - vendor/v8/build/gyp/test/win/vs-macros/input.S
3032
+ - vendor/v8/build/gyp/test/win/vs-macros/projectname.gyp
3033
+ - vendor/v8/build/gyp/test/win/vs-macros/stuff.blah
3034
+ - vendor/v8/build/gyp/test/win/vs-macros/test_exists.py
3035
+ - vendor/v8/build/gyp/test/win/vs-macros/vcinstalldir.gyp
3036
+ - vendor/v8/build/gyp/tools/emacs/gyp-tests.el
3037
+ - vendor/v8/build/gyp/tools/emacs/gyp.el
3038
+ - vendor/v8/build/gyp/tools/emacs/README
3039
+ - vendor/v8/build/gyp/tools/emacs/run-unit-tests.sh
3040
+ - vendor/v8/build/gyp/tools/emacs/testdata/media.gyp
3041
+ - vendor/v8/build/gyp/tools/emacs/testdata/media.gyp.fontified
2538
3042
  - vendor/v8/build/gyp/tools/graphviz.py
2539
3043
  - vendor/v8/build/gyp/tools/pretty_gyp.py
2540
3044
  - vendor/v8/build/gyp/tools/pretty_sln.py