Home | History | Annotate | Download | only in cygprofile

Lines Matching refs:lib_file

67 def ParseLibSymbols(lib_file):
71 lib_file: the library or executable that contains the profiled code
75 in lib_file and map of addresses to all symbols at a particular address
77 cmd = ['nm', '-S', '-n', lib_file]
170 def AddrToLine(addr, lib_file):
172 cmd = ['addr2line', '-f', '-e', lib_file, hex(addr)]
190 parser = optparse.OptionParser('usage: %prog [options] log_file lib_file')
199 parser.error('expected 2 args: log_file lib_file')
201 (log_file, lib_file) = args
204 lib_name = lib_file.split('/')[-1].strip()
207 (unique_addrs, address_map) = ParseLibSymbols(lib_file)
219 AddrToLine(addr, lib_file) + ') already profiled.')
223 symbol = AddrToLine(call[3], lib_file)