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

/macosx-10.9.5/JavaScriptCore-7537.78.1/tools/
H A DCodeProfile.cpp98 void* ownerUID = CodeProfiling::getOwnerUIDForPC(pc); local
100 if (!ownerUID)
102 else if (ownerUID == GLOBAL_THUNK_ID)
104 else if (ownerUID == REGEXP_CODE_ID)
107 CodeBlock* codeBlock = static_cast<CodeBlock*>(ownerUID);
H A DCodeProfiling.cpp132 return handle->ownerUID();
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DExecutableAllocatorFixedVMPool.cpp166 PassRefPtr<ExecutableMemoryHandle> ExecutableAllocator::allocate(VM& vm, size_t sizeInBytes, void* ownerUID, JITCompilationEffort effort) argument
168 RefPtr<ExecutableMemoryHandle> result = allocator->allocate(sizeInBytes, ownerUID);
173 result = allocator->allocate(sizeInBytes, ownerUID);
H A DExecutableAllocator.cpp215 PassRefPtr<ExecutableMemoryHandle> ExecutableAllocator::allocate(VM&, size_t sizeInBytes, void* ownerUID, JITCompilationEffort effort) argument
217 RefPtr<ExecutableMemoryHandle> result = allocator()->allocate(sizeInBytes, ownerUID);
H A DExecutableAllocator.h137 PassRefPtr<ExecutableMemoryHandle> allocate(VM&, size_t sizeInBytes, void* ownerUID, JITCompilationEffort);
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DAssemblerBuffer.h133 PassRefPtr<ExecutableMemoryHandle> executableCopy(VM& vm, void* ownerUID, JITCompilationEffort effort) argument
138 RefPtr<ExecutableMemoryHandle> result = vm.executableAllocator.allocate(vm, m_index, ownerUID, effort);
H A DLinkBuffer.cpp61 void LinkBuffer::linkCode(void* ownerUID, JITCompilationEffort effort) argument
65 m_executableMemory = m_assembler->m_assembler.executableCopy(*m_vm, ownerUID, effort);
73 m_executableMemory = m_vm->executableAllocator.allocate(*m_vm, m_initialSize, ownerUID, effort);
H A DLinkBuffer.h79 LinkBuffer(VM& vm, MacroAssembler* masm, void* ownerUID, JITCompilationEffort effort = JITCompilationMustSucceed) argument
92 linkCode(ownerUID, effort);
240 void linkCode(void* ownerUID, JITCompilationEffort);
H A DAssemblerBufferWithConstantPool.h198 PassRefPtr<ExecutableMemoryHandle> executableCopy(VM& vm, void* ownerUID, JITCompilationEffort effort) argument
201 return AssemblerBuffer::executableCopy(vm, ownerUID, effort);
H A DARMAssembler.cpp394 PassRefPtr<ExecutableMemoryHandle> ARMAssembler::executableCopy(VM& vm, void* ownerUID, JITCompilationEffort effort) argument
401 RefPtr<ExecutableMemoryHandle> result = m_buffer.executableCopy(vm, ownerUID, effort);
H A DX86Assembler.h1994 PassRefPtr<ExecutableMemoryHandle> executableCopy(VM& vm, void* ownerUID, JITCompilationEffort effort) argument
1996 return m_formatter.executableCopy(vm, ownerUID, effort);
2352 PassRefPtr<ExecutableMemoryHandle> executableCopy(VM& vm, void* ownerUID, JITCompilationEffort effort) argument
2354 return m_buffer.executableCopy(vm, ownerUID, effort);
H A DMIPSAssembler.h679 PassRefPtr<ExecutableMemoryHandle> executableCopy(VM& vm, void* ownerUID, JITCompilationEffort effort) argument
681 RefPtr<ExecutableMemoryHandle> result = m_buffer.executableCopy(vm, ownerUID, effort);
H A DSH4Assembler.h1650 PassRefPtr<ExecutableMemoryHandle> executableCopy(VM& vm, void* ownerUID, JITCompilationEffort effort) argument
1652 return m_buffer.executableCopy(vm, ownerUID, effort);
H A DARMAssembler.h763 PassRefPtr<ExecutableMemoryHandle> executableCopy(VM&, void* ownerUID, JITCompilationEffort);

Completed in 268 milliseconds