Deleted Added
sdiff udiff text old ( 10696:b5e5068fcb26 ) new ( 11572:9eac6e12c673 )
full compact
1/*
2 * Copyright (c) 2014 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
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated

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

110 const std::string& _fullMnemonic);
111
112 Fault execute(ExecContext *xc, Trace::InstRecord *traceData) const;
113
114 std::string
115 generateDisassembly(Addr pc, const SymbolTable *symtab) const;
116};
117
118class FlushPipeInst : public ArmStaticInst
119{
120 public:
121 FlushPipeInst(const char *_mnemonic, ExtMachInst _machInst);
122
123 Fault execute(ExecContext *xc, Trace::InstRecord *traceData) const;
124
125 std::string
126 generateDisassembly(Addr pc, const SymbolTable *symtab) const;
127
128};
129
130
131#endif