mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 15:41:46 +00:00
benchcomp: Add a mode for analyzing file sizes.
llvm-svn: 299376
This commit is contained in:
parent
4e4e8662bc
commit
eb2d1a782c
@ -6,6 +6,7 @@ import (
|
|||||||
"debug/macho"
|
"debug/macho"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"sort"
|
"sort"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
@ -138,6 +139,22 @@ func ninja_logs(path string) map[string]float64 {
|
|||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func filesizes(root string) map[string]float64 {
|
||||||
|
m := make(map[string]float64)
|
||||||
|
|
||||||
|
err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
|
||||||
|
if info.Mode().IsRegular() {
|
||||||
|
m[path[len(root):]] = float64(info.Size())
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
panic(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
var cmp func(string) map[string]float64
|
var cmp func(string) map[string]float64
|
||||||
switch os.Args[1] {
|
switch os.Args[1] {
|
||||||
@ -159,6 +176,9 @@ func main() {
|
|||||||
|
|
||||||
case "ninja_logs":
|
case "ninja_logs":
|
||||||
cmp = ninja_logs
|
cmp = ninja_logs
|
||||||
|
|
||||||
|
case "filesizes":
|
||||||
|
cmp = filesizes
|
||||||
}
|
}
|
||||||
|
|
||||||
syms1 := cmp(os.Args[2])
|
syms1 := cmp(os.Args[2])
|
||||||
|
Loading…
Reference in New Issue
Block a user