[前][次][番号順一覧][スレッド一覧]

ruby-changes:56224

From: Yusuke <ko1@a...>
Date: Wed, 26 Jun 2019 14:09:45 +0900 (JST)
Subject: [ruby-changes:56224] Yusuke Endoh: 6df1814c08 (trunk): coroutine/arm32/Context.S: save/restore the registers via stack

https://git.ruby-lang.org/ruby.git/commit/?id=6df1814c08

From 6df1814c08df93bbc0b3e7a73649bcf82e126064 Mon Sep 17 00:00:00 2001
From: Yusuke Endoh <mame@r...>
Date: Wed, 26 Jun 2019 14:08:10 +0900
Subject: coroutine/arm32/Context.S: save/restore the registers via stack

Retry of 518adcca0a and dbe232e24e

diff --git a/configure.ac b/configure.ac
index 5f2fe6b..8c431ad 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2272,6 +2272,9 @@ AS_CASE(["$rb_cv_fiber_coroutine"], [yes|''], [ https://github.com/ruby/ruby/blob/trunk/configure.ac#L2272
         [x64-mingw32], [
             rb_cv_fiber_coroutine=win64
         ],
+        [armv7*-linux-*], [
+            rb_cv_fiber_coroutine=arm32
+        ],
         [aarch64-linux], [
             rb_cv_fiber_coroutine=arm64
         ],
diff --git a/coroutine/arm32/Context.S b/coroutine/arm32/Context.S
index c2b93d0..a44ba48 100644
--- a/coroutine/arm32/Context.S
+++ b/coroutine/arm32/Context.S
@@ -9,6 +9,7 @@ https://github.com/ruby/ruby/blob/trunk/coroutine/arm32/Context.S#L9
 
 .globl coroutine_transfer
 coroutine_transfer:
-	stmia r1!, {r4-r11,sp,lr}
-	ldmia r0!, {r4-r11,sp,pc}
-	bx lr
+	push {r4-r11,lr}
+	str sp, [r0]
+	ldr sp, [r1]
+	pop {r4-r11,pc}
diff --git a/coroutine/arm32/Context.h b/coroutine/arm32/Context.h
index d2bb582..8105bd2 100644
--- a/coroutine/arm32/Context.h
+++ b/coroutine/arm32/Context.h
@@ -16,7 +16,7 @@ extern "C" { https://github.com/ruby/ruby/blob/trunk/coroutine/arm32/Context.h#L16
 
 #define COROUTINE __attribute__((noreturn)) void
 
-enum {COROUTINE_REGISTERS = 9};
+enum {COROUTINE_REGISTERS = 8};
 
 typedef struct
 {
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]