RubyRequest.hh (10472:399f35ed5cca) RubyRequest.hh (11005:e7f403b6b76f)
1/*
2 * Copyright (c) 2009 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;

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

44 Address m_LineAddress;
45 RubyRequestType m_Type;
46 Address m_ProgramCounter;
47 RubyAccessMode m_AccessMode;
48 int m_Size;
49 PrefetchBit m_Prefetch;
50 uint8_t* data;
51 PacketPtr pkt;
1/*
2 * Copyright (c) 2009 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;

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

44 Address m_LineAddress;
45 RubyRequestType m_Type;
46 Address m_ProgramCounter;
47 RubyAccessMode m_AccessMode;
48 int m_Size;
49 PrefetchBit m_Prefetch;
50 uint8_t* data;
51 PacketPtr pkt;
52 unsigned m_contextId;
52 ContextID m_contextId;
53
54 RubyRequest(Tick curTime, uint64_t _paddr, uint8_t* _data, int _len,
55 uint64_t _pc, RubyRequestType _type, RubyAccessMode _access_mode,
56 PacketPtr _pkt, PrefetchBit _pb = PrefetchBit_No,
53
54 RubyRequest(Tick curTime, uint64_t _paddr, uint8_t* _data, int _len,
55 uint64_t _pc, RubyRequestType _type, RubyAccessMode _access_mode,
56 PacketPtr _pkt, PrefetchBit _pb = PrefetchBit_No,
57 unsigned _proc_id = 100)
57 ContextID _proc_id = 100)
58 : Message(curTime),
59 m_PhysicalAddress(_paddr),
60 m_Type(_type),
61 m_ProgramCounter(_pc),
62 m_AccessMode(_access_mode),
63 m_Size(_len),
64 m_Prefetch(_pb),
65 data(_data),

--- 33 unchanged lines hidden ---
58 : Message(curTime),
59 m_PhysicalAddress(_paddr),
60 m_Type(_type),
61 m_ProgramCounter(_pc),
62 m_AccessMode(_access_mode),
63 m_Size(_len),
64 m_Prefetch(_pb),
65 data(_data),

--- 33 unchanged lines hidden ---