115a116
> * @param is_secure True if the target memory space is secure.
118c119
< MSHR *findMatch(Addr addr) const;
---
> MSHR *findMatch(Addr addr, bool is_secure) const;
122a124
> * @param is_secure True if the target memory space is secure.
127c129,130
< bool findMatches(Addr addr, std::vector<MSHR*>& matches) const;
---
> bool findMatches(Addr addr, bool is_secure,
> std::vector<MSHR*>& matches) const;
131a135
> * @param is_secure True if the target memory space is secure.
134c138
< MSHR *findPending(Addr addr, int size) const;
---
> MSHR *findPending(Addr addr, int size, bool is_secure) const;