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

Unified Diff: src/PNaClTranslator.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.cpp ('k') | tests_lit/llvm2ice_tests/div_legalization.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/PNaClTranslator.cpp
diff --git a/src/PNaClTranslator.cpp b/src/PNaClTranslator.cpp
index a7b367c507774d04148cf155270e320e5c3682da..13e08702ebbfb5af5e280632b28bef6152e24a17 100644
--- a/src/PNaClTranslator.cpp
+++ b/src/PNaClTranslator.cpp
@@ -338,6 +338,8 @@ public:
installFunctionNames();
}
+ void verifyFunctionTypeSignatures();
+
void createValueIDs() {
assert(VariableDeclarations);
ValueIDConstants.reserve(VariableDeclarations->size() +
@@ -637,6 +639,14 @@ Ice::Type TopLevelParser::convertToIceTypeError(Type *LLVMTy) {
return Ice::IceType_void;
}
+void TopLevelParser::verifyFunctionTypeSignatures() {
+ const Ice::GlobalContext *Ctx = getTranslator().getContext();
+ for (Ice::FunctionDeclaration *FuncDecl : FunctionDeclarations) {
+ if (!FuncDecl->validateTypeSignature(Ctx))
+ Error(FuncDecl->getTypeSignatureError(Ctx));
+ }
+}
+
// Base class for parsing blocks within the bitcode file. Note: Because this is
// the base class of block parsers, we generate error messages if ParseBlock or
// ParseRecord is not overridden in derived classes.
@@ -2648,16 +2658,7 @@ void FunctionParser::ProcessRecord() {
}
// Check if this direct call is to an Intrinsic (starts with "llvm.")
- bool BadIntrinsic;
- IntrinsicInfo = getTranslator().getContext()->getIntrinsicsInfo().find(
- Fcn->getName(), BadIntrinsic);
- if (BadIntrinsic) {
- std::string Buffer;
- raw_string_ostream StrBuf(Buffer);
- StrBuf << "Invalid PNaCl intrinsic call to " << Fcn->getName();
- Error(StrBuf.str());
- IntrinsicInfo = nullptr;
- }
+ IntrinsicInfo = Fcn->getIntrinsicInfo(getTranslator().getContext());
if (IntrinsicInfo && IntrinsicInfo->getNumArgs() != NumParams) {
std::string Buffer;
raw_string_ostream StrBuf(Buffer);
@@ -2712,16 +2713,14 @@ void FunctionParser::ProcessRecord() {
if (Signature)
verifyCallArgTypeMatches(Fcn, Index, OpType,
Signature->getArgType(Index));
- if (IntrinsicInfo) {
- verifyCallArgTypeMatches(Fcn, Index, OpType,
- IntrinsicInfo->getArgType(Index));
- } else if (!isCallParameterType(OpType)) {
+ else if (!isCallParameterType(OpType)) {
std::string Buffer;
raw_string_ostream StrBuf(Buffer);
StrBuf << "Argument " << *Op << " of " << printName(Fcn)
<< " has invalid type: " << Op->getType();
Error(StrBuf.str());
appendErrorInstruction(ReturnType);
+ return;
}
}
@@ -3007,6 +3006,7 @@ private:
if (!GlobalDeclarationNamesAndInitializersInstalled) {
Context->installGlobalNames();
Context->createValueIDs();
+ Context->verifyFunctionTypeSignatures();
std::unique_ptr<Ice::VariableDeclarationList> Globals =
Context->getGlobalVariables();
if (Globals)
« no previous file with comments | « src/IceGlobalInits.cpp ('k') | tests_lit/llvm2ice_tests/div_legalization.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698