9front - general discussion about 9front
 help / color / mirror / Atom feed
* [9front] [PATCH] strchr.s for spim
@ 2022-10-21  0:03 adventures in9
  2023-02-22 23:31 ` cinap_lenrek
  0 siblings, 1 reply; 2+ messages in thread
From: adventures in9 @ 2022-10-21  0:03 UTC (permalink / raw)
  To: 9front

I finally found the time to get the kernel working for the Mediatek
mt7688.  Just the uart works now, so I still need to do the ethernet
and hopefully wifi and other stuff.  But it boots all the way to the
bootargs ask, and then running !rc lets you run rc in paqfs.

https://github.com/adventuresin9/9front-mt7688

I had a heck of a time getting it to work at first, till I tracked
down an issue in strlen, that comes from the strchr code.  Lots of
stuff broke, and this bug also meant error messages wouldn't print
properly.

running this on the mt7688;
    int n1, n2, n3, n4, n5, n6;
    char *a1, *a2, *a3, *a4, *a5, *a6;

    a1 = "\0";
    a2 = "A";
    a3 = "AA";
    a4 = "AAA";
    a5 = "AAAA";
    a6 = "AAAAA";

    n1 = strlen(a1);
    n2 = strlen(a2);
    n3 = strlen(a3);
    n4 = strlen(a4);
    n5 = strlen(a5);
    n6 = strlen(a6);

    iprint("STRLEN %d %d %d %d %d %d\n", n1, n2, n3, n4, n5, n6);

would get ;
STRLEN 0 1 1 2 1 6

and now it gets;
STRLEN 0 1 2 3 4 5

Also, to just get the world built for spim,
/spim/include/ape, needs the files copied over from mips
/sys/src/ape/lib/9/spim, also needs the files copied over from mips.

This boots and runs on the last release, but when setting up an
updated system to run diff for the patch, I found that Proc has been
changed in a few ways that breaks it.

-------
diff 2cd313668cea156fd13b54873d7934d9b15d8081 uncommitted
--- a/sys/src/libc/spim/strchr.s
+++ b/sys/src/libc/spim/strchr.s
@@ -34,12 +34,12 @@
 l4:
     MOVW    (R3), R5
     ADDU    $4, R3
-    AND    R6,R5, R1
-    AND    R7,R5, R2
+    AND    $0xff,R5, R1
+    AND    $0xff00,R5, R2
     BEQ    R1, b0
-    AND    $0xff00,R5, R1
+    AND    R7,R5, R1
     BEQ    R2, b1
-    AND    $0xff,R5, R2
+    AND    R6,R5, R2
     BEQ    R1, b2
     BNE    R2, l4

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-02-22 23:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-21  0:03 [9front] [PATCH] strchr.s for spim adventures in9
2023-02-22 23:31 ` cinap_lenrek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).