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
@@ -32,7 +32,7 @@
32
32
 
33
33
  // The original source code covered by the above license above has been
34
34
  // modified significantly by Google Inc.
35
- // Copyright 2011 the V8 project authors. All rights reserved.
35
+ // Copyright 2012 the V8 project authors. All rights reserved.
36
36
 
37
37
  #include "v8.h"
38
38
 
@@ -51,18 +51,29 @@ unsigned CpuFeatures::supported_ = 0;
51
51
  unsigned CpuFeatures::found_by_runtime_probing_ = 0;
52
52
 
53
53
 
54
+ ExternalReference ExternalReference::cpu_features() {
55
+ ASSERT(CpuFeatures::initialized_);
56
+ return ExternalReference(&CpuFeatures::supported_);
57
+ }
58
+
54
59
  // Get the CPU features enabled by the build. For cross compilation the
55
- // preprocessor symbols CAN_USE_ARMV7_INSTRUCTIONS and CAN_USE_VFP_INSTRUCTIONS
60
+ // preprocessor symbols CAN_USE_ARMV7_INSTRUCTIONS and CAN_USE_VFP3_INSTRUCTIONS
56
61
  // can be defined to enable ARMv7 and VFPv3 instructions when building the
57
62
  // snapshot.
58
- static uint64_t CpuFeaturesImpliedByCompiler() {
59
- uint64_t answer = 0;
63
+ static unsigned CpuFeaturesImpliedByCompiler() {
64
+ unsigned answer = 0;
60
65
  #ifdef CAN_USE_ARMV7_INSTRUCTIONS
61
66
  answer |= 1u << ARMv7;
62
- #endif // def CAN_USE_ARMV7_INSTRUCTIONS
63
- #ifdef CAN_USE_VFP_INSTRUCTIONS
64
- answer |= 1u << VFP3 | 1u << ARMv7;
65
- #endif // def CAN_USE_VFP_INSTRUCTIONS
67
+ #endif // CAN_USE_ARMV7_INSTRUCTIONS
68
+ #ifdef CAN_USE_VFP3_INSTRUCTIONS
69
+ answer |= 1u << VFP3 | 1u << VFP2 | 1u << ARMv7;
70
+ #endif // CAN_USE_VFP3_INSTRUCTIONS
71
+ #ifdef CAN_USE_VFP2_INSTRUCTIONS
72
+ answer |= 1u << VFP2;
73
+ #endif // CAN_USE_VFP2_INSTRUCTIONS
74
+ #ifdef CAN_USE_VFP32DREGS
75
+ answer |= 1u << VFP32DREGS;
76
+ #endif // CAN_USE_VFP32DREGS
66
77
 
67
78
  #ifdef __arm__
68
79
  // If the compiler is allowed to use VFP then we can use VFP too in our code
@@ -70,18 +81,37 @@ static uint64_t CpuFeaturesImpliedByCompiler() {
70
81
  // point support implies VFPv3, see ARM DDI 0406B, page A1-6.
71
82
  #if defined(CAN_USE_ARMV7_INSTRUCTIONS) && defined(__VFP_FP__) \
72
83
  && !defined(__SOFTFP__)
73
- answer |= 1u << VFP3 | 1u << ARMv7;
84
+ answer |= 1u << VFP3 | 1u << ARMv7 | 1u << VFP2;
74
85
  #endif // defined(CAN_USE_ARMV7_INSTRUCTIONS) && defined(__VFP_FP__)
75
86
  // && !defined(__SOFTFP__)
76
- #endif // def __arm__
87
+ #endif // _arm__
88
+ if (answer & (1u << ARMv7)) {
89
+ answer |= 1u << UNALIGNED_ACCESSES;
90
+ }
77
91
 
78
92
  return answer;
79
93
  }
80
94
 
81
95
 
96
+ const char* DwVfpRegister::AllocationIndexToString(int index) {
97
+ if (CpuFeatures::IsSupported(VFP2)) {
98
+ ASSERT(index >= 0 && index < NumAllocatableRegisters());
99
+ ASSERT(kScratchDoubleReg.code() - kDoubleRegZero.code() ==
100
+ kNumReservedRegisters - 1);
101
+ if (index >= kDoubleRegZero.code())
102
+ index += kNumReservedRegisters;
103
+
104
+ return VFPRegisters::Name(index, true);
105
+ } else {
106
+ ASSERT(index == 0);
107
+ return "sfpd0";
108
+ }
109
+ }
110
+
111
+
82
112
  void CpuFeatures::Probe() {
83
- unsigned standard_features = (OS::CpuFeaturesImpliedByPlatform() |
84
- CpuFeaturesImpliedByCompiler());
113
+ unsigned standard_features = static_cast<unsigned>(
114
+ OS::CpuFeaturesImpliedByPlatform()) | CpuFeaturesImpliedByCompiler();
85
115
  ASSERT(supported_ == 0 || supported_ == standard_features);
86
116
  #ifdef DEBUG
87
117
  initialized_ = true;
@@ -101,27 +131,62 @@ void CpuFeatures::Probe() {
101
131
  // For the simulator=arm build, use VFP when FLAG_enable_vfp3 is
102
132
  // enabled. VFPv3 implies ARMv7, see ARM DDI 0406B, page A1-6.
103
133
  if (FLAG_enable_vfp3) {
104
- supported_ |= 1u << VFP3 | 1u << ARMv7;
134
+ supported_ |= 1u << VFP3 | 1u << ARMv7 | 1u << VFP2;
105
135
  }
106
136
  // For the simulator=arm build, use ARMv7 when FLAG_enable_armv7 is enabled
107
137
  if (FLAG_enable_armv7) {
108
138
  supported_ |= 1u << ARMv7;
109
139
  }
110
- #else // def __arm__
140
+
141
+ if (FLAG_enable_sudiv) {
142
+ supported_ |= 1u << SUDIV;
143
+ }
144
+
145
+ if (FLAG_enable_movw_movt) {
146
+ supported_ |= 1u << MOVW_MOVT_IMMEDIATE_LOADS;
147
+ }
148
+
149
+ if (FLAG_enable_32dregs) {
150
+ supported_ |= 1u << VFP32DREGS;
151
+ }
152
+
153
+ #else // __arm__
111
154
  // Probe for additional features not already known to be available.
112
155
  if (!IsSupported(VFP3) && OS::ArmCpuHasFeature(VFP3)) {
113
156
  // This implementation also sets the VFP flags if runtime
114
- // detection of VFP returns true. VFPv3 implies ARMv7, see ARM DDI
157
+ // detection of VFP returns true. VFPv3 implies ARMv7 and VFP2, see ARM DDI
115
158
  // 0406B, page A1-6.
116
- supported_ |= 1u << VFP3 | 1u << ARMv7;
117
- found_by_runtime_probing_ |= 1u << VFP3 | 1u << ARMv7;
159
+ found_by_runtime_probing_ |= 1u << VFP3 | 1u << ARMv7 | 1u << VFP2;
160
+ } else if (!IsSupported(VFP2) && OS::ArmCpuHasFeature(VFP2)) {
161
+ found_by_runtime_probing_ |= 1u << VFP2;
118
162
  }
119
163
 
120
164
  if (!IsSupported(ARMv7) && OS::ArmCpuHasFeature(ARMv7)) {
121
- supported_ |= 1u << ARMv7;
122
165
  found_by_runtime_probing_ |= 1u << ARMv7;
123
166
  }
167
+
168
+ if (!IsSupported(SUDIV) && OS::ArmCpuHasFeature(SUDIV)) {
169
+ found_by_runtime_probing_ |= 1u << SUDIV;
170
+ }
171
+
172
+ if (!IsSupported(UNALIGNED_ACCESSES) && OS::ArmCpuHasFeature(ARMv7)) {
173
+ found_by_runtime_probing_ |= 1u << UNALIGNED_ACCESSES;
174
+ }
175
+
176
+ if (OS::GetCpuImplementer() == QUALCOMM_IMPLEMENTER &&
177
+ OS::ArmCpuHasFeature(ARMv7)) {
178
+ found_by_runtime_probing_ |= 1u << MOVW_MOVT_IMMEDIATE_LOADS;
179
+ }
180
+
181
+ if (!IsSupported(VFP32DREGS) && OS::ArmCpuHasFeature(VFP32DREGS)) {
182
+ found_by_runtime_probing_ |= 1u << VFP32DREGS;
183
+ }
184
+
185
+ supported_ |= found_by_runtime_probing_;
124
186
  #endif
187
+
188
+ // Assert that VFP3 implies VFP2 and ARMv7.
189
+ ASSERT(!IsSupported(VFP3) || (IsSupported(VFP2) && IsSupported(ARMv7)));
125
190
  }
126
191
 
127
192
 
@@ -175,7 +240,7 @@ Operand::Operand(Handle<Object> handle) {
175
240
  } else {
176
241
  // no relocation needed
177
242
  imm32_ = reinterpret_cast<intptr_t>(obj);
178
- rmode_ = RelocInfo::NONE;
243
+ rmode_ = RelocInfo::NONE32;
179
244
  }
180
245
  }
181
246
 
@@ -250,8 +315,11 @@ const Instr kPopRegPattern =
250
315
  // mov lr, pc
251
316
  const Instr kMovLrPc = al | MOV | kRegister_pc_Code | kRegister_lr_Code * B12;
252
317
  // ldr rd, [pc, #offset]
253
- const Instr kLdrPCMask = kCondMask | 15 * B24 | 7 * B20 | 15 * B16;
254
- const Instr kLdrPCPattern = al | 5 * B24 | L | kRegister_pc_Code * B16;
318
+ const Instr kLdrPCMask = 15 * B24 | 7 * B20 | 15 * B16;
319
+ const Instr kLdrPCPattern = 5 * B24 | L | kRegister_pc_Code * B16;
320
+ // vldr dd, [pc, #offset]
321
+ const Instr kVldrDPCMask = 15 * B24 | 3 * B20 | 15 * B16 | 15 * B8;
322
+ const Instr kVldrDPCPattern = 13 * B24 | L | kRegister_pc_Code * B16 | 11 * B8;
255
323
  // blxcc rm
256
324
  const Instr kBlxRegMask =
257
325
  15 * B24 | 15 * B20 | 15 * B16 | 15 * B12 | 15 * B8 | 15 * B4;
@@ -286,45 +354,13 @@ const Instr kLdrStrInstrArgumentMask = 0x0000ffff;
286
354
  const Instr kLdrStrOffsetMask = 0x00000fff;
287
355
 
288
356
 
289
- // Spare buffer.
290
- static const int kMinimalBufferSize = 4*KB;
291
-
292
-
293
- Assembler::Assembler(Isolate* arg_isolate, void* buffer, int buffer_size)
294
- : AssemblerBase(arg_isolate),
295
- positions_recorder_(this),
296
- emit_debug_code_(FLAG_debug_code) {
297
- if (buffer == NULL) {
298
- // Do our own buffer management.
299
- if (buffer_size <= kMinimalBufferSize) {
300
- buffer_size = kMinimalBufferSize;
301
-
302
- if (isolate()->assembler_spare_buffer() != NULL) {
303
- buffer = isolate()->assembler_spare_buffer();
304
- isolate()->set_assembler_spare_buffer(NULL);
305
- }
306
- }
307
- if (buffer == NULL) {
308
- buffer_ = NewArray<byte>(buffer_size);
309
- } else {
310
- buffer_ = static_cast<byte*>(buffer);
311
- }
312
- buffer_size_ = buffer_size;
313
- own_buffer_ = true;
314
-
315
- } else {
316
- // Use externally provided buffer instead.
317
- ASSERT(buffer_size > 0);
318
- buffer_ = static_cast<byte*>(buffer);
319
- buffer_size_ = buffer_size;
320
- own_buffer_ = false;
321
- }
322
-
323
- // Set up buffer pointers.
324
- ASSERT(buffer_ != NULL);
325
- pc_ = buffer_;
326
- reloc_info_writer.Reposition(buffer_ + buffer_size, pc_);
357
+ Assembler::Assembler(Isolate* isolate, void* buffer, int buffer_size)
358
+ : AssemblerBase(isolate, buffer, buffer_size),
359
+ recorded_ast_id_(TypeFeedbackId::None()),
360
+ positions_recorder_(this) {
361
+ reloc_info_writer.Reposition(buffer_ + buffer_size_, pc_);
327
362
  num_pending_reloc_info_ = 0;
363
+ num_pending_64_bit_reloc_info_ = 0;
328
364
  next_buffer_check_ = 0;
329
365
  const_pool_blocked_nesting_ = 0;
330
366
  no_const_pool_before_ = 0;
@@ -336,14 +372,6 @@ Assembler::Assembler(Isolate* arg_isolate, void* buffer, int buffer_size)
336
372
 
337
373
  Assembler::~Assembler() {
338
374
  ASSERT(const_pool_blocked_nesting_ == 0);
339
- if (own_buffer_) {
340
- if (isolate()->assembler_spare_buffer() == NULL &&
341
- buffer_size_ == kMinimalBufferSize) {
342
- isolate()->set_assembler_spare_buffer(buffer_);
343
- } else {
344
- DeleteArray(buffer_);
345
- }
346
- }
347
375
  }
348
376
 
349
377
 
@@ -351,6 +379,7 @@ void Assembler::GetCode(CodeDesc* desc) {
351
379
  // Emit constant pool if necessary.
352
380
  CheckConstPool(true, false);
353
381
  ASSERT(num_pending_reloc_info_ == 0);
382
+ ASSERT(num_pending_64_bit_reloc_info_ == 0);
354
383
 
355
384
  // Set up code descriptor.
356
385
  desc->buffer = buffer_;
@@ -397,6 +426,11 @@ bool Assembler::IsLdrRegisterImmediate(Instr instr) {
397
426
  }
398
427
 
399
428
 
429
+ bool Assembler::IsVldrDRegisterImmediate(Instr instr) {
430
+ return (instr & (15 * B24 | 3 * B20 | 15 * B8)) == (13 * B24 | B20 | 11 * B8);
431
+ }
432
+
433
+
400
434
  int Assembler::GetLdrRegisterImmediateOffset(Instr instr) {
401
435
  ASSERT(IsLdrRegisterImmediate(instr));
402
436
  bool positive = (instr & B23) == B23;
@@ -405,6 +439,15 @@ int Assembler::GetLdrRegisterImmediateOffset(Instr instr) {
405
439
  }
406
440
 
407
441
 
442
+ int Assembler::GetVldrDRegisterImmediateOffset(Instr instr) {
443
+ ASSERT(IsVldrDRegisterImmediate(instr));
444
+ bool positive = (instr & B23) == B23;
445
+ int offset = instr & kOff8Mask; // Zero extended offset.
446
+ offset <<= 2;
447
+ return positive ? offset : -offset;
448
+ }
449
+
450
+
408
451
  Instr Assembler::SetLdrRegisterImmediateOffset(Instr instr, int offset) {
409
452
  ASSERT(IsLdrRegisterImmediate(instr));
410
453
  bool positive = offset >= 0;
@@ -417,6 +460,19 @@ Instr Assembler::SetLdrRegisterImmediateOffset(Instr instr, int offset) {
417
460
  }
418
461
 
419
462
 
463
+ Instr Assembler::SetVldrDRegisterImmediateOffset(Instr instr, int offset) {
464
+ ASSERT(IsVldrDRegisterImmediate(instr));
465
+ ASSERT((offset & ~3) == offset); // Must be 64-bit aligned.
466
+ bool positive = offset >= 0;
467
+ if (!positive) offset = -offset;
468
+ ASSERT(is_uint10(offset));
469
+ // Set bit indicating whether the offset should be added.
470
+ instr = (instr & ~B23) | (positive ? B23 : 0);
471
+ // Set the actual offset. Its bottom 2 bits are zero.
472
+ return (instr & ~kOff8Mask) | (offset >> 2);
473
+ }
474
+
475
+
420
476
  bool Assembler::IsStrRegisterImmediate(Instr instr) {
421
477
  return (instr & (B27 | B26 | B25 | B22 | B20)) == B26;
422
478
  }
@@ -502,7 +558,14 @@ bool Assembler::IsLdrRegFpNegOffset(Instr instr) {
502
558
  bool Assembler::IsLdrPcImmediateOffset(Instr instr) {
503
559
  // Check the instruction is indeed a
504
560
  // ldr<cond> <Rd>, [pc +/- offset_12].
505
- return (instr & (kLdrPCMask & ~kCondMask)) == 0x051f0000;
561
+ return (instr & kLdrPCMask) == kLdrPCPattern;
562
+ }
563
+
564
+
565
+ bool Assembler::IsVldrDPcImmediateOffset(Instr instr) {
566
+ // Check the instruction is indeed a
567
+ // vldr<cond> <Dd>, [pc +/- offset_10].
568
+ return (instr & kVldrDPCMask) == kVldrDPCPattern;
506
569
  }
507
570
 
508
571
 
@@ -705,12 +768,6 @@ void Assembler::next(Label* L) {
705
768
  }
706
769
 
707
770
 
708
- static Instr EncodeMovwImmediate(uint32_t immediate) {
709
- ASSERT(immediate < 0x10000);
710
- return ((immediate & 0xf000) << 4) | (immediate & 0xfff);
711
- }
712
-
713
-
714
771
  // Low-level code emission routines depending on the addressing mode.
715
772
  // If this returns true then you have to use the rotate_imm and immed_8
716
773
  // that it returns, because it may have already changed the instruction
@@ -746,7 +803,7 @@ static bool fits_shifter(uint32_t imm32,
746
803
  }
747
804
  }
748
805
  } else if ((*instr & kCmpCmnMask) == kCmpCmnPattern) {
749
- if (fits_shifter(-imm32, rotate_imm, immed_8, NULL)) {
806
+ if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) {
750
807
  *instr ^= kCmpCmnFlip;
751
808
  return true;
752
809
  }
@@ -754,7 +811,7 @@ static bool fits_shifter(uint32_t imm32,
754
811
  Instr alu_insn = (*instr & kALUMask);
755
812
  if (alu_insn == ADD ||
756
813
  alu_insn == SUB) {
757
- if (fits_shifter(-imm32, rotate_imm, immed_8, NULL)) {
814
+ if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) {
758
815
  *instr ^= kAddSubFlip;
759
816
  return true;
760
817
  }
@@ -775,39 +832,44 @@ static bool fits_shifter(uint32_t imm32,
775
832
  // if they can be encoded in the ARM's 12 bits of immediate-offset instruction
776
833
  // space. There is no guarantee that the relocated location can be similarly
777
834
  // encoded.
778
- bool Operand::must_use_constant_pool() const {
835
+ bool Operand::must_output_reloc_info(const Assembler* assembler) const {
779
836
  if (rmode_ == RelocInfo::EXTERNAL_REFERENCE) {
780
837
  #ifdef DEBUG
781
838
  if (!Serializer::enabled()) {
782
839
  Serializer::TooLateToEnableNow();
783
840
  }
784
841
  #endif // def DEBUG
842
+ if (assembler != NULL && assembler->predictable_code_size()) return true;
785
843
  return Serializer::enabled();
786
- } else if (rmode_ == RelocInfo::NONE) {
844
+ } else if (RelocInfo::IsNone(rmode_)) {
787
845
  return false;
788
846
  }
789
847
  return true;
790
848
  }
791
849
 
792
850
 
793
- bool Operand::is_single_instruction(Instr instr) const {
851
+ static bool use_movw_movt(const Operand& x, const Assembler* assembler) {
852
+ if (Assembler::use_immediate_embedded_pointer_loads(assembler)) {
853
+ return true;
854
+ }
855
+ if (x.must_output_reloc_info(assembler)) {
856
+ return false;
857
+ }
858
+ return CpuFeatures::IsSupported(ARMv7);
859
+ }
860
+
861
+
862
+ bool Operand::is_single_instruction(const Assembler* assembler,
863
+ Instr instr) const {
794
864
  if (rm_.is_valid()) return true;
795
865
  uint32_t dummy1, dummy2;
796
- if (must_use_constant_pool() ||
866
+ if (must_output_reloc_info(assembler) ||
797
867
  !fits_shifter(imm32_, &dummy1, &dummy2, &instr)) {
798
868
  // The immediate operand cannot be encoded as a shifter operand, or use of
799
869
  // constant pool is required. For a mov instruction not setting the
800
870
  // condition code additional instruction conventions can be used.
801
871
  if ((instr & ~kCondMask) == 13*B21) { // mov, S not set
802
- if (must_use_constant_pool() ||
803
- !CpuFeatures::IsSupported(ARMv7)) {
804
- // mov instruction will be an ldr from constant pool (one instruction).
805
- return true;
806
- } else {
807
- // mov instruction will be a mov or movw followed by movt (two
808
- // instructions).
809
- return false;
810
- }
872
+ return !use_movw_movt(*this, assembler);
811
873
  } else {
812
874
  // If this is not a mov or mvn instruction there will always an additional
813
875
  // instructions - either mov or ldr. The mov might actually be two
@@ -823,6 +885,29 @@ bool Operand::is_single_instruction(Instr instr) const {
823
885
  }
824
886
 
825
887
 
888
+ void Assembler::move_32_bit_immediate(Condition cond,
889
+ Register rd,
890
+ SBit s,
891
+ const Operand& x) {
892
+ if (rd.code() != pc.code() && s == LeaveCC) {
893
+ if (use_movw_movt(x, this)) {
894
+ if (x.must_output_reloc_info(this)) {
895
+ RecordRelocInfo(x.rmode_, x.imm32_, DONT_USE_CONSTANT_POOL);
896
+ // Make sure the movw/movt doesn't get separated.
897
+ BlockConstPoolFor(2);
898
+ }
899
+ emit(cond | 0x30*B20 | rd.code()*B12 |
900
+ EncodeMovwImmediate(x.imm32_ & 0xffff));
901
+ movt(rd, static_cast<uint32_t>(x.imm32_) >> 16, cond);
902
+ return;
903
+ }
904
+ }
905
+
906
+ RecordRelocInfo(x.rmode_, x.imm32_, USE_CONSTANT_POOL);
907
+ ldr(rd, MemOperand(pc, 0), cond);
908
+ }
909
+
910
+
826
911
  void Assembler::addrmod1(Instr instr,
827
912
  Register rn,
828
913
  Register rd,
@@ -833,7 +918,7 @@ void Assembler::addrmod1(Instr instr,
833
918
  // Immediate.
834
919
  uint32_t rotate_imm;
835
920
  uint32_t immed_8;
836
- if (x.must_use_constant_pool() ||
921
+ if (x.must_output_reloc_info(this) ||
837
922
  !fits_shifter(x.imm32_, &rotate_imm, &immed_8, &instr)) {
838
923
  // The immediate operand cannot be encoded as a shifter operand, so load
839
924
  // it first to register ip and change the original instruction to use ip.
@@ -842,24 +927,19 @@ void Assembler::addrmod1(Instr instr,
842
927
  CHECK(!rn.is(ip)); // rn should never be ip, or will be trashed
843
928
  Condition cond = Instruction::ConditionField(instr);
844
929
  if ((instr & ~kCondMask) == 13*B21) { // mov, S not set
845
- if (x.must_use_constant_pool() ||
846
- !CpuFeatures::IsSupported(ARMv7)) {
847
- RecordRelocInfo(x.rmode_, x.imm32_);
848
- ldr(rd, MemOperand(pc, 0), cond);
849
- } else {
850
- // Will probably use movw, will certainly not use constant pool.
851
- mov(rd, Operand(x.imm32_ & 0xffff), LeaveCC, cond);
852
- movt(rd, static_cast<uint32_t>(x.imm32_) >> 16, cond);
853
- }
930
+ move_32_bit_immediate(cond, rd, LeaveCC, x);
854
931
  } else {
855
- // If this is not a mov or mvn instruction we may still be able to avoid
856
- // a constant pool entry by using mvn or movw.
857
- if (!x.must_use_constant_pool() &&
858
- (instr & kMovMvnMask) != kMovMvnPattern) {
859
- mov(ip, x, LeaveCC, cond);
860
- } else {
861
- RecordRelocInfo(x.rmode_, x.imm32_);
932
+ if ((instr & kMovMvnMask) == kMovMvnPattern) {
933
+ // Moves need to use a constant pool entry.
934
+ RecordRelocInfo(x.rmode_, x.imm32_, USE_CONSTANT_POOL);
862
935
  ldr(ip, MemOperand(pc, 0), cond);
936
+ } else if (x.must_output_reloc_info(this)) {
937
+ // Otherwise, use most efficient form of fetching from constant pool.
938
+ move_32_bit_immediate(cond, ip, LeaveCC, x);
939
+ } else {
940
+ // If this is not a mov or mvn instruction we may still be able to
941
+ // avoid a constant pool entry by using mvn or movw.
942
+ mov(ip, x, LeaveCC, cond);
863
943
  }
864
944
  addrmod1(instr, rn, rd, Operand(ip));
865
945
  }
@@ -1166,6 +1246,9 @@ void Assembler::mov(Register dst, const Operand& src, SBit s, Condition cond) {
1166
1246
 
1167
1247
  void Assembler::movw(Register reg, uint32_t immediate, Condition cond) {
1168
1248
  ASSERT(immediate < 0x10000);
1249
+ // May use movw if supported, but on unsupported platforms will try to use
1250
+ // equivalent rotated immed_8 value and other tricks before falling back to a
1251
+ // constant pool load.
1169
1252
  mov(reg, Operand(immediate), LeaveCC, cond);
1170
1253
  }
1171
1254
 
@@ -1195,6 +1278,22 @@ void Assembler::mla(Register dst, Register src1, Register src2, Register srcA,
1195
1278
  }
1196
1279
 
1197
1280
 
1281
+ void Assembler::mls(Register dst, Register src1, Register src2, Register srcA,
1282
+ Condition cond) {
1283
+ ASSERT(!dst.is(pc) && !src1.is(pc) && !src2.is(pc) && !srcA.is(pc));
1284
+ emit(cond | B22 | B21 | dst.code()*B16 | srcA.code()*B12 |
1285
+ src2.code()*B8 | B7 | B4 | src1.code());
1286
+ }
1287
+
1288
+
1289
+ void Assembler::sdiv(Register dst, Register src1, Register src2,
1290
+ Condition cond) {
1291
+ ASSERT(!dst.is(pc) && !src1.is(pc) && !src2.is(pc));
1292
+ emit(cond | B26 | B25| B24 | B20 | dst.code()*B16 | 0xf * B12 |
1293
+ src2.code()*B8 | B4 | src1.code());
1294
+ }
1295
+
1296
+
1198
1297
  void Assembler::mul(Register dst, Register src1, Register src2,
1199
1298
  SBit s, Condition cond) {
1200
1299
  ASSERT(!dst.is(pc) && !src1.is(pc) && !src2.is(pc));
@@ -1379,7 +1478,7 @@ void Assembler::msr(SRegisterFieldMask fields, const Operand& src,
1379
1478
  // Immediate.
1380
1479
  uint32_t rotate_imm;
1381
1480
  uint32_t immed_8;
1382
- if (src.must_use_constant_pool() ||
1481
+ if (src.must_output_reloc_info(this) ||
1383
1482
  !fits_shifter(src.imm32_, &rotate_imm, &immed_8, NULL)) {
1384
1483
  // Immediate operand cannot be encoded, load it first to register ip.
1385
1484
  RecordRelocInfo(src.rmode_, src.imm32_);
@@ -1653,19 +1752,21 @@ void Assembler::vldr(const DwVfpRegister dst,
1653
1752
  int offset,
1654
1753
  const Condition cond) {
1655
1754
  // Ddst = MEM(Rbase + offset).
1656
- // Instruction details available in ARM DDI 0406A, A8-628.
1657
- // cond(31-28) | 1101(27-24)| U001(23-20) | Rbase(19-16) |
1658
- // Vdst(15-12) | 1011(11-8) | offset
1659
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1755
+ // Instruction details available in ARM DDI 0406C.b, A8-924.
1756
+ // cond(31-28) | 1101(27-24)| U(23) | D(22) | 01(21-20) | Rbase(19-16) |
1757
+ // Vd(15-12) | 1011(11-8) | offset
1758
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1660
1759
  int u = 1;
1661
1760
  if (offset < 0) {
1662
1761
  offset = -offset;
1663
1762
  u = 0;
1664
1763
  }
1764
+ int vd, d;
1765
+ dst.split_code(&vd, &d);
1665
1766
 
1666
1767
  ASSERT(offset >= 0);
1667
1768
  if ((offset % 4) == 0 && (offset / 4) < 256) {
1668
- emit(cond | u*B23 | 0xD1*B20 | base.code()*B16 | dst.code()*B12 |
1769
+ emit(cond | 0xD*B24 | u*B23 | d*B22 | B20 | base.code()*B16 | vd*B12 |
1669
1770
  0xB*B8 | ((offset / 4) & 255));
1670
1771
  } else {
1671
1772
  // Larger offsets must be handled by computing the correct address
@@ -1676,7 +1777,7 @@ void Assembler::vldr(const DwVfpRegister dst,
1676
1777
  } else {
1677
1778
  sub(ip, base, Operand(offset));
1678
1779
  }
1679
- emit(cond | 0xD1*B20 | ip.code()*B16 | dst.code()*B12 | 0xB*B8);
1780
+ emit(cond | 0xD*B24 | d*B22 | B20 | ip.code()*B16 | vd*B12 | 0xB*B8);
1680
1781
  }
1681
1782
  }
1682
1783
 
@@ -1698,7 +1799,7 @@ void Assembler::vldr(const SwVfpRegister dst,
1698
1799
  // Instruction details available in ARM DDI 0406A, A8-628.
1699
1800
  // cond(31-28) | 1101(27-24)| U001(23-20) | Rbase(19-16) |
1700
1801
  // Vdst(15-12) | 1010(11-8) | offset
1701
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1802
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1702
1803
  int u = 1;
1703
1804
  if (offset < 0) {
1704
1805
  offset = -offset;
@@ -1739,19 +1840,22 @@ void Assembler::vstr(const DwVfpRegister src,
1739
1840
  int offset,
1740
1841
  const Condition cond) {
1741
1842
  // MEM(Rbase + offset) = Dsrc.
1742
- // Instruction details available in ARM DDI 0406A, A8-786.
1743
- // cond(31-28) | 1101(27-24)| U000(23-20) | | Rbase(19-16) |
1744
- // Vsrc(15-12) | 1011(11-8) | (offset/4)
1745
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1843
+ // Instruction details available in ARM DDI 0406C.b, A8-1082.
1844
+ // cond(31-28) | 1101(27-24)| U(23) | D(22) | 00(21-20) | Rbase(19-16) |
1845
+ // Vd(15-12) | 1011(11-8) | (offset/4)
1846
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1746
1847
  int u = 1;
1747
1848
  if (offset < 0) {
1748
1849
  offset = -offset;
1749
1850
  u = 0;
1750
1851
  }
1751
1852
  ASSERT(offset >= 0);
1853
+ int vd, d;
1854
+ src.split_code(&vd, &d);
1855
+
1752
1856
  if ((offset % 4) == 0 && (offset / 4) < 256) {
1753
- emit(cond | u*B23 | 0xD0*B20 | base.code()*B16 | src.code()*B12 |
1754
- 0xB*B8 | ((offset / 4) & 255));
1857
+ emit(cond | 0xD*B24 | u*B23 | d*B22 | base.code()*B16 | vd*B12 | 0xB*B8 |
1858
+ ((offset / 4) & 255));
1755
1859
  } else {
1756
1860
  // Larger offsets must be handled by computing the correct address
1757
1861
  // in the ip register.
@@ -1761,7 +1865,7 @@ void Assembler::vstr(const DwVfpRegister src,
1761
1865
  } else {
1762
1866
  sub(ip, base, Operand(offset));
1763
1867
  }
1764
- emit(cond | 0xD0*B20 | ip.code()*B16 | src.code()*B12 | 0xB*B8);
1868
+ emit(cond | 0xD*B24 | d*B22 | ip.code()*B16 | vd*B12 | 0xB*B8);
1765
1869
  }
1766
1870
  }
1767
1871
 
@@ -1783,7 +1887,7 @@ void Assembler::vstr(const SwVfpRegister src,
1783
1887
  // Instruction details available in ARM DDI 0406A, A8-786.
1784
1888
  // cond(31-28) | 1101(27-24)| U000(23-20) | Rbase(19-16) |
1785
1889
  // Vdst(15-12) | 1010(11-8) | (offset/4)
1786
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1890
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1787
1891
  int u = 1;
1788
1892
  if (offset < 0) {
1789
1893
  offset = -offset;
@@ -1814,7 +1918,7 @@ void Assembler::vstr(const SwVfpRegister src,
1814
1918
  const Condition cond) {
1815
1919
  ASSERT(!operand.rm().is_valid());
1816
1920
  ASSERT(operand.am_ == Offset);
1817
- vldr(src, operand.rn(), operand.offset(), cond);
1921
+ vstr(src, operand.rn(), operand.offset(), cond);
1818
1922
  }
1819
1923
 
1820
1924
 
@@ -1823,10 +1927,10 @@ void Assembler::vldm(BlockAddrMode am,
1823
1927
  DwVfpRegister first,
1824
1928
  DwVfpRegister last,
1825
1929
  Condition cond) {
1826
- // Instruction details available in ARM DDI 0406A, A8-626.
1930
+ // Instruction details available in ARM DDI 0406C.b, A8-922.
1827
1931
  // cond(31-28) | 110(27-25)| PUDW1(24-20) | Rbase(19-16) |
1828
- // first(15-12) | 1010(11-8) | (count * 2)
1829
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1932
+ // first(15-12) | 1011(11-8) | (count * 2)
1933
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1830
1934
  ASSERT_LE(first.code(), last.code());
1831
1935
  ASSERT(am == ia || am == ia_w || am == db_w);
1832
1936
  ASSERT(!base.is(pc));
@@ -1834,6 +1938,7 @@ void Assembler::vldm(BlockAddrMode am,
1834
1938
  int sd, d;
1835
1939
  first.split_code(&sd, &d);
1836
1940
  int count = last.code() - first.code() + 1;
1941
+ ASSERT(count <= 16);
1837
1942
  emit(cond | B27 | B26 | am | d*B22 | B20 | base.code()*B16 | sd*B12 |
1838
1943
  0xB*B8 | count*2);
1839
1944
  }
@@ -1844,10 +1949,10 @@ void Assembler::vstm(BlockAddrMode am,
1844
1949
  DwVfpRegister first,
1845
1950
  DwVfpRegister last,
1846
1951
  Condition cond) {
1847
- // Instruction details available in ARM DDI 0406A, A8-784.
1952
+ // Instruction details available in ARM DDI 0406C.b, A8-1080.
1848
1953
  // cond(31-28) | 110(27-25)| PUDW0(24-20) | Rbase(19-16) |
1849
1954
  // first(15-12) | 1011(11-8) | (count * 2)
1850
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1955
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1851
1956
  ASSERT_LE(first.code(), last.code());
1852
1957
  ASSERT(am == ia || am == ia_w || am == db_w);
1853
1958
  ASSERT(!base.is(pc));
@@ -1855,6 +1960,7 @@ void Assembler::vstm(BlockAddrMode am,
1855
1960
  int sd, d;
1856
1961
  first.split_code(&sd, &d);
1857
1962
  int count = last.code() - first.code() + 1;
1963
+ ASSERT(count <= 16);
1858
1964
  emit(cond | B27 | B26 | am | d*B22 | base.code()*B16 | sd*B12 |
1859
1965
  0xB*B8 | count*2);
1860
1966
  }
@@ -1867,7 +1973,7 @@ void Assembler::vldm(BlockAddrMode am,
1867
1973
  // Instruction details available in ARM DDI 0406A, A8-626.
1868
1974
  // cond(31-28) | 110(27-25)| PUDW1(24-20) | Rbase(19-16) |
1869
1975
  // first(15-12) | 1010(11-8) | (count/2)
1870
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1976
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1871
1977
  ASSERT_LE(first.code(), last.code());
1872
1978
  ASSERT(am == ia || am == ia_w || am == db_w);
1873
1979
  ASSERT(!base.is(pc));
@@ -1888,7 +1994,7 @@ void Assembler::vstm(BlockAddrMode am,
1888
1994
  // Instruction details available in ARM DDI 0406A, A8-784.
1889
1995
  // cond(31-28) | 110(27-25)| PUDW0(24-20) | Rbase(19-16) |
1890
1996
  // first(15-12) | 1011(11-8) | (count/2)
1891
- ASSERT(CpuFeatures::IsEnabled(VFP3));
1997
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1892
1998
  ASSERT_LE(first.code(), last.code());
1893
1999
  ASSERT(am == ia || am == ia_w || am == db_w);
1894
2000
  ASSERT(!base.is(pc));
@@ -1911,7 +2017,7 @@ static void DoubleAsTwoUInt32(double d, uint32_t* lo, uint32_t* hi) {
1911
2017
  // Only works for little endian floating point formats.
1912
2018
  // We don't support VFP on the mixed endian floating point platform.
1913
2019
  static bool FitsVMOVDoubleImmediate(double d, uint32_t *encoding) {
1914
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2020
+ ASSERT(CpuFeatures::IsSupported(VFP3));
1915
2021
 
1916
2022
  // VMOV can accept an immediate of the form:
1917
2023
  //
@@ -1961,36 +2067,70 @@ static bool FitsVMOVDoubleImmediate(double d, uint32_t *encoding) {
1961
2067
 
1962
2068
  void Assembler::vmov(const DwVfpRegister dst,
1963
2069
  double imm,
2070
+ const Register scratch,
1964
2071
  const Condition cond) {
1965
- // Dd = immediate
1966
- // Instruction details available in ARM DDI 0406B, A8-640.
1967
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2072
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
1968
2073
 
1969
2074
  uint32_t enc;
1970
- if (FitsVMOVDoubleImmediate(imm, &enc)) {
2075
+ if (CpuFeatures::IsSupported(VFP3) && FitsVMOVDoubleImmediate(imm, &enc)) {
1971
2076
  // The double can be encoded in the instruction.
1972
- emit(cond | 0xE*B24 | 0xB*B20 | dst.code()*B12 | 0xB*B8 | enc);
2077
+ //
2078
+ // Dd = immediate
2079
+ // Instruction details available in ARM DDI 0406C.b, A8-936.
2080
+ // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | imm4H(19-16) |
2081
+ // Vd(15-12) | 101(11-9) | sz=1(8) | imm4L(3-0)
2082
+ int vd, d;
2083
+ dst.split_code(&vd, &d);
2084
+ emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | vd*B12 | 0x5*B9 | B8 | enc);
2085
+ } else if (FLAG_enable_vldr_imm) {
2086
+ // TODO(jfb) Temporarily turned off until we have constant blinding or
2087
+ // some equivalent mitigation: an attacker can otherwise control
2088
+ // generated data which also happens to be executable, a Very Bad
2089
+ // Thing indeed.
2090
+ // Blinding gets tricky because we don't have xor, we probably
2091
+ // need to add/subtract without losing precision, which requires a
2092
+ // cookie value that Lithium is probably better positioned to
2093
+ // choose.
2094
+ // We could also add a few peepholes here like detecting 0.0 and
2095
+ // -0.0 and doing a vmov from the sequestered d14, forcing denorms
2096
+ // to zero (we set flush-to-zero), and normalizing NaN values.
2097
+ // We could also detect redundant values.
2098
+ // The code could also randomize the order of values, though
2099
+ // that's tricky because vldr has a limited reach. Furthermore
2100
+ // it breaks load locality.
2101
+ RecordRelocInfo(imm);
2102
+ vldr(dst, MemOperand(pc, 0), cond);
1973
2103
  } else {
1974
- // Synthesise the double from ARM immediates. This could be implemented
1975
- // using vldr from a constant pool.
2104
+ // Synthesise the double from ARM immediates.
1976
2105
  uint32_t lo, hi;
1977
2106
  DoubleAsTwoUInt32(imm, &lo, &hi);
1978
2107
 
1979
- if (lo == hi) {
1980
- // If the lo and hi parts of the double are equal, the literal is easier
1981
- // to create. This is the case with 0.0.
1982
- mov(ip, Operand(lo));
1983
- vmov(dst, ip, ip);
2108
+ if (scratch.is(no_reg)) {
2109
+ if (dst.code() < 16) {
2110
+ // Move the low part of the double into the lower of the corresponsing S
2111
+ // registers of D register dst.
2112
+ mov(ip, Operand(lo));
2113
+ vmov(dst.low(), ip, cond);
2114
+
2115
+ // Move the high part of the double into the higher of the
2116
+ // corresponsing S registers of D register dst.
2117
+ mov(ip, Operand(hi));
2118
+ vmov(dst.high(), ip, cond);
2119
+ } else {
2120
+ // D16-D31 does not have S registers, so move the low and high parts
2121
+ // directly to the D register using vmov.32.
2122
+ // Note: This may be slower, so we only do this when we have to.
2123
+ mov(ip, Operand(lo));
2124
+ vmov(dst, 0, ip, cond);
2125
+ mov(ip, Operand(hi));
2126
+ vmov(dst, 1, ip, cond);
2127
+ }
1984
2128
  } else {
1985
- // Move the low part of the double into the lower of the corresponsing S
1986
- // registers of D register dst.
2129
+ // Move the low and high parts of the double to a D register in one
2130
+ // instruction.
1987
2131
  mov(ip, Operand(lo));
1988
- vmov(dst.low(), ip, cond);
1989
-
1990
- // Move the high part of the double into the higher of the corresponsing S
1991
- // registers of D register dst.
1992
- mov(ip, Operand(hi));
1993
- vmov(dst.high(), ip, cond);
2132
+ mov(scratch, Operand(hi));
2133
+ vmov(dst, ip, scratch, cond);
1994
2134
  }
1995
2135
  }
1996
2136
  }
@@ -2001,7 +2141,7 @@ void Assembler::vmov(const SwVfpRegister dst,
2001
2141
  const Condition cond) {
2002
2142
  // Sd = Sm
2003
2143
  // Instruction details available in ARM DDI 0406B, A8-642.
2004
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2144
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2005
2145
  int sd, d, sm, m;
2006
2146
  dst.split_code(&sd, &d);
2007
2147
  src.split_code(&sm, &m);
@@ -2013,10 +2153,33 @@ void Assembler::vmov(const DwVfpRegister dst,
2013
2153
  const DwVfpRegister src,
2014
2154
  const Condition cond) {
2015
2155
  // Dd = Dm
2016
- // Instruction details available in ARM DDI 0406B, A8-642.
2017
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2018
- emit(cond | 0xE*B24 | 0xB*B20 |
2019
- dst.code()*B12 | 0x5*B9 | B8 | B6 | src.code());
2156
+ // Instruction details available in ARM DDI 0406C.b, A8-938.
2157
+ // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0000(19-16) | Vd(15-12) |
2158
+ // 101(11-9) | sz=1(8) | 0(7) | 1(6) | M(5) | 0(4) | Vm(3-0)
2159
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2160
+ int vd, d;
2161
+ dst.split_code(&vd, &d);
2162
+ int vm, m;
2163
+ src.split_code(&vm, &m);
2164
+ emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | vd*B12 | 0x5*B9 | B8 | B6 | m*B5 |
2165
+ vm);
2166
+ }
2167
+
2168
+
2169
+ void Assembler::vmov(const DwVfpRegister dst,
2170
+ int index,
2171
+ const Register src,
2172
+ const Condition cond) {
2173
+ // Dd[index] = Rt
2174
+ // Instruction details available in ARM DDI 0406C.b, A8-940.
2175
+ // cond(31-28) | 1110(27-24) | 0(23) | opc1=0index(22-21) | 0(20) |
2176
+ // Vd(19-16) | Rt(15-12) | 1011(11-8) | D(7) | opc2=00(6-5) | 1(4) | 0000(3-0)
2177
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2178
+ ASSERT(index == 0 || index == 1);
2179
+ int vd, d;
2180
+ dst.split_code(&vd, &d);
2181
+ emit(cond | 0xE*B24 | index*B21 | vd*B16 | src.code()*B12 | 0xB*B8 | d*B7 |
2182
+ B4);
2020
2183
  }
2021
2184
 
2022
2185
 
@@ -2025,13 +2188,15 @@ void Assembler::vmov(const DwVfpRegister dst,
2025
2188
  const Register src2,
2026
2189
  const Condition cond) {
2027
2190
  // Dm = <Rt,Rt2>.
2028
- // Instruction details available in ARM DDI 0406A, A8-646.
2191
+ // Instruction details available in ARM DDI 0406C.b, A8-948.
2029
2192
  // cond(31-28) | 1100(27-24)| 010(23-21) | op=0(20) | Rt2(19-16) |
2030
2193
  // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm
2031
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2194
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2032
2195
  ASSERT(!src1.is(pc) && !src2.is(pc));
2196
+ int vm, m;
2197
+ dst.split_code(&vm, &m);
2033
2198
  emit(cond | 0xC*B24 | B22 | src2.code()*B16 |
2034
- src1.code()*B12 | 0xB*B8 | B4 | dst.code());
2199
+ src1.code()*B12 | 0xB*B8 | m*B5 | B4 | vm);
2035
2200
  }
2036
2201
 
2037
2202
 
@@ -2040,13 +2205,15 @@ void Assembler::vmov(const Register dst1,
2040
2205
  const DwVfpRegister src,
2041
2206
  const Condition cond) {
2042
2207
  // <Rt,Rt2> = Dm.
2043
- // Instruction details available in ARM DDI 0406A, A8-646.
2208
+ // Instruction details available in ARM DDI 0406C.b, A8-948.
2044
2209
  // cond(31-28) | 1100(27-24)| 010(23-21) | op=1(20) | Rt2(19-16) |
2045
2210
  // Rt(15-12) | 1011(11-8) | 00(7-6) | M(5) | 1(4) | Vm
2046
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2211
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2047
2212
  ASSERT(!dst1.is(pc) && !dst2.is(pc));
2213
+ int vm, m;
2214
+ src.split_code(&vm, &m);
2048
2215
  emit(cond | 0xC*B24 | B22 | B20 | dst2.code()*B16 |
2049
- dst1.code()*B12 | 0xB*B8 | B4 | src.code());
2216
+ dst1.code()*B12 | 0xB*B8 | m*B5 | B4 | vm);
2050
2217
  }
2051
2218
 
2052
2219
 
@@ -2057,7 +2224,7 @@ void Assembler::vmov(const SwVfpRegister dst,
2057
2224
  // Instruction details available in ARM DDI 0406A, A8-642.
2058
2225
  // cond(31-28) | 1110(27-24)| 000(23-21) | op=0(20) | Vn(19-16) |
2059
2226
  // Rt(15-12) | 1010(11-8) | N(7)=0 | 00(6-5) | 1(4) | 0000(3-0)
2060
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2227
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2061
2228
  ASSERT(!src.is(pc));
2062
2229
  int sn, n;
2063
2230
  dst.split_code(&sn, &n);
@@ -2072,7 +2239,7 @@ void Assembler::vmov(const Register dst,
2072
2239
  // Instruction details available in ARM DDI 0406A, A8-642.
2073
2240
  // cond(31-28) | 1110(27-24)| 000(23-21) | op=1(20) | Vn(19-16) |
2074
2241
  // Rt(15-12) | 1010(11-8) | N(7)=0 | 00(6-5) | 1(4) | 0000(3-0)
2075
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2242
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2076
2243
  ASSERT(!dst.is(pc));
2077
2244
  int sn, n;
2078
2245
  src.split_code(&sn, &n);
@@ -2197,7 +2364,7 @@ void Assembler::vcvt_f64_s32(const DwVfpRegister dst,
2197
2364
  const SwVfpRegister src,
2198
2365
  VFPConversionMode mode,
2199
2366
  const Condition cond) {
2200
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2367
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2201
2368
  emit(EncodeVCVT(F64, dst.code(), S32, src.code(), mode, cond));
2202
2369
  }
2203
2370
 
@@ -2206,7 +2373,7 @@ void Assembler::vcvt_f32_s32(const SwVfpRegister dst,
2206
2373
  const SwVfpRegister src,
2207
2374
  VFPConversionMode mode,
2208
2375
  const Condition cond) {
2209
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2376
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2210
2377
  emit(EncodeVCVT(F32, dst.code(), S32, src.code(), mode, cond));
2211
2378
  }
2212
2379
 
@@ -2215,7 +2382,7 @@ void Assembler::vcvt_f64_u32(const DwVfpRegister dst,
2215
2382
  const SwVfpRegister src,
2216
2383
  VFPConversionMode mode,
2217
2384
  const Condition cond) {
2218
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2385
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2219
2386
  emit(EncodeVCVT(F64, dst.code(), U32, src.code(), mode, cond));
2220
2387
  }
2221
2388
 
@@ -2224,7 +2391,7 @@ void Assembler::vcvt_s32_f64(const SwVfpRegister dst,
2224
2391
  const DwVfpRegister src,
2225
2392
  VFPConversionMode mode,
2226
2393
  const Condition cond) {
2227
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2394
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2228
2395
  emit(EncodeVCVT(S32, dst.code(), F64, src.code(), mode, cond));
2229
2396
  }
2230
2397
 
@@ -2233,7 +2400,7 @@ void Assembler::vcvt_u32_f64(const SwVfpRegister dst,
2233
2400
  const DwVfpRegister src,
2234
2401
  VFPConversionMode mode,
2235
2402
  const Condition cond) {
2236
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2403
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2237
2404
  emit(EncodeVCVT(U32, dst.code(), F64, src.code(), mode, cond));
2238
2405
  }
2239
2406
 
@@ -2242,7 +2409,7 @@ void Assembler::vcvt_f64_f32(const DwVfpRegister dst,
2242
2409
  const SwVfpRegister src,
2243
2410
  VFPConversionMode mode,
2244
2411
  const Condition cond) {
2245
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2412
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2246
2413
  emit(EncodeVCVT(F64, dst.code(), F32, src.code(), mode, cond));
2247
2414
  }
2248
2415
 
@@ -2251,7 +2418,7 @@ void Assembler::vcvt_f32_f64(const SwVfpRegister dst,
2251
2418
  const DwVfpRegister src,
2252
2419
  VFPConversionMode mode,
2253
2420
  const Condition cond) {
2254
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2421
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2255
2422
  emit(EncodeVCVT(F32, dst.code(), F64, src.code(), mode, cond));
2256
2423
  }
2257
2424
 
@@ -2259,16 +2426,33 @@ void Assembler::vcvt_f32_f64(const SwVfpRegister dst,
2259
2426
  void Assembler::vneg(const DwVfpRegister dst,
2260
2427
  const DwVfpRegister src,
2261
2428
  const Condition cond) {
2262
- emit(cond | 0xE*B24 | 0xB*B20 | B16 | dst.code()*B12 |
2263
- 0x5*B9 | B8 | B6 | src.code());
2429
+ // Instruction details available in ARM DDI 0406C.b, A8-968.
2430
+ // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0001(19-16) | Vd(15-12) |
2431
+ // 101(11-9) | sz=1(8) | 0(7) | 1(6) | M(5) | 0(4) | Vm(3-0)
2432
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2433
+ int vd, d;
2434
+ dst.split_code(&vd, &d);
2435
+ int vm, m;
2436
+ src.split_code(&vm, &m);
2437
+
2438
+ emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | B16 | vd*B12 | 0x5*B9 | B8 | B6 |
2439
+ m*B5 | vm);
2264
2440
  }
2265
2441
 
2266
2442
 
2267
2443
  void Assembler::vabs(const DwVfpRegister dst,
2268
2444
  const DwVfpRegister src,
2269
2445
  const Condition cond) {
2270
- emit(cond | 0xE*B24 | 0xB*B20 | dst.code()*B12 |
2271
- 0x5*B9 | B8 | 0x3*B6 | src.code());
2446
+ // Instruction details available in ARM DDI 0406C.b, A8-524.
2447
+ // cond(31-28) | 11101(27-23) | D(22) | 11(21-20) | 0000(19-16) | Vd(15-12) |
2448
+ // 101(11-9) | sz=1(8) | 1(7) | 1(6) | M(5) | 0(4) | Vm(3-0)
2449
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2450
+ int vd, d;
2451
+ dst.split_code(&vd, &d);
2452
+ int vm, m;
2453
+ src.split_code(&vm, &m);
2454
+ emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | vd*B12 | 0x5*B9 | B8 | B7 | B6 |
2455
+ m*B5 | vm);
2272
2456
  }
2273
2457
 
2274
2458
 
@@ -2278,12 +2462,18 @@ void Assembler::vadd(const DwVfpRegister dst,
2278
2462
  const Condition cond) {
2279
2463
  // Dd = vadd(Dn, Dm) double precision floating point addition.
2280
2464
  // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2281
- // Instruction details available in ARM DDI 0406A, A8-536.
2282
- // cond(31-28) | 11100(27-23)| D=?(22) | 11(21-20) | Vn(19-16) |
2283
- // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 0(6) | M=?(5) | 0(4) | Vm(3-0)
2284
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2285
- emit(cond | 0xE*B24 | 0x3*B20 | src1.code()*B16 |
2286
- dst.code()*B12 | 0x5*B9 | B8 | src2.code());
2465
+ // Instruction details available in ARM DDI 0406C.b, A8-830.
2466
+ // cond(31-28) | 11100(27-23)| D(22) | 11(21-20) | Vn(19-16) |
2467
+ // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 0(6) | M(5) | 0(4) | Vm(3-0)
2468
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2469
+ int vd, d;
2470
+ dst.split_code(&vd, &d);
2471
+ int vn, n;
2472
+ src1.split_code(&vn, &n);
2473
+ int vm, m;
2474
+ src2.split_code(&vm, &m);
2475
+ emit(cond | 0x1C*B23 | d*B22 | 0x3*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 |
2476
+ n*B7 | m*B5 | vm);
2287
2477
  }
2288
2478
 
2289
2479
 
@@ -2293,12 +2483,18 @@ void Assembler::vsub(const DwVfpRegister dst,
2293
2483
  const Condition cond) {
2294
2484
  // Dd = vsub(Dn, Dm) double precision floating point subtraction.
2295
2485
  // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2296
- // Instruction details available in ARM DDI 0406A, A8-784.
2297
- // cond(31-28) | 11100(27-23)| D=?(22) | 11(21-20) | Vn(19-16) |
2298
- // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 1(6) | M=?(5) | 0(4) | Vm(3-0)
2299
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2300
- emit(cond | 0xE*B24 | 0x3*B20 | src1.code()*B16 |
2301
- dst.code()*B12 | 0x5*B9 | B8 | B6 | src2.code());
2486
+ // Instruction details available in ARM DDI 0406C.b, A8-1086.
2487
+ // cond(31-28) | 11100(27-23)| D(22) | 11(21-20) | Vn(19-16) |
2488
+ // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 1(6) | M(5) | 0(4) | Vm(3-0)
2489
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2490
+ int vd, d;
2491
+ dst.split_code(&vd, &d);
2492
+ int vn, n;
2493
+ src1.split_code(&vn, &n);
2494
+ int vm, m;
2495
+ src2.split_code(&vm, &m);
2496
+ emit(cond | 0x1C*B23 | d*B22 | 0x3*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 |
2497
+ n*B7 | B6 | m*B5 | vm);
2302
2498
  }
2303
2499
 
2304
2500
 
@@ -2308,12 +2504,36 @@ void Assembler::vmul(const DwVfpRegister dst,
2308
2504
  const Condition cond) {
2309
2505
  // Dd = vmul(Dn, Dm) double precision floating point multiplication.
2310
2506
  // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2311
- // Instruction details available in ARM DDI 0406A, A8-784.
2312
- // cond(31-28) | 11100(27-23)| D=?(22) | 10(21-20) | Vn(19-16) |
2313
- // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 0(6) | M=?(5) | 0(4) | Vm(3-0)
2314
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2315
- emit(cond | 0xE*B24 | 0x2*B20 | src1.code()*B16 |
2316
- dst.code()*B12 | 0x5*B9 | B8 | src2.code());
2507
+ // Instruction details available in ARM DDI 0406C.b, A8-960.
2508
+ // cond(31-28) | 11100(27-23)| D(22) | 10(21-20) | Vn(19-16) |
2509
+ // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 0(6) | M(5) | 0(4) | Vm(3-0)
2510
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2511
+ int vd, d;
2512
+ dst.split_code(&vd, &d);
2513
+ int vn, n;
2514
+ src1.split_code(&vn, &n);
2515
+ int vm, m;
2516
+ src2.split_code(&vm, &m);
2517
+ emit(cond | 0x1C*B23 | d*B22 | 0x2*B20 | vn*B16 | vd*B12 | 0x5*B9 | B8 |
2518
+ n*B7 | m*B5 | vm);
2519
+ }
2520
+
2521
+
2522
+ void Assembler::vmla(const DwVfpRegister dst,
2523
+ const DwVfpRegister src1,
2524
+ const DwVfpRegister src2,
2525
+ const Condition cond) {
2526
+ // Instruction details available in ARM DDI 0406C.b, A8-932.
2527
+ // cond(31-28) | 11100(27-23) | D(22) | 00(21-20) | Vn(19-16) |
2528
+ // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | op=0(6) | M(5) | 0(4) | Vm(3-0)
2529
+ int vd, d;
2530
+ dst.split_code(&vd, &d);
2531
+ int vn, n;
2532
+ src1.split_code(&vn, &n);
2533
+ int vm, m;
2534
+ src2.split_code(&vm, &m);
2535
+ emit(cond | 0x1C*B23 | d*B22 | vn*B16 | vd*B12 | 0x5*B9 | B8 | n*B7 | m*B5 |
2536
+ vm);
2317
2537
  }
2318
2538
 
2319
2539
 
@@ -2323,12 +2543,18 @@ void Assembler::vdiv(const DwVfpRegister dst,
2323
2543
  const Condition cond) {
2324
2544
  // Dd = vdiv(Dn, Dm) double precision floating point division.
2325
2545
  // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm.
2326
- // Instruction details available in ARM DDI 0406A, A8-584.
2327
- // cond(31-28) | 11101(27-23)| D=?(22) | 00(21-20) | Vn(19-16) |
2328
- // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=? | 0(6) | M=?(5) | 0(4) | Vm(3-0)
2329
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2330
- emit(cond | 0xE*B24 | B23 | src1.code()*B16 |
2331
- dst.code()*B12 | 0x5*B9 | B8 | src2.code());
2546
+ // Instruction details available in ARM DDI 0406C.b, A8-882.
2547
+ // cond(31-28) | 11101(27-23)| D(22) | 00(21-20) | Vn(19-16) |
2548
+ // Vd(15-12) | 101(11-9) | sz=1(8) | N(7) | 0(6) | M(5) | 0(4) | Vm(3-0)
2549
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2550
+ int vd, d;
2551
+ dst.split_code(&vd, &d);
2552
+ int vn, n;
2553
+ src1.split_code(&vn, &n);
2554
+ int vm, m;
2555
+ src2.split_code(&vm, &m);
2556
+ emit(cond | 0x1D*B23 | d*B22 | vn*B16 | vd*B12 | 0x5*B9 | B8 | n*B7 | m*B5 |
2557
+ vm);
2332
2558
  }
2333
2559
 
2334
2560
 
@@ -2336,26 +2562,31 @@ void Assembler::vcmp(const DwVfpRegister src1,
2336
2562
  const DwVfpRegister src2,
2337
2563
  const Condition cond) {
2338
2564
  // vcmp(Dd, Dm) double precision floating point comparison.
2339
- // Instruction details available in ARM DDI 0406A, A8-570.
2340
- // cond(31-28) | 11101 (27-23)| D=?(22) | 11 (21-20) | 0100 (19-16) |
2341
- // Vd(15-12) | 101(11-9) | sz(8)=1 | E(7)=0 | 1(6) | M(5)=? | 0(4) | Vm(3-0)
2342
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2343
- emit(cond | 0xE*B24 |B23 | 0x3*B20 | B18 |
2344
- src1.code()*B12 | 0x5*B9 | B8 | B6 | src2.code());
2565
+ // Instruction details available in ARM DDI 0406C.b, A8-864.
2566
+ // cond(31-28) | 11101(27-23)| D(22) | 11(21-20) | 0100(19-16) |
2567
+ // Vd(15-12) | 101(11-9) | sz=1(8) | E=0(7) | 1(6) | M(5) | 0(4) | Vm(3-0)
2568
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2569
+ int vd, d;
2570
+ src1.split_code(&vd, &d);
2571
+ int vm, m;
2572
+ src2.split_code(&vm, &m);
2573
+ emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | 0x4*B16 | vd*B12 | 0x5*B9 | B8 | B6 |
2574
+ m*B5 | vm);
2345
2575
  }
2346
2576
 
2347
2577
 
2348
2578
  void Assembler::vcmp(const DwVfpRegister src1,
2349
2579
  const double src2,
2350
2580
  const Condition cond) {
2351
- // vcmp(Dd, Dm) double precision floating point comparison.
2352
- // Instruction details available in ARM DDI 0406A, A8-570.
2353
- // cond(31-28) | 11101 (27-23)| D=?(22) | 11 (21-20) | 0101 (19-16) |
2354
- // Vd(15-12) | 101(11-9) | sz(8)=1 | E(7)=0 | 1(6) | M(5)=? | 0(4) | 0000(3-0)
2355
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2581
+ // vcmp(Dd, #0.0) double precision floating point comparison.
2582
+ // Instruction details available in ARM DDI 0406C.b, A8-864.
2583
+ // cond(31-28) | 11101(27-23)| D(22) | 11(21-20) | 0101(19-16) |
2584
+ // Vd(15-12) | 101(11-9) | sz=1(8) | E=0(7) | 1(6) | 0(5) | 0(4) | 0000(3-0)
2585
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2356
2586
  ASSERT(src2 == 0.0);
2357
- emit(cond | 0xE*B24 |B23 | 0x3*B20 | B18 | B16 |
2358
- src1.code()*B12 | 0x5*B9 | B8 | B6);
2587
+ int vd, d;
2588
+ src1.split_code(&vd, &d);
2589
+ emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | 0x5*B16 | vd*B12 | 0x5*B9 | B8 | B6);
2359
2590
  }
2360
2591
 
2361
2592
 
@@ -2363,7 +2594,7 @@ void Assembler::vmsr(Register dst, Condition cond) {
2363
2594
  // Instruction details available in ARM DDI 0406A, A8-652.
2364
2595
  // cond(31-28) | 1110 (27-24) | 1110(23-20)| 0001 (19-16) |
2365
2596
  // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0)
2366
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2597
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2367
2598
  emit(cond | 0xE*B24 | 0xE*B20 | B16 |
2368
2599
  dst.code()*B12 | 0xA*B8 | B4);
2369
2600
  }
@@ -2373,7 +2604,7 @@ void Assembler::vmrs(Register dst, Condition cond) {
2373
2604
  // Instruction details available in ARM DDI 0406A, A8-652.
2374
2605
  // cond(31-28) | 1110 (27-24) | 1111(23-20)| 0001 (19-16) |
2375
2606
  // Rt(15-12) | 1010 (11-8) | 0(7) | 00 (6-5) | 1(4) | 0000(3-0)
2376
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2607
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2377
2608
  emit(cond | 0xE*B24 | 0xF*B20 | B16 |
2378
2609
  dst.code()*B12 | 0xA*B8 | B4);
2379
2610
  }
@@ -2382,25 +2613,50 @@ void Assembler::vmrs(Register dst, Condition cond) {
2382
2613
  void Assembler::vsqrt(const DwVfpRegister dst,
2383
2614
  const DwVfpRegister src,
2384
2615
  const Condition cond) {
2385
- // cond(31-28) | 11101 (27-23)| D=?(22) | 11 (21-20) | 0001 (19-16) |
2386
- // Vd(15-12) | 101(11-9) | sz(8)=1 | 11 (7-6) | M(5)=? | 0(4) | Vm(3-0)
2387
- ASSERT(CpuFeatures::IsEnabled(VFP3));
2388
- emit(cond | 0xE*B24 | B23 | 0x3*B20 | B16 |
2389
- dst.code()*B12 | 0x5*B9 | B8 | 3*B6 | src.code());
2616
+ // Instruction details available in ARM DDI 0406C.b, A8-1058.
2617
+ // cond(31-28) | 11101(27-23)| D(22) | 11(21-20) | 0001(19-16) |
2618
+ // Vd(15-12) | 101(11-9) | sz=1(8) | 11(7-6) | M(5) | 0(4) | Vm(3-0)
2619
+ ASSERT(CpuFeatures::IsEnabled(VFP2));
2620
+ int vd, d;
2621
+ dst.split_code(&vd, &d);
2622
+ int vm, m;
2623
+ src.split_code(&vm, &m);
2624
+ emit(cond | 0x1D*B23 | d*B22 | 0x3*B20 | B16 | vd*B12 | 0x5*B9 | B8 | 0x3*B6 |
2625
+ m*B5 | vm);
2390
2626
  }
2391
2627
 
2392
2628
 
2393
2629
  // Pseudo instructions.
2394
2630
  void Assembler::nop(int type) {
2395
- // This is mov rx, rx.
2396
- ASSERT(0 <= type && type <= 14); // mov pc, pc is not a nop.
2631
+ // ARMv6{K/T2} and v7 have an actual NOP instruction but it serializes
2632
+ // some of the CPU's pipeline and has to issue. Older ARM chips simply used
2633
+ // MOV Rx, Rx as NOP and it performs better even in newer CPUs.
2634
+ // We therefore use MOV Rx, Rx, even on newer CPUs, and use Rx to encode
2635
+ // a type.
2636
+ ASSERT(0 <= type && type <= 14); // mov pc, pc isn't a nop.
2397
2637
  emit(al | 13*B21 | type*B12 | type);
2398
2638
  }
2399
2639
 
2400
2640
 
2641
+ bool Assembler::IsMovT(Instr instr) {
2642
+ instr &= ~(((kNumberOfConditions - 1) << 28) | // Mask off conditions
2643
+ ((kNumRegisters-1)*B12) | // mask out register
2644
+ EncodeMovwImmediate(0xFFFF)); // mask out immediate value
2645
+ return instr == 0x34*B20;
2646
+ }
2647
+
2648
+
2649
+ bool Assembler::IsMovW(Instr instr) {
2650
+ instr &= ~(((kNumberOfConditions - 1) << 28) | // Mask off conditions
2651
+ ((kNumRegisters-1)*B12) | // mask out destination
2652
+ EncodeMovwImmediate(0xFFFF)); // mask out immediate value
2653
+ return instr == 0x30*B20;
2654
+ }
2655
+
2656
+
2401
2657
  bool Assembler::IsNop(Instr instr, int type) {
2658
+ ASSERT(0 <= type && type <= 14); // mov pc, pc isn't a nop.
2402
2659
  // Check for mov rx, rx where x = type.
2403
- ASSERT(0 <= type && type <= 14); // mov pc, pc is not a nop.
2404
2660
  return instr == (al | 13*B21 | type*B12 | type);
2405
2661
  }
2406
2662
 
@@ -2435,6 +2691,14 @@ void Assembler::RecordComment(const char* msg) {
2435
2691
  }
2436
2692
 
2437
2693
 
2694
+ void Assembler::RecordConstPool(int size) {
2695
+ // We only need this for debugger support, to correctly compute offsets in the
2696
+ // code.
2697
+ #ifdef ENABLE_DEBUGGER_SUPPORT
2698
+ RecordRelocInfo(RelocInfo::CONST_POOL, static_cast<intptr_t>(size));
2699
+ #endif
2700
+ }
2701
+
2438
2702
  void Assembler::GrowBuffer() {
2439
2703
  if (!own_buffer_) FATAL("external code buffer is too small");
2440
2704
 
@@ -2491,6 +2755,7 @@ void Assembler::db(uint8_t data) {
2491
2755
  // to write pure data with no pointers and the constant pool should
2492
2756
  // be emitted before using db.
2493
2757
  ASSERT(num_pending_reloc_info_ == 0);
2758
+ ASSERT(num_pending_64_bit_reloc_info_ == 0);
2494
2759
  CheckBuffer();
2495
2760
  *reinterpret_cast<uint8_t*>(pc_) = data;
2496
2761
  pc_ += sizeof(uint8_t);
@@ -2502,33 +2767,33 @@ void Assembler::dd(uint32_t data) {
2502
2767
  // to write pure data with no pointers and the constant pool should
2503
2768
  // be emitted before using dd.
2504
2769
  ASSERT(num_pending_reloc_info_ == 0);
2770
+ ASSERT(num_pending_64_bit_reloc_info_ == 0);
2505
2771
  CheckBuffer();
2506
2772
  *reinterpret_cast<uint32_t*>(pc_) = data;
2507
2773
  pc_ += sizeof(uint32_t);
2508
2774
  }
2509
2775
 
2510
2776
 
2511
- void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) {
2777
+ void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data,
2778
+ UseConstantPoolMode mode) {
2512
2779
  // We do not try to reuse pool constants.
2513
2780
  RelocInfo rinfo(pc_, rmode, data, NULL);
2514
- if (rmode >= RelocInfo::JS_RETURN && rmode <= RelocInfo::DEBUG_BREAK_SLOT) {
2781
+ if (((rmode >= RelocInfo::JS_RETURN) &&
2782
+ (rmode <= RelocInfo::DEBUG_BREAK_SLOT)) ||
2783
+ (rmode == RelocInfo::CONST_POOL) ||
2784
+ mode == DONT_USE_CONSTANT_POOL) {
2515
2785
  // Adjust code for new modes.
2516
2786
  ASSERT(RelocInfo::IsDebugBreakSlot(rmode)
2517
2787
  || RelocInfo::IsJSReturn(rmode)
2518
2788
  || RelocInfo::IsComment(rmode)
2519
- || RelocInfo::IsPosition(rmode));
2789
+ || RelocInfo::IsPosition(rmode)
2790
+ || RelocInfo::IsConstPool(rmode)
2791
+ || mode == DONT_USE_CONSTANT_POOL);
2520
2792
  // These modes do not need an entry in the constant pool.
2521
2793
  } else {
2522
- ASSERT(num_pending_reloc_info_ < kMaxNumPendingRelocInfo);
2523
- if (num_pending_reloc_info_ == 0) {
2524
- first_const_pool_use_ = pc_offset();
2525
- }
2526
- pending_reloc_info_[num_pending_reloc_info_++] = rinfo;
2527
- // Make sure the constant pool is not emitted in place of the next
2528
- // instruction for which we just recorded relocation info.
2529
- BlockConstPoolFor(1);
2794
+ RecordRelocInfoConstantPoolEntryHelper(rinfo);
2530
2795
  }
2531
- if (rinfo.rmode() != RelocInfo::NONE) {
2796
+ if (!RelocInfo::IsNone(rinfo.rmode())) {
2532
2797
  // Don't record external references unless the heap will be serialized.
2533
2798
  if (rmode == RelocInfo::EXTERNAL_REFERENCE) {
2534
2799
  #ifdef DEBUG
@@ -2542,7 +2807,10 @@ void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) {
2542
2807
  }
2543
2808
  ASSERT(buffer_space() >= kMaxRelocSize); // too late to grow buffer here
2544
2809
  if (rmode == RelocInfo::CODE_TARGET_WITH_ID) {
2545
- RelocInfo reloc_info_with_ast_id(pc_, rmode, RecordedAstId(), NULL);
2810
+ RelocInfo reloc_info_with_ast_id(pc_,
2811
+ rmode,
2812
+ RecordedAstId().ToInt(),
2813
+ NULL);
2546
2814
  ClearRecordedAstId();
2547
2815
  reloc_info_writer.Write(&reloc_info_with_ast_id);
2548
2816
  } else {
@@ -2551,14 +2819,38 @@ void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) {
2551
2819
  }
2552
2820
  }
2553
2821
 
2822
+ void Assembler::RecordRelocInfo(double data) {
2823
+ // We do not try to reuse pool constants.
2824
+ RelocInfo rinfo(pc_, data);
2825
+ RecordRelocInfoConstantPoolEntryHelper(rinfo);
2826
+ }
2827
+
2828
+
2829
+ void Assembler::RecordRelocInfoConstantPoolEntryHelper(const RelocInfo& rinfo) {
2830
+ ASSERT(num_pending_reloc_info_ < kMaxNumPendingRelocInfo);
2831
+ if (num_pending_reloc_info_ == 0) {
2832
+ first_const_pool_use_ = pc_offset();
2833
+ }
2834
+ pending_reloc_info_[num_pending_reloc_info_++] = rinfo;
2835
+ if (rinfo.rmode() == RelocInfo::NONE64) {
2836
+ ++num_pending_64_bit_reloc_info_;
2837
+ }
2838
+ ASSERT(num_pending_64_bit_reloc_info_ <= num_pending_reloc_info_);
2839
+ // Make sure the constant pool is not emitted in place of the next
2840
+ // instruction for which we just recorded relocation info.
2841
+ BlockConstPoolFor(1);
2842
+ }
2843
+
2554
2844
 
2555
2845
  void Assembler::BlockConstPoolFor(int instructions) {
2556
2846
  int pc_limit = pc_offset() + instructions * kInstrSize;
2557
2847
  if (no_const_pool_before_ < pc_limit) {
2558
2848
  // If there are some pending entries, the constant pool cannot be blocked
2559
- // further than first_const_pool_use_ + kMaxDistToPool
2849
+ // further than constant pool instruction's reach.
2560
2850
  ASSERT((num_pending_reloc_info_ == 0) ||
2561
- (pc_limit < (first_const_pool_use_ + kMaxDistToPool)));
2851
+ (pc_limit - first_const_pool_use_ < kMaxDistToIntPool));
2852
+ // TODO(jfb) Also check 64-bit entries are in range (requires splitting
2853
+ // them up from 32-bit entries).
2562
2854
  no_const_pool_before_ = pc_limit;
2563
2855
  }
2564
2856
 
@@ -2580,35 +2872,68 @@ void Assembler::CheckConstPool(bool force_emit, bool require_jump) {
2580
2872
 
2581
2873
  // There is nothing to do if there are no pending constant pool entries.
2582
2874
  if (num_pending_reloc_info_ == 0) {
2875
+ ASSERT(num_pending_64_bit_reloc_info_ == 0);
2583
2876
  // Calculate the offset of the next check.
2584
2877
  next_buffer_check_ = pc_offset() + kCheckPoolInterval;
2585
2878
  return;
2586
2879
  }
2587
2880
 
2588
- // We emit a constant pool when:
2589
- // * requested to do so by parameter force_emit (e.g. after each function).
2590
- // * the distance to the first instruction accessing the constant pool is
2591
- // kAvgDistToPool or more.
2592
- // * no jump is required and the distance to the first instruction accessing
2593
- // the constant pool is at least kMaxDistToPool / 2.
2594
- ASSERT(first_const_pool_use_ >= 0);
2595
- int dist = pc_offset() - first_const_pool_use_;
2596
- if (!force_emit && dist < kAvgDistToPool &&
2597
- (require_jump || (dist < (kMaxDistToPool / 2)))) {
2598
- return;
2599
- }
2600
-
2601
2881
  // Check that the code buffer is large enough before emitting the constant
2602
2882
  // pool (include the jump over the pool and the constant pool marker and
2603
2883
  // the gap to the relocation information).
2884
+ // Note 64-bit values are wider, and the first one needs to be 64-bit aligned.
2604
2885
  int jump_instr = require_jump ? kInstrSize : 0;
2605
- int needed_space = jump_instr + kInstrSize +
2606
- num_pending_reloc_info_ * kInstrSize + kGap;
2886
+ int size_up_to_marker = jump_instr + kInstrSize;
2887
+ int size_after_marker = num_pending_reloc_info_ * kPointerSize;
2888
+ bool has_fp_values = (num_pending_64_bit_reloc_info_ > 0);
2889
+ // 64-bit values must be 64-bit aligned.
2890
+ // We'll start emitting at PC: branch+marker, then 32-bit values, then
2891
+ // 64-bit values which might need to be aligned.
2892
+ bool require_64_bit_align = has_fp_values &&
2893
+ (((uintptr_t)pc_ + size_up_to_marker + size_after_marker) & 0x3);
2894
+ if (require_64_bit_align) {
2895
+ size_after_marker += kInstrSize;
2896
+ }
2897
+ // num_pending_reloc_info_ also contains 64-bit entries, the above code
2898
+ // therefore already counted half of the size for 64-bit entries. Add the
2899
+ // remaining size.
2900
+ STATIC_ASSERT(kPointerSize == kDoubleSize / 2);
2901
+ size_after_marker += num_pending_64_bit_reloc_info_ * (kDoubleSize / 2);
2902
+
2903
+ int size = size_up_to_marker + size_after_marker;
2904
+
2905
+ // We emit a constant pool when:
2906
+ // * requested to do so by parameter force_emit (e.g. after each function).
2907
+ // * the distance from the first instruction accessing the constant pool to
2908
+ // any of the constant pool entries will exceed its limit the next
2909
+ // time the pool is checked. This is overly restrictive, but we don't emit
2910
+ // constant pool entries in-order so it's conservatively correct.
2911
+ // * the instruction doesn't require a jump after itself to jump over the
2912
+ // constant pool, and we're getting close to running out of range.
2913
+ if (!force_emit) {
2914
+ ASSERT((first_const_pool_use_ >= 0) && (num_pending_reloc_info_ > 0));
2915
+ int dist = pc_offset() + size - first_const_pool_use_;
2916
+ if (has_fp_values) {
2917
+ if ((dist < kMaxDistToFPPool - kCheckPoolInterval) &&
2918
+ (require_jump || (dist < kMaxDistToFPPool / 2))) {
2919
+ return;
2920
+ }
2921
+ } else {
2922
+ if ((dist < kMaxDistToIntPool - kCheckPoolInterval) &&
2923
+ (require_jump || (dist < kMaxDistToIntPool / 2))) {
2924
+ return;
2925
+ }
2926
+ }
2927
+ }
2928
+
2929
+ int needed_space = size + kGap;
2607
2930
  while (buffer_space() <= needed_space) GrowBuffer();
2608
2931
 
2609
2932
  {
2610
2933
  // Block recursive calls to CheckConstPool.
2611
2934
  BlockConstPoolScope block_const_pool(this);
2935
+ RecordComment("[ Constant Pool");
2936
+ RecordConstPool(size);
2612
2937
 
2613
2938
  // Emit jump over constant pool if necessary.
2614
2939
  Label after_pool;
@@ -2616,36 +2941,80 @@ void Assembler::CheckConstPool(bool force_emit, bool require_jump) {
2616
2941
  b(&after_pool);
2617
2942
  }
2618
2943
 
2619
- RecordComment("[ Constant Pool");
2944
+ // Put down constant pool marker "Undefined instruction".
2945
+ // The data size helps disassembly know what to print.
2946
+ emit(kConstantPoolMarker | EncodeConstantPoolLength(size_after_marker));
2620
2947
 
2621
- // Put down constant pool marker "Undefined instruction" as specified by
2622
- // A5.6 (ARMv7) Instruction set encoding.
2623
- emit(kConstantPoolMarker | num_pending_reloc_info_);
2948
+ if (require_64_bit_align) {
2949
+ emit(kConstantPoolMarker);
2950
+ }
2624
2951
 
2625
- // Emit constant pool entries.
2952
+ // Emit 64-bit constant pool entries first: their range is smaller than
2953
+ // 32-bit entries.
2954
+ for (int i = 0; i < num_pending_reloc_info_; i++) {
2955
+ RelocInfo& rinfo = pending_reloc_info_[i];
2956
+
2957
+ if (rinfo.rmode() != RelocInfo::NONE64) {
2958
+ // 32-bit values emitted later.
2959
+ continue;
2960
+ }
2961
+
2962
+ ASSERT(!((uintptr_t)pc_ & 0x3)); // Check 64-bit alignment.
2963
+
2964
+ Instr instr = instr_at(rinfo.pc());
2965
+ // Instruction to patch must be 'vldr rd, [pc, #offset]' with offset == 0.
2966
+ ASSERT((IsVldrDPcImmediateOffset(instr) &&
2967
+ GetVldrDRegisterImmediateOffset(instr) == 0));
2968
+
2969
+ int delta = pc_ - rinfo.pc() - kPcLoadDelta;
2970
+ ASSERT(is_uint10(delta));
2971
+
2972
+ instr_at_put(rinfo.pc(), SetVldrDRegisterImmediateOffset(instr, delta));
2973
+
2974
+ const double double_data = rinfo.data64();
2975
+ uint64_t uint_data = 0;
2976
+ memcpy(&uint_data, &double_data, sizeof(double_data));
2977
+ emit(uint_data & 0xFFFFFFFF);
2978
+ emit(uint_data >> 32);
2979
+ }
2980
+
2981
+ // Emit 32-bit constant pool entries.
2626
2982
  for (int i = 0; i < num_pending_reloc_info_; i++) {
2627
2983
  RelocInfo& rinfo = pending_reloc_info_[i];
2628
2984
  ASSERT(rinfo.rmode() != RelocInfo::COMMENT &&
2629
2985
  rinfo.rmode() != RelocInfo::POSITION &&
2630
- rinfo.rmode() != RelocInfo::STATEMENT_POSITION);
2986
+ rinfo.rmode() != RelocInfo::STATEMENT_POSITION &&
2987
+ rinfo.rmode() != RelocInfo::CONST_POOL);
2988
+
2989
+ if (rinfo.rmode() == RelocInfo::NONE64) {
2990
+ // 64-bit values emitted earlier.
2991
+ continue;
2992
+ }
2631
2993
 
2632
2994
  Instr instr = instr_at(rinfo.pc());
2633
- // Instruction to patch must be 'ldr rd, [pc, #offset]' with offset == 0.
2634
- ASSERT(IsLdrPcImmediateOffset(instr) &&
2635
- GetLdrRegisterImmediateOffset(instr) == 0);
2995
+
2996
+ // 64-bit loads shouldn't get here.
2997
+ ASSERT(!IsVldrDPcImmediateOffset(instr));
2636
2998
 
2637
2999
  int delta = pc_ - rinfo.pc() - kPcLoadDelta;
2638
3000
  // 0 is the smallest delta:
2639
3001
  // ldr rd, [pc, #0]
2640
3002
  // constant pool marker
2641
3003
  // data
2642
- ASSERT(is_uint12(delta));
2643
3004
 
2644
- instr_at_put(rinfo.pc(), SetLdrRegisterImmediateOffset(instr, delta));
2645
- emit(rinfo.data());
3005
+ if (IsLdrPcImmediateOffset(instr) &&
3006
+ GetLdrRegisterImmediateOffset(instr) == 0) {
3007
+ ASSERT(is_uint12(delta));
3008
+ instr_at_put(rinfo.pc(), SetLdrRegisterImmediateOffset(instr, delta));
3009
+ emit(rinfo.data());
3010
+ } else {
3011
+ ASSERT(IsMovW(instr));
3012
+ emit(rinfo.data());
3013
+ }
2646
3014
  }
2647
3015
 
2648
3016
  num_pending_reloc_info_ = 0;
3017
+ num_pending_64_bit_reloc_info_ = 0;
2649
3018
  first_const_pool_use_ = -1;
2650
3019
 
2651
3020
  RecordComment("]");