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

Unified Diff: src/PNaClTranslator.cpp

Issue 973823003: Subzero: Run sandboxed cross tests, and do some cleanup. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix TODO. Fix accidentally reverted required change. Created 5 years, 10 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/IceIntrinsics.cpp ('k') | src/assembler_ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/PNaClTranslator.cpp
diff --git a/src/PNaClTranslator.cpp b/src/PNaClTranslator.cpp
index b88b0aea1bdfd4b881323a2235bdfb2b5cb9fd78..d4bcd8ee9e2c44959e80e7da58eb90c453aebea3 100644
--- a/src/PNaClTranslator.cpp
+++ b/src/PNaClTranslator.cpp
@@ -1573,18 +1573,6 @@ private:
return VectorIndexValid;
}
- // Returns true if the Str begins with Prefix.
- bool isStringPrefix(const Ice::IceString &Str, const Ice::IceString &Prefix) {
- const size_t PrefixSize = Prefix.size();
- if (Str.size() < PrefixSize)
- return false;
- for (size_t i = 0; i < PrefixSize; ++i) {
- if (Str[i] != Prefix[i])
- return false;
- }
- return true;
- }
-
// Takes the PNaCl bitcode binary operator Opcode, and the opcode
// type Ty, and sets Op to the corresponding ICE binary
// opcode. Returns true if able to convert, false otherwise.
@@ -2511,20 +2499,17 @@ void FunctionParser::ProcessRecord() {
ReturnType = Signature.getReturnType();
// Check if this direct call is to an Intrinsic (starts with "llvm.")
- static Ice::IceString LLVMPrefix("llvm.");
+ bool BadIntrinsic;
const Ice::IceString &Name = Fcn->getName();
- if (isStringPrefix(Name, LLVMPrefix)) {
- Ice::IceString Suffix = Name.substr(LLVMPrefix.size());
- IntrinsicInfo =
- getTranslator().getContext()->getIntrinsicsInfo().find(Suffix);
- if (!IntrinsicInfo) {
- std::string Buffer;
- raw_string_ostream StrBuf(Buffer);
- StrBuf << "Invalid PNaCl intrinsic call to " << Name;
- Error(StrBuf.str());
- appendErrorInstruction(ReturnType);
- return;
- }
+ IntrinsicInfo = getTranslator().getContext()->getIntrinsicsInfo().find(
+ Name, BadIntrinsic);
+ if (BadIntrinsic) {
+ std::string Buffer;
+ raw_string_ostream StrBuf(Buffer);
+ StrBuf << "Invalid PNaCl intrinsic call to " << Name;
+ Error(StrBuf.str());
+ appendErrorInstruction(ReturnType);
+ return;
}
} else {
if (getFlags().getStubConstantCalls() &&
« no previous file with comments | « src/IceIntrinsics.cpp ('k') | src/assembler_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698