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

/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGCapabilities.cpp38 return codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount();
42 return codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount();
46 return codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount();
50 return codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount();
55 return codeBlock->instructionCount() <= Options::maximumFunctionForCallInlineCandidateInstructionCount()
60 return codeBlock->instructionCount() <= Options::maximumFunctionForClosureCallInlineCandidateInstructionCount()
65 return codeBlock->instructionCount() <= Options::maximumFunctionForConstructInlineCandidateInstructionCount()
102 unsigned instructionCount = codeBlock->instructions().size(); local
105 for (unsigned bytecodeOffset = 0; bytecodeOffset < instructionCount; ) {
H A DDFGDriver.cpp80 if (!Options::bytecodeRangeToDFGCompile().isInRange(codeBlock->instructionCount()))
84 dataLog("DFG compiling ", *codeBlock, ", number of instructions = ", codeBlock->instructionCount(), "\n");
H A DDFGDisassembler.cpp70 out.print("Generated DFG JIT code for ", CodeBlockWithJITType(m_graph.m_codeBlock, JITCode::DFGJIT), ", instruction count = ", m_graph.m_codeBlock->instructionCount(), ":\n");
/macosx-10.9.5/JavaScriptCore-7537.78.1/profiler/
H A DProfilerBytecodes.h45 unsigned instructionCount() const { return m_instructionCount; } function in class:JSC::Profiler::Bytecodes
H A DProfilerBytecodes.cpp43 , m_instructionCount(codeBlock->instructionCount())
62 result->putDirect(exec->vm(), exec->propertyNames().instructionCount, jsNumber(m_instructionCount));
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DPreciseJumpTargets.cpp51 unsigned instructionCount = codeBlock->instructions().size(); local
52 for (unsigned bytecodeOffset = 0; bytecodeOffset < instructionCount;) {
H A DCodeBlock.cpp530 size_t instructionCount = 0; local
533 ++instructionCount;
1780 size_t instructionCount = unlinkedCodeBlock->instructions().size(); local
1782 Vector<Instruction, 0, UnsafeVectorOverflow> instructions(instructionCount);
2728 RELEASE_ASSERT(result->bytecodeOffset < instructionCount());
2741 RELEASE_ASSERT(bytecodeIndex < instructionCount());
3018 double instructionCount = this->instructionCount();
3020 ASSERT(instructionCount); // Make sure this is called only after we have an instruction stream; otherwise it'll just return the value of d, which makes no sense.
3022 double result = d + a * sqrt(instructionCount
[all...]
H A DCodeBlock.h424 unsigned instructionCount() { return m_instructions.size(); } function in class:JSC::CodeBlock
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITDisassembler.cpp40 , m_labelForBytecodeIndexInMainPath(codeBlock->instructionCount())
41 , m_labelForBytecodeIndexInSlowPath(codeBlock->instructionCount())
88 out.print("Generated Baseline JIT code for ", CodeBlockWithJITType(m_codeBlock, JITCode::BaselineJIT), ", instruction count = ", m_codeBlock->instructionCount(), "\n");
H A DJIT.cpp173 unsigned instructionCount = m_codeBlock->instructions().size(); local
178 for (m_bytecodeOffset = 0; m_bytecodeOffset < instructionCount; ) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DCommonIdentifiers.h92 macro(instructionCount) \
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclExecute.c1769 int instructionCount = 0; /* Counter that is used to work out when to
1936 iPtr->stats.instructionCount[*pc]++;
1944 if ((instructionCount++ & ASYNC_CHECK_COUNT_MASK) == 0) {
2412 * Reset the instructionCount variable, since we're about to check
2416 instructionCount = 1;
8146 if (statsPtr->instructionCount[i] != 0) {
8147 numInstructions += statsPtr->instructionCount[i];
8478 if (statsPtr->instructionCount[i] == 0) {
8481 statsPtr->instructionCount[i],
8482 Percent(statsPtr->instructionCount[
1757 int instructionCount = 0; /* Counter that is used to work out when to local
[all...]
H A DtclBasic.c564 (void) memset(statsPtr->instructionCount, 0,
565 sizeof(statsPtr->instructionCount));
H A DtclInt.h1398 long instructionCount[256]; /* Number of times each instruction was member in struct:ByteCodeStats
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclExecute.c1369 iPtr->stats.instructionCount[*pc]++;
6209 if (statsPtr->instructionCount[i] != 0) {
6210 numInstructions += statsPtr->instructionCount[i];
6543 if (statsPtr->instructionCount[i]) {
6546 statsPtr->instructionCount[i],
6547 (statsPtr->instructionCount[i]*100.0) / numInstructions);
6553 if (statsPtr->instructionCount[i] == 0) {
H A DtclInt.h1142 long instructionCount[256]; /* Number of times each instruction was member in struct:ByteCodeStats
H A DtclBasic.c437 (VOID *) memset(statsPtr->instructionCount, 0,
438 sizeof(statsPtr->instructionCount));
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DInterpreter.cpp559 ASSERT(newCodeBlock->instructionCount() > bytecodeOffset);
577 ASSERT(newCodeBlock->instructionCount() > bytecodeOffset);

Completed in 512 milliseconds