mem.isa (13233:ded73a80b0b4) mem.isa (13449:2f7efa89c58b)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
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

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

116
117 case 4:
118 return packet->getLE<uint32_t>();
119
120 case 8:
121 return packet->getLE<uint64_t>();
122
123 default:
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
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

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

116
117 case 4:
118 return packet->getLE<uint32_t>();
119
120 case 8:
121 return packet->getLE<uint64_t>();
122
123 default:
124 std::cerr << "bad store data size = " << packet->getSize() << std::endl;
125
126 assert(0);
124 panic("bad store data size = %d", packet->getSize());
127 return 0;
128 }
129 }
130
131
132}};
133
134def template LoadStoreDeclare {{

--- 421 unchanged lines hidden ---
125 return 0;
126 }
127 }
128
129
130}};
131
132def template LoadStoreDeclare {{

--- 421 unchanged lines hidden ---