macromem.cc (7853:69aae4379062) macromem.cc (8140:7449084b1612)
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

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

891 ss << ", ";
892 printReg(ss, urb);
893 ss << ", ";
894 ccprintf(ss, "#%d", imm);
895 return ss.str();
896}
897
898std::string
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

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

891 ss << ", ";
892 printReg(ss, urb);
893 ss << ", ";
894 ccprintf(ss, "#%d", imm);
895 return ss.str();
896}
897
898std::string
899MicroSetPCCPSR::generateDisassembly(Addr pc, const SymbolTable *symtab) const
900{
901 std::stringstream ss;
902 printMnemonic(ss);
903 ss << "[PC,CPSR]";
904 return ss.str();
905}
906
907std::string
899MicroIntMov::generateDisassembly(Addr pc, const SymbolTable *symtab) const
900{
901 std::stringstream ss;
902 printMnemonic(ss);
903 printReg(ss, ura);
904 ss << ", ";
905 printReg(ss, urb);
906 return ss.str();

--- 30 unchanged lines hidden ---
908MicroIntMov::generateDisassembly(Addr pc, const SymbolTable *symtab) const
909{
910 std::stringstream ss;
911 printMnemonic(ss);
912 printReg(ss, ura);
913 ss << ", ";
914 printReg(ss, urb);
915 return ss.str();

--- 30 unchanged lines hidden ---