Home | History | Annotate | Download | only in tools

Lines Matching full:arch

127   def PrintAnnotated(self, arch, options):
138 lines = self._GetDisasmLines(arch, options)
177 def _GetDisasmLines(self, arch, options):
187 arch,
302 def __init__(self, arch, header_size):
303 self.arch = arch
355 self.arch = self.log[:self.log.find("\0")]
356 self.log_pos += len(self.arch) + 1
357 assert self.arch in LogReader._ARCH_TO_POINTER_TYPE_MAP, \
358 "Unsupported architecture %s" % self.arch
359 pointer_type = LogReader._ARCH_TO_POINTER_TYPE_MAP[self.arch]
792 def PrintReport(code_map, library_repo, arch, ticks, options):
801 code.PrintAnnotated(arch, options)
892 print "Generated code architecture: %s" % log_reader.arch
936 PrintReport(code_map, library_repo, log_reader.arch, ticks, options)