base.hh (5348:7847a4bf9641) base.hh (5358:e9acb84bbafb)
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;

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

362
363 void setMiscRegOperand(
364 const StaticInst *si, int idx, const MiscReg &val)
365 {
366 int reg_idx = si->destRegIdx(idx) - TheISA::Ctrl_Base_DepTag;
367 return thread->setMiscReg(reg_idx, val);
368 }
369
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;

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

362
363 void setMiscRegOperand(
364 const StaticInst *si, int idx, const MiscReg &val)
365 {
366 int reg_idx = si->destRegIdx(idx) - TheISA::Ctrl_Base_DepTag;
367 return thread->setMiscReg(reg_idx, val);
368 }
369
370 void demapPage(Addr vaddr, uint64_t asn)
371 {
372 thread->demapPage(vaddr, asn);
373 }
374
375 void demapInstPage(Addr vaddr, uint64_t asn)
376 {
377 thread->demapInstPage(vaddr, asn);
378 }
379
380 void demapDataPage(Addr vaddr, uint64_t asn)
381 {
382 thread->demapDataPage(vaddr, asn);
383 }
384
370 unsigned readStCondFailures() {
371 return thread->readStCondFailures();
372 }
373
374 void setStCondFailures(unsigned sc_failures) {
375 thread->setStCondFailures(sc_failures);
376 }
377

--- 27 unchanged lines hidden ---
385 unsigned readStCondFailures() {
386 return thread->readStCondFailures();
387 }
388
389 void setStCondFailures(unsigned sc_failures) {
390 thread->setStCondFailures(sc_failures);
391 }
392

--- 27 unchanged lines hidden ---