summaryrefslogblamecommitdiffstatshomepage
path: root/src/emu/emumem_hep.h
blob: 60fc422b72ea77f25c114e0e7cb6181015179af8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                                                                                   
                                                                                                                     

       
                                                                       
 
                                                                                                                                                                                                         

                                          
                                                                                                                                    
 
                                                                                       




                                                                                  
                                                     
 
                                                                                                                                                                                                                                                                                       

  
                                                                                                                       

       
                                                                       
 
                                                                                                                                                                                                           

                                           
                                                                                                                                      
 
                                                                                        




                                                                                  
                                                      
 
                                                                                                                                                                                                                                                                                          
  
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert

// handler_entry_read_passthrough/handler_entry_write_passthrough

// parent class for handlers which want to tap the access and usually pass it on to another handler

template<int Width, int AddrShift> class handler_entry_read_passthrough : public handler_entry_read<Width, AddrShift>
{
public:
	using uX = typename emu::detail::handler_entry_size<Width>::uX;

	handler_entry_read_passthrough(address_space *space, memory_passthrough_handler &mph) : handler_entry_read<Width, AddrShift>(space, handler_entry::F_PASSTHROUGH), m_mph(mph), m_next(nullptr) {}
	~handler_entry_read_passthrough();

	virtual handler_entry_read_passthrough<Width, AddrShift> *instantiate(handler_entry_read<Width, AddrShift> *next) const = 0;

	handler_entry_read<Width, AddrShift> *get_subhandler() const { return m_next; }

	void detach(const std::unordered_set<handler_entry *> &handlers) override;

protected:
	memory_passthrough_handler &m_mph;
	handler_entry_read<Width, AddrShift> *m_next;

	handler_entry_read_passthrough(address_space *space, memory_passthrough_handler &mph, handler_entry_read<Width, AddrShift> *next) : handler_entry_read<Width, AddrShift>(space, handler_entry::F_PASSTHROUGH), m_mph(mph), m_next(next) { next->ref(); mph.add_handler(this); }
};

template<int Width, int AddrShift> class handler_entry_write_passthrough : public handler_entry_write<Width, AddrShift>
{
public:
	using uX = typename emu::detail::handler_entry_size<Width>::uX;

	handler_entry_write_passthrough(address_space *space, memory_passthrough_handler &mph) : handler_entry_write<Width, AddrShift>(space, handler_entry::F_PASSTHROUGH), m_mph(mph), m_next(nullptr) {}
	~handler_entry_write_passthrough();

	virtual handler_entry_write_passthrough<Width, AddrShift> *instantiate(handler_entry_write<Width, AddrShift> *next) const = 0;

	handler_entry_write<Width, AddrShift> *get_subhandler() const { return m_next; }

	void detach(const std::unordered_set<handler_entry *> &handlers) override;

protected:
	memory_passthrough_handler &m_mph;
	handler_entry_write<Width, AddrShift> *m_next;

	handler_entry_write_passthrough(address_space *space, memory_passthrough_handler &mph, handler_entry_write<Width, AddrShift> *next) : handler_entry_write<Width, AddrShift>(space, handler_entry::F_PASSTHROUGH), m_mph(mph), m_next(next) { next->ref(); mph.add_handler(this); }
};