]> granicus.if.org Git - strace/blobdiff - sysmips.c
io.c: move sendfile parsers to a separate file
[strace] / sysmips.c
index d7d5455e1dcb11bdb489b5a2ee33f674d0ce5410..a47facf98c431e36de884d020bba77843f99d542 100644 (file)
--- a/sysmips.c
+++ b/sysmips.c
 
 SYS_FUNC(sysmips)
 {
-       if (entering(tcp)) {
-               printxval(sysmips_operations, tcp->u_arg[0], "???");
-               if (!verbose(tcp)) {
-                       tprintf("%ld, %ld, %ld", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
-               } else if (tcp->u_arg[0] == SETNAME) {
-                       char nodename[__NEW_UTS_LEN + 1];
-                       tprints(", ");
-                       if (umovestr(tcp, tcp->u_arg[1], (__NEW_UTS_LEN + 1),
-                                    nodename) < 0) {
-                               tprintf("%#lx", tcp->u_arg[1]);
-                       } else {
-                               print_quoted_string(nodename, __NEW_UTS_LEN + 1,
-                                                   QUOTE_0_TERMINATED);
-                       }
-               } else if (tcp->u_arg[0] == MIPS_ATOMIC_SET) {
-                       tprintf(", %#lx, 0x%lx", tcp->u_arg[1], tcp->u_arg[2]);
-               } else if (tcp->u_arg[0] == MIPS_FIXADE) {
-                       tprintf(", 0x%lx", tcp->u_arg[1]);
+       printxval(sysmips_operations, tcp->u_arg[0], "???");
+       tprints(", ");
+
+       switch (tcp->u_arg[0]) {
+       case SETNAME: {
+               char nodename[__NEW_UTS_LEN + 1];
+
+               if (!verbose(tcp))
+                       break;
+               if (umovestr(tcp, tcp->u_arg[1], (__NEW_UTS_LEN + 1),
+                            nodename) < 0) {
+                       printaddr(tcp->u_arg[1]);
                } else {
-                       tprintf("%ld, %ld, %ld", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
+                       print_quoted_string(nodename, __NEW_UTS_LEN + 1,
+                                           QUOTE_0_TERMINATED);
                }
+               return RVAL_DECODED;
+       }
+       case MIPS_ATOMIC_SET:
+               tprintf("%#lx, 0x%lx", tcp->u_arg[1], tcp->u_arg[2]);
+               return RVAL_DECODED;
+       case MIPS_FIXADE:
+               tprintf("0x%lx", tcp->u_arg[1]);
+               return RVAL_DECODED;
        }
 
-       return 0;
+       tprintf("%ld, %ld, %ld", tcp->u_arg[1], tcp->u_arg[2], tcp->u_arg[3]);
+       return RVAL_DECODED;
 }
 
 #endif /* MIPS */