thread_context.hh (5499:8bfc7650c344) thread_context.hh (5592:6e0569faeeef)
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;

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

424 void setNextNPC(uint64_t val) { actualTC->setNextNPC(val); }
425
426 uint64_t readMicroPC() { return actualTC->readMicroPC(); }
427
428 void setMicroPC(uint64_t val) { actualTC->setMicroPC(val); }
429
430 uint64_t readNextMicroPC() { return actualTC->readMicroPC(); }
431
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;

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

424 void setNextNPC(uint64_t val) { actualTC->setNextNPC(val); }
425
426 uint64_t readMicroPC() { return actualTC->readMicroPC(); }
427
428 void setMicroPC(uint64_t val) { actualTC->setMicroPC(val); }
429
430 uint64_t readNextMicroPC() { return actualTC->readMicroPC(); }
431
432 void setNextMicroPC(uint64_t val) { actualTC->setMicroPC(val); }
432 void setNextMicroPC(uint64_t val) { actualTC->setNextMicroPC(val); }
433
434 MiscReg readMiscRegNoEffect(int misc_reg)
435 { return actualTC->readMiscRegNoEffect(misc_reg); }
436
437 MiscReg readMiscReg(int misc_reg)
438 { return actualTC->readMiscReg(misc_reg); }
439
440 void setMiscRegNoEffect(int misc_reg, const MiscReg &val)

--- 38 unchanged lines hidden ---
433
434 MiscReg readMiscRegNoEffect(int misc_reg)
435 { return actualTC->readMiscRegNoEffect(misc_reg); }
436
437 MiscReg readMiscReg(int misc_reg)
438 { return actualTC->readMiscReg(misc_reg); }
439
440 void setMiscRegNoEffect(int misc_reg, const MiscReg &val)

--- 38 unchanged lines hidden ---