OLD | NEW |
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 Loading... |
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 |
OLD | NEW |