├── LoopProfv3.4.cpp ├── README.md ├── benchmark_test ├── benchmark_test_log ├── gprof_test │ ├── callgraph.dot │ ├── callgraph.png │ └── gprof_instrument_log └── gzip_test │ ├── gzip │ ├── gzip_count_time │ ├── result1 │ ├── V2 │ │ ├── callgraph.dot │ │ └── callgraph.png │ ├── callgraph.png │ ├── callgraph2.png │ ├── gzip │ └── result1 │ ├── result2 │ ├── callgraph.dot │ ├── callgraph.png │ └── result2 │ ├── result3 │ ├── callgraph.dot │ ├── callgraph.png │ ├── callgraph.svg │ ├── 选区_033.png │ └── 选区_033.svg │ ├── zip_example.txt │ └── zip_example.txt.gz ├── callgraph.dot ├── callgraph.png ├── callgraph1.png ├── callgraph2.png ├── callgraph_v2.py ├── func_call_graph_PinTool ├── ReadMe.txt ├── edgcnt.cpp ├── edgcnt.out ├── edgcnt.so └── gen_callgraph.py ├── func_call_graph_trace ├── Makefile ├── ReadMe.txt ├── bin │ └── pvtrace ├── instrument.c ├── obj │ ├── stack.o │ ├── symbols.o │ └── trace.o ├── pvtrace.zip ├── stack.c ├── stack.h ├── symbols.c ├── symbols.h ├── test │ ├── graph.dot │ ├── graph.jpg │ ├── hello.c │ ├── hello.h │ ├── instrument.c │ ├── test │ ├── test.c │ └── trace.txt └── trace.c ├── func_call_graph_traceV2.0 ├── Makefile ├── ReadMe.txt ├── bin │ └── pvtrace ├── c_test │ ├── graph.dot │ ├── graph.jpg │ ├── hello.c │ ├── hello.h │ ├── hello.o │ ├── instrument.c │ ├── instrument.o │ ├── test │ ├── test.c │ ├── test.o │ └── trace.txt ├── cpp_test │ ├── graph.dot │ ├── graph.jpg │ ├── instrument.cpp │ ├── test │ ├── test.cpp │ └── trace.txt ├── gprof_test │ ├── example │ ├── gmon.out │ ├── gprof_instrument │ ├── gprof_no_instrument │ ├── graph.dot │ ├── graph.jpg │ ├── hello.c │ ├── hello.h │ ├── pvtrace │ ├── test.c │ └── trace.txt ├── gzip_test │ ├── graph.dot │ ├── graph.jpg │ ├── graph1.jpg │ ├── graph2.jpg │ ├── gzip │ ├── gzip-1.2.4_with_instrument.tar.gz │ ├── gzip_cout_time_version │ │ ├── gzip_count_time │ │ ├── trace.txt │ │ ├── zip_example.txt │ │ └── zip_example.txt.gz │ ├── pvtrace │ ├── trace.txt │ └── zip_example.txt.gz ├── instrument.c ├── instrument.o ├── obj │ ├── stack.o │ ├── symbols.o │ └── trace.o ├── pvtrace ├── pvtrace.zip ├── stack.c ├── stack.h ├── stack.o ├── symbols.c ├── symbols.h ├── symbols.o ├── trace.c └── trace.o ├── log.out ├── makefile ├── makefile.rules ├── obj ├── LoopProf.o ├── LoopProfv3.4.so ├── bblflow.so ├── edgcnt.so └── inscount1.so ├── pin.log ├── pintool.log ├── profile_result_log ├── stack_check ├── stack_check ├── stack_test └── stack_test.c ├── syscall_catch_test ├── README.md ├── __pycache__ │ └── http.cpython-36.pyc ├── http.py ├── inscount.out ├── inscount0.cpp ├── inscount0.out ├── makefile ├── makefile.rules ├── obj │ ├── syscall_trace.o │ ├── syscall_trace.so │ ├── sysins_count.o │ └── sysins_count.so ├── pin.log ├── syscalltest.cpp ├── test ├── test.c └── test.log ├── test ├── test_example ├── example ├── gmon.out ├── hello.c ├── hello.h ├── run_log2 ├── test ├── test.c ├── test2 ├── test2.c └── zip_example.txt ├── trace.txt └── zip_example.txt /LoopProfv3.4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/LoopProfv3.4.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_test/benchmark_test_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/benchmark_test_log -------------------------------------------------------------------------------- /benchmark_test/gprof_test/callgraph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gprof_test/callgraph.dot -------------------------------------------------------------------------------- /benchmark_test/gprof_test/callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gprof_test/callgraph.png -------------------------------------------------------------------------------- /benchmark_test/gprof_test/gprof_instrument_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gprof_test/gprof_instrument_log -------------------------------------------------------------------------------- /benchmark_test/gzip_test/gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/gzip -------------------------------------------------------------------------------- /benchmark_test/gzip_test/gzip_count_time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/gzip_count_time -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result1/V2/callgraph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result1/V2/callgraph.dot -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result1/V2/callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result1/V2/callgraph.png -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result1/callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result1/callgraph.png -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result1/callgraph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result1/callgraph2.png -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result1/gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result1/gzip -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result1/result1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result1/result1 -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result2/callgraph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result2/callgraph.dot -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result2/callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result2/callgraph.png -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result2/result2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result2/result2 -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result3/callgraph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result3/callgraph.dot -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result3/callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result3/callgraph.png -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result3/callgraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result3/callgraph.svg -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result3/选区_033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result3/选区_033.png -------------------------------------------------------------------------------- /benchmark_test/gzip_test/result3/选区_033.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/result3/选区_033.svg -------------------------------------------------------------------------------- /benchmark_test/gzip_test/zip_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/zip_example.txt -------------------------------------------------------------------------------- /benchmark_test/gzip_test/zip_example.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/benchmark_test/gzip_test/zip_example.txt.gz -------------------------------------------------------------------------------- /callgraph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/callgraph.dot -------------------------------------------------------------------------------- /callgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/callgraph.png -------------------------------------------------------------------------------- /callgraph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/callgraph1.png -------------------------------------------------------------------------------- /callgraph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/callgraph2.png -------------------------------------------------------------------------------- /callgraph_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/callgraph_v2.py -------------------------------------------------------------------------------- /func_call_graph_PinTool/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_PinTool/ReadMe.txt -------------------------------------------------------------------------------- /func_call_graph_PinTool/edgcnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_PinTool/edgcnt.cpp -------------------------------------------------------------------------------- /func_call_graph_PinTool/edgcnt.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_PinTool/edgcnt.out -------------------------------------------------------------------------------- /func_call_graph_PinTool/edgcnt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_PinTool/edgcnt.so -------------------------------------------------------------------------------- /func_call_graph_PinTool/gen_callgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_PinTool/gen_callgraph.py -------------------------------------------------------------------------------- /func_call_graph_trace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/Makefile -------------------------------------------------------------------------------- /func_call_graph_trace/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/ReadMe.txt -------------------------------------------------------------------------------- /func_call_graph_trace/bin/pvtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/bin/pvtrace -------------------------------------------------------------------------------- /func_call_graph_trace/instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/instrument.c -------------------------------------------------------------------------------- /func_call_graph_trace/obj/stack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/obj/stack.o -------------------------------------------------------------------------------- /func_call_graph_trace/obj/symbols.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/obj/symbols.o -------------------------------------------------------------------------------- /func_call_graph_trace/obj/trace.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/obj/trace.o -------------------------------------------------------------------------------- /func_call_graph_trace/pvtrace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/pvtrace.zip -------------------------------------------------------------------------------- /func_call_graph_trace/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/stack.c -------------------------------------------------------------------------------- /func_call_graph_trace/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/stack.h -------------------------------------------------------------------------------- /func_call_graph_trace/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/symbols.c -------------------------------------------------------------------------------- /func_call_graph_trace/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/symbols.h -------------------------------------------------------------------------------- /func_call_graph_trace/test/graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/test/graph.dot -------------------------------------------------------------------------------- /func_call_graph_trace/test/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/test/graph.jpg -------------------------------------------------------------------------------- /func_call_graph_trace/test/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/test/hello.c -------------------------------------------------------------------------------- /func_call_graph_trace/test/hello.h: -------------------------------------------------------------------------------- 1 | 2 | void f5(); -------------------------------------------------------------------------------- /func_call_graph_trace/test/instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/test/instrument.c -------------------------------------------------------------------------------- /func_call_graph_trace/test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/test/test -------------------------------------------------------------------------------- /func_call_graph_trace/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/test/test.c -------------------------------------------------------------------------------- /func_call_graph_trace/test/trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/test/trace.txt -------------------------------------------------------------------------------- /func_call_graph_trace/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_trace/trace.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/Makefile -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/ReadMe.txt -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/bin/pvtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/bin/pvtrace -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/graph.dot -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/graph.jpg -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/hello.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/hello.h: -------------------------------------------------------------------------------- 1 | 2 | void f5(); -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/hello.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/hello.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/instrument.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/instrument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/instrument.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/test -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/test.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/test.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/c_test/trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/c_test/trace.txt -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/cpp_test/graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/cpp_test/graph.dot -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/cpp_test/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/cpp_test/graph.jpg -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/cpp_test/instrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/cpp_test/instrument.cpp -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/cpp_test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/cpp_test/test -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/cpp_test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/cpp_test/test.cpp -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/cpp_test/trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/cpp_test/trace.txt -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/example -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/gmon.out -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/gprof_instrument: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/gprof_instrument -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/gprof_no_instrument: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/gprof_no_instrument -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/graph.dot -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/graph.jpg -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/hello.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/hello.h: -------------------------------------------------------------------------------- 1 | 2 | void f5(); -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/pvtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/pvtrace -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/test.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gprof_test/trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gprof_test/trace.txt -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/graph.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/graph.dot -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/graph.jpg -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/graph1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/graph1.jpg -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/graph2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/graph2.jpg -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/gzip -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/gzip-1.2.4_with_instrument.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/gzip-1.2.4_with_instrument.tar.gz -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/gzip_count_time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/gzip_count_time -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/trace.txt -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/zip_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/zip_example.txt -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/zip_example.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/gzip_cout_time_version/zip_example.txt.gz -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/pvtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/pvtrace -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/trace.txt -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/gzip_test/zip_example.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/gzip_test/zip_example.txt.gz -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/instrument.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/instrument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/instrument.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/obj/stack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/obj/stack.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/obj/symbols.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/obj/symbols.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/obj/trace.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/obj/trace.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/pvtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/pvtrace -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/pvtrace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/pvtrace.zip -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/stack.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/stack.h -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/stack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/stack.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/symbols.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/symbols.h -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/symbols.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/symbols.o -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/trace.c -------------------------------------------------------------------------------- /func_call_graph_traceV2.0/trace.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/func_call_graph_traceV2.0/trace.o -------------------------------------------------------------------------------- /log.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/log.out -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/makefile -------------------------------------------------------------------------------- /makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/makefile.rules -------------------------------------------------------------------------------- /obj/LoopProf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/obj/LoopProf.o -------------------------------------------------------------------------------- /obj/LoopProfv3.4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/obj/LoopProfv3.4.so -------------------------------------------------------------------------------- /obj/bblflow.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/obj/bblflow.so -------------------------------------------------------------------------------- /obj/edgcnt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/obj/edgcnt.so -------------------------------------------------------------------------------- /obj/inscount1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/obj/inscount1.so -------------------------------------------------------------------------------- /pin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/pin.log -------------------------------------------------------------------------------- /pintool.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/pintool.log -------------------------------------------------------------------------------- /profile_result_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/profile_result_log -------------------------------------------------------------------------------- /stack_check/stack_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/stack_check/stack_check -------------------------------------------------------------------------------- /stack_check/stack_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/stack_check/stack_test -------------------------------------------------------------------------------- /stack_check/stack_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/stack_check/stack_test.c -------------------------------------------------------------------------------- /syscall_catch_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/README.md -------------------------------------------------------------------------------- /syscall_catch_test/__pycache__/http.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/__pycache__/http.cpython-36.pyc -------------------------------------------------------------------------------- /syscall_catch_test/http.py: -------------------------------------------------------------------------------- 1 | print("hello") -------------------------------------------------------------------------------- /syscall_catch_test/inscount.out: -------------------------------------------------------------------------------- 1 | Count 142444 2 | -------------------------------------------------------------------------------- /syscall_catch_test/inscount0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/inscount0.cpp -------------------------------------------------------------------------------- /syscall_catch_test/inscount0.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /syscall_catch_test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/makefile -------------------------------------------------------------------------------- /syscall_catch_test/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/makefile.rules -------------------------------------------------------------------------------- /syscall_catch_test/obj/syscall_trace.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/obj/syscall_trace.o -------------------------------------------------------------------------------- /syscall_catch_test/obj/syscall_trace.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/obj/syscall_trace.so -------------------------------------------------------------------------------- /syscall_catch_test/obj/sysins_count.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/obj/sysins_count.o -------------------------------------------------------------------------------- /syscall_catch_test/obj/sysins_count.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/obj/sysins_count.so -------------------------------------------------------------------------------- /syscall_catch_test/pin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/pin.log -------------------------------------------------------------------------------- /syscall_catch_test/syscalltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/syscalltest.cpp -------------------------------------------------------------------------------- /syscall_catch_test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/test -------------------------------------------------------------------------------- /syscall_catch_test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/test.c -------------------------------------------------------------------------------- /syscall_catch_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/syscall_catch_test/test.log -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test -------------------------------------------------------------------------------- /test_example/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/example -------------------------------------------------------------------------------- /test_example/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/gmon.out -------------------------------------------------------------------------------- /test_example/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/hello.c -------------------------------------------------------------------------------- /test_example/hello.h: -------------------------------------------------------------------------------- 1 | 2 | void f5(); -------------------------------------------------------------------------------- /test_example/run_log2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/run_log2 -------------------------------------------------------------------------------- /test_example/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/test -------------------------------------------------------------------------------- /test_example/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/test.c -------------------------------------------------------------------------------- /test_example/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/test2 -------------------------------------------------------------------------------- /test_example/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/test2.c -------------------------------------------------------------------------------- /test_example/zip_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/test_example/zip_example.txt -------------------------------------------------------------------------------- /trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/trace.txt -------------------------------------------------------------------------------- /zip_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meton-robean/Func-Loop-Profiler/HEAD/zip_example.txt --------------------------------------------------------------------------------