Searched refs:valueOfInt32Constant (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/JavaScriptCore/dfg/ |
D | DFGJITCodeGenerator.cpp | 50 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()
|
D | DFGByteCodeParser.cpp | 259 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()
|
D | DFGJITCompiler.cpp | 72 move(MacroAssembler::Imm32(valueOfInt32Constant(nodeIndex)), gprToRegisterID(gpr)); in fillInt32ToInteger() 90 JSValue jsValue = jsNumber(valueOfInt32Constant(nodeIndex)); in fillToJS()
|
D | DFGSpeculativeJIT.cpp | 48 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()
|
D | DFGNonSpeculativeJIT.cpp | 222 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()
|
D | DFGNonSpeculativeJIT.h | 139 m_jit.move(Imm32(valueOfInt32Constant(nodeIndex)), reg);
|
D | DFGJITCompiler.h | 269 int32_t valueOfInt32Constant(NodeIndex nodeIndex) in valueOfInt32Constant() function
|
D | DFGJITCodeGenerator.h | 244 …int32_t valueOfInt32Constant(NodeIndex nodeIndex) { return m_jit.valueOfInt32Constant(nodeIndex); } in valueOfInt32Constant() function
|