OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2015 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 #include "native_client/src/include/nacl_asm.h" |
| 8 |
| 9 #define GLOBAL_SYM(name) .global IDENTIFIER(name); IDENTIFIER(name): |
| 10 |
| 11 .data |
| 12 |
| 13 GLOBAL_SYM(no_rewrite_code) |
| 14 movntq %mm0, (%ebx) |
| 15 GLOBAL_SYM(no_rewrite_code_end) |
| 16 |
| 17 GLOBAL_SYM(no_rewrite_code_post_rewrite) |
| 18 movntq %mm0, (%ebx) |
| 19 GLOBAL_SYM(no_rewrite_code_post_rewrite_end) |
| 20 |
| 21 GLOBAL_SYM(movntq_code) |
| 22 movntq %mm0, (%ebx) |
| 23 GLOBAL_SYM(movntq_code_end) |
| 24 |
| 25 GLOBAL_SYM(movntq_code_post_rewrite) |
| 26 movq %mm0, (%ebx) |
| 27 GLOBAL_SYM(movntq_code_post_rewrite_end) |
| 28 |
| 29 GLOBAL_SYM(movntdq_code) |
| 30 movntdq %xmm0, (%edx) |
| 31 GLOBAL_SYM(movntdq_code_end) |
| 32 |
| 33 GLOBAL_SYM(movntdq_code_post_rewrite) |
| 34 movdqa %xmm0, (%edx) |
| 35 GLOBAL_SYM(movntdq_code_post_rewrite_end) |
OLD | NEW |