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

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

Issue 1837733002: x86 validator: Implement rewriting "movntps" to "movaps" on x86-32 (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 4 years, 9 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 41d065d91f19386e51143ea24da45bbd8ed874da..6786144ad4d9e1bd8bb16fc94918099ccfa86925 100644
--- a/src/trusted/validator/validation_rewrite_test_data.S
+++ b/src/trusted/validator/validation_rewrite_test_data.S
@@ -29,6 +29,14 @@ GLOBAL_SYM(movntq_code_post_rewrite)
movq %mm0, (%ebx)
GLOBAL_SYM(movntq_code_post_rewrite_end)
+GLOBAL_SYM(movntps_code)
+ movntps %xmm0, (%ebx)
+GLOBAL_SYM(movntps_code_end)
+
+GLOBAL_SYM(movntps_code_post_rewrite)
+ movaps %xmm0, (%ebx)
+GLOBAL_SYM(movntps_code_post_rewrite_end)
+
GLOBAL_SYM(movntdq_code)
movntdq %xmm0, (%edx)
GLOBAL_SYM(movntdq_code_end)
« 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