Lines Matching refs:stream
287 void DumpLocation(std::ostream& stream, const Location& location) { in DumpLocation() argument
289 codegen_.DumpCoreRegister(stream, location.reg()); in DumpLocation()
291 codegen_.DumpFloatingPointRegister(stream, location.reg()); in DumpLocation()
293 stream << "#"; in DumpLocation()
296 stream << constant->AsIntConstant()->GetValue(); in DumpLocation()
298 stream << constant->AsLongConstant()->GetValue(); in DumpLocation()
300 stream << constant->AsFloatConstant()->GetValue(); in DumpLocation()
302 stream << constant->AsDoubleConstant()->GetValue(); in DumpLocation()
304 stream << "null"; in DumpLocation()
307 stream << "invalid"; in DumpLocation()
309 stream << location.GetStackIndex() << "(sp)"; in DumpLocation()
311 codegen_.DumpFloatingPointRegister(stream, location.low()); in DumpLocation()
312 stream << "|"; in DumpLocation()
313 codegen_.DumpFloatingPointRegister(stream, location.high()); in DumpLocation()
315 codegen_.DumpCoreRegister(stream, location.low()); in DumpLocation()
316 stream << "|"; in DumpLocation()
317 codegen_.DumpCoreRegister(stream, location.high()); in DumpLocation()
319 stream << "unallocated"; in DumpLocation()
321 stream << "2x" << location.GetStackIndex() << "(sp)"; in DumpLocation()
324 stream << "4x" << location.GetStackIndex() << "(sp)"; in DumpLocation()