sector_tags.hh (12752:6a0e3eb1cc5d) sector_tags.hh (12753:fe5b2dbe42bb)
1/*
2 * Copyright (c) 2018 Inria
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;

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

147 const;
148
149 /**
150 * Insert the new block into the cache and update replacement data.
151 *
152 * @param pkt Packet holding the address to update
153 * @param blk The block to update.
154 */
1/*
2 * Copyright (c) 2018 Inria
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;

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

147 const;
148
149 /**
150 * Insert the new block into the cache and update replacement data.
151 *
152 * @param pkt Packet holding the address to update
153 * @param blk The block to update.
154 */
155 void insertBlock(PacketPtr pkt, CacheBlk *blk) override;
155 void insertBlock(const PacketPtr pkt, CacheBlk *blk) override;
156
157 /**
158 * Finds the given address in the cache, do not update replacement data.
159 * i.e. This is a no-side-effect find of a block.
160 *
161 * @param addr The address to find.
162 * @param is_secure True if the target memory space is secure.
163 * @return Pointer to the cache block if found.

--- 78 unchanged lines hidden ---
156
157 /**
158 * Finds the given address in the cache, do not update replacement data.
159 * i.e. This is a no-side-effect find of a block.
160 *
161 * @param addr The address to find.
162 * @param is_secure True if the target memory space is secure.
163 * @return Pointer to the cache block if found.

--- 78 unchanged lines hidden ---