HomeSort by relevance Sort by last modified time
    Searched refs:JITCode (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/ForwardingHeaders/jit/
JITCode.h 3 #include <JavaScriptCore/JITCode.h>
  /external/webkit/Source/JavaScriptCore/jit/
JITCode.h 41 class JITCode {
45 JITCode()
49 JITCode(const CodeRef ref)
99 static JITCode HostFunction(CodePtr code)
101 return JITCode(code.dataLocation(), 0, 0);
105 JITCode(void* code, PassRefPtr<ExecutablePool> executablePool, size_t size)
JIT.cpp 460 JITCode JIT::privateCompile(CodePtr* functionEntryArityCheck)
JIT.h 181 static JITCode compile(JSGlobalData* globalData, CodeBlock* codeBlock, CodePtr* functionEntryArityCheck = 0, void* offsetBase = 0)
266 JITCode privateCompile(CodePtr* functionEntryArityCheck);
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.h 78 JITCode& generatedJITCodeForCall()
84 JITCode& generatedJITCodeForConstruct()
91 JITCode m_jitCodeForCall;
92 JITCode m_jitCodeForConstruct;
105 return new (&globalData) NativeExecutable(globalData, JITCode(), function, JITCode(), constructor);
106 return new (&globalData) NativeExecutable(globalData, JITCode::HostFunction(callThunk), function, JITCode::HostFunction(constructThunk), constructor);
123 NativeExecutable(JSGlobalData& globalData, JITCode callThunk, NativeFunction function, JITCode constructThunk, NativeFunction constructor
    [all...]
RegExp.cpp 118 res = JITCode;
123 return JITCode;
166 if (m_state == JITCode) {
257 if (m_state == JITCode)
RegExp.h 64 JITCode,
Executable.cpp 197 static bool tryDFGCompile(JSGlobalData* globalData, CodeBlock* codeBlock, JITCode& jitCode, MacroAssemblerCodePtr& jitCodeWithArityCheck)
212 dataFlowJIT.compileFunction(jitCode, jitCodeWithArityCheck);
217 UNUSED_PARAM(jitCode);
340 m_jitCodeForCall = JITCode();
341 m_jitCodeForConstruct = JITCode();
  /external/webkit/Source/JavaScriptCore/assembler/
RepatchBuffer.h 48 JITCode& code = codeBlock->getJITCode();
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCompiler.h 34 #include <jit/JITCode.h>
116 void compileFunction(JITCode& entry, MacroAssemblerCodePtr& entryWithArityCheck);
DFGJITCompiler.cpp 220 void JITCompiler::compileFunction(JITCode& entry, MacroAssemblerCodePtr& entryWithArityCheck)
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 35 #include "JITCode.h"
292 JITCode& getJITCode() { return m_isConstructor ? ownerExecutable()->generatedJITCodeForConstruct() : ownerExecutable()->generatedJITCodeForCall(); }

Completed in 282 milliseconds