exec_context.hh (5640:c811ced9efc1) exec_context.hh (5702:bf84e2fa05f7)
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;

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

138 * given flags. */
139 void prefetch(Addr addr, unsigned flags);
140
141 /** Hints to the memory system that an address will be written to
142 * soon, with the given size. Creates a memory request with the
143 * given flags. */
144 void writeHint(Addr addr, int size, unsigned flags);
145
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;

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

138 * given flags. */
139 void prefetch(Addr addr, unsigned flags);
140
141 /** Hints to the memory system that an address will be written to
142 * soon, with the given size. Creates a memory request with the
143 * given flags. */
144 void writeHint(Addr addr, int size, unsigned flags);
145
146#if !FULL_SYSTEM
146#if FULL_SYSTEM
147 /** Somewhat Alpha-specific function that handles returning from
148 * an error or interrupt. */
149 Fault hwrei();
150
151 /**
152 * Check for special simulator handling of specific PAL calls. If
153 * return value is false, actual PAL call will be suppressed.
154 */
155 bool simPalCheck(int palFunc);
156#else
147 /** Executes a syscall specified by the callnum. */
148 void syscall(int64_t callnum);
149#endif
150};
157 /** Executes a syscall specified by the callnum. */
158 void syscall(int64_t callnum);
159#endif
160};