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

Side by Side 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, 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 unified diff | Download patch
« no previous file with comments | « src/IceInstX8632.cpp ('k') | src/IceIntrinsics.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceIntrinsics.h - List of Ice Intrinsics -----*- C++ -*-===// 1 //===- subzero/src/IceIntrinsics.h - List of Ice Intrinsics -----*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file declares the kinds of intrinsics supported by PNaCl. 10 // This file declares the kinds of intrinsics supported by PNaCl.
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 // Returns number of arguments expected. 138 // Returns number of arguments expected.
139 SizeT getNumArgs() const { 139 SizeT getNumArgs() const {
140 assert(NumTypes > 1); 140 assert(NumTypes > 1);
141 return NumTypes - 1; 141 return NumTypes - 1;
142 } 142 }
143 143
144 // Returns type of Index-th argument. 144 // Returns type of Index-th argument.
145 Type getArgType(SizeT Index) const; 145 Type getArgType(SizeT Index) const;
146 }; 146 };
147 147
148 // Find the information about a given intrinsic, based on function name. 148 // Find the information about a given intrinsic, based on function name. If
149 // The function name is expected to have the common "llvm." prefix 149 // the function name does not have the common "llvm." prefix, nullptr is
150 // stripped. If found, returns a reference to a FullIntrinsicInfo entry 150 // returned and Error is set to false. Otherwise, tries to find a reference
151 // (valid for the lifetime of the map). Otherwise returns null. 151 // to a FullIntrinsicInfo entry (valid for the lifetime of the map). If
152 const FullIntrinsicInfo *find(const IceString &Name) const; 152 // found, sets Error to false and returns the reference. If not found, sets
153 // Error to true and returns nullptr (indicating an unknown "llvm.foo"
154 // intrinsic).
155 const FullIntrinsicInfo *find(const IceString &Name, bool &Error) const;
153 156
154 private: 157 private:
155 // TODO(jvoung): May want to switch to something like LLVM's StringMap. 158 // TODO(jvoung): May want to switch to something like LLVM's StringMap.
156 typedef std::map<IceString, FullIntrinsicInfo> IntrinsicMap; 159 typedef std::map<IceString, FullIntrinsicInfo> IntrinsicMap;
157 IntrinsicMap Map; 160 IntrinsicMap Map;
158 }; 161 };
159 162
160 } // end of namespace Ice 163 } // end of namespace Ice
161 164
162 #endif // SUBZERO_SRC_ICEINTRINSICS_H 165 #endif // SUBZERO_SRC_ICEINTRINSICS_H
OLDNEW
« 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