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

Unified Diff: src/IceIntrinsics.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.h ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceIntrinsics.cpp
diff --git a/src/IceIntrinsics.cpp b/src/IceIntrinsics.cpp
index 29b8ad2cabc571e49b65510986684c6056b37e61..ffeed21a6fb6830b60f28697cac66be9fea3fc5d 100644
--- a/src/IceIntrinsics.cpp
+++ b/src/IceIntrinsics.cpp
@@ -220,11 +220,19 @@ Intrinsics::Intrinsics() {
Intrinsics::~Intrinsics() {}
-const Intrinsics::FullIntrinsicInfo *
-Intrinsics::find(const IceString &Name) const {
- auto it = Map.find(Name);
- if (it == Map.end())
+const Intrinsics::FullIntrinsicInfo *Intrinsics::find(const IceString &Name,
+ bool &Error) const {
+ static const char LLVMPrefix[] = "llvm.";
+ const size_t LLVMPrefixLen = strlen(LLVMPrefix);
+ Error = false;
+ if (Name.substr(0, LLVMPrefixLen) != LLVMPrefix)
return nullptr;
+ IceString NameSuffix = Name.substr(LLVMPrefixLen);
+ auto it = Map.find(NameSuffix);
+ if (it == Map.end()) {
+ Error = true;
+ return nullptr;
+ }
return &it->second;
}
« no previous file with comments | « src/IceIntrinsics.h ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698