From 4670de81004b6bb10cff2cc8c3414d67eda3b0b5 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 24 Nov 2019 23:25:40 -0800 Subject: arch: Get rid of the now unused setSyscallArg. Setting syscall args isn't really something we need to do in gem5, since that will be taken care of by the code actually calling the syscall. We just need to be able to retrieve the value it put there. Jira Issue: https://gem5.atlassian.net/browse/GEM5-187 Change-Id: I0bb6d5d0207a7892414a722b3788cb70ee509582 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/23174 Tested-by: kokoro Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/arch/x86/process.cc | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/arch/x86/process.cc') diff --git a/src/arch/x86/process.cc b/src/arch/x86/process.cc index 09ff71f52..f0e8ead98 100644 --- a/src/arch/x86/process.cc +++ b/src/arch/x86/process.cc @@ -1068,13 +1068,6 @@ X86_64Process::getSyscallArg(ThreadContext *tc, int &i) return tc->readIntReg(ArgumentReg[i++]); } -void -X86_64Process::setSyscallArg(ThreadContext *tc, int i, RegVal val) -{ - assert(i < NumArgumentRegs); - return tc->setIntReg(ArgumentReg[i], val); -} - void X86_64Process::clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *p, RegVal flags) @@ -1101,13 +1094,6 @@ I386Process::getSyscallArg(ThreadContext *tc, int &i, int width) return retVal; } -void -I386Process::setSyscallArg(ThreadContext *tc, int i, RegVal val) -{ - assert(i < NumArgumentRegs); - return tc->setIntReg(ArgumentReg[i], val); -} - void I386Process::clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *p, RegVal flags) -- cgit v1.2.3