Home | History | Annotate | Download | only in disassembler

Lines Matching defs:args

1398   std::ostringstream args;
1406 DumpOpcodeReg(args, rex_w, *instr & 0x7, byte_operand, prefix[2]);
1435 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file);
1436 args << ", ";
1438 DumpSegmentOverride(args, prefix[1]);
1439 args << address;
1442 DumpSegmentOverride(args, prefix[1]);
1443 args << address;
1445 args << ", ";
1446 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file);
1452 DumpReg(args, rex, 0 /* EAX */, byte_operand, prefix[2], GPR);
1455 args << ", ";
1456 DumpReg(args, rex, 1 /* ECX */, true, prefix[2], GPR);
1460 args << ", ";
1463 args << StringPrintf("%d", *reinterpret_cast<const int8_t*>(instr));
1467 args << StringPrintf("%d", *reinterpret_cast<const int16_t*>(instr));
1470 args << StringPrintf("%d", *reinterpret_cast<const int32_t*>(instr));
1475 args << StringPrintf("%" PRId64, *reinterpret_cast<const int64_t*>(instr));
1489 args << StringPrintf("%+d (", displacement)
1494 args << " ; ";
1495 GetDisassemblerOptions()->thread_offset_name_function_(args, address_bits);
1498 args << " ; ";
1499 GetDisassemblerOptions()->thread_offset_name_function_(args, address_bits);
1512 << args.str() << '\n';