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

Unified Diff: src/IceGlobalInits.cpp

Issue 1579203002: Fix bitcode parser to check type signatures of functions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Commit patch. Created 4 years, 11 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/IceGlobalInits.h ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalInits.cpp
diff --git a/src/IceGlobalInits.cpp b/src/IceGlobalInits.cpp
index ab53eacfca19d6d4822321459b6276de186bf660..94a38a12881fdd76c57074f0f345e06707528eba 100644
--- a/src/IceGlobalInits.cpp
+++ b/src/IceGlobalInits.cpp
@@ -60,6 +60,56 @@ void dumpCallingConv(Ice::Ostream &, llvm::CallingConv::ID CallingConv) {
namespace Ice {
+const Intrinsics::FullIntrinsicInfo *
+FunctionDeclaration::getIntrinsicInfo(const GlobalContext *Ctx,
+ bool *IsIntrinsic) const {
+ *IsIntrinsic = false;
+ if (!hasName())
+ return nullptr;
+ bool BadIntrinsic;
+ const Intrinsics::FullIntrinsicInfo *Info =
+ Ctx->getIntrinsicsInfo().find(getName(), BadIntrinsic);
+ *IsIntrinsic = Info || BadIntrinsic;
+ return Info;
+}
+
+bool FunctionDeclaration::validateRegularTypeSignature() const {
+ for (SizeT i = 0; i < Signature.getNumArgs(); ++i) {
+ if (!isCallParameterType(Signature.getArgType(i)))
+ return false;
+ }
+ return isCallReturnType(Signature.getReturnType());
+}
+
+bool FunctionDeclaration::validateIntrinsicTypeSignature(
+ const Intrinsics::FullIntrinsicInfo *Info) const {
+ if (Signature.getNumArgs() != Info->getNumArgs())
+ return false;
+ for (SizeT i = 0; i < Signature.getNumArgs(); ++i) {
+ if (Signature.getArgType(i) != Info->getArgType(i))
+ return false;
+ }
+ return Signature.getReturnType() == Info->getReturnType();
+}
+
+IceString FunctionDeclaration::getTypeSignatureError(const GlobalContext *Ctx) {
+ std::string Buffer;
+ llvm::raw_string_ostream StrBuf(Buffer);
+ StrBuf << "Invalid";
+ bool IsIntrinsic;
+ const Intrinsics::FullIntrinsicInfo *Info =
+ getIntrinsicInfo(Ctx, &IsIntrinsic);
+ if (IsIntrinsic && Info == nullptr) {
+ StrBuf << " intrinsic name: " << getName();
+ return StrBuf.str();
+ }
+ StrBuf << " type signature for";
+ if (IsIntrinsic)
+ StrBuf << " intrinsic";
+ StrBuf << " " << getName() << ": " << getSignature();
+ return StrBuf.str();
+}
+
void FunctionDeclaration::dumpType(Ostream &Stream) const {
if (!Ice::BuildDefs::dump())
return;
« no previous file with comments | « src/IceGlobalInits.h ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698