Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [index] Generate class & metaclass manglings for objc | Dave Lee | 2017-09-22 | 1 | -3/+36 |
| | | | | | | | | | | | | | | | | | | | | | | | Summary: ObjC classes have two associated symbols, one for the class and one for the metaclass. This change overloads `CodegenNameGenerator::getAllManglings` to produce both class and metaclass symbols. While this function is called by `clang_Cursor_getCXXManglings`, it's only called for CXXRecordDecl and CXXMethodDecl, and so libclang's behavior is unchanged. Reviewers: arphaman, abdulras, alexshap, compnerd Reviewed By: compnerd Subscribers: compnerd Differential Revision: https://reviews.llvm.org/D37671 llvm-svn: 313997 | ||||
* | Make TargetInfo store an actual DataLayout instead of a string. | James Y Knight | 2016-03-04 | 1 | -3/+1 |
| | | | | | | | | | | | | | | Use it to calculate UserLabelPrefix, instead of specifying it (often incorrectly). Note that the *actual* user label prefix has always come from the DataLayout, and is handled within LLVM. The main thing clang's TargetInfo::UserLabelPrefix did was to set the #define value. Having these be different from each-other is just silly. Differential Revision: http://reviews.llvm.org/D17183 llvm-svn: 262737 | ||||
* | [index] Factor libclang's functionality to determing the mangled name of ↵ | Argyrios Kyrtzidis | 2016-02-14 | 1 | -0/+197 |
symbols into the clangIndex library. llvm-svn: 260858 |