base_dyn_inst.hh (7597:063f160e8b50) base_dyn_inst.hh (7600:eff7f79f7dfd)
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * Copyright (c) 2009 The University of Edinburgh
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

800 bool readPredicate()
801 {
802 return predicate;
803 }
804
805 void setPredicate(bool val)
806 {
807 predicate = val;
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * Copyright (c) 2009 The University of Edinburgh
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

800 bool readPredicate()
801 {
802 return predicate;
803 }
804
805 void setPredicate(bool val)
806 {
807 predicate = val;
808
809 if (traceData) {
810 traceData->setPredicate(val);
811 }
808 }
809
810 /** Sets the ASID. */
811 void setASID(short addr_space_id) { asid = addr_space_id; }
812
813 /** Sets the thread id. */
814 void setTid(ThreadID tid) { threadNumber = tid; }
815

--- 242 unchanged lines hidden ---
812 }
813
814 /** Sets the ASID. */
815 void setASID(short addr_space_id) { asid = addr_space_id; }
816
817 /** Sets the thread id. */
818 void setTid(ThreadID tid) { threadNumber = tid; }
819

--- 242 unchanged lines hidden ---