]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/runtime/asm_ppc64x.s
Revert "runtime/cgo: store M for C-created thread in pthread key"
[gostls13.git] / src / runtime / asm_ppc64x.s
index 7c866b4bc3367acdb71cf3fef8fe7092d14d3192..96a25f4047ed3ee89bd1e96d7133ae27da55085e 100644 (file)
@@ -628,16 +628,6 @@ g0:
 TEXT ·cgocallback(SB),NOSPLIT,$24-24
        NO_LOCAL_POINTERS
 
-       // Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
-       // It is used to dropm while thread is exiting.
-       MOVD    fn+0(FP), R5
-       CMP     R5, $0
-       BNE     loadg
-       // Restore the g from frame.
-       MOVD    frame+8(FP), g
-       BR      dropm
-
-loadg:
        // Load m and g from thread-local storage.
        MOVBZ   runtime·iscgo(SB), R3
        CMP     R3, $0
@@ -645,8 +635,7 @@ loadg:
        BL      runtime·load_g(SB)
 nocgo:
 
-       // If g is nil, Go did not create the current thread,
-       // or if this thread never called into Go on pthread platforms.
+       // If g is nil, Go did not create the current thread.
        // Call needm to obtain one for temporary use.
        // In this case, we're running on the thread stack, so there's
        // lots of space, but the linker doesn't know. Hide the call from
@@ -660,7 +649,7 @@ nocgo:
 
 needm:
        MOVD    g, savedm-8(SP) // g is zero, so is m.
-       MOVD    $runtime·needAndBindM(SB), R12
+       MOVD    $runtime·needm(SB), R12
        MOVD    R12, CTR
        BL      (CTR)
 
@@ -735,27 +724,11 @@ havem:
        MOVD    savedsp-24(SP), R4      // must match frame size
        MOVD    R4, (g_sched+gobuf_sp)(g)
 
-       // If the m on entry was nil, we called needm above to borrow an m,
-       // 1. for the duration of the call on non-pthread platforms,
-       // 2. or the duration of the C thread alive on pthread platforms.
-       // If the m on entry wasn't nil,
-       // 1. the thread might be a Go thread,
-       // 2. or it's wasn't the first call from a C thread on pthread platforms,
-       //    since the we skip dropm to resue the m in the first call.
+       // If the m on entry was nil, we called needm above to borrow an m
+       // for the duration of the call. Since the call is over, return it with dropm.
        MOVD    savedm-8(SP), R6
        CMP     R6, $0
        BNE     droppedm
-
-       // Skip dropm to reuse it in the next call, when a pthread key has been created.
-       MOVD    _cgo_pthread_key_created(SB), R6
-       // It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
-       CMP     R6, $0
-       BEQ     dropm
-       MOVD    (R6), R6
-       CMP     R6, $0
-       BNE     droppedm
-
-dropm:
        MOVD    $runtime·dropm(SB), R12
        MOVD    R12, CTR
        BL      (CTR)