Lines Matching refs:args

1499   std::ostringstream args;  in DumpInstruction()  local
1507 DumpOpcodeReg(args, rex_w, *instr & 0x7, byte_operand, prefix[2]); in DumpInstruction()
1536 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction()
1537 args << ", "; in DumpInstruction()
1539 DumpSegmentOverride(args, prefix[1]); in DumpInstruction()
1541 args << address; in DumpInstruction()
1544 DumpSegmentOverride(args, prefix[1]); in DumpInstruction()
1545 args << address; in DumpInstruction()
1547 args << ", "; in DumpInstruction()
1548 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
1554 DumpReg(args, rex, 0 /* EAX */, byte_operand, prefix[2], GPR); in DumpInstruction()
1557 args << ", "; in DumpInstruction()
1558 DumpReg(args, rex, 1 /* ECX */, true, prefix[2], GPR); in DumpInstruction()
1562 args << ", "; in DumpInstruction()
1565 args << StringPrintf("%d", *reinterpret_cast<const int8_t*>(instr)); in DumpInstruction()
1569 args << StringPrintf("%d", *reinterpret_cast<const int16_t*>(instr)); in DumpInstruction()
1572 args << StringPrintf("%d", *reinterpret_cast<const int32_t*>(instr)); in DumpInstruction()
1577 args << StringPrintf("%" PRId64, *reinterpret_cast<const int64_t*>(instr)); in DumpInstruction()
1591 args << StringPrintf("%+d (", displacement) in DumpInstruction()
1596 args << " ; "; in DumpInstruction()
1597 GetDisassemblerOptions()->thread_offset_name_function_(args, address_bits); in DumpInstruction()
1600 args << " ; "; in DumpInstruction()
1601 GetDisassemblerOptions()->thread_offset_name_function_(args, address_bits); in DumpInstruction()
1614 << args.str() << '\n'; in DumpInstruction()