Sequencer.cc (10563:755b18321206) Sequencer.cc (10657:8bb4a9717eaa)
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;

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

542 request_address.getOffset(), pkt->getSize());
543 }
544 }
545
546 // If using the RubyTester, update the RubyTester sender state's
547 // subBlock with the recieved data. The tester will later access
548 // this state.
549 if (m_usingRubyTester) {
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;

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

542 request_address.getOffset(), pkt->getSize());
543 }
544 }
545
546 // If using the RubyTester, update the RubyTester sender state's
547 // subBlock with the recieved data. The tester will later access
548 // this state.
549 if (m_usingRubyTester) {
550 DPRINTF(RubySequencer, "hitCallback %s 0x%x using RubyTester\n",
551 pkt->cmdString(), pkt->getAddr());
550 RubyTester::SenderState* testerSenderState =
551 pkt->findNextSenderState<RubyTester::SenderState>();
552 assert(testerSenderState);
553 testerSenderState->subBlock.mergeFrom(data);
554 }
555
556 delete srequest;
557

--- 269 unchanged lines hidden ---
552 RubyTester::SenderState* testerSenderState =
553 pkt->findNextSenderState<RubyTester::SenderState>();
554 assert(testerSenderState);
555 testerSenderState->subBlock.mergeFrom(data);
556 }
557
558 delete srequest;
559

--- 269 unchanged lines hidden ---