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

Unified Diff: src/trusted/validator_arm/problem_reporter.cc

Issue 10949006: Change table data_processing_immediate to use the new notation. Also (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 3 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_arm/inst_classes.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator_arm/problem_reporter.cc
===================================================================
--- src/trusted/validator_arm/problem_reporter.cc (revision 9791)
+++ src/trusted/validator_arm/problem_reporter.cc (working copy)
@@ -30,6 +30,7 @@
nacl_arm_dec::DEPRECATED,
nacl_arm_dec::FORBIDDEN,
nacl_arm_dec::FORBIDDEN_OPERANDS,
+ nacl_arm_dec::DECODER_ERROR,
nacl_arm_dec::MAY_BE_SAFE,
};
return (index < NACL_ARRAY_SIZE(Int2SafetyLevelMap))
@@ -174,6 +175,9 @@
// FORBIDDEN_OPERANDS - This instruction's operands are forbidden by
// our SFI model.
"Instruction has operand(s) forbidden by Native Client.",
+ // DECODER_ERROR - This instruction was incorrectly decoded, and
+ // should have been a different instruciton.
+ "Instruction decoded incorrectly by NativeClient.",
};
// Error message to print for each type of ValidatorProblem. See
« no previous file with comments | « src/trusted/validator_arm/inst_classes.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698