process.cc (6075:1e1a874f9b17) process.cc (6329:5d8b91875859)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#include "arch/x86/isa_traits.hh"
59#include "arch/x86/linux/process.hh"
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#include "arch/x86/isa_traits.hh"
59#include "arch/x86/linux/process.hh"
60#include "arch/x86/regfile.hh"
60#include "arch/x86/registers.hh"
61
62#include "base/trace.hh"
63#include "cpu/thread_context.hh"
64#include "kern/linux/linux.hh"
65
66#include "sim/process.hh"
67
68using namespace std;
69using namespace X86ISA;
70
71X86_64LinuxProcess::X86_64LinuxProcess(LiveProcessParams * params,
72 ObjectFile *objFile)
73 : X86_64LiveProcess(params, objFile, syscallDescs, numSyscalls)
74{}
75
76I386LinuxProcess::I386LinuxProcess(LiveProcessParams * params,
77 ObjectFile *objFile)
78 : I386LiveProcess(params, objFile, syscallDescs, numSyscalls)
79{}
61
62#include "base/trace.hh"
63#include "cpu/thread_context.hh"
64#include "kern/linux/linux.hh"
65
66#include "sim/process.hh"
67
68using namespace std;
69using namespace X86ISA;
70
71X86_64LinuxProcess::X86_64LinuxProcess(LiveProcessParams * params,
72 ObjectFile *objFile)
73 : X86_64LiveProcess(params, objFile, syscallDescs, numSyscalls)
74{}
75
76I386LinuxProcess::I386LinuxProcess(LiveProcessParams * params,
77 ObjectFile *objFile)
78 : I386LiveProcess(params, objFile, syscallDescs, numSyscalls)
79{}