Searched refs:op_add (Results 1 – 15 of 15) sorted by relevance
/external/webkit/Source/JavaScriptCore/jit/ |
D | JITArithmetic.cpp | 954 if (opcodeID == op_add) in compileBinaryArithOp() 988 …JITStubCall stubCall(this, opcodeID == op_add ? cti_op_add : opcodeID == op_sub ? cti_op_sub : cti… in compileBinaryArithOpSlowCase() 1038 if (opcodeID == op_add) in compileBinaryArithOpSlowCase() 1081 compileBinaryArithOp(op_add, result, op1, op2, types); in emit_op_add() 1098 …compileBinaryArithOpSlowCase(op_add, iter, result, op1, op2, OperandTypes::fromInt(currentInstruct… in emitSlow_op_add()
|
D | JIT.cpp | 209 DEFINE_OP(op_add) in privateCompileMainPass() 384 DEFINE_SLOWCASE_OP(op_add) in privateCompileSlowCases()
|
D | JITArithmetic32_64.cpp | 835 emitBinaryDoubleOp(op_add, dst, op1, op2, types, notInt32Op1, notInt32Op2); in emit_op_add() 1047 case op_add: in emitBinaryDoubleOp() 1108 case op_add: in emitBinaryDoubleOp()
|
D | JITStubs.cpp | 1304 DEFINE_STUB_FUNCTION(EncodedJSValue, op_add) in DEFINE_STUB_FUNCTION() argument
|
/external/webkit/Source/JavaScriptCore/bytecode/ |
D | Opcode.h | 71 macro(op_add, 5) \
|
D | CodeBlock.cpp | 611 case op_add: { in dump()
|
/external/valgrind/main/VEX/priv/ |
D | guest_arm_toIR.c | 3814 IROp op, op_shrn, op_shln, cmp_gt, op_add; in dis_neon_data_3same() local 3834 op_add = Q ? Iop_Add8x16 : Iop_Add8x8; in dis_neon_data_3same() 3840 op_add = Q ? Iop_Add16x8 : Iop_Add16x4; in dis_neon_data_3same() 3846 op_add = Q ? Iop_Add32x4 : Iop_Add32x2; in dis_neon_data_3same() 3852 op_add = Q ? Iop_Add64x2 : Iop_Add64; in dis_neon_data_3same() 3863 op_add = Q ? Iop_Add8x16 : Iop_Add8x8; in dis_neon_data_3same() 3869 op_add = Q ? Iop_Add16x8 : Iop_Add16x4; in dis_neon_data_3same() 3875 op_add = Q ? Iop_Add32x4 : Iop_Add32x2; in dis_neon_data_3same() 3881 op_add = Q ? Iop_Add64x2 : Iop_Add64; in dis_neon_data_3same() 3916 binop(op_add, in dis_neon_data_3same() [all …]
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
D | cpp.c | 352 static int op_add(int a, int b) { return a + b; } in op_add() function 378 { '+', ADD, op_add },
|
/external/webkit/Source/JavaScriptCore/dfg/ |
D | DFGByteCodeParser.cpp | 684 case op_add: { in parseBlock() 694 NEXT_OPCODE(op_add); in parseBlock()
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | NodesCodegen.cpp | 737 return generator.emitBinaryOp(op_add, r0.get(), local, r0.get(), OperandTypes()); in emitBytecode() 953 if (opcodeID == op_add && m_expr1->isAdd() && m_expr1->resultDescriptor().definitelyIsString()) in emitBytecode() 1109 opcodeID = op_add; in emitReadModifyAssignment()
|
D | BytecodeGenerator.cpp | 1028 opcodeID == op_add || opcodeID == op_mul || opcodeID == op_sub || opcodeID == op_div) in emitBinaryOp()
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | NodeConstructors.h | 479 …Add(expr1->resultDescriptor(), expr2->resultDescriptor()), expr1, expr2, op_add, rightHasAssignmen… in AddNode()
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 1836 DEFINE_OPCODE(op_add) { in privateExecute() 1853 vPC += OPCODE_LENGTH(op_add); in privateExecute()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 13881 … - Modify op_add such that addition of two strings, where either or both strings are already 17709 fix the logic for the slow case of op_add 24101 Add back constant integer cases for op_add. 24889 Added overflow handling to op_add.
|
D | ChangeLog-2009-06-16 | 23549 Change one case of op_add (and the corresponding slow case) to use eax
|