unimp.isa (3268:bebd53424076) | unimp.isa (8565:d9b69f03e7af) |
---|---|
1// -*- mode:c++ -*- 2 3// Copyright (c) 2003-2005 The Regents of The University of Michigan 4// All rights reserved. 5// 6// Redistribution and use in source and binary forms, with or without 7// modification, are permitted provided that the following conditions are 8// met: redistributions of source code must retain the above copyright --- 89 unchanged lines hidden (view full) --- 98 { 99 return csprintf("%-10s (unimplemented)", mnemonic); 100 } 101 102 std::string 103 WarnUnimplemented::generateDisassembly(Addr pc, 104 const SymbolTable *symtab) const 105 { | 1// -*- mode:c++ -*- 2 3// Copyright (c) 2003-2005 The Regents of The University of Michigan 4// All rights reserved. 5// 6// Redistribution and use in source and binary forms, with or without 7// modification, are permitted provided that the following conditions are 8// met: redistributions of source code must retain the above copyright --- 89 unchanged lines hidden (view full) --- 98 { 99 return csprintf("%-10s (unimplemented)", mnemonic); 100 } 101 102 std::string 103 WarnUnimplemented::generateDisassembly(Addr pc, 104 const SymbolTable *symtab) const 105 { |
106#ifdef SS_COMPATIBLE_DISASSEMBLY 107 return csprintf("%-10s", mnemonic); 108#else | |
109 return csprintf("%-10s (unimplemented)", mnemonic); | 106 return csprintf("%-10s (unimplemented)", mnemonic); |
110#endif | |
111 } 112}}; 113 114output exec {{ 115 Fault 116 FailUnimplemented::execute(%(CPU_exec_context)s *xc, 117 Trace::InstRecord *traceData) const 118 { --- 29 unchanged lines hidden --- | 107 } 108}}; 109 110output exec {{ 111 Fault 112 FailUnimplemented::execute(%(CPU_exec_context)s *xc, 113 Trace::InstRecord *traceData) const 114 { --- 29 unchanged lines hidden --- |