HomeSort by relevance Sort by last modified time
    Searched full:executablepool (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/JavaScriptCore/jit/
ExecutableAllocatorSymbian.cpp 50 ExecutablePool::Allocation ExecutablePool::systemAlloc(size_t n)
59 ExecutablePool::Allocation alloc = { allocation, n, codeChunk };
63 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& alloc)
ExecutableAllocatorWin.cpp 43 ExecutablePool::Allocation ExecutablePool::systemAlloc(size_t n)
48 ExecutablePool::Allocation alloc = {reinterpret_cast<char*>(allocation), n};
52 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& alloc)
ExecutableAllocator.h 83 class ExecutablePool : public RefCounted<ExecutablePool> {
95 static PassRefPtr<ExecutablePool> create(size_t n)
97 return adoptRef(new ExecutablePool(n));
119 ~ExecutablePool()
123 ExecutablePool::systemRelease(*ptr);
132 ExecutablePool(size_t n);
150 m_smallAllocationPool = ExecutablePool::create(JIT_ALLOCATOR_LARGE_ALLOC_SIZE);
153 PassRefPtr<ExecutablePool> poolForSize(size_t n)
161 return ExecutablePool::create(n)
    [all...]
ExecutableAllocatorPosix.cpp 45 ExecutablePool::Allocation ExecutablePool::systemAlloc(size_t n)
50 ExecutablePool::Allocation alloc = { reinterpret_cast<char*>(allocation), n };
54 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& alloc)
JITCode.h 93 ExecutablePool* getExecutablePool()
106 JITCode(void* code, PassRefPtr<ExecutablePool> executablePool, size_t size)
107 : m_ref(code, executablePool, size)
ExecutableAllocatorFixedVMPool.cpp 427 ExecutablePool::Allocation ExecutablePool::systemAlloc(size_t size)
433 ExecutablePool::Allocation alloc = {reinterpret_cast<char*>(allocator->alloc(size)), size};
437 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& allocation)
JITPropertyAccess.cpp 602 LinkBuffer patchBuffer(this, m_codeBlock->executablePool());
698 LinkBuffer patchBuffer(this, m_codeBlock->executablePool());
    [all...]
JITStubs.h 44 class ExecutablePool;
257 RefPtr<ExecutablePool> m_executablePool;
JIT.h 320 static void compileCTIMachineTrampolines(JSGlobalData* globalData, RefPtr<ExecutablePool>* executablePool, TrampolineStructure *trampolines)
323 jit.privateCompileCTIMachineTrampolines(executablePool, globalData, trampolines);
364 void privateCompileCTIMachineTrampolines(RefPtr<ExecutablePool>* executablePool, JSGlobalData* data, TrampolineStructure *trampolines);
    [all...]
JITOpcodes.cpp 43 void JIT::privateCompileCTIMachineTrampolines(RefPtr<ExecutablePool>* executablePool, JSGlobalData* globalData, TrampolineStructure *trampolines)
370 *executablePool = finalCode.m_executablePool;
    [all...]
  /external/webkit/JavaScriptCore/assembler/
LinkBuffer.h 62 // Note: Initialization sequence is significant, since executablePool is a PassRefPtr.
63 // First, executablePool is copied into m_executablePool, then the initialization of
64 // m_code uses m_executablePool, *not* executablePool, since this is no longer valid.
65 LinkBuffer(MacroAssembler* masm, PassRefPtr<ExecutablePool> executablePool)
66 : m_executablePool(executablePool)
183 RefPtr<ExecutablePool> m_executablePool;
MacroAssemblerCodeRef.h 178 MacroAssemblerCodeRef(void* code, PassRefPtr<ExecutablePool> executablePool, size_t size)
180 , m_executablePool(executablePool)
186 RefPtr<ExecutablePool> m_executablePool;
AssemblerBuffer.h 127 void* executableCopy(ExecutablePool* allocator)
AssemblerBufferWithConstantPool.h 187 void* executableCopy(ExecutablePool* allocator)
ARMAssembler.cpp 345 void* ARMAssembler::executableCopy(ExecutablePool* allocator)
X86Assembler.h     [all...]
ARMAssembler.h 632 void* executableCopy(ExecutablePool* allocator);
ARMv7Assembler.h     [all...]
  /external/webkit/JavaScriptCore/runtime/
RegExp.h 79 RefPtr<ExecutablePool> m_executablePool;
Executable.h 72 ExecutablePool* getExecutablePool()
  /external/webkit/JavaScriptCore/wrec/
WREC.cpp 43 CompiledRegExp Generator::compileRegExp(JSGlobalData* globalData, const UString& pattern, unsigned* numSubpatterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase, bool multiline)
WRECGenerator.h 58 static CompiledRegExp compileRegExp(JSGlobalData*, const UString& pattern, unsigned* numSubpatterns_ptr, const char** error_ptr, RefPtr<ExecutablePool>& pool, bool ignoreCase = false, bool multiline = false);
  /external/webkit/JavaScriptCore/yarr/
RegexJIT.h 49 class ExecutablePool;
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 361 ExecutablePool* executablePool() { return ownerExecutable()->getExecutablePool(); }
  /external/webkit/JavaScriptCore/
ChangeLog-2009-06-16     [all...]

Completed in 229 milliseconds

1 2