port.hh (2640:266b80dd5eca) port.hh (2641:6d9d837e2032)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

227 performance-critical either, so it could be if we wanted to.
228 */
229 virtual void memsetBlob(Addr addr, uint8_t val, int size);
230
231 private:
232
233 /** Internal helper function for read/writeBlob().
234 */
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

227 performance-critical either, so it could be if we wanted to.
228 */
229 virtual void memsetBlob(Addr addr, uint8_t val, int size);
230
231 private:
232
233 /** Internal helper function for read/writeBlob().
234 */
235 void blobHelper(Addr addr, uint8_t *p, int size, Command cmd);
235 void blobHelper(Addr addr, uint8_t *p, int size, Packet::Command cmd);
236};
237
238/** A simple functional port that is only meant for one way communication to
239 * physical memory. It is only meant to be used to load data into memory before
240 * the simulation begins.
241 */
242
243class FunctionalPort : public Port

--- 27 unchanged lines hidden ---
236};
237
238/** A simple functional port that is only meant for one way communication to
239 * physical memory. It is only meant to be used to load data into memory before
240 * the simulation begins.
241 */
242
243class FunctionalPort : public Port

--- 27 unchanged lines hidden ---