exec_context.hh (13652:45d94ac03a27) exec_context.hh (13900:d4bcfecd871e)
1/*
2 * Copyright (c) 2014, 2016-2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

348 */
349 virtual void demapPage(Addr vaddr, uint64_t asn) = 0;
350 virtual void armMonitor(Addr address) = 0;
351 virtual bool mwait(PacketPtr pkt) = 0;
352 virtual void mwaitAtomic(ThreadContext *tc) = 0;
353 virtual AddressMonitor *getAddrMonitor() = 0;
354
355 /** @} */
1/*
2 * Copyright (c) 2014, 2016-2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

348 */
349 virtual void demapPage(Addr vaddr, uint64_t asn) = 0;
350 virtual void armMonitor(Addr address) = 0;
351 virtual bool mwait(PacketPtr pkt) = 0;
352 virtual void mwaitAtomic(ThreadContext *tc) = 0;
353 virtual AddressMonitor *getAddrMonitor() = 0;
354
355 /** @} */
356
357 /**
358 * @{
359 * @name MIPS-Specific Interfaces
360 */
361
362#if THE_ISA == MIPS_ISA
363 virtual RegVal readRegOtherThread(const RegId &reg,
364 ThreadID tid=InvalidThreadID) = 0;
365 virtual void setRegOtherThread(const RegId& reg, RegVal val,
366 ThreadID tid=InvalidThreadID) = 0;
367#endif
368
369 /** @} */
370};
371
372#endif // __CPU_EXEC_CONTEXT_HH__
356};
357
358#endif // __CPU_EXEC_CONTEXT_HH__