changeset 8c3a49bd7423 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=8c3a49bd7423
description:
        x86: Add limited support for extracting function call arguments

        Add support for extracting the first 6 64-bit integer argumements to a
        function call in X86ISA::getArgument().

diffstat:

 src/arch/x86/utility.cc |  21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diffs (31 lines):

diff -r a74065ea10ff -r 8c3a49bd7423 src/arch/x86/utility.cc
--- a/src/arch/x86/utility.cc   Mon Sep 30 09:36:54 2013 +0200
+++ b/src/arch/x86/utility.cc   Mon Sep 30 09:37:17 2013 +0200
@@ -51,8 +51,25 @@
 uint64_t
 getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
 {
-    panic("getArgument() not implemented for x86!\n");
-    M5_DUMMY_RETURN
+    if (!FullSystem) {
+        panic("getArgument() only implemented for full system mode.\n");
+    } else if (fp) {
+        panic("getArgument(): Floating point arguments not implemented\n");
+    } else if (size != 8) {
+        panic("getArgument(): Can only handle 64-bit arguments.\n");
+    }
+
+    // The first 6 integer arguments are passed in registers, the rest
+    // are passed on the stack.
+    const int int_reg_map[] = {
+        INTREG_RDI, INTREG_RSI, INTREG_RDX,
+        INTREG_RCX, INTREG_R8, INTREG_R9
+    };
+    if (number < sizeof(int_reg_map) / sizeof(*int_reg_map)) {
+        return tc->readIntReg(int_reg_map[number]);
+    } else {
+        panic("getArgument(): Don't know how to handle stack arguments.\n");
+    }
 }
 
 void initCPU(ThreadContext *tc, int cpuId)
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to