pseudo_inst.cc (10553:c1ad57c53a36) pseudo_inst.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Alexandru Dutu
29 */
30
31#include "arch/generic/pseudo_inst.hh"
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Alexandru Dutu
29 */
30
31#include "arch/generic/pseudo_inst.hh"
32
32#include "base/misc.hh"
33
34class ThreadContext;
35
36using namespace GenericISA;
37
38void
39GenericISA::m5Syscall(ThreadContext *tc)
40{
41 panic("m5Syscall not implemented for current ISA");
42}
43
44void
45GenericISA::m5PageFault(ThreadContext *tc)
46{
47 panic("m5PageFault not implemented for current ISA");
48}
33#include "base/misc.hh"
34
35class ThreadContext;
36
37using namespace GenericISA;
38
39void
40GenericISA::m5Syscall(ThreadContext *tc)
41{
42 panic("m5Syscall not implemented for current ISA");
43}
44
45void
46GenericISA::m5PageFault(ThreadContext *tc)
47{
48 panic("m5PageFault not implemented for current ISA");
49}