Home | History | Annotate | Download | only in mips

Lines Matching full:constant_source

228     LConstantOperand* constant_source = LConstantOperand::cast(source);
231 Representation r = cgen_->IsSmi(constant_source)
233 if (cgen_->IsInteger32(constant_source)) {
234 __ li(dst, Operand(cgen_->ToRepresentation(constant_source, r)));
236 __ li(dst, cgen_->ToHandle(constant_source));
240 double v = cgen_->ToDouble(constant_source);
245 Representation r = cgen_->IsSmi(constant_source)
247 if (cgen_->IsInteger32(constant_source)) {
249 Operand(cgen_->ToRepresentation(constant_source, r)));
251 __ li(kLithiumScratchReg, cgen_->ToHandle(constant_source));