Searched refs:switchInfo (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp2193 SwitchInfo switchInfo = m_switchContextStack.last(); local
2195 if (switchInfo.switchType == SwitchInfo::SwitchImmediate) {
2196 instructions()[switchInfo.bytecodeOffset + 1] = m_codeBlock->numberOfImmediateSwitchJumpTables();
2197 instructions()[switchInfo.bytecodeOffset + 2] = defaultLabel->bind(switchInfo.bytecodeOffset, switchInfo.bytecodeOffset + 3);
2200 prepareJumpTableForImmediateSwitch(jumpTable, switchInfo.bytecodeOffset, clauseCount, labels, nodes, min, max);
2201 } else if (switchInfo.switchType == SwitchInfo::SwitchCharacter) {
2202 instructions()[switchInfo.bytecodeOffset + 1] = m_codeBlock->numberOfCharacterSwitchJumpTables();
2203 instructions()[switchInfo
[all...]

Completed in 88 milliseconds