Home
last modified time | relevance | path

Searched defs:jumpTable (Results 1 – 5 of 5) sorted by relevance

/external/llvm/test/FrontendC++/
D2003-12-08-ArrayOfPtrToMemberFunc.cpp8 static memfunptr jumpTable[] = { &Evil::fun }; variable
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp2137 static void prepareJumpTableForImmediateSwitch(SimpleJumpTable& jumpTable, int32_t switchAddress, u… in prepareJumpTableForImmediateSwitch()
2163 static void prepareJumpTableForCharacterSwitch(SimpleJumpTable& jumpTable, int32_t switchAddress, u… in prepareJumpTableForCharacterSwitch()
2176 static void prepareJumpTableForStringSwitch(StringJumpTable& jumpTable, int32_t switchAddress, uint… in prepareJumpTableForStringSwitch()
2199 SimpleJumpTable& jumpTable = m_codeBlock->addImmediateSwitchJumpTable(); in endSwitch() local
2205 SimpleJumpTable& jumpTable = m_codeBlock->addCharacterSwitchJumpTable(); in endSwitch() local
2212 StringJumpTable& jumpTable = m_codeBlock->addStringSwitchJumpTable(); in endSwitch() local
/external/webkit/Source/JavaScriptCore/jit/
DJITOpcodes32_64.cpp1464 SimpleJumpTable* jumpTable = &m_codeBlock->immediateSwitchJumpTable(tableIndex); in emit_op_switch_imm() local
1482 SimpleJumpTable* jumpTable = &m_codeBlock->characterSwitchJumpTable(tableIndex); in emit_op_switch_char() local
1500 StringJumpTable* jumpTable = &m_codeBlock->stringSwitchJumpTable(tableIndex); in emit_op_switch_string() local
DJITOpcodes.cpp1089 SimpleJumpTable* jumpTable = &m_codeBlock->immediateSwitchJumpTable(tableIndex); in emit_op_switch_imm() local
1107 SimpleJumpTable* jumpTable = &m_codeBlock->characterSwitchJumpTable(tableIndex); in emit_op_switch_char() local
1125 StringJumpTable* jumpTable = &m_codeBlock->stringSwitchJumpTable(tableIndex); in emit_op_switch_string() local
DJIT.h120 } jumpTable; member