request.hh (5875:d82be3235ab4) request.hh (5890:bdef71accd68)
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;

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

68 /** The request is an ALPHA VPTE pal access (hw_ld). */
69 static const FlagsType VPTE = 0x00000400;
70 /** Use the alternate mode bits in ALPHA. */
71 static const FlagsType ALTMODE = 0x00000800;
72 /** The request is to an uncacheable address. */
73 static const FlagsType UNCACHEABLE = 0x00001000;
74 /** The request should not cause a page fault. */
75 static const FlagsType NO_FAULT = 0x00002000;
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;

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

68 /** The request is an ALPHA VPTE pal access (hw_ld). */
69 static const FlagsType VPTE = 0x00000400;
70 /** Use the alternate mode bits in ALPHA. */
71 static const FlagsType ALTMODE = 0x00000800;
72 /** The request is to an uncacheable address. */
73 static const FlagsType UNCACHEABLE = 0x00001000;
74 /** The request should not cause a page fault. */
75 static const FlagsType NO_FAULT = 0x00002000;
76 /** The request should not cause a memory access. */
77 static const FlagsType NO_ACCESS = 0x00004000;
76 /** The request should be prefetched into the exclusive state. */
77 static const FlagsType PF_EXCLUSIVE = 0x00010000;
78 /** The request should be marked as LRU. */
79 static const FlagsType EVICT_NEXT = 0x00020000;
80 /** The request should ignore unaligned access faults */
81 static const FlagsType NO_ALIGN_FAULT = 0x00040000;
82 /** The request was an instruction read. */
83 static const FlagsType INST_READ = 0x00080000;

--- 383 unchanged lines hidden ---
78 /** The request should be prefetched into the exclusive state. */
79 static const FlagsType PF_EXCLUSIVE = 0x00010000;
80 /** The request should be marked as LRU. */
81 static const FlagsType EVICT_NEXT = 0x00020000;
82 /** The request should ignore unaligned access faults */
83 static const FlagsType NO_ALIGN_FAULT = 0x00040000;
84 /** The request was an instruction read. */
85 static const FlagsType INST_READ = 0x00080000;

--- 383 unchanged lines hidden ---