OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // This file provides fast assembly versions for the elementary | 5 // This file provides fast assembly versions for the elementary |
6 // arithmetic operations on vectors implemented in arith.go. | 6 // arithmetic operations on vectors implemented in arith.go. |
7 | 7 |
8 // TODO(gri) Implement these routines. | 8 // TODO(gri) Implement these routines. |
9 TEXT ·addVV(SB),7,$0 | 9 TEXT ·addVV(SB),7,$0 |
10 B ·addVV_g(SB) | 10 B ·addVV_g(SB) |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 TEXT ·mulAddVWW(SB),7,$0 | 27 TEXT ·mulAddVWW(SB),7,$0 |
28 B ·mulAddVWW_g(SB) | 28 B ·mulAddVWW_g(SB) |
29 | 29 |
30 TEXT ·addMulVVW(SB),7,$0 | 30 TEXT ·addMulVVW(SB),7,$0 |
31 B ·addMulVVW_g(SB) | 31 B ·addMulVVW_g(SB) |
32 | 32 |
33 TEXT ·divWVW(SB),7,$0 | 33 TEXT ·divWVW(SB),7,$0 |
34 B ·divWVW_g(SB) | 34 B ·divWVW_g(SB) |
35 | 35 |
| 36 TEXT ·divWW(SB),7,$0 |
| 37 B ·divWW_g(SB) |
| 38 |
| 39 TEXT ·mulWW(SB),7,$0 |
| 40 B ·mulWW_g(SB) |
OLD | NEW |