mem.cc (7131:ab3a70a37ca8) mem.cc (7132:83b433d6e600)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

42
43#include "arch/arm/insts/mem.hh"
44#include "base/loader/symtab.hh"
45
46namespace ArmISA
47{
48
49void
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

42
43#include "arch/arm/insts/mem.hh"
44#include "base/loader/symtab.hh"
45
46namespace ArmISA
47{
48
49void
50MemoryNew::printInst(std::ostream &os, AddrMode addrMode) const
50Memory::printInst(std::ostream &os, AddrMode addrMode) const
51{
52 printMnemonic(os);
53 printReg(os, dest);
54 os << ", [";
55 printReg(os, base);
56 if (addrMode != AddrMd_PostIndex) {
57 os << ", ";
58 printOffset(os);

--- 12 unchanged lines hidden ---
51{
52 printMnemonic(os);
53 printReg(os, dest);
54 os << ", [";
55 printReg(os, base);
56 if (addrMode != AddrMd_PostIndex) {
57 os << ", ";
58 printOffset(os);

--- 12 unchanged lines hidden ---