Searched defs:defaultLabel (Results 1 - 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/bytecompiler/
H A DNodesCodegen.cpp1747 RefPtr<Label> defaultLabel; local
1758 defaultLabel = generator.newLabel();
1777 defaultLabel = generator.newLabel();
1778 generator.emitJump(defaultLabel.get());
1790 generator.emitLabel(defaultLabel.get());
1799 generator.emitLabel(defaultLabel.get());
1804 generator.endSwitch(labelVector.size(), labelVector.data(), literalVector.data(), defaultLabel.get(), min_num, max_num);
H A DBytecodeGenerator.cpp1979 void BytecodeGenerator::endSwitch(uint32_t clauseCount, RefPtr<Label>* labels, ExpressionNode** nodes, Label* defaultLabel, int32_t min, int32_t max) argument
1985 instructions()[switchInfo.bytecodeOffset + 2] = defaultLabel->bind(switchInfo.bytecodeOffset, switchInfo.bytecodeOffset + 3);
1991 instructions()[switchInfo.bytecodeOffset + 2] = defaultLabel->bind(switchInfo.bytecodeOffset, switchInfo.bytecodeOffset + 3);
1998 instructions()[switchInfo.bytecodeOffset + 2] = defaultLabel->bind(switchInfo.bytecodeOffset, switchInfo.bytecodeOffset + 3);

Completed in 29 milliseconds