Lines Matching refs:TempLocation
203 void ZeroOperandInstruction::FastAllocate(TempLocation* temp) { in FastAllocate()
204 temp->set_where(TempLocation::STACK); in FastAllocate()
208 void OneOperandInstruction::FastAllocate(TempLocation* temp) { in FastAllocate()
210 ? TempLocation::ACCUMULATOR in FastAllocate()
211 : TempLocation::STACK); in FastAllocate()
215 void TwoOperandInstruction::FastAllocate(TempLocation* temp) { in FastAllocate()
217 ? TempLocation::ACCUMULATOR in FastAllocate()
218 : TempLocation::STACK); in FastAllocate()
373 if (destination_ == NULL) destination_ = new TempLocation(); in VisitProperty()
381 temp = new TempLocation(); in VisitProperty()
455 if (destination_ == NULL) destination_ = new TempLocation(); in VisitBinaryOperation()
463 temp = new TempLocation(); in VisitBinaryOperation()
648 void TempLocation::Print() { in Print()