LEFT | RIGHT |
(Both sides are equal) |
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 // | 5 // |
6 // System calls and other sys.stuff for AMD64, Linux | 6 // System calls and other sys.stuff for AMD64, Linux |
7 // | 7 // |
8 | 8 |
9 #include "amd64/asm.h" | 9 #include "amd64/asm.h" |
10 | 10 |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 | 152 |
153 TEXT sigaltstack(SB),7,$-8 | 153 TEXT sigaltstack(SB),7,$-8 |
154 MOVQ new+8(SP), DI | 154 MOVQ new+8(SP), DI |
155 MOVQ old+16(SP), SI | 155 MOVQ old+16(SP), SI |
156 MOVQ $131, AX | 156 MOVQ $131, AX |
157 SYSCALL | 157 SYSCALL |
158 CMPQ AX, $0xfffffffffffff001 | 158 CMPQ AX, $0xfffffffffffff001 |
159 JLS 2(PC) | 159 JLS 2(PC) |
160 CALL notok(SB) | 160 CALL notok(SB) |
161 RET | 161 RET |
LEFT | RIGHT |