Home
last modified time | relevance | path

Searched refs:op_bitand (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecode/
DOpcode.h80 macro(op_bitand, 5) \
DCodeBlock.cpp647 case op_bitand: { in dump()
/external/webkit/Source/JavaScriptCore/jit/
DJIT.cpp210 DEFINE_OP(op_bitand) in privateCompileMainPass()
385 DEFINE_SLOWCASE_OP(op_bitand) in privateCompileSlowCases()
DJITStubs.cpp2995 DEFINE_STUB_FUNCTION(EncodedJSValue, op_bitand) in DEFINE_STUB_FUNCTION() argument
/external/webkit/Source/JavaScriptCore/dfg/
DDFGByteCodeParser.cpp574 case op_bitand: { in parseBlock()
578 NEXT_OPCODE(op_bitand); in parseBlock()
/external/webkit/Source/JavaScriptCore/parser/
DNodeConstructors.h564 … : BinaryOpNode(globalData, ResultType::forBitOp(), expr1, expr2, op_bitand, rightHasAssignments) in BitAndNode()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp2008 DEFINE_OPCODE(op_bitand) { in privateExecute()
2026 vPC += OPCODE_LENGTH(op_bitand); in privateExecute()
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp1027 if (opcodeID == op_bitor || opcodeID == op_bitand || opcodeID == op_bitxor || in emitBinaryOp()
DNodesCodegen.cpp1124 opcodeID = op_bitand; in emitReadModifyAssignment()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2009-06-1637579 A temporary value in the slow path of op_bitand was being stored in edx, but was
37582 from memory. This allows us to avoid clobbering the temporary in op_bitand.