thread_context.hh (5499:8bfc7650c344) thread_context.hh (5668:5b5a9f4203d1)
1/*
2 * Copyright (c) 2006 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;

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

289 void setSyscallReturn(SyscallReturn return_value)
290 {
291 checkerTC->setSyscallReturn(return_value);
292 actualTC->setSyscallReturn(return_value);
293 }
294
295 Counter readFuncExeInst() { return actualTC->readFuncExeInst(); }
296#endif
1/*
2 * Copyright (c) 2006 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;

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

289 void setSyscallReturn(SyscallReturn return_value)
290 {
291 checkerTC->setSyscallReturn(return_value);
292 actualTC->setSyscallReturn(return_value);
293 }
294
295 Counter readFuncExeInst() { return actualTC->readFuncExeInst(); }
296#endif
297 void changeRegFileContext(TheISA::RegContextParam param,
298 TheISA::RegContextVal val)
299 {
300 actualTC->changeRegFileContext(param, val);
301 checkerTC->changeRegFileContext(param, val);
302 }
303};
304
305#endif // __CPU_CHECKER_EXEC_CONTEXT_HH__
297};
298
299#endif // __CPU_CHECKER_EXEC_CONTEXT_HH__