util: Refactor the string->register packing function in the m5 utility.
authorGabe Black <gabeblack@google.com>
Wed, 25 Mar 2020 23:41:33 +0000 (16:41 -0700)
committerGabe Black <gabeblack@google.com>
Mon, 27 Apr 2020 21:03:28 +0000 (21:03 +0000)
This change removes the responsibility for checking the number of
arguments and handing the default of no string back into init_param and
out of the function which packs strings into registers. It also renames
the function to more closely match its purpose, and rewrites it to be a
bit simpler and (IMHO) easier to follow.

Importantly, rather than doing a hand implemented strcpy which would
follow the endianness of the target/simulated platform, this change
makes this function pack the registers explicitly in little endian byte
order. This way on the consuming end in gem5, the initParam function
doesn't have to care what the guest endianness is, it can just translate
them from little endian to whatever the host endianness is (very likely
also little endian).

Change-Id: Ie9f79ecb8d4584c6e47a2793a31ccaa8c7c15986
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/27229
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
util/m5/src/m5.c

index 83174d07f4605de5f4d7828653076f5162fc85a3..ae9068bd10b2a3f78412cfdc2ecda6f5110059a8 100644 (file)
@@ -76,23 +76,24 @@ parse_int_args(int argc, char *argv[], uint64_t ints[], int len)
 }
 
 void
-parse_str_args_to_regs(int argc, char *argv[], uint64_t regs[], int len)
+pack_str_into_regs(const char *str, uint64_t regs[], int num_regs)
 {
-    if (argc > 1 || (argc > 0 && strlen(argv[0]) > len * sizeof(uint64_t)))
-        usage();
+    const size_t RegSize = sizeof(regs[0]);
+    const size_t MaxLen = num_regs * RegSize;
 
-    int i;
-    for (i = 0; i < len; i++)
-        regs[i] = 0;
+    size_t len = strlen(str);
 
-    if (argc == 0)
-        return;
+    if (len > MaxLen)
+        usage();
+
+    memset(regs, 0, MaxLen);
 
-    int n;
-    for (n = 0, i = 0; i < len && n < strlen(argv[0]); n++) {
-        *((char *)(&regs[i]) + (n % 8)) = argv[0][n];
-        if ((n % 8) == 7)
-            i++;
+    while (len) {
+        for (int offset = 0; offset < RegSize && len; offset++, len--) {
+            int shift = offset * 8;
+            *regs |= (uint64_t)(uint8_t)*str++ << shift;
+        }
+        regs++;
     }
 }
 
@@ -277,7 +278,7 @@ do_initparam(int argc, char *argv[])
         usage();
 
     uint64_t key_str[2];
-    parse_str_args_to_regs(argc, argv, key_str, 2);
+    pack_str_into_regs(argc == 0 ? "" : argv[0], key_str, 2);
     uint64_t val = m5_init_param(key_str[0], key_str[1]);
     printf("%"PRIu64, val);
 }