Lines Matching refs:args
329 std::ostringstream args; in Dump() local
342 args << sa; in Dump()
349 args << FormatInstructionPointer(instr_ptr + offset) in Dump()
358 args << FormatInstructionPointer(instr_ptr + offset) in Dump()
362 case 'D': args << 'r' << rd; break; in Dump()
363 case 'd': args << 'f' << rd; break; in Dump()
364 case 'a': args << 'f' << sa; break; in Dump()
379 args << reinterpret_cast<void*>((instruction & 0xffff) << 16); in Dump()
382 args << static_cast<int16_t>(instruction & 0xffff); in Dump()
390 args << reinterpret_cast<void*>(target); in Dump()
396 args << StringPrintf("%+d(r%d)", offset, rs); in Dump()
398 args << " ; "; in Dump()
400 Thread::DumpThreadOffset<8>(args, offset); in Dump()
402 Thread::DumpThreadOffset<4>(args, offset); in Dump()
407 case 'S': args << 'r' << rs; break; in Dump()
408 case 's': args << 'f' << rs; break; in Dump()
409 case 'T': args << 'r' << rt; break; in Dump()
410 case 't': args << 'f' << rt; break; in Dump()
411 case 'Z': args << rd; break; // sz ([d]ext size). in Dump()
414 args << ", "; in Dump()
438 args << " ; b "; in Dump()
440 args << " ; move r" << rt << ", "; in Dump()
442 args << FormatInstructionPointer(instr_ptr + (int32_t)offset); in Dump()
443 args << StringPrintf(" ; %+d", (int32_t)offset); in Dump()
448 << args.str() << '\n'; in Dump()