Deleted Added
sdiff udiff text old ( 4679:0b39fa8f5eb8 ) new ( 4688:82d7cbf0e66d )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

--- 42 unchanged lines hidden (view full) ---

51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#include "arch/x86/insts/microregop.hh"
59#include <string>
60
61namespace X86ISA
62{
63 std::string RegOp::generateDisassembly(Addr pc,
64 const SymbolTable *symtab) const
65 {
66 std::stringstream response;
67
68 printMnemonic(response, instMnem, mnemonic);
69 printReg(response, dest);
70 response << ", ";

--- 19 unchanged lines hidden ---