OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NativeExecutable
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/JavaScriptCore/jit/
ThunkGenerators.h
33
class
NativeExecutable
;
JITStubs.h
55
class
NativeExecutable
;
299
NativeExecutable
* hostFunctionStub(JSGlobalData*, NativeFunction);
300
NativeExecutable
* hostFunctionStub(JSGlobalData*, NativeFunction, ThunkGenerator);
307
typedef HashMap<NativeFunction, Strong<
NativeExecutable
> > HostFunctionStubMap;
JITStubs.cpp
[
all
...]
JITOpcodes.cpp
191
int executableOffsetToFunction = isConstruct ? OBJECT_OFFSETOF(
NativeExecutable
, m_constructor) : OBJECT_OFFSETOF(
NativeExecutable
, m_function);
[
all
...]
JITOpcodes32_64.cpp
197
int executableOffsetToFunction = isConstruct ? OBJECT_OFFSETOF(
NativeExecutable
, m_constructor) : OBJECT_OFFSETOF(
NativeExecutable
, m_function);
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
Executable.h
98
class
NativeExecutable
: public ExecutableBase {
102
static
NativeExecutable
* create(JSGlobalData& globalData, MacroAssemblerCodePtr callThunk, NativeFunction function, MacroAssemblerCodePtr constructThunk, NativeFunction constructor)
105
return new (&globalData)
NativeExecutable
(globalData, JITCode(), function, JITCode(), constructor);
106
return new (&globalData)
NativeExecutable
(globalData, JITCode::HostFunction(callThunk), function, JITCode::HostFunction(constructThunk), constructor);
109
static
NativeExecutable
* create(JSGlobalData& globalData, NativeFunction function, NativeFunction constructor)
111
return new (&globalData)
NativeExecutable
(globalData, function, constructor);
115
~
NativeExecutable
();
123
NativeExecutable
(JSGlobalData& globalData, JITCode callThunk, NativeFunction function, JITCode constructThunk, NativeFunction constructor)
134
NativeExecutable
(JSGlobalData& globalData, NativeFunction function, NativeFunction constructor)
428
return static_cast<
NativeExecutable
*>(m_executable.get())->function()
[
all
...]
JSFunction.h
36
class
NativeExecutable
;
49
JSFunction(ExecState*, JSGlobalObject*, Structure*, int length, const Identifier&,
NativeExecutable
*);
JSGlobalData.h
67
class
NativeExecutable
;
215
NativeExecutable
* getHostFunction(NativeFunction, ThunkGenerator);
217
NativeExecutable
* getHostFunction(NativeFunction);
JSGlobalData.cpp
197
nativeExecutableStructure.set(*this,
NativeExecutable
::createStructure(*this, jsNull()));
356
NativeExecutable
* JSGlobalData::getHostFunction(NativeFunction function)
360
NativeExecutable
* JSGlobalData::getHostFunction(NativeFunction function, ThunkGenerator generator)
365
NativeExecutable
* JSGlobalData::getHostFunction(NativeFunction function)
367
return
NativeExecutable
::create(*this, function, callHostFunctionAsConstructor);
Executable.cpp
45
const ClassInfo
NativeExecutable
::s_info = { "
NativeExecutable
", &ExecutableBase::s_info, 0, 0 };
47
NativeExecutable
::~
NativeExecutable
()
JSFunction.cpp
64
JSFunction::JSFunction(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, int length, const Identifier& name,
NativeExecutable
* thunk)
Completed in 78 milliseconds