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

Unified Diff: src/trusted/validator/validation_rewrite_test_data.S

Issue 1863433002: x86 validator: Implement rewriting "movntq" to "movq" on x86-64 (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/validator/validation_rewrite_test.cc ('k') | src/trusted/validator_ragel/dfa_validate_common.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/validation_rewrite_test_data.S
diff --git a/src/trusted/validator/validation_rewrite_test_data.S b/src/trusted/validator/validation_rewrite_test_data.S
index 0f167c8c00943435c41bbe03db0bbef777c651d9..41d065d91f19386e51143ea24da45bbd8ed874da 100644
--- a/src/trusted/validator/validation_rewrite_test_data.S
+++ b/src/trusted/validator/validation_rewrite_test_data.S
@@ -99,6 +99,16 @@ GLOBAL_SYM(prefetchnta_rip_relative_code_post_rewrite)
nop
GLOBAL_SYM(prefetchnta_rip_relative_code_post_rewrite_end)
+GLOBAL_SYM(movntq_code)
+ mov %ebx,%ebx
+ movntq %mm0,(%r15,%rbx,1)
+GLOBAL_SYM(movntq_code_end)
+
+GLOBAL_SYM(movntq_code_post_rewrite)
+ mov %ebx,%ebx
+ movq %mm0,(%r15,%rbx,1)
+GLOBAL_SYM(movntq_code_post_rewrite_end)
+
GLOBAL_SYM(movntps_code)
mov %ebx,%ebx
movntps %xmm0,(%r15,%rbx,1)
« no previous file with comments | « src/trusted/validator/validation_rewrite_test.cc ('k') | src/trusted/validator_ragel/dfa_validate_common.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698