Home | History | Annotate | Download | only in js

Lines Matching defs:Processor

32  * @fileoverview Profiler processor is used to process log file produced
153 * Profiler processor. Consumes profiler log and builds profile views.
160 devtools.profiler.Processor = function()
165 processor: this.processCodeCreation_, backrefs: true,
169 processor: this.processCodeMove_, backrefs: true,
172 processor: this.processCodeDelete_, backrefs: true,
176 processor: this.processFunctionCreation_, backrefs: true },
179 processor: this.processFunctionMove_, backrefs: true },
181 processor: this.processFunctionDelete_, backrefs: true },
184 processor: this.processTick_, backrefs: true, needProfile: true },
186 processor: this.processProfiler_, needsProfile: false },
188 processor: this.processHeapSampleBegin_ },
190 processor: this.processHeapSampleStats_ },
192 processor: this.processHeapSampleItem_ },
194 processor: this.processHeapJsConsItem_ },
196 processor: this.processHeapJsRetItem_ },
198 processor: this.processHeapSampleEnd_ },
210 processor: this.processTickV2_, backrefs: true };
276 devtools.profiler.Processor.prototype.__proto__ = devtools.profiler.LogReader.prototype;
282 devtools.profiler.Processor.prototype.printError = function(str)
291 devtools.profiler.Processor.prototype.skipDispatch = function(dispatch)
304 devtools.profiler.Processor.prototype.setCallbacks = function(started, processing, finished)
322 devtools.profiler.Processor.PROGRAM_ENTRY = 0xffff;
326 devtools.profiler.Processor.PROGRAM_ENTRY_STR = "0xffff";
333 devtools.profiler.Processor.prototype.setNewProfileCallback = function(callback)
339 devtools.profiler.Processor.prototype.processProfiler_ = function(state, params)
345 // see the comment for devtools.profiler.Processor.PROGRAM_ENTRY
346 this.currentProfile_.addCode("Function", "(program)", devtools.profiler.Processor.PROGRAM_ENTRY, 1);
384 devtools.profiler.Processor.prototype.processCodeCreation_ = function(type, start, size, name)
390 devtools.profiler.Processor.prototype.processCodeMove_ = function(from, to)
396 devtools.profiler.Processor.prototype.processCodeDelete_ = function(start)
402 devtools.profiler.Processor.prototype.processFunctionCreation_ = function(functionAddr, codeAddr)
408 devtools.profiler.Processor.prototype.processFunctionMove_ = function(from, to)
414 devtools.profiler.Processor.prototype.processFunctionDelete_ = function(start)
421 devtools.profiler.Processor.prototype.processTick_ = function(pc, sp, vmState, stack)
423 // see the comment for devtools.profiler.Processor.PROGRAM_ENTRY
424 stack.push(devtools.profiler.Processor.PROGRAM_ENTRY_STR);
430 devtools.profiler.Processor.prototype.processTickV2_ = function(pc, sp, func, vmState, stack)
432 // see the comment for devtools.profiler.Processor.PROGRAM_ENTRY
433 stack.push(devtools.profiler.Processor.PROGRAM_ENTRY_STR);
453 devtools.profiler.Processor.prototype.processHeapSampleBegin_ = function(space, state, ticks)
466 devtools.profiler.Processor.prototype.processHeapSampleStats_ = function(space, state, capacity, used)
472 devtools.profiler.Processor.prototype.processHeapSampleItem_ = function(item, number, size)
481 devtools.profiler.Processor.prototype.processHeapJsConsItem_ = function(item, number, size)
490 devtools.profiler.Processor.prototype.processHeapJsRetItem_ = function(item, retainersArray)
525 devtools.profiler.Processor.prototype.processHeapSampleEnd_ = function(space, state)
537 devtools.profiler.Processor.prototype.createProfileForView = function()