| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source | 3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source |
| 4 code is governed by a BSD-style license that can be found in the LICENSE file. | 4 code is governed by a BSD-style license that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <head> | 7 <head> |
| 8 <style> | 8 <style> |
| 9 .entry-details {} | 9 .entry-details {} |
| 10 | 10 |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 } | 334 } |
| 335 </script> | 335 </script> |
| 336 </head> | 336 </head> |
| 337 | 337 |
| 338 <body> | 338 <body> |
| 339 <h1> | 339 <h1> |
| 340 <span style="color: #00FF00">I</span> | 340 <span style="color: #00FF00">I</span> |
| 341 <span style="color: #FF00FF">C</span> | 341 <span style="color: #FF00FF">C</span> |
| 342 <span style="color: #00FFFF">E</span> | 342 <span style="color: #00FFFF">E</span> |
| 343 </h1> Your IC-Explorer. | 343 </h1> Your IC-Explorer. |
| 344 |
| 345 <div id="legend" style="padding-right: 200px"> |
| 346 <div style="float:right; border-style: solid; border-width: 1px; padding:20
px"> |
| 347 0 uninitialized<br> |
| 348 . premonomorphic<br> |
| 349 1 monomorphic<br> |
| 350 ^ recompute handler<br> |
| 351 P polymorphic<br> |
| 352 N megamorphic<br> |
| 353 G generic |
| 354 </div> |
| 355 </div> |
| 356 |
| 344 <h2>Usage</h2> Run your script with <code>--trace_ic</code> and upload on this
page:<br/> | 357 <h2>Usage</h2> Run your script with <code>--trace_ic</code> and upload on this
page:<br/> |
| 345 <code>/path/to/d8 --trace_ic your_script.js > trace.txt</code> | 358 <code>/path/to/d8 --trace_ic your_script.js > trace.txt</code> |
| 346 <h2>Data</h2> | 359 <h2>Data</h2> |
| 347 <form name="fileForm"> | 360 <form name="fileForm"> |
| 348 <p> | 361 <p> |
| 349 <input id="uploadInput" type="file" name="files" onchange="loadFile();"> t
race | 362 <input id="uploadInput" type="file" name="files" onchange="loadFile();"> t
race |
| 350 entries: <span id="count">0</span> | 363 entries: <span id="count">0</span> |
| 351 </p> | 364 </p> |
| 352 </form> | 365 </form> |
| 353 <h2>Result</h2> | 366 <h2>Result</h2> |
| 354 <p> | 367 <p> |
| 355 Group-Key: | 368 Group-Key: |
| 356 <select id="group-key" onchange="updateTable()"></select> | 369 <select id="group-key" onchange="updateTable()"></select> |
| 357 </p> | 370 </p> |
| 358 <p> | 371 <p> |
| 359 <table id="table" width="100%"> | 372 <table id="table" width="100%"> |
| 360 <tbody id="table-body"> | 373 <tbody id="table-body"> |
| 361 </tbody> | 374 </tbody> |
| 362 </table> | 375 </table> |
| 363 </p> | 376 </p> |
| 364 </body> | 377 </body> |
| 365 | 378 |
| 366 </html> | 379 </html> |
| OLD | NEW |