gem5  v20.1.0.0
HTMSequencer.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 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
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __MEM_RUBY_SYSTEM_HTMSEQUENCER_HH__
39 #define __MEM_RUBY_SYSTEM_HTMSEQUENCER_HH__
40 
41 #include <cassert>
42 #include <iostream>
43 
44 #include "mem/htm.hh"
45 #include "mem/ruby/protocol/HtmCallbackMode.hh"
46 #include "mem/ruby/protocol/HtmFailedInCacheReason.hh"
49 #include "params/RubyHTMSequencer.hh"
50 
51 class HTMSequencer : public Sequencer
52 {
53  public:
54  HTMSequencer(const RubyHTMSequencerParams *p);
55  ~HTMSequencer();
56 
57  // callback to acknowledge HTM requests and
58  // notify cpu core when htm transaction fails in cache
59  void htmCallback(Addr,
60  const HtmCallbackMode,
61  const HtmFailedInCacheReason);
62 
63  bool empty() const override;
64  void print(std::ostream& out) const override;
65  void regStats() override;
66  void wakeup() override;
67 
68  private:
78  HtmCacheFailure htmRetCodeConversion(const HtmFailedInCacheReason rc);
79 
80  void rubyHtmCallback(PacketPtr pkt, const HtmFailedInCacheReason fail_r);
81 
82  RequestStatus insertRequest(PacketPtr pkt,
83  RubyRequestType primary_type,
84  RubyRequestType secondary_type) override;
85 
86  // Private copy constructor and assignment operator
87  HTMSequencer(const HTMSequencer& obj);
88  HTMSequencer& operator=(const HTMSequencer& obj);
89 
90  // table/queue for hardware transactional memory commands
91  // these do not have an address so a deque/queue is used instead.
93 
96 
103 };
104 
105 inline std::ostream&
106 operator<<(std::ostream& out, const HTMSequencer& obj)
107 {
108  obj.print(out);
109  out << std::flush;
110  return out;
111 }
112 
113 #endif // __MEM_RUBY_SYSTEM_HTMSEQUENCER_HH__
HTMSequencer::print
void print(std::ostream &out) const override
Definition: HTMSequencer.cc:305
HTMSequencer::htmCallback
void htmCallback(Addr, const HtmCallbackMode, const HtmFailedInCacheReason)
Definition: HTMSequencer.cc:83
HTMSequencer::m_htmstart_instruction
Counter m_htmstart_instruction
Definition: HTMSequencer.hh:95
Sequencer
Definition: Sequencer.hh:80
htm.hh
HTMSequencer::m_htm_transaction_instructions
Stats::Histogram m_htm_transaction_instructions
Histogram of instruction lengths of HTM transactions.
Definition: HTMSequencer.hh:100
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:63
HTMSequencer
Definition: HTMSequencer.hh:51
Stats::Vector
A vector of scalar stats.
Definition: statistics.hh:2575
HTMSequencer::m_htm_transaction_abort_cause
Stats::Vector m_htm_transaction_abort_cause
Causes for HTM transaction aborts.
Definition: HTMSequencer.hh:102
Stats::Histogram
A simple histogram stat.
Definition: statistics.hh:2654
Counter
int64_t Counter
Statistics counter type.
Definition: types.hh:58
HTMSequencer::htmRetCodeConversion
HtmCacheFailure htmRetCodeConversion(const HtmFailedInCacheReason rc)
Htm return code conversion.
Definition: HTMSequencer.cc:48
HTMSequencer::operator=
HTMSequencer & operator=(const HTMSequencer &obj)
HTMSequencer::m_htmstart_tick
Tick m_htmstart_tick
Definition: HTMSequencer.hh:94
HTMSequencer::regStats
void regStats() override
Callback to set stat parameters.
Definition: HTMSequencer.cc:185
HTMSequencer::rubyHtmCallback
void rubyHtmCallback(PacketPtr pkt, const HtmFailedInCacheReason fail_r)
Definition: HTMSequencer.cc:218
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
HTMSequencer::wakeup
void wakeup() override
Definition: HTMSequencer.cc:254
HTMSequencer::insertRequest
RequestStatus insertRequest(PacketPtr pkt, RubyRequestType primary_type, RubyRequestType secondary_type) override
Definition: HTMSequencer.cc:317
HTMSequencer::HTMSequencer
HTMSequencer(const RubyHTMSequencerParams *p)
Definition: HTMSequencer.cc:71
HtmCacheFailure
HtmCacheFailure
Definition: htm.hh:56
HTMSequencer::~HTMSequencer
~HTMSequencer()
Definition: HTMSequencer.cc:78
HTMSequencer::m_htm_transaction_cycles
Stats::Histogram m_htm_transaction_cycles
Histogram of cycle latencies of HTM transactions.
Definition: HTMSequencer.hh:98
operator<<
std::ostream & operator<<(std::ostream &out, const HTMSequencer &obj)
Definition: HTMSequencer.hh:106
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:257
std::deque< SequencerRequest * >
HTMSequencer::empty
bool empty() const override
Definition: HTMSequencer.cc:284
HTMSequencer::m_htmCmdRequestTable
std::deque< SequencerRequest * > m_htmCmdRequestTable
Definition: HTMSequencer.hh:92
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
RubyPort.hh
Sequencer.hh

Generated on Wed Sep 30 2020 14:02:13 for gem5 by doxygen 1.8.17