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

Unified Diff: src/IceIntrinsics.h

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/IceInstX8632.cpp ('k') | src/IceIntrinsics.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceIntrinsics.h
diff --git a/src/IceIntrinsics.h b/src/IceIntrinsics.h
index 0fee205c849c6170d72b1086ab5efc33461e6b52..fb066b982b66a92ac0f5b34f50c44851f81d5786 100644
--- a/src/IceIntrinsics.h
+++ b/src/IceIntrinsics.h
@@ -145,11 +145,14 @@ public:
Type getArgType(SizeT Index) const;
};
- // Find the information about a given intrinsic, based on function name.
- // The function name is expected to have the common "llvm." prefix
- // stripped. If found, returns a reference to a FullIntrinsicInfo entry
- // (valid for the lifetime of the map). Otherwise returns null.
- const FullIntrinsicInfo *find(const IceString &Name) const;
+ // Find the information about a given intrinsic, based on function name. If
+ // the function name does not have the common "llvm." prefix, nullptr is
+ // returned and Error is set to false. Otherwise, tries to find a reference
+ // to a FullIntrinsicInfo entry (valid for the lifetime of the map). If
+ // found, sets Error to false and returns the reference. If not found, sets
+ // Error to true and returns nullptr (indicating an unknown "llvm.foo"
+ // intrinsic).
+ const FullIntrinsicInfo *find(const IceString &Name, bool &Error) const;
private:
// TODO(jvoung): May want to switch to something like LLVM's StringMap.
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceIntrinsics.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698