Sha256: 6a5d7a4d36ed6b3d9919be703a479bef47698bf947818b483ff03951df2d4e01

Contents?: true

Size: 1000 Bytes

Versions: 36

Compression:

Stored size: 1000 Bytes

Contents

v <- read.table(file("stdin"))
t <- data.frame(prog=v[,1], funcs=(v[,2]=="func"), time=v[,3], mem=v[,4], stringsAsFactors=FALSE)

t$prog <- as.character(t$prog)
t$prog[t$prog == "master"] <- "gimli-rs/addr2line"
t$funcs[t$funcs == TRUE] <- "With functions"
t$funcs[t$funcs == FALSE] <- "File/line only"
t$mem = t$mem / 1024.0

library(ggplot2)
p <- ggplot(data=t, aes(x=prog, y=time, fill=prog))
p <- p + geom_bar(stat = "identity")
p <- p + facet_wrap(~ funcs)
p <- p + theme(axis.title.x=element_blank(), axis.text.x=element_blank(), axis.ticks.x=element_blank())
p <- p + ylab("time (s)") + ggtitle("addr2line runtime")
ggsave('time.png',plot=p,width=10,height=6)

p <- ggplot(data=t, aes(x=prog, y=mem, fill=prog))
p <- p + geom_bar(stat = "identity")
p <- p + facet_wrap(~ funcs)
p <- p + theme(axis.title.x=element_blank(), axis.text.x=element_blank(), axis.ticks.x=element_blank())
p <- p + ylab("memory (kB)") + ggtitle("addr2line memory usage")
ggsave('memory.png',plot=p,width=10,height=6)

Version data entries

36 entries across 30 versions & 1 rubygems

Version Path
wasmtime-23.0.2 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-22.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-21.0.1 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-20.0.2 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-20.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-18.0.3 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-17.0.1 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-17.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-16.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-15.0.1 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-15.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-14.0.4 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-14.0.3 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-14.0.1 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-14.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-13.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-12.0.1 ./ext/cargo-vendor/addr2line-0.20.0/bench.plot.r
wasmtime-12.0.1 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-12.0.0 ./ext/cargo-vendor/addr2line-0.21.0/bench.plot.r
wasmtime-12.0.0 ./ext/cargo-vendor/addr2line-0.20.0/bench.plot.r