utility.hh (8229:78bf55f23338) utility.hh (8300:eb279d6e08a2)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
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

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

115void skipFunction(ThreadContext *tc);
116
117inline void
118advancePC(PCState &pc, const StaticInstPtr inst)
119{
120 pc.advance();
121}
122
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
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

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

115void skipFunction(ThreadContext *tc);
116
117inline void
118advancePC(PCState &pc, const StaticInstPtr inst)
119{
120 pc.advance();
121}
122
123inline uint64_t
124getExecutingAsid(ThreadContext *tc)
125{
126 return 0;
127}
128
123};
124
125
126#endif
129};
130
131
132#endif