Home
last modified time | relevance | path

Searched refs:pcOffsetToInstructions (Results 1 – 1 of 1) sorted by relevance

/external/v8/tools/turbolizer/src/
Dsource-resolver.ts92 pcOffsetToInstructions: Map<number, Array<number>>; property in SourceResolver
121 this.pcOffsetToInstructions = new Map();
342 if (!this.pcOffsetToInstructions.has(offset)) {
343 this.pcOffsetToInstructions.set(offset, []);
345 this.pcOffsetToInstructions.get(offset).push(instruction);
347 console.log(this.pcOffsetToInstructions);
351 return this.pcOffsetToInstructions.size > 0;
356 const keys = Array.from(this.pcOffsetToInstructions.keys()).sort((a, b) => b - a);
360 const instrs = this.pcOffsetToInstructions.get(key);