Deleted Added
sdiff udiff text old ( 8342:77d12d8f7971 ) new ( 12236:126ac9da6050 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2006-2007 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

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

40 */
41 class %(class_name)s : public %(base_class)s
42 {
43 public:
44
45 /// Constructor.
46 %(class_name)s(ExtMachInst machInst);
47
48 %(BasicExecDeclare)s
49
50 %(EACompDeclare)s
51
52 %(InitiateAccDeclare)s
53
54 %(CompleteAccDeclare)s
55 };
56}};
57
58let {{
59 def doMemFormat(code, execute, faultCode, name, Name, asi, opt_flags, postacc_code = ''):
60 addrCalcReg = 'EA = Rs1 + Rs2;'
61 addrCalcImm = 'EA = Rs1 + imm;'
62 iop = InstObjParams(name, Name, 'Mem',

--- 73 unchanged lines hidden ---