Check.cc (7823:dac01f14f20f) Check.cc (8164:b043c0efa024)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 30 unchanged lines hidden (view full) ---

39 : m_num_cpu_sequencers(_num_cpu_sequencers), m_tester_ptr(_tester)
40{
41 m_status = TesterStatus_Idle;
42
43 pickValue();
44 pickInitiatingNode();
45 changeAddress(address);
46 m_pc = pc;
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 30 unchanged lines hidden (view full) ---

39 : m_num_cpu_sequencers(_num_cpu_sequencers), m_tester_ptr(_tester)
40{
41 m_status = TesterStatus_Idle;
42
43 pickValue();
44 pickInitiatingNode();
45 changeAddress(address);
46 m_pc = pc;
47 m_access_mode = AccessModeType(random() % AccessModeType_NUM);
47 m_access_mode = RubyAccessMode(random() % RubyAccessMode_NUM);
48 m_store_count = 0;
49}
50
51void
52Check::initiate()
53{
54 DPRINTF(RubyTest, "initiating\n");
55 debugPrint();

--- 296 unchanged lines hidden ---
48 m_store_count = 0;
49}
50
51void
52Check::initiate()
53{
54 DPRINTF(RubyTest, "initiating\n");
55 debugPrint();

--- 296 unchanged lines hidden ---