Home | History | Annotate | Download | only in mips

Lines Matching defs:__

159 #define __ ACCESS_MASM(cgen_->masm())
171 __ mov(kLithiumScratchReg, cgen_->ToRegister(source));
173 __ lw(kLithiumScratchReg, cgen_->ToMemOperand(source));
175 __ mov_d(kLithiumScratchDouble, cgen_->ToDoubleRegister(source));
177 __ ldc1(kLithiumScratchDouble, cgen_->ToMemOperand(source));
192 __ mov(cgen_->ToRegister(saved_destination_), kLithiumScratchReg);
194 __ sw(kLithiumScratchReg, cgen_->ToMemOperand(saved_destination_));
196 __ mov_d(cgen_->ToDoubleRegister(saved_destination_),
199 __ sdc1(kLithiumScratchDouble,
220 __ mov(cgen_->ToRegister(destination), source_register);
223 __ sw(source_register, cgen_->ToMemOperand(destination));
229 __ lw(cgen_->ToRegister(destination), source_operand);
239 __ lwc1(kLithiumScratchDouble, source_operand);
240 __ swc1(kLithiumScratchDouble, destination_operand);
242 __ lw(at, source_operand);
243 __ sw(at, destination_operand);
246 __ lw(kLithiumScratchReg, source_operand);
247 __ sw(kLithiumScratchReg, destination_operand);
256 __ li(dst, Operand(cgen_->ToInteger32(constant_source)));
258 __ LoadObject(dst, cgen_->ToHandle(constant_source));
264 __ li(kLithiumScratchReg,
267 __ LoadObject(kLithiumScratchReg,
270 __ sw(kLithiumScratchReg, cgen_->ToMemOperand(destination));
276 __ mov_d(cgen_->ToDoubleRegister(destination), source_register);
280 __ sdc1(source_register, destination_operand);
286 __ ldc1(cgen_->ToDoubleRegister(destination), source_operand);
297 __ lw(kLithiumScratchReg, source_operand);
298 __ sw(kLithiumScratchReg, destination_operand);
299 __ lw(kLithiumScratchReg, source_high_operand);
300 __ sw(kLithiumScratchReg, destination_high_operand);
302 __ ldc1(kLithiumScratchDouble, source_operand);
303 __ sdc1(kLithiumScratchDouble, destination_operand);
314 #undef __