Searched refs:totalInstructions (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DOpcode.cpp96 long long totalInstructions = 0; local
98 totalInstructions += opcodeCounts[i];
119 dataLogF("Total instructions executed: %lld\n\n", totalInstructions);
125 dataLogF("%s:%s %lld - %.2f%%\n", opcodeNames[index], padOpcodeName((OpcodeID)index, 28), opcodeCounts[index], ((double) opcodeCounts[index]) / ((double) totalInstructions) * 100.0);
129 dataLogF("2-opcode sequences by frequency: %lld\n\n", totalInstructions);
147 double opcodeProportion = ((double) opcodeCount) / ((double) totalInstructions);

Completed in 182 milliseconds