Deleted Added
sdiff udiff text old ( 6306:fe1004d455b2 ) new ( 7110:7d27bd3e7ffb )
full compact
1/* Copyright (c) 2007-2008 The Florida State University
2 * All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the

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

35PredIntOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
36{
37 std::stringstream ss;
38 printDataInst(ss, false);
39 return ss.str();
40}
41
42std::string
43PredImmOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
44{
45 std::stringstream ss;
46 printDataInst(ss, true);
47 return ss.str();
48}
49
50std::string
51PredMacroOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
52{
53 std::stringstream ss;
54
55 ccprintf(ss, "%-10s ", mnemonic);
56
57 return ss.str();
58}
59}