DirectedGenerator.hh (8832:247fee427324) DirectedGenerator.hh (11320:42ecb523c64a)
1/*
2 * Copyright (c) 1999-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#ifndef __CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
30#define __CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
31
32#include "cpu/testers/directedtest/DirectedGenerator.hh"
33#include "cpu/testers/directedtest/RubyDirectedTester.hh"
34#include "params/DirectedGenerator.hh"
35#include "sim/sim_object.hh"
36
1/*
2 * Copyright (c) 1999-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#ifndef __CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
30#define __CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
31
32#include "cpu/testers/directedtest/DirectedGenerator.hh"
33#include "cpu/testers/directedtest/RubyDirectedTester.hh"
34#include "params/DirectedGenerator.hh"
35#include "sim/sim_object.hh"
36
37class DirectedGenerator : public SimObject
37class DirectedGenerator : public SimObject
38{
39 public:
40 typedef DirectedGeneratorParams Params;
41 DirectedGenerator(const Params *p);
38{
39 public:
40 typedef DirectedGeneratorParams Params;
41 DirectedGenerator(const Params *p);
42
42
43 virtual ~DirectedGenerator() {}
43 virtual ~DirectedGenerator() {}
44
44
45 virtual bool initiate() = 0;
46 virtual void performCallback(uint32_t proc, Addr address) = 0;
45 virtual bool initiate() = 0;
46 virtual void performCallback(uint32_t proc, Addr address) = 0;
47
47
48 void setDirectedTester(RubyDirectedTester* directed_tester);
48 void setDirectedTester(RubyDirectedTester* directed_tester);
49
49
50 protected:
51 int m_num_cpus;
52 MasterID masterId;
53 RubyDirectedTester* m_directed_tester;
54};
55
56#endif //__CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
57
50 protected:
51 int m_num_cpus;
52 MasterID masterId;
53 RubyDirectedTester* m_directed_tester;
54};
55
56#endif //__CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
57