OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StringJumpTable
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/JavaScriptCore/bytecode/
JumpTable.h
47
struct
StringJumpTable
{
CodeBlock.h
454
StringJumpTable
& addStringSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_stringSwitchJumpTables.append(
StringJumpTable
()); return m_rareData->m_stringSwitchJumpTables.last(); }
455
StringJumpTable
& stringSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_stringSwitchJumpTables[tableIndex]; }
547
Vector<
StringJumpTable
> m_stringSwitchJumpTables;
CodeBlock.cpp
470
StringJumpTable
::StringOffsetTable::const_iterator end = m_rareData->m_stringSwitchJumpTables[i].offsetTable.end();
471
for (
StringJumpTable
::StringOffsetTable::const_iterator iter = m_rareData->m_stringSwitchJumpTables[i].offsetTable.begin(); iter != end; ++iter)
[
all
...]
/external/webkit/Source/JavaScriptCore/jit/
JIT.cpp
536
record.jumpTable.
stringJumpTable
->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeOffset + record.defaultOffset]);
538
StringJumpTable
::StringOffsetTable::iterator end = record.jumpTable.
stringJumpTable
->offsetTable.end();
539
for (
StringJumpTable
::StringOffsetTable::iterator it = record.jumpTable.
stringJumpTable
->offsetTable.begin(); it != end; ++it) {
541
it->second.ctiOffset = offset ? patchBuffer.locationOf(m_labels[bytecodeOffset + offset]) : record.jumpTable.
stringJumpTable
->ctiDefault;
JIT.h
64
struct
StringJumpTable
;
119
StringJumpTable
*
stringJumpTable
;
133
SwitchRecord(
StringJumpTable
* jumpTable, unsigned bytecodeOffset, unsigned defaultOffset)
138
this->jumpTable.
stringJumpTable
= jumpTable;
[
all
...]
JITOpcodes.cpp
[
all
...]
JITOpcodes32_64.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp
[
all
...]
Completed in 689 milliseconds