DMASequencer.cc (11025:4872dbdea907) | DMASequencer.cc (11108:6342ddf6d733) |
---|---|
1/* 2 * Copyright (c) 2008 Mark D. Hill and David A. Wood 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 20 unchanged lines hidden (view full) --- 29#include <memory> 30 31#include "debug/Config.hh" 32#include "debug/Drain.hh" 33#include "debug/RubyDma.hh" 34#include "debug/RubyStats.hh" 35#include "mem/protocol/SequencerMsg.hh" 36#include "mem/ruby/system/DMASequencer.hh" | 1/* 2 * Copyright (c) 2008 Mark D. Hill and David A. Wood 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 20 unchanged lines hidden (view full) --- 29#include <memory> 30 31#include "debug/Config.hh" 32#include "debug/Drain.hh" 33#include "debug/RubyDma.hh" 34#include "debug/RubyStats.hh" 35#include "mem/protocol/SequencerMsg.hh" 36#include "mem/ruby/system/DMASequencer.hh" |
37#include "mem/ruby/system/System.hh" | 37#include "mem/ruby/system/RubySystem.hh" |
38#include "sim/system.hh" 39 40DMASequencer::DMASequencer(const Params *p) 41 : MemObject(p), m_ruby_system(p->ruby_system), m_version(p->version), 42 m_controller(NULL), m_mandatory_q_ptr(NULL), 43 m_usingRubyTester(p->using_ruby_tester), 44 slave_port(csprintf("%s.slave", name()), this, 0, p->ruby_system, 45 p->ruby_system->getAccessBackingStore()), --- 301 unchanged lines hidden --- | 38#include "sim/system.hh" 39 40DMASequencer::DMASequencer(const Params *p) 41 : MemObject(p), m_ruby_system(p->ruby_system), m_version(p->version), 42 m_controller(NULL), m_mandatory_q_ptr(NULL), 43 m_usingRubyTester(p->using_ruby_tester), 44 slave_port(csprintf("%s.slave", name()), this, 0, p->ruby_system, 45 p->ruby_system->getAccessBackingStore()), --- 301 unchanged lines hidden --- |