dart-pad
dart-pad copied to clipboard
Disassembly
Can it output 'anything' that might tell us what sort of native instruction would get produced?
Not looking for exact answer, but any form of annotated ASM-like commands would tell us things about our code's efficiency...
- did Dart inline this small getter?
- did Dart pull this common expression out of the loop?
- did Dart have to convert between int/double/etc.?
- etc.
Perhaps there is another tool somewhere that already provides this. If so, point me there and perhaps dartpad need not also provide that...
thanks,