Home | History | Annotate | Download | only in mips64

Lines Matching defs:source

2 // Use of this source code is governed by a BSD-style license that can be
30 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
42 DCHECK(moves_[i].source()->IsConstantOperand());
53 // moves to perform, ignoring any move that is redundant (the source is
72 // be encountering the starting move again. So by spilling the source of
75 // its destination. All other moves from the spilled source have been
86 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
91 // dependencies. Any unperformed, unpending move with a source the same
99 // and all other moves with the same source as moves_[root_index_] are
109 // In this case, we have a cycle, and we save the source of this move to
138 // We save in a register the value that should end up in the source of
140 // in that move, we save the value to that source.
141 DCHECK(moves_[index].destination()->Equals(moves_[root_index_].source()));
144 LOperand* source = moves_[index].source();
146 if (source->IsRegister()) {
147 __ mov(kLithiumScratchReg, cgen_->ToRegister(source));
148 } else if (source->IsStackSlot()) {
149 __ ld(kLithiumScratchReg, cgen_->ToMemOperand(source));
150 } else if (source->IsDoubleRegister()) {
151 __ mov_d(kLithiumScratchDouble, cgen_->ToDoubleRegister(source));
152 } else if (source->IsDoubleStackSlot()) {
153 __ ldc1(kLithiumScratchDouble, cgen_->ToMemOperand(source));
187 LOperand* source = moves_[index].source();
190 // Dispatch on the source and destination operand kinds. Not all
193 if (source->IsRegister()) {
194 Register source_register = cgen_->ToRegister(source);
201 } else if (source->IsStackSlot()) {
202 MemOperand source_operand = cgen_->ToMemOperand(source);
211 // Therefore we can't use 'at'. It is OK if the read from the source
226 } else if (source->IsConstantOperand()) {
227 LConstantOperand* constant_source = LConstantOperand::cast(source);
256 } else if (source->IsDoubleRegister()) {
257 DoubleRegister source_register = cgen_->ToDoubleRegister(source);
266 } else if (source->IsDoubleStackSlot()) {
267 MemOperand source_operand = cgen_->ToMemOperand(source);
277 cgen_->ToHighMemOperand(source);