From 2bcb4a496b7aa00d996df3a070524f7568fb35a1 Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Thu, 8 Nov 2012 10:39:18 -0800 Subject: Add "kind" argument to Get/SetVReg. In order to determine where a register is promoted its necessary to know the kind of use of the register. Extend notion of precise-ness to numeric verifier register types. Dump verifier output in oatdump. Dump vregs with their location or constant value. Introduce indenting ostream utility. Change-Id: Ia3d29497877976bc24465484743bca08236e1768 --- src/disassembler_mips.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/disassembler_mips.cc') diff --git a/src/disassembler_mips.cc b/src/disassembler_mips.cc index 86a661cbae..0efcb0bbcf 100644 --- a/src/disassembler_mips.cc +++ b/src/disassembler_mips.cc @@ -254,7 +254,7 @@ static void DumpMips(std::ostream& os, const uint8_t* instr_ptr) { } } - os << StringPrintf("\t\t\t%p: %08x\t%-7s ", instr_ptr, instruction, opcode.c_str()) << args.str() << '\n'; + os << StringPrintf("%p: %08x\t%-7s ", instr_ptr, instruction, opcode.c_str()) << args.str() << '\n'; } DisassemblerMips::DisassemblerMips() { -- cgit v1.2.3-59-g8ed1b