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
@@ -76,16 +76,22 @@ void CodeGenerator::MakeCodePrologue(CompilationInfo* info) {
76
76
 
77
77
  if (FLAG_trace_codegen || print_source || print_ast) {
78
78
  PrintF("*** Generate code for %s function: ", ftype);
79
- info->function()->name()->ShortPrint();
79
+ if (info->IsStub()) {
80
+ const char* name =
81
+ CodeStub::MajorName(info->code_stub()->MajorKey(), true);
82
+ PrintF("%s", name == NULL ? "<unknown>" : name);
83
+ } else {
84
+ info->function()->name()->ShortPrint();
85
+ }
80
86
  PrintF(" ***\n");
81
87
  }
82
88
 
83
- if (print_source) {
89
+ if (!info->IsStub() && print_source) {
84
90
  PrintF("--- Source from AST ---\n%s\n",
85
91
  PrettyPrinter().PrintProgram(info->function()));
86
92
  }
87
93
 
88
- if (print_ast) {
94
+ if (!info->IsStub() && print_ast) {
89
95
  PrintF("--- AST ---\n%s\n",
90
96
  AstPrinter().PrintProgram(info->function()));
91
97
  }
@@ -107,6 +113,7 @@ Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
107
113
  if (!code.is_null()) {
108
114
  isolate->counters()->total_compiled_code_size()->Increment(
109
115
  code->instruction_size());
116
+ code->set_prologue_offset(info->prologue_offset());
110
117
  }
111
118
  return code;
112
119
  }
@@ -116,23 +123,29 @@ void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) {
116
123
  #ifdef ENABLE_DISASSEMBLER
117
124
  bool print_code = Isolate::Current()->bootstrapper()->IsActive()
118
125
  ? FLAG_print_builtin_code
119
- : (FLAG_print_code || (info->IsOptimizing() && FLAG_print_opt_code));
126
+ : (FLAG_print_code ||
127
+ (info->IsStub() && FLAG_print_code_stubs) ||
128
+ (info->IsOptimizing() && FLAG_print_opt_code));
120
129
  if (print_code) {
121
130
  // Print the source code if available.
122
131
  FunctionLiteral* function = info->function();
123
- Handle<Script> script = info->script();
124
- if (!script->IsUndefined() && !script->source()->IsUndefined()) {
125
- PrintF("--- Raw source ---\n");
126
- StringInputBuffer stream(String::cast(script->source()));
127
- stream.Seek(function->start_position());
128
- // fun->end_position() points to the last character in the stream. We
129
- // need to compensate by adding one to calculate the length.
130
- int source_len =
131
- function->end_position() - function->start_position() + 1;
132
- for (int i = 0; i < source_len; i++) {
133
- if (stream.has_more()) PrintF("%c", stream.GetNext());
132
+ if (code->kind() != Code::COMPILED_STUB) {
133
+ Handle<Script> script = info->script();
134
+ if (!script->IsUndefined() && !script->source()->IsUndefined()) {
135
+ PrintF("--- Raw source ---\n");
136
+ ConsStringIteratorOp op;
137
+ StringCharacterStream stream(String::cast(script->source()),
138
+ &op,
139
+ function->start_position());
140
+ // fun->end_position() points to the last character in the stream. We
141
+ // need to compensate by adding one to calculate the length.
142
+ int source_len =
143
+ function->end_position() - function->start_position() + 1;
144
+ for (int i = 0; i < source_len; i++) {
145
+ if (stream.HasMore()) PrintF("%c", stream.GetNext());
146
+ }
147
+ PrintF("\n\n");
134
148
  }
135
- PrintF("\n\n");
136
149
  }
137
150
  if (info->IsOptimizing()) {
138
151
  if (FLAG_print_unopt_code) {
@@ -144,7 +157,12 @@ void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) {
144
157
  } else {
145
158
  PrintF("--- Code ---\n");
146
159
  }
147
- code->Disassemble(*function->debug_name()->ToCString());
160
+ if (info->IsStub()) {
161
+ CodeStub::Major major_key = info->code_stub()->MajorKey();
162
+ code->Disassemble(CodeStub::MajorName(major_key, false));
163
+ } else {
164
+ code->Disassemble(*function->debug_name()->ToCString());
165
+ }
148
166
  }
149
167
  #endif // ENABLE_DISASSEMBLER
150
168
  }
@@ -158,7 +176,7 @@ bool CodeGenerator::ShouldGenerateLog(Expression* type) {
158
176
  }
159
177
  Handle<String> name = Handle<String>::cast(type->AsLiteral()->handle());
160
178
  if (FLAG_log_regexp) {
161
- if (name->IsEqualTo(CStrVector("regexp")))
179
+ if (name->IsOneByteEqualTo(STATIC_ASCII_VECTOR("regexp")))
162
180
  return true;
163
181
  }
164
182
  return false;
@@ -90,19 +90,41 @@ namespace internal {
90
90
  typedef double (*UnaryMathFunction)(double x);
91
91
 
92
92
  UnaryMathFunction CreateTranscendentalFunction(TranscendentalCache::Type type);
93
+ UnaryMathFunction CreateExpFunction();
93
94
  UnaryMathFunction CreateSqrtFunction();
94
95
 
95
96
 
96
97
  class ElementsTransitionGenerator : public AllStatic {
97
98
  public:
98
- static void GenerateMapChangeElementsTransition(MacroAssembler* masm);
99
- static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail);
100
- static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail);
99
+ // If |mode| is set to DONT_TRACK_ALLOCATION_SITE,
100
+ // |allocation_site_info_found| may be NULL.
101
+ static void GenerateMapChangeElementsTransition(MacroAssembler* masm,
102
+ AllocationSiteMode mode,
103
+ Label* allocation_site_info_found);
104
+ static void GenerateSmiToDouble(MacroAssembler* masm,
105
+ AllocationSiteMode mode,
106
+ Label* fail);
107
+ static void GenerateDoubleToObject(MacroAssembler* masm,
108
+ AllocationSiteMode mode,
109
+ Label* fail);
101
110
 
102
111
  private:
103
112
  DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator);
104
113
  };
105
114
 
115
+
116
+ class SeqStringSetCharGenerator : public AllStatic {
117
+ public:
118
+ static void Generate(MacroAssembler* masm,
119
+ String::Encoding encoding,
120
+ Register string,
121
+ Register index,
122
+ Register value);
123
+ private:
124
+ DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator);
125
+ };
126
+
127
+
106
128
  } } // namespace v8::internal
107
129
 
108
130
  #endif // V8_CODEGEN_H_
@@ -1,4 +1,4 @@
1
- // Copyright 2011 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:
@@ -79,7 +79,31 @@ function SetDelete(key) {
79
79
  if (IS_UNDEFINED(key)) {
80
80
  key = undefined_sentinel;
81
81
  }
82
- return %SetDelete(this, key);
82
+ if (%SetHas(this, key)) {
83
+ %SetDelete(this, key);
84
+ return true;
85
+ } else {
86
+ return false;
87
+ }
88
+ }
89
+
90
+
91
+ function SetGetSize() {
92
+ if (!IS_SET(this)) {
93
+ throw MakeTypeError('incompatible_method_receiver',
94
+ ['Set.prototype.size', this]);
95
+ }
96
+ return %SetGetSize(this);
97
+ }
98
+
99
+
100
+ function SetClear() {
101
+ if (!IS_SET(this)) {
102
+ throw MakeTypeError('incompatible_method_receiver',
103
+ ['Set.prototype.clear', this]);
104
+ }
105
+ // Replace the internal table with a new empty table.
106
+ %SetInitialize(this);
83
107
  }
84
108
 
85
109
 
@@ -124,7 +148,7 @@ function MapHas(key) {
124
148
  if (IS_UNDEFINED(key)) {
125
149
  key = undefined_sentinel;
126
150
  }
127
- return !IS_UNDEFINED(%MapGet(this, key));
151
+ return %MapHas(this, key);
128
152
  }
129
153
 
130
154
 
