60 Commits (fb70229e2698ecbbc6b230edcd414be167c7b555)

Author SHA1 Message Date
triton 9bb39e92eb Fixed a tricky bug that was breaking generation of vtables interop code. 12 years ago
Stephen Kennedy 9cfc8c23dc Handle partial specializations like normal specializations (not at all!) 12 years ago
triton 2cc3e1cfa7 Updated to latest LLVM/Clang revisions. 12 years ago
triton 7c85c31fcd Simplified checks for valid options in CppParser. 12 years ago
triton 078b71be45 Updated the C++ parser project to the new ASTContext class. 12 years ago
triton 2d23070305 Move forced declarations of implicit members earlier just in case it makes a difference. 12 years ago
triton 1ecd2e138d Updated CppParser to the latest Parser changes. 12 years ago
Joao Matos 17b3ac93b6 GCC/Clang parser build fixes. 12 years ago
triton bc33de5ddd Added parser support for deleted functions. 12 years ago
triton 62839a3f0a Added the new C++/CLI free parser. 12 years ago
Dimitar Dobrev 88d5192684 Wrapped conversion (cast) operators. 12 years ago
triton 62b8207d2d Reworked the fix for #67, the previous one was not totally correct and was breaking some tests. 12 years ago
triton 128308a590 Fixed parser to not try to get code gen details of function forward declarations. 12 years ago
triton d34af322ed Use the full offset to the vftable pointer when getting its vftable layouts. 12 years ago
triton 95ac9ffde8 Fixed a comparison bug introduced in the previous commit. 12 years ago
triton ccecf5178a Fixed parser diagnostic processing. 12 years ago
triton d4f28bb049 The check for code gen info is now a bit more robust. 12 years ago
triton aff25384fe Updated the parser to work with calling convention changes introduced in the latest Clang revisions (r189412). 12 years ago
triton 3b63a1a2be Added default constructors triviality information to the AST. 12 years ago
triton 1d455db550 Fixed parsing of C++ methods constness. 12 years ago
triton c579142092 Remove unused includes. 12 years ago
triton bb5bf5469d Fixed VTable walking to actually walk through all the tables. 12 years ago
Dimitar Dobrev bb07a294f4 Ignored private types. 12 years ago
triton 3f6dac4a50 Fixed parsing of function code gen info to be more robust. 12 years ago
triton 54dc21e7d2 Fixed parsing of function code gen info to be more robust. 12 years ago
Dimitar Dobrev 1fc9880be9 Generated the correct calling convention in the UnmanagedFunctionPointerAttribute of delegates. 12 years ago
triton 29728910b7 Small formatting fix. 12 years ago
triton 92243be28f Make the parsing of function codegen info a bit more robust. 12 years ago
triton 5586acdbaf Added accurate return and argument type ABI information by querying Clang's code gen layer for the correct information. This does add a lot of extra dependencies on LLVM and Clang libraries. 12 years ago
triton 5ea71589a8 Extract diagnostic handling to a method. 12 years ago
triton d7541960c4 Moved operators parsing from methods to functions since functions can also be operators. 12 years ago
triton 02f5d0731a Classes in AST now keep if they have non trivial copy constructors. 12 years ago
triton 75cc968d19 Added parsing of preprocessed entities for function parameters. 12 years ago
triton ba3e84a12c Fixed handling of overriden methods. 12 years ago
Dimitar Dobrev 90db6eb95d Added an option for the used ABI to the C++ Parser class. 12 years ago
Dimitar Dobrev d526dda895 Replaced a range-based for to ensure VS C++ 2010 compliance. 12 years ago
triton 4152c30054 Ignore static assert declarations. 12 years ago
triton 871e14291b We need to call SourceManager::getFileLoc to get the fully expanded file location when getting diagnostic file names. 12 years ago
triton 7bd56c9b98 Do not try to handle preprocessed entities for invalid locations. 12 years ago
triton cb812206b3 Fixed parser to not try to get the class layout for invalid declarations. 12 years ago
triton 46989d7f50 Added the C++ ABI to the class layouts. 12 years ago
triton 067ff9f57f Respect the ToolSetToUse options and assign a default to MSCVersion if none is requested since it is needed to make Clang define _MSC_VER. 12 years ago
triton 8c1372f80a Fixed Clang parser initialization to be a bit more robust with invalid triples. 12 years ago
triton aeba55cb3c Remove the compile-time Clang revision checks for the new vftable APIs since they do not work. 12 years ago
triton 69320246a9 Do not ignore system declarations when walking enum types. 12 years ago
triton 751e0da4e3 Keep the original pointer that originated the AST declaration node and check if we have already processed the method in WalkMethodCXX (if so, just return the already existing declaration). 12 years ago
triton 0926734f38 Walk the vtable further down after all the child declarations of the class have been processed so that we find the proper methods once we walk the vtable components. 12 years ago
triton d0f7f81e5a Added IsVirtual data to methods. 12 years ago
triton 752cfa4869 Added IsDynamic and IsPolymorphic data to classes. 12 years ago
triton ac49d1796b Remove assert temporarily as it causes some relatively harmless assertions in debug mode in some special cases. 12 years ago