• Home
  • Raw
  • Download

Lines Matching refs:args

420   std::ostringstream args;  in Dump()  local
433 args << sa; in Dump()
440 args << FormatInstructionPointer(instr_ptr + offset) in Dump()
449 args << FormatInstructionPointer(instr_ptr + offset) in Dump()
454 args << "cc" << (sa >> 2); in Dump()
457 args << "cc" << (rt >> 2); in Dump()
459 case 'D': args << 'r' << rd; break; in Dump()
460 case 'd': args << 'f' << rd; break; in Dump()
461 case 'a': args << 'f' << sa; break; in Dump()
476 args << reinterpret_cast<void*>((instruction & 0xffff) << 16); in Dump()
479 args << static_cast<int16_t>(instruction & 0xffff); in Dump()
487 args << reinterpret_cast<void*>(target); in Dump()
493 args << StringPrintf("%+d(r%d)", offset, rs); in Dump()
499 args << StringPrintf("%+d(r%d)", offset, rs); in Dump()
501 args << " ; "; in Dump()
503 Thread::DumpThreadOffset<8>(args, offset); in Dump()
505 Thread::DumpThreadOffset<4>(args, offset); in Dump()
515 args << FormatInstructionPointer(instr_ptr + offset); in Dump()
516 args << StringPrintf(" ; %+d", offset); in Dump()
522 args << offset << " ; move r" << rs << ", "; in Dump()
523 args << FormatInstructionPointer(instr_ptr + (offset << 2)); in Dump()
526 case 'S': args << 'r' << rs; break; in Dump()
527 case 's': args << 'f' << rs; break; in Dump()
528 case 'T': args << 'r' << rt; break; in Dump()
529 case 't': args << 'f' << rt; break; in Dump()
530 case 'Z': args << (rd + 1); break; // sz ([d]ext size). in Dump()
531 case 'z': args << (rd - sa + 1); break; // sz ([d]ins size). in Dump()
534 args << ", "; in Dump()
558 args << " ; b "; in Dump()
560 args << " ; move r" << rt << ", "; in Dump()
562 args << FormatInstructionPointer(instr_ptr + (int32_t)offset); in Dump()
563 args << StringPrintf(" ; %+d", (int32_t)offset); in Dump()
568 << args.str() << '\n'; in Dump()