utility.cc (7811:a8fc35183c10) utility.cc (8787:e0e18c260087)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

50
51 // Copy misc. registers
52 copyMiscRegs(src, dest);
53
54 // Lastly copy PC/NPC
55 dest->pcState(src->pcState());
56}
57
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

50
51 // Copy misc. registers
52 copyMiscRegs(src, dest);
53
54 // Lastly copy PC/NPC
55 dest->pcState(src->pcState());
56}
57
58uint64_t
59getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
60{
61 panic("getArgument not implemented for POWER.\n");
62 return 0;
63}
64
58void
59skipFunction(ThreadContext *tc)
60{
61 panic("Not Implemented for POWER");
62}
63
64
65} // namespace PowerISA
65void
66skipFunction(ThreadContext *tc)
67{
68 panic("Not Implemented for POWER");
69}
70
71
72} // namespace PowerISA