Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: src/trusted/validator/validation_rewrite_32_test_data.S

Issue 1269113003: Rewrite non-temporal instructions Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Format Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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)
OLDNEW
« no previous file with comments | « src/trusted/validator/validation_rewrite_32_test.cc ('k') | src/trusted/validator/validation_rewrite_64_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698