OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SimpleJumpTable
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/JavaScriptCore/bytecode/
JumpTable.cpp
37
int32_t
SimpleJumpTable
::offsetForValue(int32_t value, int32_t defaultOffset)
JumpTable.h
75
struct
SimpleJumpTable
{
CodeBlock.h
446
SimpleJumpTable
& addImmediateSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_immediateSwitchJumpTables.append(
SimpleJumpTable
()); return m_rareData->m_immediateSwitchJumpTables.last(); }
447
SimpleJumpTable
& immediateSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_immediateSwitchJumpTables[tableIndex]; }
450
SimpleJumpTable
& addCharacterSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_characterSwitchJumpTables.append(
SimpleJumpTable
()); return m_rareData->m_characterSwitchJumpTables.last(); }
451
SimpleJumpTable
& characterSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_characterSwitchJumpTables[tableIndex]; }
545
Vector<
SimpleJumpTable
> m_immediateSwitchJumpTables;
546
Vector<
SimpleJumpTable
> m_characterSwitchJumpTables;
/external/webkit/Source/JavaScriptCore/jit/
JIT.h
63
struct
SimpleJumpTable
;
118
SimpleJumpTable
*
simpleJumpTable
;
125
SwitchRecord(
SimpleJumpTable
* jumpTable, unsigned bytecodeOffset, unsigned defaultOffset, Type type)
130
this->jumpTable.
simpleJumpTable
= jumpTable;
[
all
...]
JITOpcodes.cpp
[
all
...]
JITOpcodes32_64.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp
[
all
...]
Completed in 200 milliseconds