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

/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITCode.h65 static JITType nextTierJIT(JITType jitType) argument
67 ASSERT_UNUSED(jitType, jitType == BaselineJIT || jitType == DFGJIT);
71 static bool isOptimizingJIT(JITType jitType) argument
73 return jitType == DFGJIT;
76 static bool isBaselineCode(JITType jitType) argument
78 return jitType == InterpreterThunk || jitType == BaselineJIT;
87 JITCode(const CodeRef ref, JITType jitType) argument
[all...]
H A DJITDriver.h41 inline bool jitCompileIfAppropriate(ExecState* exec, OwnPtr<CodeBlockType>& codeBlock, JITCode& jitCode, JITCode::JITType jitType, unsigned bytecodeIndex, JITCompilationEffort effort) argument
45 if (jitType == codeBlock->getJITType())
56 if (jitType == JITCode::DFGJIT)
78 inline bool jitCompileFunctionIfAppropriate(ExecState* exec, OwnPtr<FunctionCodeBlock>& codeBlock, JITCode& jitCode, MacroAssemblerCodePtr& jitCodeWithArityCheck, JITCode::JITType jitType, unsigned bytecodeIndex, JITCompilationEffort effort) argument
82 if (jitType == codeBlock->getJITType())
94 if (jitType == JITCode::DFGJIT)
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DCodeBlockWithJITType.h38 CodeBlockWithJITType(CodeBlock* codeBlock, JITCode::JITType jitType) argument
40 , m_jitType(jitType)
H A DCodeBlock.h434 if (m_jitCode.jitType() == JITCode::DFGJIT) {
442 JITCode::JITType getJITType() const { return m_jitCode.jitType(); }
H A DCodeBlock.cpp113 void CodeBlock::dumpAssumingJITType(PrintStream& out, JITCode::JITType jitType) const
115 out.print(inferredName(), "#", hash(), ":[", RawPointer(this), "->", RawPointer(ownerExecutable()), ", ", jitType, codeType());
2391 if (getJITCode().jitType() == JITCode::DFGJIT)
2397 if (getJITCode().jitType() == JITCode::DFGJIT)
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DExecutionHarness.h39 inline bool prepareForExecution(ExecState* exec, OwnPtr<CodeBlockType>& codeBlock, JITCode& jitCode, JITCode::JITType jitType, unsigned bytecodeIndex) argument
42 if (JITCode::isBaselineCode(jitType)) {
51 return jitCompileIfAppropriate(exec, codeBlock, jitCode, jitType, bytecodeIndex, JITCode::isBaselineCode(jitType) ? JITCompilationMustSucceed : JITCompilationCanFail);
54 inline bool prepareFunctionForExecution(ExecState* exec, OwnPtr<FunctionCodeBlock>& codeBlock, JITCode& jitCode, MacroAssemblerCodePtr& jitCodeWithArityCheck, JITCode::JITType jitType, unsigned bytecodeIndex, CodeSpecializationKind kind) argument
57 if (JITCode::isBaselineCode(jitType)) {
68 return jitCompileFunctionIfAppropriate(exec, codeBlock, jitCode, jitCodeWithArityCheck, jitType, bytecodeIndex, JITCode::isBaselineCode(jitType) ? JITCompilationMustSucceed : JITCompilationCanFail);
H A DExecutable.cpp178 inline const char* samplingDescription(JITCode::JITType jitType) argument
180 switch (jitType) {
193 JSObject* EvalExecutable::compileInternal(ExecState* exec, JSScope* scope, JITCode::JITType jitType, unsigned bytecodeIndex) argument
195 SamplingRegion samplingRegion(samplingDescription(jitType));
198 UNUSED_PARAM(jitType);
221 ASSERT((jitType == JITCode::bottomTierJIT()) == !previousCodeBlock);
228 if (!prepareForExecution(exec, m_evalCodeBlock, m_jitCodeForCall, jitType, bytecodeIndex))
309 JSObject* ProgramExecutable::compileInternal(ExecState* exec, JSScope* scope, JITCode::JITType jitType, unsigned bytecodeIndex) argument
311 SamplingRegion samplingRegion(samplingDescription(jitType));
315 UNUSED_PARAM(jitType);
521 compileForCallInternal(ExecState* exec, JSScope* scope, JITCode::JITType jitType, unsigned bytecodeIndex) argument
557 compileForConstructInternal(ExecState* exec, JSScope* scope, JITCode::JITType jitType, unsigned bytecodeIndex) argument
[all...]

Completed in 136 milliseconds