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

Method findDynamicEntryByStartAddress

deps/v8/tools/codemap.mjs:244–247  ·  view source on GitHub ↗

* Returns a dynamic code entry using its starting address. * * @param {number} addr Address.

(addr)

Source from the content-addressed store, hash-verified

242 * @param {number} addr Address.
243 */
244 findDynamicEntryByStartAddress(addr) {
245 const node = this.dynamics_.find(addr);
246 return node !== null ? node.value : null;
247 }
248
249 /**
250 * Returns an array of all dynamic code entries.

Callers 5

addFuncCodeMethod · 0.80
addSourcePositionsMethod · 0.80
addDisassembleMethod · 0.80
profile.mjsFile · 0.80

Calls 1

findMethod · 0.65

Tested by

no test coverage detected