Searched refs:nativeExecutable (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITThunks.cpp74 if (NativeExecutable* nativeExecutable = m_hostFunctionStubMap->get(std::make_pair(function, constructor)))
75 return nativeExecutable;
77 NativeExecutable* nativeExecutable = NativeExecutable::create(*vm, JIT::compileCTINativeCall(vm, function), function, MacroAssemblerCodeRef::createSelfManagedCodeRef(ctiNativeConstruct(vm)), constructor, NoIntrinsic);
78 weakAdd(*m_hostFunctionStubMap, std::make_pair(function, constructor), PassWeak<NativeExecutable>(nativeExecutable));
79 return nativeExecutable;
84 if (NativeExecutable* nativeExecutable = m_hostFunctionStubMap->get(std::make_pair(function, &callHostFunctionAsConstructor)))
85 return nativeExecutable;
96 NativeExecutable* nativeExecutable = NativeExecutable::create(*vm, code, function, MacroAssemblerCodeRef::createSelfManagedCodeRef(ctiNativeConstruct(vm)), callHostFunctionAsConstructor, intrinsic); local
97 weakAdd(*m_hostFunctionStubMap, std::make_pair(function, &callHostFunctionAsConstructor), PassWeak<NativeExecutable>(nativeExecutable));
98 return nativeExecutable;
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DExecutable.cpp67 if (const NativeExecutable* nativeExecutable = jsDynamicCast<const NativeExecutable*>(this))
68 return nativeExecutable->intrinsic();

Completed in 128 milliseconds