Black Lives Matter. Support the Equal Justice Initiative.

Text file src/math/big/arith_wasm.s

Documentation: math/big

     1  // Copyright 2018 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build !math_big_pure_go
     6  // +build !math_big_pure_go
     7  
     8  #include "textflag.h"
     9  
    10  TEXT ·mulWW(SB),NOSPLIT,$0
    11  	JMP ·mulWW_g(SB)
    12  
    13  TEXT ·addVV(SB),NOSPLIT,$0
    14  	JMP ·addVV_g(SB)
    15  
    16  TEXT ·subVV(SB),NOSPLIT,$0
    17  	JMP ·subVV_g(SB)
    18  
    19  TEXT ·addVW(SB),NOSPLIT,$0
    20  	JMP ·addVW_g(SB)
    21  
    22  TEXT ·subVW(SB),NOSPLIT,$0
    23  	JMP ·subVW_g(SB)
    24  
    25  TEXT ·shlVU(SB),NOSPLIT,$0
    26  	JMP ·shlVU_g(SB)
    27  
    28  TEXT ·shrVU(SB),NOSPLIT,$0
    29  	JMP ·shrVU_g(SB)
    30  
    31  TEXT ·mulAddVWW(SB),NOSPLIT,$0
    32  	JMP ·mulAddVWW_g(SB)
    33  
    34  TEXT ·addMulVVW(SB),NOSPLIT,$0
    35  	JMP ·addMulVVW_g(SB)
    36  
    37  

View as plain text