
This is a big commit that does a few things: * It moves CGo processing into a separate package. It never really belonged in the loader package, and certainly not now that the loader package may be refactored into a driver package. * It adds support for multiple CGo files (files that import package "C") in a single package. Previously, this led to multiple definition errors in the Go typecheck phase because certain C symbols were defined multiple times in all the files. Now it generates a new fake AST that defines these, to avoid multiple definition errors. * It improves debug info in a few edge cases that are probably not relevant outside of bugs in cgo itself.
58 строки
1,6 КиБ
C
58 строки
1,6 КиБ
C
|
|
// This file implements some small trampoline functions. The signatures
|
|
// are slightly different from the ones defined in libclang.go, but they
|
|
// should be ABI compatible.
|
|
|
|
#include <clang-c/Index.h> // if this fails, install libclang-8-dev
|
|
|
|
CXCursor tinygo_clang_getTranslationUnitCursor(CXTranslationUnit tu) {
|
|
return clang_getTranslationUnitCursor(tu);
|
|
}
|
|
|
|
unsigned tinygo_clang_visitChildren(CXCursor parent, CXCursorVisitor visitor, CXClientData client_data) {
|
|
return clang_visitChildren(parent, visitor, client_data);
|
|
}
|
|
|
|
CXString tinygo_clang_getCursorSpelling(CXCursor c) {
|
|
return clang_getCursorSpelling(c);
|
|
}
|
|
|
|
enum CXCursorKind tinygo_clang_getCursorKind(CXCursor c) {
|
|
return clang_getCursorKind(c);
|
|
}
|
|
|
|
CXType tinygo_clang_getCursorType(CXCursor c) {
|
|
return clang_getCursorType(c);
|
|
}
|
|
|
|
CXCursor tinygo_clang_getTypeDeclaration(CXType t) {
|
|
return clang_getTypeDeclaration(t);
|
|
}
|
|
|
|
CXType tinygo_clang_getTypedefDeclUnderlyingType(CXCursor c) {
|
|
return clang_getTypedefDeclUnderlyingType(c);
|
|
}
|
|
|
|
CXType tinygo_clang_getCursorResultType(CXCursor c) {
|
|
return clang_getCursorResultType(c);
|
|
}
|
|
|
|
int tinygo_clang_Cursor_getNumArguments(CXCursor c) {
|
|
return clang_Cursor_getNumArguments(c);
|
|
}
|
|
|
|
CXCursor tinygo_clang_Cursor_getArgument(CXCursor c, unsigned i) {
|
|
return clang_Cursor_getArgument(c, i);
|
|
}
|
|
|
|
CXSourceLocation tinygo_clang_getCursorLocation(CXCursor c) {
|
|
return clang_getCursorLocation(c);
|
|
}
|
|
|
|
CXSourceRange tinygo_clang_getCursorExtent(CXCursor c) {
|
|
return clang_getCursorExtent(c);
|
|
}
|
|
|
|
CXTranslationUnit tinygo_clang_Cursor_getTranslationUnit(CXCursor c) {
|
|
return clang_Cursor_getTranslationUnit(c);
|
|
}
|