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

/external/webkit/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp1925 static void prepareJumpTableForImmediateSwitch(SimpleJumpTable& jumpTable, int32_t switchAddress, uint32_t clauseCount, RefPtr<Label>* labels, ExpressionNode** nodes, int32_t min, int32_t max) argument
1930 for (uint32_t i = 0; i < clauseCount; ++i) {
1951 static void prepareJumpTableForCharacterSwitch(SimpleJumpTable& jumpTable, int32_t switchAddress, uint32_t clauseCount, RefPtr<Label>* labels, ExpressionNode** nodes, int32_t min, int32_t max) argument
1956 for (uint32_t i = 0; i < clauseCount; ++i) {
1964 static void prepareJumpTableForStringSwitch(StringJumpTable& jumpTable, int32_t switchAddress, uint32_t clauseCount, RefPtr<Label>* labels, ExpressionNode** nodes) argument
1966 for (uint32_t i = 0; i < clauseCount; ++i) {
1979 void BytecodeGenerator::endSwitch(uint32_t clauseCount, RefPtr<Label>* labels, ExpressionNode** nodes, Label* defaultLabel, int32_t min, int32_t max) argument
1988 prepareJumpTableForImmediateSwitch(jumpTable, switchInfo.bytecodeOffset, clauseCount, labels, nodes, min, max);
1994 prepareJumpTableForCharacterSwitch(jumpTable, switchInfo.bytecodeOffset, clauseCount, labels, nodes, min, max);
2001 prepareJumpTableForStringSwitch(jumpTable, switchInfo.bytecodeOffset, clauseCount, label
[all...]
H A DBytecodeGenerator.h369 void endSwitch(uint32_t clauseCount, RefPtr<Label>*, ExpressionNode**, Label* defaultLabel, int32_t min, int32_t range);

Completed in 22 milliseconds