OLD | NEW |
---|---|
1 //===- subzero/src/IceGlobalInits.h - Global declarations -------*- C++ -*-===// | 1 //===- subzero/src/IceGlobalInits.h - Global declarations -------*- 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 /// \file | 10 /// \file |
11 /// \brief Declares the representation of function declarations, global variable | 11 /// \brief Declares the representation of function declarations, global variable |
12 /// declarations, and the corresponding variable initializers in Subzero. | 12 /// declarations, and the corresponding variable initializers in Subzero. |
13 /// | 13 /// |
14 /// Global variable initializers are represented as a sequence of simple | 14 /// Global variable initializers are represented as a sequence of simple |
15 /// initializers. | 15 /// initializers. |
16 /// | 16 /// |
17 //===----------------------------------------------------------------------===// | 17 //===----------------------------------------------------------------------===// |
18 | 18 |
19 #ifndef SUBZERO_SRC_ICEGLOBALINITS_H | 19 #ifndef SUBZERO_SRC_ICEGLOBALINITS_H |
20 #define SUBZERO_SRC_ICEGLOBALINITS_H | 20 #define SUBZERO_SRC_ICEGLOBALINITS_H |
21 | 21 |
22 #include "IceDefs.h" | 22 #include "IceDefs.h" |
23 #include "IceGlobalContext.h" | 23 #include "IceGlobalContext.h" |
24 #include "IceIntrinsics.h" | |
24 #include "IceTypes.h" | 25 #include "IceTypes.h" |
25 | 26 |
26 #ifdef __clang__ | 27 #ifdef __clang__ |
27 #pragma clang diagnostic push | 28 #pragma clang diagnostic push |
28 #pragma clang diagnostic ignored "-Wunused-parameter" | 29 #pragma clang diagnostic ignored "-Wunused-parameter" |
29 #pragma clang diagnostic ignored "-Wredundant-move" | 30 #pragma clang diagnostic ignored "-Wredundant-move" |
30 #endif // __clang__ | 31 #endif // __clang__ |
31 | 32 |
32 #include "llvm/Bitcode/NaCl/NaClBitcodeParser.h" // for NaClBitcodeRecord. | 33 #include "llvm/Bitcode/NaCl/NaClBitcodeParser.h" // for NaClBitcodeRecord. |
33 #include "llvm/IR/CallingConv.h" | 34 #include "llvm/IR/CallingConv.h" |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
149 void dump(GlobalContext *Ctx, Ostream &Stream) const final; | 150 void dump(GlobalContext *Ctx, Ostream &Stream) const final; |
150 bool getSuppressMangling() const final { return isExternal() && IsProto; } | 151 bool getSuppressMangling() const final { return isExternal() && IsProto; } |
151 | 152 |
152 /// Returns true if linkage is correct for the function declaration. | 153 /// Returns true if linkage is correct for the function declaration. |
153 bool verifyLinkageCorrect(const GlobalContext *Ctx) const { | 154 bool verifyLinkageCorrect(const GlobalContext *Ctx) const { |
154 if (isPNaClABIExternalName() || isIntrinsicName(Ctx)) | 155 if (isPNaClABIExternalName() || isIntrinsicName(Ctx)) |
155 return Linkage == llvm::GlobalValue::ExternalLinkage; | 156 return Linkage == llvm::GlobalValue::ExternalLinkage; |
156 return verifyLinkageDefault(Ctx); | 157 return verifyLinkageDefault(Ctx); |
157 } | 158 } |
158 | 159 |
160 /// Validates that type signature of function is correct. Returns true if | |
Jim Stichnoth
2016/01/14 22:59:08
How about "the type signature" and "the function"?
Karl
2016/01/15 15:33:34
Done.
| |
161 /// valid, | |
Jim Stichnoth
2016/01/14 22:59:08
End sentence with a period, or fill in the missing
Karl
2016/01/15 15:33:34
Done.
| |
162 bool validateTypeSignature(const GlobalContext *Ctx) { | |
163 bool IsIntrinsic; | |
164 if (const Intrinsics::FullIntrinsicInfo *Info = | |
165 getIntrinsicInfo(Ctx, IsIntrinsic)) | |
166 return validateIntrinsicTypeSignature(Info); | |
167 return !IsIntrinsic && validateRegularTypeSignature(); | |
168 } | |
169 | |
170 /// Generates error message describing why validateTypeSignature returns | |
Jim Stichnoth
2016/01/14 22:59:08
an error message
Karl
2016/01/15 15:33:34
Done.
| |
171 /// false. | |
172 IceString getTypeSignatureError(const GlobalContext *Ctx); | |
173 | |
174 /// Returns corresponding PNaCl intrisic information. | |
175 const Intrinsics::FullIntrinsicInfo * | |
176 getIntrinsicInfo(const GlobalContext *Ctx) const { | |
177 bool BadIntrinsic; | |
178 return getIntrinsicInfo(Ctx, BadIntrinsic); | |
179 } | |
180 | |
181 /// Same as above, except IsIntrinsic is true if the function is intrinsic | |
182 /// (even if not a PNaCl intrinsic). | |
183 const Intrinsics::FullIntrinsicInfo * | |
184 getIntrinsicInfo(const GlobalContext *Ctx, bool &IsIntrinsic) const; | |
Jim Stichnoth
2016/01/14 22:59:08
I'm guessing John is going to ask for bool* here.
Karl
2016/01/15 15:33:34
Changed to use bool *.
| |
185 | |
159 private: | 186 private: |
160 const Ice::FuncSigType Signature; | 187 const Ice::FuncSigType Signature; |
161 llvm::CallingConv::ID CallingConv; | 188 llvm::CallingConv::ID CallingConv; |
162 bool IsProto; | 189 bool IsProto; |
163 | 190 |
164 FunctionDeclaration(const FuncSigType &Signature, | 191 FunctionDeclaration(const FuncSigType &Signature, |
165 llvm::CallingConv::ID CallingConv, | 192 llvm::CallingConv::ID CallingConv, |
166 llvm::GlobalValue::LinkageTypes Linkage, bool IsProto) | 193 llvm::GlobalValue::LinkageTypes Linkage, bool IsProto) |
167 : GlobalDeclaration(FunctionDeclarationKind, Linkage), | 194 : GlobalDeclaration(FunctionDeclarationKind, Linkage), |
168 Signature(Signature), CallingConv(CallingConv), IsProto(IsProto) {} | 195 Signature(Signature), CallingConv(CallingConv), IsProto(IsProto) {} |
169 | 196 |
170 bool isPNaClABIExternalName() const { | 197 bool isPNaClABIExternalName() const { |
171 const char *Name = getName().c_str(); | 198 const char *Name = getName().c_str(); |
172 return strcmp(Name, "_start") == 0 || strcmp(Name, "__pnacl_pso_root") == 0; | 199 return strcmp(Name, "_start") == 0 || strcmp(Name, "__pnacl_pso_root") == 0; |
173 } | 200 } |
174 | 201 |
175 bool isIntrinsicName(const GlobalContext *Ctx) const { | 202 bool isIntrinsicName(const GlobalContext *Ctx) const { |
176 if (!hasName()) | 203 bool IsIntrinsic; |
177 return false; | 204 getIntrinsicInfo(Ctx, IsIntrinsic); |
178 bool BadIntrinsic; | 205 return IsIntrinsic; |
179 return Ctx->getIntrinsicsInfo().find(getName(), BadIntrinsic) && | |
180 !BadIntrinsic; | |
181 } | 206 } |
207 | |
208 bool validateRegularTypeSignature() const; | |
209 | |
210 bool validateIntrinsicTypeSignature( | |
211 const Intrinsics::FullIntrinsicInfo *Info) const; | |
182 }; | 212 }; |
183 | 213 |
184 /// Models a global variable declaration, and its initializers. | 214 /// Models a global variable declaration, and its initializers. |
185 class VariableDeclaration : public GlobalDeclaration { | 215 class VariableDeclaration : public GlobalDeclaration { |
186 VariableDeclaration(const VariableDeclaration &) = delete; | 216 VariableDeclaration(const VariableDeclaration &) = delete; |
187 VariableDeclaration &operator=(const VariableDeclaration &) = delete; | 217 VariableDeclaration &operator=(const VariableDeclaration &) = delete; |
188 | 218 |
189 public: | 219 public: |
190 /// Base class for a global variable initializer. | 220 /// Base class for a global variable initializer. |
191 class Initializer { | 221 class Initializer { |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
401 template <class StreamType> | 431 template <class StreamType> |
402 inline StreamType &operator<<(StreamType &Stream, | 432 inline StreamType &operator<<(StreamType &Stream, |
403 const GlobalDeclaration &Addr) { | 433 const GlobalDeclaration &Addr) { |
404 Addr.dump(Stream); | 434 Addr.dump(Stream); |
405 return Stream; | 435 return Stream; |
406 } | 436 } |
407 | 437 |
408 } // end of namespace Ice | 438 } // end of namespace Ice |
409 | 439 |
410 #endif // SUBZERO_SRC_ICEGLOBALINITS_H | 440 #endif // SUBZERO_SRC_ICEGLOBALINITS_H |
OLD | NEW |