Add support utils for tracing
Following patch adds a userspace util genprof which is able to convert the console printed traces to gmon.out file used by gprof & friends. The log2dress will replace the adresses in logfile with a line numbers. Change-Id: I9f716f3ff2522a24fbc844a1dd5e32ef49b540c5 Signed-off-by: Rudolf Marek <r.marek@assembler.cz> Reviewed-on: http://review.coreboot.org/179 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
committed by
Stefan Reinauer
parent
7f0e93060e
commit
8679e52b96
12
util/genprof/Makefile
Normal file
12
util/genprof/Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
CC=gcc
|
||||
CFLAGS=-O2 -Wall
|
||||
|
||||
all: genprof
|
||||
|
||||
genprof: genprof.o
|
||||
$(CC) $(CFLAGS) -o genprof $^
|
||||
|
||||
clean:
|
||||
rm -f genprof *.o *~
|
||||
|
||||
distclean: clean
|
Reference in New Issue
Block a user