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

/macosx-10.10/JavaScriptCore-7600.1.17/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.10/WTF-7600.1.24/wtf/
H A DMetaAllocatorHandle.h43 MetaAllocatorHandle(MetaAllocator*, void* start, size_t sizeInBytes, void* ownerUID);
96 void* ownerUID() function in class:WTF::MetaAllocatorHandle
H A DMetaAllocator.cpp74 MetaAllocatorHandle::MetaAllocatorHandle(MetaAllocator* allocator, void* start, size_t sizeInBytes, void* ownerUID) argument
78 , m_ownerUID(ownerUID)
149 PassRefPtr<MetaAllocatorHandle> MetaAllocator::allocate(size_t sizeInBytes, void* ownerUID) argument
187 MetaAllocatorHandle* handle = new MetaAllocatorHandle(this, start, sizeInBytes, ownerUID);
H A DMetaAllocator.h71 WTF_EXPORT_PRIVATE PassRefPtr<MetaAllocatorHandle> allocate(size_t sizeInBytes, void* ownerUID);
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DExecutableAllocatorFixedVMPool.cpp164 PassRefPtr<ExecutableMemoryHandle> ExecutableAllocator::allocate(VM& vm, size_t sizeInBytes, void* ownerUID, JITCompilationEffort effort) argument
166 RefPtr<ExecutableMemoryHandle> result = allocator->allocate(sizeInBytes, ownerUID);
171 result = allocator->allocate(sizeInBytes, ownerUID);
H A DExecutableAllocator.h122 PassRefPtr<ExecutableMemoryHandle> allocate(VM&, size_t sizeInBytes, void* ownerUID, JITCompilationEffort);
H A DExecutableAllocator.cpp219 PassRefPtr<ExecutableMemoryHandle> ExecutableAllocator::allocate(VM&, size_t sizeInBytes, void* ownerUID, JITCompilationEffort effort) argument
221 RefPtr<ExecutableMemoryHandle> result = allocator()->allocate(sizeInBytes, ownerUID);
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DLinkBuffer.cpp90 void LinkBuffer::copyCompactAndLinkCode(MacroAssembler& macroAssembler, void* ownerUID, JITCompilationEffort effort) argument
93 allocate(m_initialSize, ownerUID, effort);
164 void LinkBuffer::linkCode(MacroAssembler& macroAssembler, void* ownerUID, JITCompilationEffort effort) argument
171 allocate(buffer.codeSize(), ownerUID, effort);
183 copyCompactAndLinkCode<uint16_t>(macroAssembler, ownerUID, effort);
185 copyCompactAndLinkCode<uint32_t>(macroAssembler, ownerUID, effort);
189 void LinkBuffer::allocate(size_t initialSize, void* ownerUID, JITCompilationEffort effort) argument
200 m_executableMemory = m_vm->executableAllocator.allocate(*m_vm, initialSize, ownerUID, effort);
H A DLinkBuffer.h83 LinkBuffer(VM& vm, MacroAssembler& macroAssembler, void* ownerUID, JITCompilationEffort effort = JITCompilationMustSucceed) argument
95 linkCode(macroAssembler, ownerUID, effort);
282 void allocate(size_t initialSize, void* ownerUID, JITCompilationEffort);
285 JS_EXPORT_PRIVATE void linkCode(MacroAssembler&, void* ownerUID, JITCompilationEffort);
288 void copyCompactAndLinkCode(MacroAssembler&, void* ownerUID, JITCompilationEffort);

Completed in 84 milliseconds