Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fixes for GCC 11, cache conversion robustness and error handling #1765

Merged
merged 4 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/CppParser/AST.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1078,6 +1078,8 @@ HTMLStartTagComment::Attribute::Attribute() {}

HTMLStartTagComment::Attribute::Attribute(const Attribute& rhs) : name(rhs.name), value(rhs.value) {}

HTMLStartTagComment::Attribute::~Attribute() {}

HTMLStartTagComment::HTMLStartTagComment() : HTMLTagComment(CommentKind::HTMLStartTagComment) {}

DEF_VECTOR(HTMLStartTagComment, HTMLStartTagComment::Attribute, Attributes)
Expand Down
1 change: 1 addition & 0 deletions src/CppParser/AST.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ class CS_API HTMLStartTagComment : public HTMLTagComment
public:
Attribute();
Attribute(const Attribute&);
~Attribute();
std::string name;
std::string value;
};
Expand Down
6 changes: 3 additions & 3 deletions src/CppParser/CppParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ struct CS_API ParserDiagnostic
~ParserDiagnostic();
std::string fileName;
std::string message;
ParserDiagnosticLevel level;
int lineNumber;
int columnNumber;
ParserDiagnosticLevel level { ParserDiagnosticLevel::Ignored };
int lineNumber {0};
int columnNumber {0};
};

enum class ParserResultKind
Expand Down
8 changes: 7 additions & 1 deletion src/CppParser/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4713,7 +4713,13 @@ ParserResult* Parser::ParseLibrary(const CppLinkerOptions* Opts)
auto BinaryOrErr = llvm::object::createBinary(FileEntry);
if (!BinaryOrErr)
{
auto Error = BinaryOrErr.takeError();
auto ErrMsg = llvm::toString(BinaryOrErr.takeError());
auto Diag = ParserDiagnostic();
Diag.fileName = FileEntry;
Diag.message = ErrMsg;
Diag.level = ParserDiagnosticLevel::Error;
res->Diagnostics.push_back(Diag);

res->kind = ParserResultKind::Error;
return res;
}
Expand Down
29 changes: 21 additions & 8 deletions src/Generator/Driver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,17 @@ void OnFileParsed(IEnumerable<string> files, ParserResult result)
if (diag.Level == ParserDiagnosticLevel.Note)
continue;

Diagnostics.Message("{0}({1},{2}): {3}: {4}",
diag.FileName, diag.LineNumber, diag.ColumnNumber,
diag.Level.ToString().ToLower(), diag.Message);
if (diag.LineNumber == 0 && diag.ColumnNumber == 0)
{
Diagnostics.Message("{0}: {1}: {2}",
diag.FileName, diag.Level.ToString().ToLower(), diag.Message);
}
else
{
Diagnostics.Message("{0}({1},{2}): {3}: {4}",
diag.FileName, diag.LineNumber, diag.ColumnNumber,
diag.Level.ToString().ToLower(), diag.Message);
}
}
}

Expand Down Expand Up @@ -196,7 +204,10 @@ public bool ParseLibraries()

using var res = ClangParser.ParseLibrary(linkerOptions);
if (res.Kind != ParserResultKind.Success)
{
res.Dispose();
continue;
}

for (uint i = 0; i < res.LibrariesCount; i++)
Context.Symbols.Libraries.Add(ClangParser.ConvertLibrary(res.GetLibraries(i)));
Expand All @@ -206,7 +217,7 @@ public bool ParseLibraries()
Context.Symbols.IndexSymbols();
SortModulesByDependencies();

return true;
return !hasParsingErrors;
}

public void SetupPasses(ILibrary library)
Expand Down Expand Up @@ -412,7 +423,7 @@ public void Dispose()

public static class ConsoleDriver
{
public static void Run(ILibrary library)
public static bool Run(ILibrary library)
{
var options = new DriverOptions();
using var driver = new Driver(options);
Expand All @@ -427,15 +438,15 @@ public static void Run(ILibrary library)
Diagnostics.Message("Parsing libraries...");

if (!driver.ParseLibraries())
return;
return false;

if (!options.Quiet)
Diagnostics.Message("Parsing code...");

if (!driver.ParseCode())
{
Diagnostics.Error("CppSharp has encountered an error while parsing code.");
return;
return false;
}

new CleanUnitPass { Context = driver.Context }.VisitASTContext(driver.Context.ASTContext);
Expand All @@ -462,7 +473,7 @@ public static void Run(ILibrary library)
Diagnostics.Message("Generating code...");

if (options.DryRun)
return;
return true;

var outputs = driver.GenerateCode();

Expand All @@ -477,6 +488,8 @@ public static void Run(ILibrary library)
driver.SaveCode(outputs);
if (driver.Options.IsCSharpGenerator && driver.Options.CompileCode)
driver.Options.Modules.Any(m => !driver.CompileCode(m));

return true;
}
}
}
19 changes: 11 additions & 8 deletions src/Parser/ASTConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ public unsafe class DeclConverter : DeclVisitor<AST.Declaration>
readonly CommentConverter commentConverter;
readonly StmtConverter stmtConverter;

readonly Dictionary<IntPtr, AST.Declaration> Declarations;
readonly Dictionary<(IntPtr, DeclarationKind), AST.Declaration> Declarations;
readonly Dictionary<IntPtr, AST.PreprocessedEntity> PreprocessedEntities;
readonly Dictionary<IntPtr, AST.FunctionTemplateSpecialization> FunctionTemplateSpecializations;

Expand All @@ -857,7 +857,7 @@ public DeclConverter(TypeConverter type, CommentConverter comment, StmtConverter
typeConverter = type;
commentConverter = comment;
stmtConverter = stmt;
Declarations = new Dictionary<IntPtr, AST.Declaration>();
Declarations = new Dictionary<(IntPtr, DeclarationKind), AST.Declaration>();
PreprocessedEntities = new Dictionary<IntPtr, AST.PreprocessedEntity>();
FunctionTemplateSpecializations = new Dictionary<IntPtr, AST.FunctionTemplateSpecialization>();
}
Expand All @@ -876,8 +876,9 @@ public override AST.Declaration Visit(Declaration decl)

// Check if the declaration was already handled and return its
// existing instance.
if (CheckForDuplicates(decl) && Declarations.ContainsKey(originalPtr))
return Declarations[originalPtr];
var key = (decl.OriginalPtr, decl.Kind);
if (CheckForDuplicates(decl) && Declarations.TryGetValue(key, out var visit))
return visit;

return base.Visit(decl);
}
Expand Down Expand Up @@ -981,15 +982,17 @@ bool CheckForDuplicates(Declaration decl)

void VisitDeclaration(Declaration decl, AST.Declaration _decl)
{
var originalPtr = decl.OriginalPtr;
var key = (decl.OriginalPtr, decl.Kind);

if (CheckForDuplicates(decl))
if (Declarations.ContainsKey(originalPtr))
{
if (Declarations.ContainsKey(key))
throw new NotSupportedException("Duplicate declaration processed");
}

// Add the declaration to the map so that we can check if have
// already handled it and return the declaration.
Declarations[originalPtr] = _decl;
Declarations[key] = _decl;

_decl.Access = VisitAccessSpecifier(decl.Access);
_decl.Name = decl.Name;
Expand Down Expand Up @@ -1020,7 +1023,7 @@ void VisitDeclaration(Declaration decl, AST.Declaration _decl)
_decl.PreprocessedEntities.Add(_entity);
}

_decl.OriginalPtr = originalPtr;
_decl.OriginalPtr = decl.OriginalPtr;

NativeObjects.Add(decl);

Expand Down
Loading