Home
last modified time | relevance | path

Searched refs:op_mul (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/JavaScriptCore/jit/
DJITArithmetic.cpp959 ASSERT(opcodeID == op_mul); in compileBinaryArithOp()
983 …if (opcodeID == op_mul && !op1HasImmediateIntFastCase && !op2HasImmediateIntFastCase) // op_mul ha… in compileBinaryArithOpSlowCase()
1042 else if (opcodeID == op_mul) in compileBinaryArithOpSlowCase()
1121 compileBinaryArithOp(op_mul, result, op1, op2, types); in emit_op_mul()
1135 …compileBinaryArithOpSlowCase(op_mul, iter, result, op1, op2, OperandTypes::fromInt(currentInstruct… in emitSlow_op_mul()
DJIT.cpp265 DEFINE_OP(op_mul) in privateCompileMainPass()
418 DEFINE_SLOWCASE_OP(op_mul) in privateCompileSlowCases()
DJITArithmetic32_64.cpp1042 case op_mul: in emitBinaryDoubleOp()
1103 case op_mul: in emitBinaryDoubleOp()
1177 emitBinaryDoubleOp(op_mul, dst, op1, op2, types, notInt32Op1, notInt32Op2); in emit_op_mul()
1194 emitJumpSlowToHot(jump(), OPCODE_LENGTH(op_mul)); in emitSlow_op_mul()
DJITStubs.cpp1900 DEFINE_STUB_FUNCTION(EncodedJSValue, op_mul) in DEFINE_STUB_FUNCTION() argument
/external/webkit/Source/JavaScriptCore/bytecode/
DOpcode.h72 macro(op_mul, 5) \
DCodeBlock.cpp616 case op_mul: { in dump()
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
Dcpp.c354 static int op_mul(int a, int b) { return a * b; } in op_mul() function
380 { '*', MUL, op_mul },
/external/webkit/Source/JavaScriptCore/dfg/
DDFGByteCodeParser.cpp705 case op_mul: { in parseBlock()
710 NEXT_OPCODE(op_mul); in parseBlock()
/external/webkit/Source/JavaScriptCore/parser/
DNodeConstructors.h463 …: BinaryOpNode(globalData, ResultType::numberTypeCanReuse(), expr1, expr2, op_mul, rightHasAssignm… in MultNode()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp1856 DEFINE_OPCODE(op_mul) { in privateExecute()
1873 vPC += OPCODE_LENGTH(op_mul); in privateExecute()
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp1028 opcodeID == op_add || opcodeID == op_mul || opcodeID == op_sub || opcodeID == op_div) in emitBinaryOp()
DNodesCodegen.cpp1101 opcodeID = op_mul; in emitReadModifyAssignment()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2009-06-1628952 Use simple uint32_t multiplication on op_mul if both operands are
35109 Inline immediate number version of op_mul.
DChangeLog-2010-05-2424432 not op_mul. That would be dumb.