summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2017-09-22 18:35:09 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2017-09-22 18:35:09 +0000
commit25eb54f789bfb5ddc53d45438ee013168f34c7cf (patch)
tree6f4120c8e7588c73a704e8d381823a6730b7a8d7
parentd8e18a4cf6d5b92393cc45311541e55a5d4b0ae0 (diff)
downloadbcm5719-llvm-25eb54f789bfb5ddc53d45438ee013168f34c7cf.tar.gz
bcm5719-llvm-25eb54f789bfb5ddc53d45438ee013168f34c7cf.zip
bindings: expose Linkage to the python bindings
Add Python bindings for the 'clang_getCursorLinkage', and tests to validate the functionality. Patch by Masud Rahman! llvm-svn: 314009
-rw-r--r--clang/bindings/python/clang/cindex.py28
-rw-r--r--clang/bindings/python/tests/cindex/test_linkage.py30
2 files changed, 58 insertions, 0 deletions
diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py
index 6a53bc0c470..c236a47651d 100644
--- a/clang/bindings/python/clang/cindex.py
+++ b/clang/bindings/python/clang/cindex.py
@@ -1549,6 +1549,14 @@ class Cursor(Structure):
return self._loc
@property
+ def linkage(self):
+ """Return the linkage of this cursor."""
+ if not hasattr(self, '_linkage'):
+ self._linkage = conf.lib.clang_getCursorLinkage(self)
+
+ return LinkageKind.from_id(self._linkage)
+
+ @property
def tls_kind(self):
"""Return the thread-local storage (TLS) kind of this cursor."""
if not hasattr(self, '_tls_kind'):
@@ -2069,6 +2077,25 @@ RefQualifierKind.NONE = RefQualifierKind(0)
RefQualifierKind.LVALUE = RefQualifierKind(1)
RefQualifierKind.RVALUE = RefQualifierKind(2)
+class LinkageKind(BaseEnumeration):
+ """Describes the kind of linkage of a cursor."""
+
+ # The unique kind objects, indexed by id.
+ _kinds = []
+ _name_map = None
+
+ def from_param(self):
+ return self.value
+
+ def __repr__(self):
+ return 'LinkageKind.%s' % (self.name,)
+
+LinkageKind.INVALID = LinkageKind(0)
+LinkageKind.NO_LINKAGE = LinkageKind(1)
+LinkageKind.INTERNAL = LinkageKind(2)
+LinkageKind.UNIQUE_EXTERNAL = LinkageKind(3)
+LinkageKind.EXTERNAL = LinkageKind(4)
+
class TLSKind(BaseEnumeration):
"""Describes the kind of thread-local storage (TLS) of a cursor."""
@@ -4090,6 +4117,7 @@ __all__ = [
'File',
'FixIt',
'Index',
+ 'LinkageKind',
'SourceLocation',
'SourceRange',
'TLSKind',
diff --git a/clang/bindings/python/tests/cindex/test_linkage.py b/clang/bindings/python/tests/cindex/test_linkage.py
new file mode 100644
index 00000000000..2f056d51402
--- /dev/null
+++ b/clang/bindings/python/tests/cindex/test_linkage.py
@@ -0,0 +1,30 @@
+
+from clang.cindex import LinkageKind
+from clang.cindex import Cursor
+from clang.cindex import TranslationUnit
+
+from .util import get_cursor
+from .util import get_tu
+
+def test_linkage():
+ """Ensure that linkage specifers are available on cursors"""
+
+ tu = get_tu("""
+void foo() { int no_linkage; }
+static int internal;
+namespace { extern int unique_external; }
+extern int external;
+""", lang = 'cpp')
+
+ no_linkage = get_cursor(tu.cursor, 'no_linkage')
+ assert no_linkage.linkage == LinkageKind.NO_LINKAGE;
+
+ internal = get_cursor(tu.cursor, 'internal')
+ assert internal.linkage == LinkageKind.INTERNAL
+
+ unique_external = get_cursor(tu.cursor, 'unique_external')
+ assert unique_external.linkage == LinkageKind.UNIQUE_EXTERNAL
+
+ external = get_cursor(tu.cursor, 'external')
+ assert external.linkage == LinkageKind.EXTERNAL
+
OpenPOWER on IntegriCloud