Text file
src/math/big/arith_wasm.s
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
7 #include "textflag.h"
8
9 TEXT ·addVV(SB),NOSPLIT,$0
10 JMP ·addVV_g(SB)
11
12 TEXT ·subVV(SB),NOSPLIT,$0
13 JMP ·subVV_g(SB)
14
15 TEXT ·lshVU(SB),NOSPLIT,$0
16 JMP ·lshVU_g(SB)
17
18 TEXT ·rshVU(SB),NOSPLIT,$0
19 JMP ·rshVU_g(SB)
20
21 TEXT ·mulAddVWW(SB),NOSPLIT,$0
22 JMP ·mulAddVWW_g(SB)
23
24 TEXT ·addMulVVWW(SB),NOSPLIT,$0
25 JMP ·addMulVVWW_g(SB)
26
27
View as plain text