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

/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp3430 JSValue scrutinee = stackFrame.args[0].jsValue(); local
3435 if (scrutinee.isInt32())
3436 return codeBlock->immediateSwitchJumpTable(tableIndex).ctiForValue(scrutinee.asInt32()).executableAddress();
3440 if (scrutinee.getNumber(value) && ((intValue = static_cast<int32_t>(value)) == value))
3451 JSValue scrutinee = stackFrame.args[0].jsValue(); local
3458 if (scrutinee.isString()) {
3459 StringImpl* value = asString(scrutinee)->value(callFrame).impl();
3472 JSValue scrutinee = stackFrame.args[0].jsValue(); local
3479 if (scrutinee.isString()) {
3480 StringImpl* value = asString(scrutinee)
[all...]
H A DJITOpcodes.cpp1086 unsigned scrutinee = currentInstruction[3].u.operand; local
1094 stubCall.addArgument(scrutinee, regT2);
1104 unsigned scrutinee = currentInstruction[3].u.operand; local
1112 stubCall.addArgument(scrutinee, regT2);
1122 unsigned scrutinee = currentInstruction[3].u.operand; local
1129 stubCall.addArgument(scrutinee, regT2);
H A DJITOpcodes32_64.cpp1461 unsigned scrutinee = currentInstruction[3].u.operand; local
1469 stubCall.addArgument(scrutinee);
1479 unsigned scrutinee = currentInstruction[3].u.operand; local
1487 stubCall.addArgument(scrutinee);
1497 unsigned scrutinee = currentInstruction[3].u.operand; local
1504 stubCall.addArgument(scrutinee);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp3701 /* switch_imm tableIndex(n) defaultOffset(offset) scrutinee(r)
3703 Performs a range checked switch on the scrutinee value, using
3704 the tableIndex-th immediate switch jump table. If the scrutinee value
3706 table, and the value at jumpTable[scrutinee value] is non-zero, then
3711 JSValue scrutinee = callFrame->r(vPC[3].u.operand).jsValue();
3712 if (scrutinee.isInt32())
3713 vPC += codeBlock->immediateSwitchJumpTable(tableIndex).offsetForValue(scrutinee.asInt32(), defaultOffset);
3717 if (scrutinee.getNumber(value) && ((intValue = static_cast<int32_t>(value)) == value))
3725 /* switch_char tableIndex(n) defaultOffset(offset) scrutinee(r)
3727 Performs a range checked switch on the scrutinee valu
[all...]

Completed in 1798 milliseconds