Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expTrampolineSetup (0.21 sec)

  1. src/math/arith_s390x.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    import "internal/cpu"
    
    func expTrampolineSetup(x float64) float64
    func expAsm(x float64) float64
    
    func logTrampolineSetup(x float64) float64
    func logAsm(x float64) float64
    
    // Below here all functions are grouped in stubs.go for other
    // architectures.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. src/math/stubs_s390x.s

    GLOBL ·tanvectorfacility+0x00(SB), NOPTR, $8
    DATA ·tanvectorfacility+0x00(SB)/8, $·tanTrampolineSetup(SB)
    
    TEXT ·archExp(SB), NOSPLIT, $0
    	MOVD ·expvectorfacility+0x00(SB), R1
    	BR   (R1)
    
    TEXT ·expTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl               // vectorfacility = 1, vector supported
    	MOVD   $·expvectorfacility+0x00(SB), R1
    	MOVD   $·exp(SB), R2
    	MOVD   R2, 0(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
Back to top