request.hh (2811:9da12e9830ce) request.hh (2812:8e5feae75615)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
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;

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

39#define __MEM_REQUEST_HH__
40
41#include "arch/isa_traits.hh"
42
43class Request;
44
45typedef Request* RequestPtr;
46
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
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;

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

39#define __MEM_REQUEST_HH__
40
41#include "arch/isa_traits.hh"
42
43class Request;
44
45typedef Request* RequestPtr;
46
47
47/** The request is a Load locked/store conditional. */
48const unsigned LOCKED = 0x001;
49/** The virtual address is also the physical address. */
50const unsigned PHYSICAL = 0x002;
51/** The request is an ALPHA VPTE pal access (hw_ld). */
52const unsigned VPTE = 0x004;
53/** Use the alternate mode bits in ALPHA. */
54const unsigned ALTMODE = 0x008;

--- 179 unchanged lines hidden ---
48/** The request is a Load locked/store conditional. */
49const unsigned LOCKED = 0x001;
50/** The virtual address is also the physical address. */
51const unsigned PHYSICAL = 0x002;
52/** The request is an ALPHA VPTE pal access (hw_ld). */
53const unsigned VPTE = 0x004;
54/** Use the alternate mode bits in ALPHA. */
55const unsigned ALTMODE = 0x008;

--- 179 unchanged lines hidden ---