SystemC Library API Reference Manual
Reference documentation for the Simics SystemC Library.
 
Loading...
Searching...
No Matches
tlm_bw_action_interface.h
Go to the documentation of this file.
1// -*- mode: C++; c-file-style: "virtutech-c++" -*-
2
3/*
4 © 2016 Intel Corporation
5
6 This software and the related documents are Intel copyrighted materials, and
7 your use of them is governed by the express license under which they were
8 provided to you ("License"). Unless the License provides otherwise, you may
9 not use, modify, copy, publish, distribute, disclose or transmit this software
10 or the related documents without Intel's prior written permission.
11
12 This software and the related documents are provided as is, with no express or
13 implied warranties, other than those that are expressly stated in the License.
14*/
15
16#ifndef SIMICS_SYSTEMC_IFACE_INSTRUMENTATION_TLM_BW_ACTION_INTERFACE_H
17#define SIMICS_SYSTEMC_IFACE_INSTRUMENTATION_TLM_BW_ACTION_INTERFACE_H
18
19
21
22#include <systemc>
23#include <tlm>
24
25namespace simics {
26namespace systemc {
27namespace iface {
28namespace instrumentation {
29
32 public:
34 tlm::tlm_generic_payload *trans,
35 tlm::tlm_phase *phase,
36 sc_core::sc_time *t) = 0;
38 tlm::tlm_generic_payload *trans,
39 tlm::tlm_phase *phase,
40 sc_core::sc_time *t,
41 tlm::tlm_sync_enum *ret) = 0;
43 uint64 *start_range,
44 uint64 *end_range) = 0;
47 uint64 *start_range,
48 uint64 *end_range) = 0;
50};
51
52} // namespace instrumentation
53} // namespace iface
54} // namespace systemc
55} // namespace simics
56
57#endif
Definition: proxy_interface.h:29
virtual void invalidate_direct_mem_ptr_pre(awareness::ProxyInterface *proxy, uint64 *start_range, uint64 *end_range)=0
virtual void nb_transport_bw_pre(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, tlm::tlm_phase *phase, sc_core::sc_time *t)=0
virtual void nb_transport_bw_post(awareness::ProxyInterface *proxy, tlm::tlm_generic_payload *trans, tlm::tlm_phase *phase, sc_core::sc_time *t, tlm::tlm_sync_enum *ret)=0
virtual ~TlmBwActionInterface()
Definition: tlm_bw_action_interface.h:49
virtual void invalidate_direct_mem_ptr_post(awareness::ProxyInterface *proxy, uint64 *start_range, uint64 *end_range)=0
Definition: pci_bus_interface.h:24