@@ -136,12 +160,26 @@ function MapDelete(key) {
136
160
  if (IS_UNDEFINED(key)) {
137
161
  key = undefined_sentinel;
138
162
  }
139
- if (!IS_UNDEFINED(%MapGet(this, key))) {
140
- %MapSet(this, key, void 0);
141
- return true;
142
- } else {
143
- return false;
163
+ return %MapDelete(this, key);
164
+ }
165
+
166
+
167
+ function MapGetSize() {
168
+ if (!IS_MAP(this)) {
169
+ throw MakeTypeError('incompatible_method_receiver',
170
+ ['Map.prototype.size', this]);
144
171
  }
172
+ return %MapGetSize(this);
173
+ }
174
+
175
+
176
+ function MapClear() {
177
+ if (!IS_MAP(this)) {
178
+ throw MakeTypeError('incompatible_method_receiver',
179
+ ['Map.prototype.clear', this]);
180
+ }
181
+ // Replace the internal table with a new empty table.
182
+ %MapInitialize(this);
145
183
  }
146
184
 
147
185
 
@@ -186,7 +224,7 @@ function WeakMapHas(key) {
186
224
  if (!IS_SPEC_OBJECT(key)) {
187
225
  throw %MakeTypeError('invalid_weakmap_key', [this, key]);
188
226
  }
189
- return !IS_UNDEFINED(%WeakMapGet(this, key));
227
+ return %WeakMapHas(this, key);
190
228
  }
191
229
 
192
230
 
@@ -198,12 +236,7 @@ function WeakMapDelete(key) {
198
236
  if (!IS_SPEC_OBJECT(key)) {
199
237
  throw %MakeTypeError('invalid_weakmap_key', [this, key]);
200
238
  }
201
- if (!IS_UNDEFINED(%WeakMapGet(this, key))) {
202
- %WeakMapSet(this, key, void 0);
203
- return true;
204
- } else {
205
- return false;
206
- }
239
+ return %WeakMapDelete(this, key);
207
240
  }
208
241
 
209
242
  // -------------------------------------------------------------------
@@ -220,18 +253,22 @@ function WeakMapDelete(key) {
220
253
  %SetProperty($Map.prototype, "constructor", $Map, DONT_ENUM);
221
254
 
222
255
  // Set up the non-enumerable functions on the Set prototype object.
256
+ InstallGetter($Set.prototype, "size", SetGetSize);
223
257
  InstallFunctions($Set.prototype, DONT_ENUM, $Array(
224
258
  "add", SetAdd,
225
259
  "has", SetHas,
226
- "delete", SetDelete
260
+ "delete", SetDelete,
261
+ "clear", SetClear
227
262
  ));
228
263
 
229
264
  // Set up the non-enumerable functions on the Map prototype object.
265
+ InstallGetter($Map.prototype, "size", MapGetSize);
230
266
  InstallFunctions($Map.prototype, DONT_ENUM, $Array(
231
267
  "get", MapGet,
232
268
  "set", MapSet,
233
269
  "has", MapHas,
234
- "delete", MapDelete
270
+ "delete", MapDelete,
271
+ "clear", MapClear
235
272
  ));
236
273
 
237
274
  // Set up the WeakMap constructor function.
@@ -98,7 +98,7 @@ void CompilationSubCache::Age() {
98
98
 
99
99
 
100
100
  void CompilationSubCache::IterateFunctions(ObjectVisitor* v) {
101
- Object* undefined = isolate()->heap()->raw_unchecked_undefined_value();
101
+ Object* undefined = isolate()->heap()->undefined_value();
102
102
  for (int i = 0; i < generations_; i++) {
103
103
  if (tables_[i] != undefined) {
104
104
  reinterpret_cast<CompilationCacheTable*>(tables_[i])->IterateElements(v);
@@ -165,10 +165,12 @@ bool CompilationCacheScript::HasOrigin(
165
165
  // be cached in the same script generation. Currently the first use
166
166
  // will be cached, but subsequent code from different source / line
167
167
  // won't.
168
- Handle<SharedFunctionInfo> CompilationCacheScript::Lookup(Handle<String> source,
169
- Handle<Object> name,
170
- int line_offset,
171
- int column_offset) {
168
+ Handle<SharedFunctionInfo> CompilationCacheScript::Lookup(
169
+ Handle<String> source,
170
+ Handle<Object> name,
171
+ int line_offset,
172
+ int column_offset,
173
+ Handle<Context> context) {
172
174
  Object* result = NULL;
173
175
  int generation;
174
176
 
@@ -177,7 +179,7 @@ Handle<SharedFunctionInfo> CompilationCacheScript::Lookup(Handle<String> source,
177
179
  { HandleScope scope(isolate());
178
180
  for (generation = 0; generation < generations(); generation++) {
179
181
  Handle<CompilationCacheTable> table = GetTable(generation);
180
- Handle<Object> probe(table->Lookup(*source), isolate());
182
+ Handle<Object> probe(table->Lookup(*source, *context), isolate());
181
183
  if (probe->IsSharedFunctionInfo()) {
182
184
  Handle<SharedFunctionInfo> function_info =
183
185
  Handle<SharedFunctionInfo>::cast(probe);
@@ -214,7 +216,7 @@ Handle<SharedFunctionInfo> CompilationCacheScript::Lookup(Handle<String> source,
214
216
  ASSERT(HasOrigin(shared, name, line_offset, column_offset));
215
217
  // If the script was found in a later generation, we promote it to
216
218
  // the first generation to let it survive longer in the cache.
217
- if (generation != 0) Put(source, shared);
219
+ if (generation != 0) Put(source, context, shared);
218
220
  isolate()->counters()->compilation_cache_hits()->Increment();
219
221
  return shared;
220
222
  } else {
@@ -226,25 +228,28 @@ Handle<SharedFunctionInfo> CompilationCacheScript::Lookup(Handle<String> source,
226
228
 
227
229
  MaybeObject* CompilationCacheScript::TryTablePut(
228
230
  Handle<String> source,
231
+ Handle<Context> context,
229
232
  Handle<SharedFunctionInfo> function_info) {
230
233
  Handle<CompilationCacheTable> table = GetFirstTable();
231
- return table->Put(*source, *function_info);
234
+ return table->Put(*source, *context, *function_info);
232
235
  }
233
236
 
234
237
 
235
238
  Handle<CompilationCacheTable> CompilationCacheScript::TablePut(
236
239
  Handle<String> source,
240
+ Handle<Context> context,
237
241
  Handle<SharedFunctionInfo> function_info) {
238
242
  CALL_HEAP_FUNCTION(isolate(),
239
- TryTablePut(source, function_info),
243
+ TryTablePut(source, context, function_info),
240
244
  CompilationCacheTable);
241
245
  }
242
246
 
243
247
 
244
248
  void CompilationCacheScript::Put(Handle<String> source,
249
+ Handle<Context> context,
245
250
  Handle<SharedFunctionInfo> function_info) {
246
251
  HandleScope scope(isolate());
247
- SetFirstTable(TablePut(source, function_info));
252
+ SetFirstTable(TablePut(source, context, function_info));
248
253
  }
249
254
 
250
255
 
@@ -380,15 +385,17 @@ void CompilationCache::Remove(Handle<SharedFunctionInfo> function_info) {
380
385
  }
381
386
 
382
387
 
383
- Handle<SharedFunctionInfo> CompilationCache::LookupScript(Handle<String> source,
384
- Handle<Object> name,
385
- int line_offset,
386
- int column_offset) {
388
+ Handle<SharedFunctionInfo> CompilationCache::LookupScript(
389
+ Handle<String> source,
390
+ Handle<Object> name,
391
+ int line_offset,
392
+ int column_offset,
393
+ Handle<Context> context) {
387
394
  if (!IsEnabled()) {
388
395
  return Handle<SharedFunctionInfo>::null();
389
396
  }
390
397
 
391
- return script_.Lookup(source, name, line_offset, column_offset);
398
+ return script_.Lookup(source, name, line_offset, column_offset, context);
392
399
  }
393
400
 
394
401
 
@@ -426,12 +433,13 @@ Handle<FixedArray> CompilationCache::LookupRegExp(Handle<String> source,
426
433
 
427
434
 
428
435
  void CompilationCache::PutScript(Handle<String> source,
436
+ Handle<Context> context,
429
437
  Handle<SharedFunctionInfo> function_info) {
430
438
  if (!IsEnabled()) {
431
439
  return;
432
440
  }
433
441
 
434
- script_.Put(source, function_info);
442
+ script_.Put(source, context, function_info);
435
443
  }
436
444
 
437
445
 
@@ -98,16 +98,23 @@ class CompilationCacheScript : public CompilationSubCache {
98
98
  Handle<SharedFunctionInfo> Lookup(Handle<String> source,
99
99
  Handle<Object> name,
100
100
  int line_offset,
101
- int column_offset);
102
- void Put(Handle<String> source, Handle<SharedFunctionInfo> function_info);
101
+ int column_offset,
102
+ Handle<Context> context);
103
+ void Put(Handle<String> source,
104
+ Handle<Context> context,
105
+ Handle<SharedFunctionInfo> function_info);
103
106
 
104
107
  private:
105
108
  MUST_USE_RESULT MaybeObject* TryTablePut(
106
- Handle<String> source, Handle<SharedFunctionInfo> function_info);
109
+ Handle<String> source,
110
+ Handle<Context> context,
111
+ Handle<SharedFunctionInfo> function_info);
107
112
 
108
113
  // Note: Returns a new hash table if operation results in expansion.
109
114
  Handle<CompilationCacheTable> TablePut(
110
- Handle<String> source, Handle<SharedFunctionInfo> function_info);
115
+ Handle<String> source,
116
+ Handle<Context> context,
117
+ Handle<SharedFunctionInfo> function_info);
111
118
 
112
119
  bool HasOrigin(Handle<SharedFunctionInfo> function_info,
113
120
  Handle<Object> name,
@@ -122,7 +129,7 @@ class CompilationCacheScript : public CompilationSubCache {
122
129
 
123
130
 
124
131
  // Sub-cache for eval scripts. Two caches for eval are used. One for eval calls
125
- // in global contexts and one for eval calls in other contexts. The cache
132
+ // in native contexts and one for eval calls in other contexts. The cache
126
133
  // considers the following pieces of information when checking for matching
127
134
  // entries:
128
135
  // 1. The source string.
@@ -204,7 +211,8 @@ class CompilationCache {
204
211
  Handle<SharedFunctionInfo> LookupScript(Handle<String> source,
205
212
  Handle<Object> name,
206
213
  int line_offset,
207
- int column_offset);
214
+ int column_offset,
215
+ Handle<Context> context);
208
216
 
209
217
  // Finds the shared function info for a source string for eval in a
210
218
  // given context. Returns an empty handle if the cache doesn't
@@ -223,6 +231,7 @@ class CompilationCache {
223
231
  // Associate the (source, kind) pair to the shared function
224
232
  // info. This may overwrite an existing mapping.
225
233
  void PutScript(Handle<String> source,
234
+ Handle<Context> context,
226
235
  Handle<SharedFunctionInfo> function_info);
227
236
 
228
237
  // Associate the (source, context->closure()->shared(), kind) triple
@@ -51,50 +51,102 @@ namespace v8 {
51
51
  namespace internal {
52
52
 
53
53
 
54
- CompilationInfo::CompilationInfo(Handle<Script> script)
55
- : isolate_(script->GetIsolate()),
56
- flags_(LanguageModeField::encode(CLASSIC_MODE)),
57
- function_(NULL),
58
- scope_(NULL),
59
- global_scope_(NULL),
54
+ CompilationInfo::CompilationInfo(Handle<Script> script, Zone* zone)
55
+ : flags_(LanguageModeField::encode(CLASSIC_MODE)),
60
56
  script_(script),
61
- extension_(NULL),
62
- pre_parse_data_(NULL),
63
- osr_ast_id_(AstNode::kNoNumber) {
64
- Initialize(BASE);
57
+ osr_ast_id_(BailoutId::None()) {
58
+ Initialize(script->GetIsolate(), BASE, zone);
65
59
  }
66
60
 
67
61
 
68
- CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info)
69
- : isolate_(shared_info->GetIsolate()),
70
- flags_(LanguageModeField::encode(CLASSIC_MODE) |
71
- IsLazy::encode(true)),
72
- function_(NULL),
73
- scope_(NULL),
74
- global_scope_(NULL),
62
+ CompilationInfo::CompilationInfo(Handle<SharedFunctionInfo> shared_info,
63
+ Zone* zone)
64
+ : flags_(LanguageModeField::encode(CLASSIC_MODE) | IsLazy::encode(true)),
75
65
  shared_info_(shared_info),
76
66
  script_(Handle<Script>(Script::cast(shared_info->script()))),
77
- extension_(NULL),
78
- pre_parse_data_(NULL),
79
- osr_ast_id_(AstNode::kNoNumber) {
80
- Initialize(BASE);
67
+ osr_ast_id_(BailoutId::None()) {
68
+ Initialize(script_->GetIsolate(), BASE, zone);
81
69
  }
82
70
 
83
71
 
84
- CompilationInfo::CompilationInfo(Handle<JSFunction> closure)
85
- : isolate_(closure->GetIsolate()),
86
- flags_(LanguageModeField::encode(CLASSIC_MODE) |
87
- IsLazy::encode(true)),
88
- function_(NULL),
89
- scope_(NULL),
90
- global_scope_(NULL),
72
+ CompilationInfo::CompilationInfo(Handle<JSFunction> closure, Zone* zone)
73
+ : flags_(LanguageModeField::encode(CLASSIC_MODE) | IsLazy::encode(true)),
91
74
  closure_(closure),
92
75
  shared_info_(Handle<SharedFunctionInfo>(closure->shared())),
93
76
  script_(Handle<Script>(Script::cast(shared_info_->script()))),
94
- extension_(NULL),
95
- pre_parse_data_(NULL),
96
- osr_ast_id_(AstNode::kNoNumber) {
97
- Initialize(BASE);
77
+ context_(closure->context()),
78
+ osr_ast_id_(BailoutId::None()) {
79
+ Initialize(script_->GetIsolate(), BASE, zone);
80
+ }
81
+
82
+
83
+ CompilationInfo::CompilationInfo(HydrogenCodeStub* stub,
84
+ Isolate* isolate, Zone* zone)
85
+ : flags_(LanguageModeField::encode(CLASSIC_MODE) |
86
+ IsLazy::encode(true)),
87
+ osr_ast_id_(BailoutId::None()) {
88
+ Initialize(isolate, STUB, zone);
89
+ code_stub_ = stub;
90
+ }
91
+
92
+
93
+ void CompilationInfo::Initialize(Isolate* isolate, Mode mode, Zone* zone) {
94
+ isolate_ = isolate;
95
+ function_ = NULL;
96
+ scope_ = NULL;
97
+ global_scope_ = NULL;
98
+ extension_ = NULL;
99
+ pre_parse_data_ = NULL;
100
+ zone_ = zone;
101
+ deferred_handles_ = NULL;
102
+ code_stub_ = NULL;
103
+ prologue_offset_ = kPrologueOffsetNotSet;
104
+ opt_count_ = shared_info().is_null() ? 0 : shared_info()->opt_count();
105
+ if (mode == STUB) {
106
+ mode_ = STUB;
107
+ return;
108
+ }
109
+ mode_ = V8::UseCrankshaft() ? mode : NONOPT;
110
+ if (script_->type()->value() == Script::TYPE_NATIVE) {
111
+ MarkAsNative();
112
+ }
113
+ if (!shared_info_.is_null()) {
114
+ ASSERT(language_mode() == CLASSIC_MODE);
115
+ SetLanguageMode(shared_info_->language_mode());
116
+ }
117
+ set_bailout_reason("unknown");
118
+ }
119
+
120
+
121
+ CompilationInfo::~CompilationInfo() {
122
+ delete deferred_handles_;
123
+ }
124
+
125
+
126
+ int CompilationInfo::num_parameters() const {
127
+ if (IsStub()) {
128
+ return 0;
129
+ } else {
130
+ return scope()->num_parameters();
131
+ }
132
+ }
133
+
134
+
135
+ int CompilationInfo::num_heap_slots() const {
136
+ if (IsStub()) {
137
+ return 0;
138
+ } else {
139
+ return scope()->num_heap_slots();
140
+ }
141
+ }
142
+
143
+
144
+ Code::Flags CompilationInfo::flags() const {
145
+ if (IsStub()) {
146
+ return Code::ComputeFlags(Code::COMPILED_STUB);
147
+ } else {
148
+ return Code::ComputeFlags(Code::OPTIMIZED_FUNCTION);
149
+ }
98
150
  }
99
151
 
100
152
 
@@ -118,7 +170,7 @@ bool CompilationInfo::ShouldSelfOptimize() {
118
170
  FLAG_crankshaft &&
119
171
  !function()->flags()->Contains(kDontSelfOptimize) &&
120
172
  !function()->flags()->Contains(kDontOptimize) &&
121
- function()->scope()->AllowsLazyRecompilation() &&
173
+ function()->scope()->AllowsLazyCompilation() &&
122
174
  (shared_info().is_null() || !shared_info()->optimization_disabled());
123
175
  }
124
176
 
@@ -137,9 +189,8 @@ void CompilationInfo::AbortOptimization() {
137
189
  // all. However crankshaft support recompilation of functions, so in this case
138
190
  // the full compiler need not be be used if a debugger is attached, but only if
139
191
  // break points has actually been set.
140
- static bool is_debugging_active() {
192
+ static bool IsDebuggerActive(Isolate* isolate) {
141
193
  #ifdef ENABLE_DEBUGGER_SUPPORT
142
- Isolate* isolate = Isolate::Current();
143
194
  return V8::UseCrankshaft() ?
144
195
  isolate->debug()->has_break_points() :
145
196
  isolate->debugger()->IsDebuggerActive();
@@ -149,27 +200,32 @@ static bool is_debugging_active() {
149
200
  }
150
201
 
151
202
 
152
- static bool AlwaysFullCompiler() {
153
- return FLAG_always_full_compiler || is_debugging_active();
203
+ static bool AlwaysFullCompiler(Isolate* isolate) {
204
+ return FLAG_always_full_compiler || IsDebuggerActive(isolate);
154
205
  }
155
206
 
156
207
 
157
- static void FinishOptimization(Handle<JSFunction> function, int64_t start) {
208
+ void OptimizingCompiler::RecordOptimizationStats() {
209
+ Handle<JSFunction> function = info()->closure();
158
210
  int opt_count = function->shared()->opt_count();
159
211
  function->shared()->set_opt_count(opt_count + 1);
160
- double ms = static_cast<double>(OS::Ticks() - start) / 1000;
212
+ double ms_creategraph =
213
+ static_cast<double>(time_taken_to_create_graph_) / 1000;
214
+ double ms_optimize = static_cast<double>(time_taken_to_optimize_) / 1000;
215
+ double ms_codegen = static_cast<double>(time_taken_to_codegen_) / 1000;
161
216
  if (FLAG_trace_opt) {
162
217
  PrintF("[optimizing: ");
163
218
  function->PrintName();
164
219
  PrintF(" / %" V8PRIxPTR, reinterpret_cast<intptr_t>(*function));
165
- PrintF(" - took %0.3f ms]\n", ms);
220
+ PrintF(" - took %0.3f, %0.3f, %0.3f ms]\n", ms_creategraph, ms_optimize,
221
+ ms_codegen);
166
222
  }
167
223
  if (FLAG_trace_opt_stats) {
168
224
  static double compilation_time = 0.0;
169
225
  static int compiled_functions = 0;
170
226
  static int code_size = 0;
171
227
 
172
- compilation_time += ms;
228
+ compilation_time += (ms_creategraph + ms_optimize + ms_codegen);
173
229
  compiled_functions++;
174
230
  code_size += function->shared()->SourceSize();
175
231
  PrintF("Compiled: %d functions with %d byte source size in %fms.\n",
@@ -177,49 +233,62 @@ static void FinishOptimization(Handle<JSFunction> function, int64_t start) {
177
233
  code_size,
178
234
  compilation_time);
179
235
  }
236
+ if (FLAG_hydrogen_stats) {
237
+ HStatistics::Instance()->IncrementSubtotals(time_taken_to_create_graph_,
238
+ time_taken_to_optimize_,
239
+ time_taken_to_codegen_);
240
+ }
180
241
  }
181
242
 
182
243
 
244
+ // A return value of true indicates the compilation pipeline is still
245
+ // going, not necessarily that we optimized the code.
183
246
  static bool MakeCrankshaftCode(CompilationInfo* info) {
184
- // Test if we can optimize this function when asked to. We can only
185
- // do this after the scopes are computed.
186
- if (!V8::UseCrankshaft()) {
187
- info->DisableOptimization();
188
- }
247
+ OptimizingCompiler compiler(info);
248
+ OptimizingCompiler::Status status = compiler.CreateGraph();
189
249
 
190
- // In case we are not optimizing simply return the code from
191
- // the full code generator.
192
- if (!info->IsOptimizing()) {
193
- return FullCodeGenerator::MakeCode(info);
250
+ if (status != OptimizingCompiler::SUCCEEDED) {
251
+ return status != OptimizingCompiler::FAILED;
252
+ }
253
+ status = compiler.OptimizeGraph();
254
+ if (status != OptimizingCompiler::SUCCEEDED) {
255
+ status = compiler.AbortOptimization();
256
+ return status != OptimizingCompiler::FAILED;
194
257
  }
258
+ status = compiler.GenerateAndInstallCode();
259
+ return status != OptimizingCompiler::FAILED;
260
+ }
261
+
262
+
263
+ OptimizingCompiler::Status OptimizingCompiler::CreateGraph() {
264
+ ASSERT(V8::UseCrankshaft());
265
+ ASSERT(info()->IsOptimizing());
266
+ ASSERT(!info()->IsCompilingForDebugging());
195
267
 
196
- // We should never arrive here if there is not code object on the
268
+ // We should never arrive here if there is no code object on the
197
269
  // shared function object.
198
- Handle<Code> code(info->shared_info()->code());
270
+ Handle<Code> code(info()->shared_info()->code());
199
271
  ASSERT(code->kind() == Code::FUNCTION);
200
272
 
201
273
  // We should never arrive here if optimization has been disabled on the
202
274
  // shared function info.
203
- ASSERT(!info->shared_info()->optimization_disabled());
275
+ ASSERT(!info()->shared_info()->optimization_disabled());
204
276
 
205
277
  // Fall back to using the full code generator if it's not possible
206
278
  // to use the Hydrogen-based optimizing compiler. We already have
207
279
  // generated code for this from the shared function object.
208
- if (AlwaysFullCompiler()) {
209
- info->SetCode(code);
210
- return true;
280
+ if (AlwaysFullCompiler(info()->isolate())) {
281
+ info()->SetCode(code);
282
+ return SetLastStatus(BAILED_OUT);
211
283
  }
212
284
 
213
285
  // Limit the number of times we re-compile a functions with
214
286
  // the optimizing compiler.
215
287
  const int kMaxOptCount =
216
- FLAG_deopt_every_n_times == 0 ? Compiler::kDefaultMaxOptCount : 1000;
217
- if (info->shared_info()->opt_count() > kMaxOptCount) {
218
- info->AbortOptimization();
219
- info->shared_info()->DisableOptimization();
220
- // True indicates the compilation pipeline is still going, not
221
- // necessarily that we optimized the code.
222
- return true;
288
+ FLAG_deopt_every_n_times == 0 ? FLAG_max_opt_count : 1000;
289
+ if (info()->opt_count() > kMaxOptCount) {
290
+ info()->set_bailout_reason("optimized too many times");
291
+ return AbortOptimization();
223
292
  }
224
293
 
225
294
  // Due to an encoding limit on LUnallocated operands in the Lithium
@@ -230,27 +299,28 @@ static bool MakeCrankshaftCode(CompilationInfo* info) {
230
299
  // The encoding is as a signed value, with parameters and receiver using
231
300
  // the negative indices and locals the non-negative ones.
232
301
  const int parameter_limit = -LUnallocated::kMinFixedIndex;
302
+ Scope* scope = info()->scope();
303
+ if ((scope->num_parameters() + 1) > parameter_limit) {
304
+ info()->set_bailout_reason("too many parameters");
305
+ return AbortOptimization();
306
+ }
307
+
233
308
  const int locals_limit = LUnallocated::kMaxFixedIndex;
234
- Scope* scope = info->scope();
235
- if ((scope->num_parameters() + 1) > parameter_limit ||
236
- (info->osr_ast_id() != AstNode::kNoNumber &&
237
- scope->num_parameters() + 1 + scope->num_stack_slots() > locals_limit)) {
238
- info->AbortOptimization();
239
- info->shared_info()->DisableOptimization();
240
- // True indicates the compilation pipeline is still going, not
241
- // necessarily that we optimized the code.
242
- return true;
309
+ if (!info()->osr_ast_id().IsNone() &&
310
+ scope->num_parameters() + 1 + scope->num_stack_slots() > locals_limit) {
311
+ info()->set_bailout_reason("too many parameters/locals");
312
+ return AbortOptimization();
243
313
  }
244
314
 
245
315
  // Take --hydrogen-filter into account.
246
- Handle<String> name = info->function()->debug_name();
316
+ Handle<String> name = info()->function()->debug_name();
247
317
  if (*FLAG_hydrogen_filter != '\0') {
248
318
  Vector<const char> filter = CStrVector(FLAG_hydrogen_filter);
249
319
  if ((filter[0] == '-'
250
- && name->IsEqualTo(filter.SubVector(1, filter.length())))
251
- || (filter[0] != '-' && !name->IsEqualTo(filter))) {
252
- info->SetCode(code);
253
- return true;
320
+ && name->IsUtf8EqualTo(filter.SubVector(1, filter.length())))
321
+ || (filter[0] != '-' && !name->IsUtf8EqualTo(filter))) {
322
+ info()->SetCode(code);
323
+ return SetLastStatus(BAILED_OUT);
254
324
  }
255
325
  }
256
326
 
@@ -258,20 +328,20 @@ static bool MakeCrankshaftCode(CompilationInfo* info) {
258
328
  // doesn't have deoptimization support. Alternatively, we may decide to
259
329
  // run the full code generator to get a baseline for the compile-time
260
330
  // performance of the hydrogen-based compiler.
261
- int64_t start = OS::Ticks();
262
- bool should_recompile = !info->shared_info()->has_deoptimization_support();
331
+ bool should_recompile = !info()->shared_info()->has_deoptimization_support();
263
332
  if (should_recompile || FLAG_hydrogen_stats) {
264
333
  HPhase phase(HPhase::kFullCodeGen);
265
- CompilationInfo unoptimized(info->shared_info());
334
+ CompilationInfoWithZone unoptimized(info()->shared_info());
266
335
  // Note that we use the same AST that we will use for generating the
267
336
  // optimized code.
268
- unoptimized.SetFunction(info->function());
269
- unoptimized.SetScope(info->scope());
337
+ unoptimized.SetFunction(info()->function());
338
+ unoptimized.SetScope(info()->scope());
339
+ unoptimized.SetContext(info()->context());
270
340
  if (should_recompile) unoptimized.EnableDeoptimizationSupport();
271
341
  bool succeeded = FullCodeGenerator::MakeCode(&unoptimized);
272
342
  if (should_recompile) {
273
- if (!succeeded) return false;
274
- Handle<SharedFunctionInfo> shared = info->shared_info();
343
+ if (!succeeded) return SetLastStatus(FAILED);
344
+ Handle<SharedFunctionInfo> shared = info()->shared_info();
275
345
  shared->EnableDeoptimizationSupport(*unoptimized.code());
276
346
  // The existing unoptimized code was replaced with the new one.
277
347
  Compiler::RecordFunctionCompilation(
@@ -285,50 +355,101 @@ static bool MakeCrankshaftCode(CompilationInfo* info) {
285
355
  // is safe as long as the unoptimized code has deoptimization
286
356
  // support.
287
357
  ASSERT(FLAG_always_opt || code->optimizable());
288
- ASSERT(info->shared_info()->has_deoptimization_support());
358
+ ASSERT(info()->shared_info()->has_deoptimization_support());
289
359
 
290
360
  if (FLAG_trace_hydrogen) {
291
361
  PrintF("-----------------------------------------------------------\n");
292
362
  PrintF("Compiling method %s using hydrogen\n", *name->ToCString());
293
- HTracer::Instance()->TraceCompilation(info->function());
363
+ HTracer::Instance()->TraceCompilation(info());
364
+ }
365
+ Handle<Context> native_context(
366
+ info()->closure()->context()->native_context());
367
+ oracle_ = new(info()->zone()) TypeFeedbackOracle(
368
+ code, native_context, info()->isolate(), info()->zone());
369
+ graph_builder_ = new(info()->zone()) HOptimizedGraphBuilder(info(), oracle_);
370
+
371
+ Timer t(this, &time_taken_to_create_graph_);
372
+ graph_ = graph_builder_->CreateGraph();
373
+
374
+ if (info()->isolate()->has_pending_exception()) {
375
+ info()->SetCode(Handle<Code>::null());
376
+ return SetLastStatus(FAILED);
294
377
  }
295
378
 
296
- Handle<Context> global_context(info->closure()->context()->global_context());
297
- TypeFeedbackOracle oracle(code, global_context, info->isolate());
298
- HGraphBuilder builder(info, &oracle);
299
- HPhase phase(HPhase::kTotal);
300
- HGraph* graph = builder.CreateGraph();
301
- if (info->isolate()->has_pending_exception()) {
302
- info->SetCode(Handle<Code>::null());
303
- return false;
379
+ // The function being compiled may have bailed out due to an inline
380
+ // candidate bailing out. In such a case, we don't disable
381
+ // optimization on the shared_info.
382
+ ASSERT(!graph_builder_->inline_bailout() || graph_ == NULL);
383
+ if (graph_ == NULL) {
384
+ if (graph_builder_->inline_bailout()) {
385
+ info_->AbortOptimization();
386
+ return SetLastStatus(BAILED_OUT);
387
+ } else {
388
+ return AbortOptimization();
389
+ }
304
390
  }
305
391
 
306
- if (graph != NULL) {
307
- Handle<Code> optimized_code = graph->Compile(info);
308
- if (!optimized_code.is_null()) {
309
- info->SetCode(optimized_code);
310
- FinishOptimization(info->closure(), start);
311
- return true;
392
+ return SetLastStatus(SUCCEEDED);
393
+ }
394
+
395
+ OptimizingCompiler::Status OptimizingCompiler::OptimizeGraph() {
396
+ AssertNoAllocation no_gc;
397
+ NoHandleAllocation no_handles;
398
+ NoHandleDereference no_deref;
399
+
400
+ ASSERT(last_status() == SUCCEEDED);
401
+ Timer t(this, &time_taken_to_optimize_);
402
+ ASSERT(graph_ != NULL);
403
+ SmartArrayPointer<char> bailout_reason;
404
+ if (!graph_->Optimize(&bailout_reason)) {
405
+ if (!bailout_reason.is_empty()) graph_builder_->Bailout(*bailout_reason);
406
+ return SetLastStatus(BAILED_OUT);
407
+ } else {
408
+ chunk_ = LChunk::NewChunk(graph_);
409
+ if (chunk_ == NULL) {
410
+ return SetLastStatus(BAILED_OUT);
312
411
  }
313
412
  }
413
+ return SetLastStatus(SUCCEEDED);
414
+ }
415
+
314
416
 
315
- // Keep using the shared code.
316
- info->AbortOptimization();
317
- if (!builder.inline_bailout()) {
318
- // Mark the shared code as unoptimizable unless it was an inlined
319
- // function that bailed out.
320
- info->shared_info()->DisableOptimization();
417
+ OptimizingCompiler::Status OptimizingCompiler::GenerateAndInstallCode() {
418
+ ASSERT(last_status() == SUCCEEDED);
419
+ { // Scope for timer.
420
+ Timer timer(this, &time_taken_to_codegen_);
421
+ ASSERT(chunk_ != NULL);
422
+ ASSERT(graph_ != NULL);
423
+ Handle<Code> optimized_code = chunk_->Codegen(Code::OPTIMIZED_FUNCTION);
424
+ if (optimized_code.is_null()) {
425
+ info()->set_bailout_reason("code generation failed");
426
+ return AbortOptimization();
427
+ }
428
+ info()->SetCode(optimized_code);
321
429
  }
322
- // True indicates the compilation pipeline is still going, not necessarily
323
- // that we optimized the code.
324
- return true;
430
+ RecordOptimizationStats();
431
+ return SetLastStatus(SUCCEEDED);
325
432
  }
326
433
 
327
434
 
328
435
  static bool GenerateCode(CompilationInfo* info) {
329
- return info->IsCompilingForDebugging() || !V8::UseCrankshaft() ?
330
- FullCodeGenerator::MakeCode(info) :
331
- MakeCrankshaftCode(info);
436
+ bool is_optimizing = V8::UseCrankshaft() &&
437
+ !info->IsCompilingForDebugging() &&
438
+ info->IsOptimizing();
439
+ if (is_optimizing) {
440
+ Logger::TimerEventScope timer(
441
+ info->isolate(), Logger::TimerEventScope::v8_recompile_synchronous);
442
+ return MakeCrankshaftCode(info);
443
+ } else {
444
+ if (info->IsOptimizing()) {
445
+ // Have the CompilationInfo decide if the compilation should be
446
+ // BASE or NONOPT.
447
+ info->DisableOptimization();
448
+ }
449
+ Logger::TimerEventScope timer(
450
+ info->isolate(), Logger::TimerEventScope::v8_compile_full_code);
451
+ return FullCodeGenerator::MakeCode(info);
452
+ }
332
453
  }
333
454
 
334
455
 
@@ -346,7 +467,8 @@ bool Compiler::MakeCodeForLiveEdit(CompilationInfo* info) {
346
467
  // the compilation info is set if compilation succeeded.
347
468
  bool succeeded = MakeCode(info);
348
469
  if (!info->shared_info().is_null()) {
349
- Handle<ScopeInfo> scope_info = ScopeInfo::Create(info->scope());
470
+ Handle<ScopeInfo> scope_info = ScopeInfo::Create(info->scope(),
471
+ info->zone());
350
472
  info->shared_info()->set_scope_info(*scope_info);
351
473
  }
352
474
  return succeeded;
@@ -354,14 +476,23 @@ bool Compiler::MakeCodeForLiveEdit(CompilationInfo* info) {
354
476
  #endif
355
477
 
356
478
 
479
+ static bool DebuggerWantsEagerCompilation(CompilationInfo* info,
480
+ bool allow_lazy_without_ctx = false) {
481
+ return LiveEditFunctionTracker::IsActive(info->isolate()) ||
482
+ (info->isolate()->DebuggerHasBreakPoints() && !allow_lazy_without_ctx);
483
+ }
484
+
485
+
357
486
  static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) {
358
487
  Isolate* isolate = info->isolate();
359
- ZoneScope zone_scope(isolate, DELETE_ON_EXIT);
488
+ ZoneScope zone_scope(info->zone(), DELETE_ON_EXIT);
360
489
  PostponeInterruptsScope postpone(isolate);
361
490
 
362
- ASSERT(!isolate->global_context().is_null());
491
+ ASSERT(!isolate->native_context().is_null());
363
492
  Handle<Script> script = info->script();
364
- script->set_context_data((*isolate->global_context())->data());
493
+ // TODO(svenpanne) Obscure place for this, perhaps move to OnBeforeCompile?
494
+ FixedArray* array = isolate->native_context()->embedder_data();
495
+ script->set_context_data(array->get(0));
365
496
 
366
497
  #ifdef ENABLE_DEBUGGER_SUPPORT
367
498
  if (info->is_eval()) {
@@ -389,8 +520,9 @@ static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) {
389
520
  // Only allow non-global compiles for eval.
390
521
  ASSERT(info->is_eval() || info->is_global());
391
522
  ParsingFlags flags = kNoParsingFlags;
392
- if (info->pre_parse_data() != NULL ||
393
- String::cast(script->source())->length() > FLAG_min_preparse_length) {
523
+ if ((info->pre_parse_data() != NULL ||
524
+ String::cast(script->source())->length() > FLAG_min_preparse_length) &&
525
+ !DebuggerWantsEagerCompilation(info)) {
394
526
  flags = kAllowLazy;
395
527
  }
396
528
  if (!ParserApi::Parse(info, flags)) {
@@ -420,7 +552,7 @@ static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) {
420
552
  lit->name(),
421
553
  lit->materialized_literal_count(),
422
554
  info->code(),
423
- ScopeInfo::Create(info->scope()));
555
+ ScopeInfo::Create(info->scope(), info->zone()));
424
556
 
425
557
  ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
426
558
  Compiler::SetFunctionInfo(result, lit, true, script);
@@ -462,7 +594,7 @@ static Handle<SharedFunctionInfo> MakeFunctionInfo(CompilationInfo* info) {
462
594
  script, Debugger::NO_AFTER_COMPILE_FLAGS);
463
595
  #endif
464
596
 
465
- live_edit_tracker.RecordFunctionInfo(result, lit);
597
+ live_edit_tracker.RecordFunctionInfo(result, lit, info->zone());
466
598
 
467
599
  return result;
468
600
  }
@@ -472,6 +604,7 @@ Handle<SharedFunctionInfo> Compiler::Compile(Handle<String> source,
472
604
  Handle<Object> script_name,
473
605
  int line_offset,
474
606
  int column_offset,
607
+ Handle<Context> context,
475
608
  v8::Extension* extension,
476
609
  ScriptDataImpl* pre_data,
477
610
  Handle<Object> script_data,
@@ -492,7 +625,8 @@ Handle<SharedFunctionInfo> Compiler::Compile(Handle<String> source,
492
625
  result = compilation_cache->LookupScript(source,
493
626
  script_name,
494
627
  line_offset,
495
- column_offset);
628
+ column_offset,
629
+ context);
496
630
  }
497
631
 
498
632
  if (result.is_null()) {
@@ -520,16 +654,17 @@ Handle<SharedFunctionInfo> Compiler::Compile(Handle<String> source,
520
654
  : *script_data);
521
655
 
522
656
  // Compile the function and add it to the cache.
523
- CompilationInfo info(script);
657
+ CompilationInfoWithZone info(script);
524
658
  info.MarkAsGlobal();
525
659
  info.SetExtension(extension);
526
660
  info.SetPreParseData(pre_data);
661
+ info.SetContext(context);
527
662
  if (FLAG_use_strict) {
528
663
  info.SetLanguageMode(FLAG_harmony_scoping ? EXTENDED_MODE : STRICT_MODE);
529
664
  }
530
665
  result = MakeFunctionInfo(&info);
531
- if (extension == NULL && !result.is_null()) {
532
- compilation_cache->PutScript(source, result);
666
+ if (extension == NULL && !result.is_null() && !result->dont_cache()) {
667
+ compilation_cache->PutScript(source, context, result);
533
668
  }
534
669
  } else {
535
670
  if (result->ic_age() != HEAP->global_ic_age()) {
@@ -568,16 +703,16 @@ Handle<SharedFunctionInfo> Compiler::CompileEval(Handle<String> source,
568
703
  if (result.is_null()) {
569
704
  // Create a script object describing the script to be compiled.
570
705
  Handle<Script> script = isolate->factory()->NewScript(source);
571
- CompilationInfo info(script);
706
+ CompilationInfoWithZone info(script);
572
707
  info.MarkAsEval();
573
708
  if (is_global) info.MarkAsGlobal();
574
709
  info.SetLanguageMode(language_mode);
575
- info.SetCallingContext(context);
710
+ info.SetContext(context);
576
711
  result = MakeFunctionInfo(&info);
577
712
  if (!result.is_null()) {
578
713
  // Explicitly disable optimization for eval code. We're not yet prepared
579
714
  // to handle eval-code in the optimizing compiler.
580
- result->DisableOptimization();
715
+ result->DisableOptimization("eval");
581
716
 
582
717
  // If caller is strict mode, the result must be in strict mode or
583
718
  // extended mode as well, but not the other way around. Consider:
@@ -587,8 +722,10 @@ Handle<SharedFunctionInfo> Compiler::CompileEval(Handle<String> source,
587
722
  // extended mode.
588
723
  ASSERT(language_mode != EXTENDED_MODE ||
589
724
  result->is_extended_mode());
590
- compilation_cache->PutEval(
591
- source, context, is_global, result, scope_position);
725
+ if (!result->dont_cache()) {
726
+ compilation_cache->PutEval(
727
+ source, context, is_global, result, scope_position);
728
+ }
592
729
  }
593
730
  } else {
594
731
  if (result->ic_age() != HEAP->global_ic_age()) {
@@ -600,10 +737,117 @@ Handle<SharedFunctionInfo> Compiler::CompileEval(Handle<String> source,
600
737
  }
601
738
 
602
739
 
740
+ static bool InstallFullCode(CompilationInfo* info) {
741
+ // Update the shared function info with the compiled code and the
742
+ // scope info. Please note, that the order of the shared function
743
+ // info initialization is important since set_scope_info might
744
+ // trigger a GC, causing the ASSERT below to be invalid if the code
745
+ // was flushed. By setting the code object last we avoid this.
746
+ Handle<SharedFunctionInfo> shared = info->shared_info();
747
+ Handle<Code> code = info->code();
748
+ Handle<JSFunction> function = info->closure();
749
+ Handle<ScopeInfo> scope_info =
750
+ ScopeInfo::Create(info->scope(), info->zone());
751
+ shared->set_scope_info(*scope_info);
752
+ shared->ReplaceCode(*code);
753
+ if (!function.is_null()) {
754
+ function->ReplaceCode(*code);
755
+ ASSERT(!function->IsOptimized());
756
+ }
757
+
758
+ // Set the expected number of properties for instances.
759
+ FunctionLiteral* lit = info->function();
760
+ int expected = lit->expected_property_count();
761
+ SetExpectedNofPropertiesFromEstimate(shared, expected);
762
+
763
+ // Set the optimization hints after performing lazy compilation, as
764
+ // these are not set when the function is set up as a lazily
765
+ // compiled function.
766
+ shared->SetThisPropertyAssignmentsInfo(
767
+ lit->has_only_simple_this_property_assignments(),
768
+ *lit->this_property_assignments());
769
+
770
+ // Check the function has compiled code.
771
+ ASSERT(shared->is_compiled());
772
+ shared->set_code_age(0);
773
+ shared->set_dont_optimize(lit->flags()->Contains(kDontOptimize));
774
+ shared->set_dont_inline(lit->flags()->Contains(kDontInline));
775
+ shared->set_ast_node_count(lit->ast_node_count());
776
+
777
+ if (V8::UseCrankshaft() &&
778
+ !function.is_null() &&
779
+ !shared->optimization_disabled()) {
780
+ // If we're asked to always optimize, we compile the optimized
781
+ // version of the function right away - unless the debugger is
782
+ // active as it makes no sense to compile optimized code then.
783
+ if (FLAG_always_opt &&
784
+ !Isolate::Current()->DebuggerHasBreakPoints()) {
785
+ CompilationInfoWithZone optimized(function);
786
+ optimized.SetOptimizing(BailoutId::None());
787
+ return Compiler::CompileLazy(&optimized);
788
+ }
789
+ }
790
+ return true;
791
+ }
792
+
793
+
794
+ static void InstallCodeCommon(CompilationInfo* info) {
795
+ Handle<SharedFunctionInfo> shared = info->shared_info();
796
+ Handle<Code> code = info->code();
797
+ ASSERT(!code.is_null());
798
+
799
+ // Set optimizable to false if this is disallowed by the shared
800
+ // function info, e.g., we might have flushed the code and must
801
+ // reset this bit when lazy compiling the code again.
802
+ if (shared->optimization_disabled()) code->set_optimizable(false);
803
+
804
+ Compiler::RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG, info, shared);
805
+ }
806
+
807
+
808
+ static void InsertCodeIntoOptimizedCodeMap(CompilationInfo* info) {
809
+ Handle<Code> code = info->code();
810
+ if (FLAG_cache_optimized_code &&
811
+ info->osr_ast_id().IsNone() &&
812
+ code->kind() == Code::OPTIMIZED_FUNCTION) {
813
+ Handle<JSFunction> function = info->closure();
814
+ Handle<SharedFunctionInfo> shared(function->shared());
815
+ Handle<FixedArray> literals(function->literals());
816
+ Handle<Context> native_context(function->context()->native_context());
817
+ SharedFunctionInfo::AddToOptimizedCodeMap(
818
+ shared, native_context, code, literals);
819
+ }
820
+ }
821
+
822
+
823
+ static bool InstallCodeFromOptimizedCodeMap(CompilationInfo* info) {
824
+ if (FLAG_cache_optimized_code &&
825
+ info->osr_ast_id().IsNone() &&
826
+ info->IsOptimizing()) {
827
+ Handle<SharedFunctionInfo> shared = info->shared_info();
828
+ Handle<JSFunction> function = info->closure();
829
+ ASSERT(!function.is_null());
830
+ Handle<Context> native_context(function->context()->native_context());
831
+ int index = shared->SearchOptimizedCodeMap(*native_context);
832
+ if (index > 0) {
833
+ if (FLAG_trace_opt) {
834
+ PrintF("[found optimized code for: ");
835
+ function->PrintName();
836
+ PrintF(" / %" V8PRIxPTR "]\n", reinterpret_cast<intptr_t>(*function));
837
+ }
838
+ // Caching of optimized code enabled and optimized code found.
839
+ shared->InstallFromOptimizedCodeMap(*function, index);
840
+ return true;
841
+ }
842
+ }
843
+ return false;
844
+ }
845
+
846
+
603
847
  bool Compiler::CompileLazy(CompilationInfo* info) {
604
848
  Isolate* isolate = info->isolate();
605
849
 
606
- ZoneScope zone_scope(isolate, DELETE_ON_EXIT);
850
+ ZoneScope zone_scope(info->zone(), DELETE_ON_EXIT);
607
851
 
608
852
  // The VM is in the COMPILER state until exiting this function.
609
853
  VMState state(isolate, COMPILER);
@@ -614,6 +858,8 @@ bool Compiler::CompileLazy(CompilationInfo* info) {
614
858
  int compiled_size = shared->end_position() - shared->start_position();
615
859
  isolate->counters()->total_compile_size()->Increment(compiled_size);
616
860
 
861
+ if (InstallCodeFromOptimizedCodeMap(info)) return true;
862
+
617
863
  // Generate the AST for the lazily compiled function.
618
864
  if (ParserApi::Parse(info, kNoParsingFlags)) {
619
865
  // Measure how long it takes to do the lazy compilation; only take the
@@ -632,68 +878,17 @@ bool Compiler::CompileLazy(CompilationInfo* info) {
632
878
  isolate->StackOverflow();
633
879
  }
634
880
  } else {
635
- ASSERT(!info->code().is_null());
636
- Handle<Code> code = info->code();
637
- // Set optimizable to false if this is disallowed by the shared
638
- // function info, e.g., we might have flushed the code and must
639
- // reset this bit when lazy compiling the code again.
640
- if (shared->optimization_disabled()) code->set_optimizable(false);
641
-
642
- Handle<JSFunction> function = info->closure();
643
- RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG, info, shared);
881
+ InstallCodeCommon(info);
644
882
 
645
883
  if (info->IsOptimizing()) {
884
+ Handle<Code> code = info->code();
646
885
  ASSERT(shared->scope_info() != ScopeInfo::Empty());
647
- function->ReplaceCode(*code);
886
+ info->closure()->ReplaceCode(*code);
887
+ InsertCodeIntoOptimizedCodeMap(info);
888
+ return true;
648
889
  } else {
649
- // Update the shared function info with the compiled code and the
650
- // scope info. Please note, that the order of the shared function
651
- // info initialization is important since set_scope_info might
652
- // trigger a GC, causing the ASSERT below to be invalid if the code
653
- // was flushed. By setting the code object last we avoid this.
654
- Handle<ScopeInfo> scope_info = ScopeInfo::Create(info->scope());
655
- shared->set_scope_info(*scope_info);
656
- shared->set_code(*code);
657
- if (!function.is_null()) {
658
- function->ReplaceCode(*code);
659
- ASSERT(!function->IsOptimized());
660
- }
661
-
662
- // Set the expected number of properties for instances.
663
- FunctionLiteral* lit = info->function();
664
- int expected = lit->expected_property_count();
665
- SetExpectedNofPropertiesFromEstimate(shared, expected);
666
-
667
- // Set the optimization hints after performing lazy compilation, as
668
- // these are not set when the function is set up as a lazily
669
- // compiled function.
670
- shared->SetThisPropertyAssignmentsInfo(
671
- lit->has_only_simple_this_property_assignments(),
672
- *lit->this_property_assignments());
673
-
674
- // Check the function has compiled code.
675
- ASSERT(shared->is_compiled());
676
- shared->set_code_age(0);
677
- shared->set_dont_optimize(lit->flags()->Contains(kDontOptimize));
678
- shared->set_dont_inline(lit->flags()->Contains(kDontInline));
679
- shared->set_ast_node_count(lit->ast_node_count());
680
-
681
- if (V8::UseCrankshaft()&&
682
- !function.is_null() &&
683
- !shared->optimization_disabled()) {
684
- // If we're asked to always optimize, we compile the optimized
685
- // version of the function right away - unless the debugger is
686
- // active as it makes no sense to compile optimized code then.
687
- if (FLAG_always_opt &&
688
- !Isolate::Current()->DebuggerHasBreakPoints()) {
689
- CompilationInfo optimized(function);
690
- optimized.SetOptimizing(AstNode::kNoNumber);
691
- return CompileLazy(&optimized);
692
- }
693
- }
890
+ return InstallFullCode(info);
694
891
  }
695
-
696
- return true;
697
892
  }
698
893
  }
699
894
 
@@ -702,10 +897,109 @@ bool Compiler::CompileLazy(CompilationInfo* info) {
702
897
  }
703
898
 
704
899
 
900
+ void Compiler::RecompileParallel(Handle<JSFunction> closure) {
901
+ if (closure->IsInRecompileQueue()) return;
902
+ ASSERT(closure->IsMarkedForParallelRecompilation());
903
+
904
+ Isolate* isolate = closure->GetIsolate();
905
+ // Here we prepare compile data for the parallel recompilation thread, but
906
+ // this still happens synchronously and interrupts execution.
907
+ Logger::TimerEventScope timer(
908
+ isolate, Logger::TimerEventScope::v8_recompile_synchronous);
909
+
910
+ if (!isolate->optimizing_compiler_thread()->IsQueueAvailable()) {
911
+ if (FLAG_trace_parallel_recompilation) {
912
+ PrintF(" ** Compilation queue, will retry opting on next run.\n");
913
+ }
914
+ return;
915
+ }
916
+
917
+ SmartPointer<CompilationInfo> info(new CompilationInfoWithZone(closure));
918
+ VMState state(isolate, PARALLEL_COMPILER);
919
+ PostponeInterruptsScope postpone(isolate);
920
+
921
+ Handle<SharedFunctionInfo> shared = info->shared_info();
922
+ int compiled_size = shared->end_position() - shared->start_position();
923
+ isolate->counters()->total_compile_size()->Increment(compiled_size);
924
+ info->SetOptimizing(BailoutId::None());
925
+
926
+ {
927
+ CompilationHandleScope handle_scope(*info);
928
+
929
+ if (!FLAG_manual_parallel_recompilation &&
930
+ InstallCodeFromOptimizedCodeMap(*info)) {
931
+ return;
932
+ }
933
+
934
+ if (ParserApi::Parse(*info, kNoParsingFlags)) {
935
+ LanguageMode language_mode = info->function()->language_mode();
936
+ info->SetLanguageMode(language_mode);
937
+ shared->set_language_mode(language_mode);
938
+ info->SaveHandles();
939
+
940
+ if (Rewriter::Rewrite(*info) && Scope::Analyze(*info)) {
941
+ OptimizingCompiler* compiler =
942
+ new(info->zone()) OptimizingCompiler(*info);
943
+ OptimizingCompiler::Status status = compiler->CreateGraph();
944
+ if (status == OptimizingCompiler::SUCCEEDED) {
945
+ isolate->optimizing_compiler_thread()->QueueForOptimization(compiler);
946
+ shared->code()->set_profiler_ticks(0);
947
+ closure->ReplaceCode(isolate->builtins()->builtin(
948
+ Builtins::kInRecompileQueue));
949
+ info.Detach();
950
+ } else if (status == OptimizingCompiler::BAILED_OUT) {
951
+ isolate->clear_pending_exception();
952
+ InstallFullCode(*info);
953
+ }
954
+ }
955
+ }
956
+ }
957
+
958
+ if (isolate->has_pending_exception()) {
959
+ isolate->clear_pending_exception();
960
+ }
961
+ }
962
+
963
+
964
+ void Compiler::InstallOptimizedCode(OptimizingCompiler* optimizing_compiler) {
965
+ SmartPointer<CompilationInfo> info(optimizing_compiler->info());
966
+ Isolate* isolate = info->isolate();
967
+ VMState state(isolate, PARALLEL_COMPILER);
968
+ Logger::TimerEventScope timer(
969
+ isolate, Logger::TimerEventScope::v8_recompile_synchronous);
970
+ // If crankshaft succeeded, install the optimized code else install
971
+ // the unoptimized code.
972
+ OptimizingCompiler::Status status = optimizing_compiler->last_status();
973
+ if (status != OptimizingCompiler::SUCCEEDED) {
974
+ optimizing_compiler->info()->set_bailout_reason(
975
+ "failed/bailed out last time");
976
+ status = optimizing_compiler->AbortOptimization();
977
+ } else {
978
+ status = optimizing_compiler->GenerateAndInstallCode();
979
+ ASSERT(status == OptimizingCompiler::SUCCEEDED ||
980
+ status == OptimizingCompiler::BAILED_OUT);
981
+ }
982
+
983
+ InstallCodeCommon(*info);
984
+ if (status == OptimizingCompiler::SUCCEEDED) {
985
+ Handle<Code> code = info->code();
986
+ ASSERT(info->shared_info()->scope_info() != ScopeInfo::Empty());
987
+ info->closure()->ReplaceCode(*code);
988
+ if (info->shared_info()->SearchOptimizedCodeMap(
989
+ info->closure()->context()->native_context()) == -1) {
990
+ InsertCodeIntoOptimizedCodeMap(*info);
991
+ }
992
+ } else {
993
+ info->SetCode(Handle<Code>(info->shared_info()->code()));
994
+ InstallFullCode(*info);
995
+ }
996
+ }
997
+
998
+
705
999
  Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(FunctionLiteral* literal,
706
1000
  Handle<Script> script) {
707
1001
  // Precondition: code has been parsed and scopes have been analyzed.
708
- CompilationInfo info(script);
1002
+ CompilationInfoWithZone info(script);
709
1003
  info.SetFunction(literal);
710
1004
  info.SetScope(literal->scope());
711
1005
  info.SetLanguageMode(literal->scope()->language_mode());
@@ -716,19 +1010,23 @@ Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(FunctionLiteral* literal,
716
1010
  // builtins cannot be handled lazily by the parser, since we have to know
717
1011
  // if a function uses the special natives syntax, which is something the
718
1012
  // parser records.
1013
+ // If the debugger requests compilation for break points, we cannot be
1014
+ // aggressive about lazy compilation, because it might trigger compilation
1015
+ // of functions without an outer context when setting a breakpoint through
1016
+ // Debug::FindSharedFunctionInfoInScript.
1017
+ bool allow_lazy_without_ctx = literal->AllowsLazyCompilationWithoutContext();
719
1018
  bool allow_lazy = literal->AllowsLazyCompilation() &&
720
- !LiveEditFunctionTracker::IsActive(info.isolate());
1019
+ !DebuggerWantsEagerCompilation(&info, allow_lazy_without_ctx);
721
1020
 
722
1021
  Handle<ScopeInfo> scope_info(ScopeInfo::Empty());
723
1022
 
724
1023
  // Generate code
725
- if (FLAG_lazy && allow_lazy) {
1024
+ if (FLAG_lazy && allow_lazy && !literal->is_parenthesized()) {
726
1025
  Handle<Code> code = info.isolate()->builtins()->LazyCompile();
727
1026
  info.SetCode(code);
728
- } else if ((V8::UseCrankshaft() && MakeCrankshaftCode(&info)) ||
729
- (!V8::UseCrankshaft() && FullCodeGenerator::MakeCode(&info))) {
1027
+ } else if (GenerateCode(&info)) {
730
1028
  ASSERT(!info.code().is_null());
731
- scope_info = ScopeInfo::Create(info.scope());
1029
+ scope_info = ScopeInfo::Create(info.scope(), info.zone());
732
1030
  } else {
733
1031
  return Handle<SharedFunctionInfo>::null();
734
1032
  }
@@ -742,12 +1040,13 @@ Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(FunctionLiteral* literal,
742
1040
  SetFunctionInfo(result, literal, false, script);
743
1041
  RecordFunctionCompilation(Logger::FUNCTION_TAG, &info, result);
744
1042
  result->set_allows_lazy_compilation(allow_lazy);
1043
+ result->set_allows_lazy_compilation_without_context(allow_lazy_without_ctx);
745
1044
 
746
1045
  // Set the expected number of properties for instances and return
747
1046
  // the resulting function.
748
1047
  SetExpectedNofPropertiesFromEstimate(result,
749
1048
  literal->expected_property_count());
750
- live_edit_tracker.RecordFunctionInfo(result, literal);
1049
+ live_edit_tracker.RecordFunctionInfo(result, literal, info.zone());
751
1050
  return result;
752
1051
  }
753
1052
 
@@ -774,6 +1073,8 @@ void Compiler::SetFunctionInfo(Handle<SharedFunctionInfo> function_info,
774
1073
  lit->has_only_simple_this_property_assignments(),
775
1074
  *lit->this_property_assignments());
776
1075
  function_info->set_allows_lazy_compilation(lit->AllowsLazyCompilation());
1076
+ function_info->set_allows_lazy_compilation_without_context(
1077
+ lit->AllowsLazyCompilationWithoutContext());
777
1078
  function_info->set_language_mode(lit->language_mode());
778
1079
  function_info->set_uses_arguments(lit->scope()->arguments() != NULL);
779
1080
  function_info->set_has_duplicate_parameters(lit->has_duplicate_parameters());
@@ -781,6 +1082,7 @@ void Compiler::SetFunctionInfo(Handle<SharedFunctionInfo> function_info,
781
1082
  function_info->set_is_function(lit->is_function());
782
1083
  function_info->set_dont_optimize(lit->flags()->Contains(kDontOptimize));
783
1084
  function_info->set_dont_inline(lit->flags()->Contains(kDontInline));
1085
+ function_info->set_dont_cache(lit->flags()->Contains(kDontCache));
784
1086
  }
785
1087
 
786
1088
 
@@ -793,7 +1095,7 @@ void Compiler::RecordFunctionCompilation(Logger::LogEventsAndTags tag,
793
1095
  // Log the code generation. If source information is available include
794
1096
  // script name and line number. Check explicitly whether logging is
795
1097
  // enabled as finding the line number is not free.
796
- if (info->isolate()->logger()->is_logging() ||
1098
+ if (info->isolate()->logger()->is_logging_code_events() ||
797
1099
  CpuProfiler::is_profiling(info->isolate())) {
798
1100
  Handle<Script> script = info->script();
799
1101
  Handle<Code> code = info->code();