MCPcopy Index your code
hub / github.com/nodejs/node / Find

Method Find

deps/v8/tools/profiling/ll_prof.py:322–328  ·  view source on GitHub ↗
(self, pc)

Source from the content-addressed store, hash-verified

320 print(code)
321
322 def Find(self, pc):
323 if pc < self.min_address or pc >= self.max_address:
324 return None
325 page_id = CodePage.PageId(pc)
326 if page_id not in self.pages:
327 return None
328 return self.pages[page_id].Find(pc)
329
330
331class CodeInfo(object):

Callers 2

ReadUpToGCMethod · 0.45
ll_prof.pyFile · 0.45

Calls 1

PageIdMethod · 0.80

Tested by

no test coverage detected