mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-05-06 16:17:56 +00:00
9751481f6b
A maintainable and more precise version of what was a hacky but useful script, exploring the compilers YUL lowering unit. It analyzes a given shared objects from the debug dump and outputs: - The count of each YUL statement translated. - A per YUL statement break-down of bytecode size contributed per. - Estimated `yul-phaser` cost parameters. Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
21 lines
453 B
TOML
21 lines
453 B
TOML
[package]
|
|
name = "revive-explorer"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
description = "Helper utility to inspect debug builds"
|
|
|
|
[[bin]]
|
|
name = "revive-explorer"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["help", "std", "derive"] }
|
|
num_cpus = { workspace = true }
|
|
|
|
revive-yul = { workspace = true }
|
|
|