Home | History | Annotate | Download | only in dfg

Lines Matching refs:jsValue

83 // This method used to fill a JSValue to a GPR when linking speculative -> non-speculative.
90 JSValue jsValue = jsNumber(valueOfInt32Constant(nodeIndex));
91 move(MacroAssembler::ImmPtr(JSValue::encode(jsValue)), gprToRegisterID(gpr));
93 JSValue jsValue(JSValue::EncodeAsDouble, valueOfDoubleConstant(nodeIndex));
94 move(MacroAssembler::ImmPtr(JSValue::encode(jsValue)), gprToRegisterID(gpr));
97 JSValue jsValue = valueOfJSConstant(nodeIndex);
98 move(MacroAssembler::ImmPtr(JSValue::encode(jsValue)), gprToRegisterID(gpr));
177 ASSERT(dataFormat & DataFormatJS || dataFormat == DataFormatCell); // Treat cell as JSValue for now!