thread_context.hh (6658:f4de76601762) thread_context.hh (7597:063f160e8b50)
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;

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

399 uint64_t readMicroPC() { return actualTC->readMicroPC(); }
400
401 void setMicroPC(uint64_t val) { actualTC->setMicroPC(val); }
402
403 uint64_t readNextMicroPC() { return actualTC->readMicroPC(); }
404
405 void setNextMicroPC(uint64_t val) { actualTC->setNextMicroPC(val); }
406
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;

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

399 uint64_t readMicroPC() { return actualTC->readMicroPC(); }
400
401 void setMicroPC(uint64_t val) { actualTC->setMicroPC(val); }
402
403 uint64_t readNextMicroPC() { return actualTC->readMicroPC(); }
404
405 void setNextMicroPC(uint64_t val) { actualTC->setNextMicroPC(val); }
406
407 bool readPredicate() { return actualTC->readPredicate(); }
408
409 void setPredicate(bool val)
410 { actualTC->setPredicate(val); }
411
407 MiscReg readMiscRegNoEffect(int misc_reg)
408 { return actualTC->readMiscRegNoEffect(misc_reg); }
409
410 MiscReg readMiscReg(int misc_reg)
411 { return actualTC->readMiscReg(misc_reg); }
412
413 void setMiscRegNoEffect(int misc_reg, const MiscReg &val)
414 { return actualTC->setMiscRegNoEffect(misc_reg, val); }

--- 28 unchanged lines hidden ---
412 MiscReg readMiscRegNoEffect(int misc_reg)
413 { return actualTC->readMiscRegNoEffect(misc_reg); }
414
415 MiscReg readMiscReg(int misc_reg)
416 { return actualTC->readMiscReg(misc_reg); }
417
418 void setMiscRegNoEffect(int misc_reg, const MiscReg &val)
419 { return actualTC->setMiscRegNoEffect(misc_reg, val); }

--- 28 unchanged lines hidden ---