exec_context.hh (6314:781969fbeca9) exec_context.hh (6973:a123bd350935)
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;

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

135 * Check for special simulator handling of specific PAL calls. If
136 * return value is false, actual PAL call will be suppressed.
137 */
138 bool simPalCheck(int palFunc);
139#else
140 /** Executes a syscall specified by the callnum. */
141 void syscall(int64_t callnum);
142#endif
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;

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

135 * Check for special simulator handling of specific PAL calls. If
136 * return value is false, actual PAL call will be suppressed.
137 */
138 bool simPalCheck(int palFunc);
139#else
140 /** Executes a syscall specified by the callnum. */
141 void syscall(int64_t callnum);
142#endif
143
144 /** Finish a DTB address translation. */
145 void finishTranslation(WholeTranslationState *state);
143};
146};