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

Unified Diff: src/trusted/validator_ragel/gen_dfa.py

Issue 11000033: Move validator_x86_XX.rl out of unreviewed. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 7 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_ragel/gen/validator_x86_32.c ('k') | src/trusted/validator_ragel/gen_dfa_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator_ragel/gen_dfa.py
===================================================================
--- src/trusted/validator_ragel/gen_dfa.py (revision 11037)
+++ src/trusted/validator_ragel/gen_dfa.py (working copy)
@@ -1006,7 +1006,7 @@
self._out.write(address_mode.mode)
if self._mode == VALIDATOR and self._bitness == 64:
if Attribute('no_memory_access') not in instruction.attributes:
- self._out.write(' @check_access')
+ self._out.write(' @check_memory_access')
self._out.write(')\n')
if instruction.HasOpcodeInsteadOfImmediate():
@@ -1449,6 +1449,10 @@
# is resolved.
if Attribute('CPUFeature_AVX') in instruction.attributes:
continue
+ if Attribute('CPUFeature_FMA') in instruction.attributes:
+ continue
+ if Attribute('CPUFeature_FMA4') in instruction.attributes:
+ continue
if Attribute('CPUFeature_XOP') in instruction.attributes:
continue
« no previous file with comments | « src/trusted/validator_ragel/gen/validator_x86_32.c ('k') | src/trusted/validator_ragel/gen_dfa_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698