Home
last modified time | relevance | path

Searched refs:valueOfInt32Constant (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/JavaScriptCore/dfg/
DDFGJITCodeGenerator.cpp50 m_jit.move(MacroAssembler::Imm32(valueOfInt32Constant(nodeIndex)), reg); in fillInteger()
121 m_jit.move(MacroAssembler::Imm32(valueOfInt32Constant(nodeIndex)), reg); in fillDouble()
248 JSValue jsValue = jsNumber(valueOfInt32Constant(nodeIndex)); in fillJSValue()
DDFGByteCodeParser.cpp259 return getDoubleConstant(valueOfInt32Constant(index), node.constantNumber()); in toNumber()
337 int32_t valueOfInt32Constant(NodeIndex index) in valueOfInt32Constant() function in JSC::DFG::ByteCodeParser
600 if (isInt32Constant(op2) && !(valueOfInt32Constant(op2) & 0x1f)) in parseBlock()
613 if (isInt32Constant(op2) && !(valueOfInt32Constant(op2) & 0x1f)) in parseBlock()
635 if (valueOfInt32Constant(op2) & 0x1f) in parseBlock()
DDFGJITCompiler.cpp72 move(MacroAssembler::Imm32(valueOfInt32Constant(nodeIndex)), gprToRegisterID(gpr)); in fillInt32ToInteger()
90 JSValue jsValue = jsNumber(valueOfInt32Constant(nodeIndex)); in fillToJS()
DDFGSpeculativeJIT.cpp48 m_jit.move(MacroAssembler::Imm32(valueOfInt32Constant(nodeIndex)), reg); in fillSpeculateIntInternal()
275 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID()); in compile()
282 bitOp(op, valueOfInt32Constant(node.child2), op1.registerID(), result.registerID()); in compile()
305 … shiftOp(op, op1.registerID(), valueOfInt32Constant(node.child2) & 0x1f, result.registerID()); in compile()
DDFGNonSpeculativeJIT.cpp222 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID()); in compile()
229 bitOp(op, valueOfInt32Constant(node.child2), op1.registerID(), result.registerID()); in compile()
252 int shiftAmount = valueOfInt32Constant(node.child2) & 0x1f; in compile()
DDFGNonSpeculativeJIT.h139 m_jit.move(Imm32(valueOfInt32Constant(nodeIndex)), reg);
DDFGJITCompiler.h269 int32_t valueOfInt32Constant(NodeIndex nodeIndex) in valueOfInt32Constant() function
DDFGJITCodeGenerator.h244 …int32_t valueOfInt32Constant(NodeIndex nodeIndex) { return m_jit.valueOfInt32Constant(nodeIndex); } in valueOfInt32Constant() function