OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_codeBlockForConstruct
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp
295
ASSERT(!
m_codeBlockForConstruct
);
296
m_codeBlockForConstruct
= adoptPtr(new FunctionCodeBlock(this, FunctionCode, globalObject, source().provider(), source().startOffset(), true));
297
OwnPtr<BytecodeGenerator> generator(adoptPtr(new BytecodeGenerator(body.get(), scopeChainNode,
m_codeBlockForConstruct
->symbolTable(),
m_codeBlockForConstruct
.get())));
299
m_codeBlockForConstruct
.clear();
304
m_numParametersForConstruct =
m_codeBlockForConstruct
->m_numParameters;
306
m_numCapturedVariables =
m_codeBlockForConstruct
->m_numCapturedVars;
307
m_symbolTable =
m_codeBlockForConstruct
->sharedSymbolTable();
313
m_jitCodeForConstruct = JIT::compile(scopeChainNode->globalData,
m_codeBlockForConstruct
.get(), &m_jitCodeForConstructWithArityCheck);
316
m_codeBlockForConstruct
->discardBytecode()
[
all
...]
Executable.h
320
ASSERT(
m_codeBlockForConstruct
);
321
return *
m_codeBlockForConstruct
;
349
if (!
m_codeBlockForConstruct
)
351
ASSERT(!error == !!
m_codeBlockForConstruct
);
357
return
m_codeBlockForConstruct
;
362
ASSERT(
m_codeBlockForConstruct
);
363
return *
m_codeBlockForConstruct
;
391
OwnPtr<FunctionCodeBlock>
m_codeBlockForConstruct
;
Completed in 15 milliseconds