Searched refs:switchInfo (Results 1 – 1 of 1) sorted by relevance
/external/webkit/JavaScriptCore/bytecompiler/ |
D | BytecodeGenerator.cpp | 1981 SwitchInfo switchInfo = m_switchContextStack.last(); in endSwitch() local 1983 if (switchInfo.switchType == SwitchInfo::SwitchImmediate) { in endSwitch() 1984 … instructions()[switchInfo.bytecodeOffset + 1] = m_codeBlock->numberOfImmediateSwitchJumpTables(); in endSwitch() 1985 …instructions()[switchInfo.bytecodeOffset + 2] = defaultLabel->bind(switchInfo.bytecodeOffset, swit… in endSwitch() 1988 …prepareJumpTableForImmediateSwitch(jumpTable, switchInfo.bytecodeOffset, clauseCount, labels, node… in endSwitch() 1989 } else if (switchInfo.switchType == SwitchInfo::SwitchCharacter) { in endSwitch() 1990 … instructions()[switchInfo.bytecodeOffset + 1] = m_codeBlock->numberOfCharacterSwitchJumpTables(); in endSwitch() 1991 …instructions()[switchInfo.bytecodeOffset + 2] = defaultLabel->bind(switchInfo.bytecodeOffset, swit… in endSwitch() 1994 …prepareJumpTableForCharacterSwitch(jumpTable, switchInfo.bytecodeOffset, clauseCount, labels, node… in endSwitch() 1996 ASSERT(switchInfo.switchType == SwitchInfo::SwitchString); in endSwitch() [all …]
|