問題タブ [micro-architecture]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
assembly - 必要な命令拡張を示す x86 逆アセンブラー
特定のバイナリ オブジェクト (一般的なバイナリではなく、の出力) を実行するために必要な x86 命令拡張の最小セットを確認する必要がありますgcc -c somefile.s
。手作業で行うと時間がかかり、エラーが発生しやすくなります。自動化されたプロセスを探しています。
私が必要としているのは、入力としてバイナリ オブジェクトを指定するobjdump
と、x86 命令拡張で拡張されたような出力を返すバイナリです。次の例のようなもの:
利用可能な同様のツールはありますか?