Home
last modified time | relevance | path

Searched refs:scrutinee (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/JavaScriptCore/jit/
DJITOpcodes.cpp1086 unsigned scrutinee = currentInstruction[3].u.operand; in emit_op_switch_imm() local
1094 stubCall.addArgument(scrutinee, regT2); in emit_op_switch_imm()
1104 unsigned scrutinee = currentInstruction[3].u.operand; in emit_op_switch_char() local
1112 stubCall.addArgument(scrutinee, regT2); in emit_op_switch_char()
1122 unsigned scrutinee = currentInstruction[3].u.operand; in emit_op_switch_string() local
1129 stubCall.addArgument(scrutinee, regT2); in emit_op_switch_string()
DJITOpcodes32_64.cpp1461 unsigned scrutinee = currentInstruction[3].u.operand; in emit_op_switch_imm() local
1469 stubCall.addArgument(scrutinee); in emit_op_switch_imm()
1479 unsigned scrutinee = currentInstruction[3].u.operand; in emit_op_switch_char() local
1487 stubCall.addArgument(scrutinee); in emit_op_switch_char()
1497 unsigned scrutinee = currentInstruction[3].u.operand; in emit_op_switch_string() local
1504 stubCall.addArgument(scrutinee); in emit_op_switch_string()
DJITStubs.cpp3430 JSValue scrutinee = stackFrame.args[0].jsValue(); in DEFINE_STUB_FUNCTION() local
3435 if (scrutinee.isInt32()) in DEFINE_STUB_FUNCTION()
3436 …return codeBlock->immediateSwitchJumpTable(tableIndex).ctiForValue(scrutinee.asInt32()).executable… in DEFINE_STUB_FUNCTION()
3440 if (scrutinee.getNumber(value) && ((intValue = static_cast<int32_t>(value)) == value)) in DEFINE_STUB_FUNCTION()
3451 JSValue scrutinee = stackFrame.args[0].jsValue(); in DEFINE_STUB_FUNCTION() local
3458 if (scrutinee.isString()) { in DEFINE_STUB_FUNCTION()
3459 StringImpl* value = asString(scrutinee)->value(callFrame).impl(); in DEFINE_STUB_FUNCTION()
3472 JSValue scrutinee = stackFrame.args[0].jsValue(); in DEFINE_STUB_FUNCTION() local
3479 if (scrutinee.isString()) { in DEFINE_STUB_FUNCTION()
3480 StringImpl* value = asString(scrutinee)->value(callFrame).impl(); in DEFINE_STUB_FUNCTION()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp3711 JSValue scrutinee = callFrame->r(vPC[3].u.operand).jsValue(); in privateExecute() local
3712 if (scrutinee.isInt32()) in privateExecute()
3713 …vPC += codeBlock->immediateSwitchJumpTable(tableIndex).offsetForValue(scrutinee.asInt32(), default… in privateExecute()
3717 if (scrutinee.getNumber(value) && ((intValue = static_cast<int32_t>(value)) == value)) in privateExecute()
3735 JSValue scrutinee = callFrame->r(vPC[3].u.operand).jsValue(); in privateExecute() local
3736 if (!scrutinee.isString()) in privateExecute()
3739 StringImpl* value = asString(scrutinee)->value(callFrame).impl(); in privateExecute()
3758 JSValue scrutinee = callFrame->r(vPC[3].u.operand).jsValue(); in privateExecute() local
3759 if (!scrutinee.isString()) in privateExecute()
3762 …vPC += codeBlock->stringSwitchJumpTable(tableIndex).offsetForValue(asString(scrutinee)->value(call… in privateExecute()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2009-06-1610230 truncating the scrutinee value. E.g.: